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
de1e5515
Commit
de1e5515
authored
Dec 19, 2013
by
Simon Horman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'heads/sh-sci' into dt3-base
parents
236573d2
b016b646
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
17 deletions
+22
-17
drivers/tty/serial/sh-sci.c
drivers/tty/serial/sh-sci.c
+22
-17
No files found.
drivers/tty/serial/sh-sci.c
View file @
de1e5515
...
...
@@ -421,9 +421,9 @@ static void sci_port_enable(struct sci_port *sci_port)
pm_runtime_get_sync
(
sci_port
->
port
.
dev
);
clk_enable
(
sci_port
->
iclk
);
clk_
prepare_
enable
(
sci_port
->
iclk
);
sci_port
->
port
.
uartclk
=
clk_get_rate
(
sci_port
->
iclk
);
clk_enable
(
sci_port
->
fclk
);
clk_
prepare_
enable
(
sci_port
->
fclk
);
}
static
void
sci_port_disable
(
struct
sci_port
*
sci_port
)
...
...
@@ -431,8 +431,16 @@ static void sci_port_disable(struct sci_port *sci_port)
if
(
!
sci_port
->
port
.
dev
)
return
;
clk_disable
(
sci_port
->
fclk
);
clk_disable
(
sci_port
->
iclk
);
/* Cancel the break timer to ensure that the timer handler will not try
* to access the hardware with clocks and power disabled. Reset the
* break flag to make the break debouncing state machine ready for the
* next break.
*/
del_timer_sync
(
&
sci_port
->
break_timer
);
sci_port
->
break_flag
=
0
;
clk_disable_unprepare
(
sci_port
->
fclk
);
clk_disable_unprepare
(
sci_port
->
iclk
);
pm_runtime_put_sync
(
sci_port
->
port
.
dev
);
}
...
...
@@ -557,7 +565,7 @@ static inline int sci_rxd_in(struct uart_port *port)
return
1
;
/* Cast for ARM damage */
return
!!
__raw_readb
((
void
__iomem
*
)
s
->
cfg
->
port_reg
);
return
!!
__raw_readb
((
void
__iomem
*
)
(
uintptr_t
)
s
->
cfg
->
port_reg
);
}
/* ********************************************************************** *
...
...
@@ -733,8 +741,6 @@ static void sci_break_timer(unsigned long data)
{
struct
sci_port
*
port
=
(
struct
sci_port
*
)
data
;
sci_port_enable
(
port
);
if
(
sci_rxd_in
(
&
port
->
port
)
==
0
)
{
port
->
break_flag
=
1
;
sci_schedule_break_timer
(
port
);
...
...
@@ -744,8 +750,6 @@ static void sci_break_timer(unsigned long data)
sci_schedule_break_timer
(
port
);
}
else
port
->
break_flag
=
0
;
sci_port_disable
(
port
);
}
static
int
sci_handle_errors
(
struct
uart_port
*
port
)
...
...
@@ -1309,7 +1313,7 @@ static int sci_dma_rx_push(struct sci_port *s, size_t count)
}
if
(
room
<
count
)
dev_warn
(
port
->
dev
,
"Rx overrun: dropping %u bytes
\n
"
,
dev_warn
(
port
->
dev
,
"Rx overrun: dropping %
z
u bytes
\n
"
,
count
-
room
);
if
(
!
room
)
return
room
;
...
...
@@ -1442,7 +1446,7 @@ static void work_fn_rx(struct work_struct *work)
int
count
;
chan
->
device
->
device_control
(
chan
,
DMA_TERMINATE_ALL
,
0
);
dev_dbg
(
port
->
dev
,
"Read %u bytes with cookie %d
\n
"
,
dev_dbg
(
port
->
dev
,
"Read %
z
u bytes with cookie %d
\n
"
,
sh_desc
->
partial
,
sh_desc
->
cookie
);
spin_lock_irqsave
(
&
port
->
lock
,
flags
);
...
...
@@ -1691,16 +1695,17 @@ static void sci_request_dma(struct uart_port *port)
s
->
chan_tx
=
chan
;
sg_init_table
(
&
s
->
sg_tx
,
1
);
/* UART circular tx buffer is an aligned page. */
BUG_ON
((
in
t
)
port
->
state
->
xmit
.
buf
&
~
PAGE_MASK
);
BUG_ON
((
uintptr_
t
)
port
->
state
->
xmit
.
buf
&
~
PAGE_MASK
);
sg_set_page
(
&
s
->
sg_tx
,
virt_to_page
(
port
->
state
->
xmit
.
buf
),
UART_XMIT_SIZE
,
(
int
)
port
->
state
->
xmit
.
buf
&
~
PAGE_MASK
);
UART_XMIT_SIZE
,
(
uintptr_t
)
port
->
state
->
xmit
.
buf
&
~
PAGE_MASK
);
nent
=
dma_map_sg
(
port
->
dev
,
&
s
->
sg_tx
,
1
,
DMA_TO_DEVICE
);
if
(
!
nent
)
sci_tx_dma_release
(
s
,
false
);
else
dev_dbg
(
port
->
dev
,
"%s: mapped %d@%p to %
x
\n
"
,
__func__
,
sg_dma_len
(
&
s
->
sg_tx
),
port
->
state
->
xmit
.
buf
,
sg_dma_address
(
&
s
->
sg_tx
));
dev_dbg
(
port
->
dev
,
"%s: mapped %d@%p to %
pad
\n
"
,
__func__
,
sg_dma_len
(
&
s
->
sg_tx
),
port
->
state
->
xmit
.
buf
,
&
sg_dma_address
(
&
s
->
sg_tx
));
s
->
sg_len_tx
=
nent
;
...
...
@@ -1740,7 +1745,7 @@ static void sci_request_dma(struct uart_port *port)
sg_init_table
(
sg
,
1
);
sg_set_page
(
sg
,
virt_to_page
(
buf
[
i
]),
s
->
buf_len_rx
,
(
in
t
)
buf
[
i
]
&
~
PAGE_MASK
);
(
uintptr_
t
)
buf
[
i
]
&
~
PAGE_MASK
);
sg_dma_address
(
sg
)
=
dma
[
i
];
}
...
...
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