Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
6da5b587
Commit
6da5b587
authored
Sep 11, 2018
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mxser: switch to ->[sg]et_serial()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
1c729ab1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
46 deletions
+51
-46
drivers/tty/mxser.c
drivers/tty/mxser.c
+51
-46
No files found.
drivers/tty/mxser.c
View file @
6da5b587
...
...
@@ -1207,76 +1207,90 @@ static int mxser_chars_in_buffer(struct tty_struct *tty)
* ------------------------------------------------------------
*/
static
int
mxser_get_serial_info
(
struct
tty_struct
*
tty
,
struct
serial_struct
__user
*
retinfo
)
struct
serial_struct
*
ss
)
{
struct
mxser_port
*
info
=
tty
->
driver_data
;
struct
serial_struct
tmp
=
{
.
type
=
info
->
type
,
.
line
=
tty
->
index
,
.
port
=
info
->
ioaddr
,
.
irq
=
info
->
board
->
irq
,
.
flags
=
info
->
port
.
flags
,
.
baud_base
=
info
->
baud_base
,
.
close_delay
=
info
->
port
.
close_delay
,
.
closing_wait
=
info
->
port
.
closing_wait
,
.
custom_divisor
=
info
->
custom_divisor
,
};
if
(
copy_to_user
(
retinfo
,
&
tmp
,
sizeof
(
*
retinfo
)))
return
-
EFAULT
;
struct
tty_port
*
port
=
&
info
->
port
;
if
(
tty
->
index
==
MXSER_PORTS
)
return
-
ENOTTY
;
mutex_lock
(
&
port
->
mutex
);
ss
->
type
=
info
->
type
,
ss
->
line
=
tty
->
index
,
ss
->
port
=
info
->
ioaddr
,
ss
->
irq
=
info
->
board
->
irq
,
ss
->
flags
=
info
->
port
.
flags
,
ss
->
baud_base
=
info
->
baud_base
,
ss
->
close_delay
=
info
->
port
.
close_delay
,
ss
->
closing_wait
=
info
->
port
.
closing_wait
,
ss
->
custom_divisor
=
info
->
custom_divisor
,
mutex_unlock
(
&
port
->
mutex
);
return
0
;
}
static
int
mxser_set_serial_info
(
struct
tty_struct
*
tty
,
struct
serial_struct
__user
*
new_info
)
struct
serial_struct
*
ss
)
{
struct
mxser_port
*
info
=
tty
->
driver_data
;
struct
tty_port
*
port
=
&
info
->
port
;
struct
serial_struct
new_serial
;
speed_t
baud
;
unsigned
long
sl_flags
;
unsigned
int
flags
;
int
retval
=
0
;
if
(
!
new_info
||
!
info
->
ioaddr
)
if
(
tty
->
index
==
MXSER_PORTS
)
return
-
ENOTTY
;
if
(
tty_io_error
(
tty
))
return
-
EIO
;
mutex_lock
(
&
port
->
mutex
);
if
(
!
info
->
ioaddr
)
{
mutex_unlock
(
&
port
->
mutex
);
return
-
ENODEV
;
if
(
copy_from_user
(
&
new_serial
,
new_info
,
sizeof
(
new_serial
)))
return
-
EFAULT
;
}
if
(
new_serial
.
irq
!=
info
->
board
->
irq
||
new_serial
.
port
!=
info
->
ioaddr
)
if
(
ss
->
irq
!=
info
->
board
->
irq
||
ss
->
port
!=
info
->
ioaddr
)
{
mutex_unlock
(
&
port
->
mutex
);
return
-
EINVAL
;
}
flags
=
port
->
flags
&
ASYNC_SPD_MASK
;
if
(
!
capable
(
CAP_SYS_ADMIN
))
{
if
((
new_serial
.
baud_base
!=
info
->
baud_base
)
||
(
new_serial
.
close_delay
!=
info
->
port
.
close_delay
)
||
((
new_serial
.
flags
&
~
ASYNC_USR_MASK
)
!=
(
info
->
port
.
flags
&
~
ASYNC_USR_MASK
)))
if
((
ss
->
baud_base
!=
info
->
baud_base
)
||
(
ss
->
close_delay
!=
info
->
port
.
close_delay
)
||
((
ss
->
flags
&
~
ASYNC_USR_MASK
)
!=
(
info
->
port
.
flags
&
~
ASYNC_USR_MASK
)))
{
mutex_unlock
(
&
port
->
mutex
);
return
-
EPERM
;
}
info
->
port
.
flags
=
((
info
->
port
.
flags
&
~
ASYNC_USR_MASK
)
|
(
new_serial
.
flags
&
ASYNC_USR_MASK
));
(
ss
->
flags
&
ASYNC_USR_MASK
));
}
else
{
/*
* OK, past this point, all the error checking has been done.
* At this point, we start making changes.....
*/
port
->
flags
=
((
port
->
flags
&
~
ASYNC_FLAGS
)
|
(
new_serial
.
flags
&
ASYNC_FLAGS
));
port
->
close_delay
=
new_serial
.
close_delay
*
HZ
/
100
;
port
->
closing_wait
=
new_serial
.
closing_wait
*
HZ
/
100
;
(
ss
->
flags
&
ASYNC_FLAGS
));
port
->
close_delay
=
ss
->
close_delay
*
HZ
/
100
;
port
->
closing_wait
=
ss
->
closing_wait
*
HZ
/
100
;
port
->
low_latency
=
(
port
->
flags
&
ASYNC_LOW_LATENCY
)
?
1
:
0
;
if
((
port
->
flags
&
ASYNC_SPD_MASK
)
==
ASYNC_SPD_CUST
&&
(
new_serial
.
baud_base
!=
info
->
baud_base
||
new_serial
.
custom_divisor
!=
(
ss
->
baud_base
!=
info
->
baud_base
||
ss
->
custom_divisor
!=
info
->
custom_divisor
))
{
if
(
new_serial
.
custom_divisor
==
0
)
if
(
ss
->
custom_divisor
==
0
)
{
mutex_unlock
(
&
port
->
mutex
);
return
-
EINVAL
;
baud
=
new_serial
.
baud_base
/
new_serial
.
custom_divisor
;
}
baud
=
ss
->
baud_base
/
ss
->
custom_divisor
;
tty_encode_baud_rate
(
tty
,
baud
,
baud
);
}
}
info
->
type
=
new_serial
.
type
;
info
->
type
=
ss
->
type
;
process_txrx_fifo
(
info
);
...
...
@@ -1291,6 +1305,7 @@ static int mxser_set_serial_info(struct tty_struct *tty,
if
(
retval
==
0
)
tty_port_set_initialized
(
port
,
1
);
}
mutex_unlock
(
&
port
->
mutex
);
return
retval
;
}
...
...
@@ -1660,11 +1675,9 @@ static int mxser_ioctl(struct tty_struct *tty,
unsigned
int
cmd
,
unsigned
long
arg
)
{
struct
mxser_port
*
info
=
tty
->
driver_data
;
struct
tty_port
*
port
=
&
info
->
port
;
struct
async_icount
cnow
;
unsigned
long
flags
;
void
__user
*
argp
=
(
void
__user
*
)
arg
;
int
retval
;
if
(
tty
->
index
==
MXSER_PORTS
)
return
mxser_ioctl_special
(
cmd
,
argp
);
...
...
@@ -1708,20 +1721,10 @@ static int mxser_ioctl(struct tty_struct *tty,
return
0
;
}
if
(
cmd
!=
TIOC
GSERIAL
&&
cmd
!=
TIOC
MIWAIT
&&
tty_io_error
(
tty
))
if
(
cmd
!=
TIOCMIWAIT
&&
tty_io_error
(
tty
))
return
-
EIO
;
switch
(
cmd
)
{
case
TIOCGSERIAL
:
mutex_lock
(
&
port
->
mutex
);
retval
=
mxser_get_serial_info
(
tty
,
argp
);
mutex_unlock
(
&
port
->
mutex
);
return
retval
;
case
TIOCSSERIAL
:
mutex_lock
(
&
port
->
mutex
);
retval
=
mxser_set_serial_info
(
tty
,
argp
);
mutex_unlock
(
&
port
->
mutex
);
return
retval
;
case
TIOCSERGETLSR
:
/* Get line status register */
return
mxser_get_lsr_info
(
info
,
argp
);
/*
...
...
@@ -2325,6 +2328,8 @@ static const struct tty_operations mxser_ops = {
.
wait_until_sent
=
mxser_wait_until_sent
,
.
tiocmget
=
mxser_tiocmget
,
.
tiocmset
=
mxser_tiocmset
,
.
set_serial
=
mxser_set_serial_info
,
.
get_serial
=
mxser_get_serial_info
,
.
get_icount
=
mxser_get_icount
,
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment