2 * udbg for for NS16550 compatable serial ports
4 * Copyright (C) 2001-2005 PPC 64 Team, IBM Corp
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 #include <linux/types.h>
15 extern u8 real_readb(volatile u8 __iomem *addr);
16 extern void real_writeb(u8 data, volatile u8 __iomem *addr);
17 extern u8 real_205_readb(volatile u8 __iomem *addr);
18 extern void real_205_writeb(u8 data, volatile u8 __iomem *addr);
21 /* this struct must be packed */
22 unsigned char rbr; /* 0 */
23 unsigned char ier; /* 1 */
24 unsigned char fcr; /* 2 */
25 unsigned char lcr; /* 3 */
26 unsigned char mcr; /* 4 */
27 unsigned char lsr; /* 5 */
28 unsigned char msr; /* 6 */
29 unsigned char scr; /* 7 */
38 #define LSR_DR 0x01 /* Data ready */
39 #define LSR_OE 0x02 /* Overrun */
40 #define LSR_PE 0x04 /* Parity error */
41 #define LSR_FE 0x08 /* Framing error */
42 #define LSR_BI 0x10 /* Break */
43 #define LSR_THRE 0x20 /* Xmit holding register empty */
44 #define LSR_TEMT 0x40 /* Xmitter empty */
45 #define LSR_ERR 0x80 /* Error */
49 static struct NS16550 __iomem *udbg_comport;
51 static void udbg_550_putc(char c)
54 while ((in_8(&udbg_comport->lsr) & LSR_THRE) == 0)
56 out_8(&udbg_comport->thr, c);
62 static int udbg_550_getc_poll(void)
65 if ((in_8(&udbg_comport->lsr) & LSR_DR) != 0)
66 return in_8(&udbg_comport->rbr);
73 static int udbg_550_getc(void)
76 while ((in_8(&udbg_comport->lsr) & LSR_DR) == 0)
78 return in_8(&udbg_comport->rbr);
83 void udbg_init_uart(void __iomem *comport, unsigned int speed,
86 unsigned int dll, base_bauds;
93 base_bauds = clock / 16;
94 dll = base_bauds / speed;
97 udbg_comport = (struct NS16550 __iomem *)comport;
98 out_8(&udbg_comport->lcr, 0x00);
99 out_8(&udbg_comport->ier, 0xff);
100 out_8(&udbg_comport->ier, 0x00);
101 out_8(&udbg_comport->lcr, LCR_DLAB);
102 out_8(&udbg_comport->dll, dll & 0xff);
103 out_8(&udbg_comport->dlm, dll >> 8);
104 /* 8 data, 1 stop, no parity */
105 out_8(&udbg_comport->lcr, 0x03);
107 out_8(&udbg_comport->mcr, 0x03);
108 /* Clear & enable FIFOs */
109 out_8(&udbg_comport->fcr ,0x07);
110 udbg_putc = udbg_550_putc;
111 udbg_getc = udbg_550_getc;
112 udbg_getc_poll = udbg_550_getc_poll;
116 unsigned int udbg_probe_uart_speed(void __iomem *comport, unsigned int clock)
118 unsigned int dll, dlm, divisor, prescaler, speed;
120 struct NS16550 __iomem *port = comport;
122 old_lcr = in_8(&port->lcr);
124 /* select divisor latch registers. */
125 out_8(&port->lcr, LCR_DLAB);
127 /* now, read the divisor */
128 dll = in_8(&port->dll);
129 dlm = in_8(&port->dlm);
130 divisor = dlm << 8 | dll;
132 /* check prescaling */
133 if (in_8(&port->mcr) & 0x80)
138 /* restore the LCR */
139 out_8(&port->lcr, old_lcr);
141 /* calculate speed */
142 speed = (clock / prescaler) / (divisor * 16);
145 if (speed > (clock / 16))
151 #ifdef CONFIG_PPC_MAPLE
152 void udbg_maple_real_putc(char c)
155 while ((real_readb(&udbg_comport->lsr) & LSR_THRE) == 0)
157 real_writeb(c, &udbg_comport->thr); eieio();
159 udbg_maple_real_putc('\r');
163 void __init udbg_init_maple_realmode(void)
165 udbg_comport = (struct NS16550 __iomem *)0xf40003f8;
167 udbg_putc = udbg_maple_real_putc;
169 udbg_getc_poll = NULL;
171 #endif /* CONFIG_PPC_MAPLE */
173 #ifdef CONFIG_PPC_PASEMI
174 void udbg_pas_real_putc(char c)
177 while ((real_205_readb(&udbg_comport->lsr) & LSR_THRE) == 0)
179 real_205_writeb(c, &udbg_comport->thr); eieio();
181 udbg_pas_real_putc('\r');
185 void udbg_init_pas_realmode(void)
187 udbg_comport = (struct NS16550 __iomem *)0xfcff03f8UL;
189 udbg_putc = udbg_pas_real_putc;
191 udbg_getc_poll = NULL;
193 #endif /* CONFIG_PPC_MAPLE */
195 #ifdef CONFIG_PPC_EARLY_DEBUG_44x
196 #include <platforms/44x/44x.h>
198 static void udbg_44x_as1_putc(char c)
201 while ((as1_readb(&udbg_comport->lsr) & LSR_THRE) == 0)
203 as1_writeb(c, &udbg_comport->thr); eieio();
205 udbg_44x_as1_putc('\r');
209 static int udbg_44x_as1_getc(void)
212 while ((as1_readb(&udbg_comport->lsr) & LSR_DR) == 0)
213 ; /* wait for char */
214 return as1_readb(&udbg_comport->rbr);
219 void __init udbg_init_44x_as1(void)
222 (struct NS16550 __iomem *)PPC44x_EARLY_DEBUG_VIRTADDR;
224 udbg_putc = udbg_44x_as1_putc;
225 udbg_getc = udbg_44x_as1_getc;
227 #endif /* CONFIG_PPC_EARLY_DEBUG_44x */
229 #ifdef CONFIG_PPC_EARLY_DEBUG_40x
230 static void udbg_40x_real_putc(char c)
233 while ((real_readb(&udbg_comport->lsr) & LSR_THRE) == 0)
235 real_writeb(c, &udbg_comport->thr); eieio();
237 udbg_40x_real_putc('\r');
241 static int udbg_40x_real_getc(void)
244 while ((real_readb(&udbg_comport->lsr) & LSR_DR) == 0)
245 ; /* wait for char */
246 return real_readb(&udbg_comport->rbr);
251 void __init udbg_init_40x_realmode(void)
253 udbg_comport = (struct NS16550 __iomem *)
254 CONFIG_PPC_EARLY_DEBUG_40x_PHYSADDR;
256 udbg_putc = udbg_40x_real_putc;
257 udbg_getc = udbg_40x_real_getc;
258 udbg_getc_poll = NULL;
260 #endif /* CONFIG_PPC_EARLY_DEBUG_40x */