mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
[POWERPC] 4xx: Implement udbg_getc() for 440
Implement udbg_getc() for 440, which fixes xmon input. Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com> Acked-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
This commit is contained in:
parent
504ca43e5e
commit
70dea47da1
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user