projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
504ca43
)
[POWERPC] 4xx: Implement udbg_getc() for 440
author
Hollis Blanchard
<
[email protected]
>
Mon, 17 Sep 2007 10:56:47 +0000
(
05:56
-0500)
committer
Josh Boyer
<
[email protected]
>
Thu, 20 Sep 2007 02:13:17 +0000
(21:13 -0500)
Implement udbg_getc() for 440, which fixes xmon input.
Signed-off-by: Hollis Blanchard <
[email protected]
>
Acked-by: David Gibson <
[email protected]
>
Signed-off-by: Josh Boyer <
[email protected]
>
arch/powerpc/kernel/udbg_16550.c
patch
|
blob
|
history
diff --git
a/arch/powerpc/kernel/udbg_16550.c
b/arch/powerpc/kernel/udbg_16550.c
index 7afab5bcd61abbba9c656ce012dd3b7b9b464375..833a3d0bcfa7ad197b71729a1bbb8058d3d0e1b9 100644
(file)
--- a/
arch/powerpc/kernel/udbg_16550.c
+++ b/
arch/powerpc/kernel/udbg_16550.c
@@
-206,11
+206,22
@@
static void udbg_44x_as1_putc(char c)
}
}
+static int udbg_44x_as1_getc(void)
+{
+ if (udbg_comport) {
+ while ((as1_readb(&udbg_comport->lsr) & LSR_DR) == 0)
+ ; /* wait for char */
+ return as1_readb(&udbg_comport->rbr);
+ }
+ return -1;
+}
+
void __init udbg_init_44x_as1(void)
{
udbg_comport =
(volatile struct NS16550 __iomem *)PPC44x_EARLY_DEBUG_VIRTADDR;
udbg_putc = udbg_44x_as1_putc;
+ udbg_getc = udbg_44x_as1_getc;
}
#endif /* CONFIG_PPC_EARLY_DEBUG_44x */