1 #include <linux/kernel.h>
2 #include <linux/serial.h>
3 #include <linux/serial_8250.h>
4 #include <linux/serial_core.h>
5 #include <linux/console.h>
7 #include <linux/of_address.h>
8 #include <linux/of_device.h>
9 #include <linux/serial_reg.h>
13 #include <asm/serial.h>
15 #include <asm/pci-bridge.h>
16 #include <asm/ppc-pci.h>
21 #define DBG(fmt...) do { printk(fmt); } while(0)
23 #define DBG(fmt...) do { } while(0)
26 #define MAX_LEGACY_SERIAL_PORTS 8
28 static struct plat_serial8250_port
29 legacy_serial_ports
[MAX_LEGACY_SERIAL_PORTS
+1];
30 static struct legacy_serial_info
{
31 struct device_node
*np
;
36 } legacy_serial_infos
[MAX_LEGACY_SERIAL_PORTS
];
38 static const struct of_device_id legacy_serial_parents
[] __initconst
= {
40 {.type
= "tsi-bridge",},
42 {.compatible
= "ibm,opb",},
43 {.compatible
= "simple-bus",},
44 {.compatible
= "wrs,epld-localbus",},
48 static unsigned int legacy_serial_count
;
49 static int legacy_serial_console
= -1;
51 static const upf_t legacy_port_flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
|
52 UPF_SHARE_IRQ
| UPF_FIXED_PORT
;
54 static unsigned int tsi_serial_in(struct uart_port
*p
, int offset
)
57 offset
= offset
<< p
->regshift
;
58 if (offset
== UART_IIR
) {
59 tmp
= readl(p
->membase
+ (UART_IIR
& ~3));
60 return (tmp
>> 16) & 0xff; /* UART_IIR % 4 == 2 */
62 return readb(p
->membase
+ offset
);
65 static void tsi_serial_out(struct uart_port
*p
, int offset
, int value
)
67 offset
= offset
<< p
->regshift
;
68 if (!((offset
== UART_IER
) && (value
& UART_IER_UUE
)))
69 writeb(value
, p
->membase
+ offset
);
72 static int __init
add_legacy_port(struct device_node
*np
, int want_index
,
73 int iotype
, phys_addr_t base
,
74 phys_addr_t taddr
, unsigned long irq
,
75 upf_t flags
, int irq_check_parent
)
77 const __be32
*clk
, *spd
, *rs
;
78 u32 clock
= BASE_BAUD
* 16;
82 /* get clock freq. if present */
83 clk
= of_get_property(np
, "clock-frequency", NULL
);
85 clock
= be32_to_cpup(clk
);
87 /* get default speed if present */
88 spd
= of_get_property(np
, "current-speed", NULL
);
90 /* get register shift if present */
91 rs
= of_get_property(np
, "reg-shift", NULL
);
93 shift
= be32_to_cpup(rs
);
95 /* If we have a location index, then try to use it */
96 if (want_index
>= 0 && want_index
< MAX_LEGACY_SERIAL_PORTS
)
99 index
= legacy_serial_count
;
101 /* if our index is still out of range, that mean that
102 * array is full, we could scan for a free slot but that
103 * make little sense to bother, just skip the port
105 if (index
>= MAX_LEGACY_SERIAL_PORTS
)
107 if (index
>= legacy_serial_count
)
108 legacy_serial_count
= index
+ 1;
110 /* Check if there is a port who already claimed our slot */
111 if (legacy_serial_infos
[index
].np
!= NULL
) {
112 /* if we still have some room, move it, else override */
113 if (legacy_serial_count
< MAX_LEGACY_SERIAL_PORTS
) {
114 printk(KERN_DEBUG
"Moved legacy port %d -> %d\n",
115 index
, legacy_serial_count
);
116 legacy_serial_ports
[legacy_serial_count
] =
117 legacy_serial_ports
[index
];
118 legacy_serial_infos
[legacy_serial_count
] =
119 legacy_serial_infos
[index
];
120 legacy_serial_count
++;
122 printk(KERN_DEBUG
"Replacing legacy port %d\n", index
);
126 /* Now fill the entry */
127 memset(&legacy_serial_ports
[index
], 0,
128 sizeof(struct plat_serial8250_port
));
129 if (iotype
== UPIO_PORT
)
130 legacy_serial_ports
[index
].iobase
= base
;
132 legacy_serial_ports
[index
].mapbase
= base
;
134 legacy_serial_ports
[index
].iotype
= iotype
;
135 legacy_serial_ports
[index
].uartclk
= clock
;
136 legacy_serial_ports
[index
].irq
= irq
;
137 legacy_serial_ports
[index
].flags
= flags
;
138 legacy_serial_ports
[index
].regshift
= shift
;
139 legacy_serial_infos
[index
].taddr
= taddr
;
140 legacy_serial_infos
[index
].np
= of_node_get(np
);
141 legacy_serial_infos
[index
].clock
= clock
;
142 legacy_serial_infos
[index
].speed
= spd
? be32_to_cpup(spd
) : 0;
143 legacy_serial_infos
[index
].irq_check_parent
= irq_check_parent
;
145 if (iotype
== UPIO_TSI
) {
146 legacy_serial_ports
[index
].serial_in
= tsi_serial_in
;
147 legacy_serial_ports
[index
].serial_out
= tsi_serial_out
;
150 printk(KERN_DEBUG
"Found legacy serial port %d for %pOF\n",
152 printk(KERN_DEBUG
" %s=%llx, taddr=%llx, irq=%lx, clk=%d, speed=%d\n",
153 (iotype
== UPIO_PORT
) ? "port" : "mem",
154 (unsigned long long)base
, (unsigned long long)taddr
, irq
,
155 legacy_serial_ports
[index
].uartclk
,
156 legacy_serial_infos
[index
].speed
);
161 static int __init
add_legacy_soc_port(struct device_node
*np
,
162 struct device_node
*soc_dev
)
166 struct device_node
*tsi
= of_get_parent(np
);
168 /* We only support ports that have a clock frequency properly
169 * encoded in the device-tree.
171 if (of_get_property(np
, "clock-frequency", NULL
) == NULL
)
174 /* if reg-offset don't try to use it */
175 if ((of_get_property(np
, "reg-offset", NULL
) != NULL
))
178 /* if rtas uses this device, don't try to use it as well */
179 if (of_get_property(np
, "used-by-rtas", NULL
) != NULL
)
182 /* Get the address */
183 addrp
= of_get_address(soc_dev
, 0, NULL
, NULL
);
187 addr
= of_translate_address(soc_dev
, addrp
);
188 if (addr
== OF_BAD_ADDR
)
191 /* Add port, irq will be dealt with later. We passed a translated
192 * IO port value. It will be fixed up later along with the irq
194 if (tsi
&& !strcmp(tsi
->type
, "tsi-bridge"))
195 return add_legacy_port(np
, -1, UPIO_TSI
, addr
, addr
,
196 0, legacy_port_flags
, 0);
198 return add_legacy_port(np
, -1, UPIO_MEM
, addr
, addr
,
199 0, legacy_port_flags
, 0);
202 static int __init
add_legacy_isa_port(struct device_node
*np
,
203 struct device_node
*isa_brg
)
210 DBG(" -> add_legacy_isa_port(%pOF)\n", np
);
212 /* Get the ISA port number */
213 reg
= of_get_property(np
, "reg", NULL
);
217 /* Verify it's an IO port, we don't support anything else */
218 if (!(be32_to_cpu(reg
[0]) & 0x00000001))
221 /* Now look for an "ibm,aix-loc" property that gives us ordering
224 typep
= of_get_property(np
, "ibm,aix-loc", NULL
);
226 /* If we have a location index, then use it */
227 if (typep
&& *typep
== 'S')
228 index
= simple_strtol(typep
+1, NULL
, 0) - 1;
230 /* Translate ISA address. If it fails, we still register the port
231 * with no translated address so that it can be picked up as an IO
232 * port later by the serial driver
234 * Note: Don't even try on P8 lpc, we know it's not directly mapped
236 if (!of_device_is_compatible(isa_brg
, "ibm,power8-lpc") ||
237 of_get_property(isa_brg
, "ranges", NULL
)) {
238 taddr
= of_translate_address(np
, reg
);
239 if (taddr
== OF_BAD_ADDR
)
244 /* Add port, irq will be dealt with later */
245 return add_legacy_port(np
, index
, UPIO_PORT
, be32_to_cpu(reg
[1]),
246 taddr
, 0, legacy_port_flags
, 0);
251 static int __init
add_legacy_pci_port(struct device_node
*np
,
252 struct device_node
*pci_dev
)
257 int iotype
, index
= -1, lindex
= 0;
259 DBG(" -> add_legacy_pci_port(%pOF)\n", np
);
261 /* We only support ports that have a clock frequency properly
262 * encoded in the device-tree (that is have an fcode). Anything
263 * else can't be used that early and will be normally probed by
264 * the generic 8250_pci driver later on. The reason is that 8250
265 * compatible UARTs on PCI need all sort of quirks (port offsets
266 * etc...) that this code doesn't know about
268 if (of_get_property(np
, "clock-frequency", NULL
) == NULL
)
271 /* Get the PCI address. Assume BAR 0 */
272 addrp
= of_get_pci_address(pci_dev
, 0, NULL
, &flags
);
276 /* We only support BAR 0 for now */
277 iotype
= (flags
& IORESOURCE_MEM
) ? UPIO_MEM
: UPIO_PORT
;
278 addr
= of_translate_address(pci_dev
, addrp
);
279 if (addr
== OF_BAD_ADDR
)
282 /* Set the IO base to the same as the translated address for MMIO,
283 * or to the domain local IO base for PIO (it will be fixed up later)
285 if (iotype
== UPIO_MEM
)
288 base
= of_read_number(&addrp
[2], 1);
290 /* Try to guess an index... If we have subdevices of the pci dev,
291 * we get to their "reg" property
294 const __be32
*reg
= of_get_property(np
, "reg", NULL
);
295 if (reg
&& (be32_to_cpup(reg
) < 4))
296 index
= lindex
= be32_to_cpup(reg
);
299 /* Local index means it's the Nth port in the PCI chip. Unfortunately
300 * the offset to add here is device specific. We know about those
301 * EXAR ports and we default to the most common case. If your UART
302 * doesn't work for these settings, you'll have to add your own special
305 if (of_device_is_compatible(pci_dev
, "pci13a8,152") ||
306 of_device_is_compatible(pci_dev
, "pci13a8,154") ||
307 of_device_is_compatible(pci_dev
, "pci13a8,158")) {
308 addr
+= 0x200 * lindex
;
309 base
+= 0x200 * lindex
;
315 /* Add port, irq will be dealt with later. We passed a translated
316 * IO port value. It will be fixed up later along with the irq
318 return add_legacy_port(np
, index
, iotype
, base
, addr
, 0,
319 legacy_port_flags
, np
!= pci_dev
);
323 static void __init
setup_legacy_serial_console(int console
)
325 struct legacy_serial_info
*info
= &legacy_serial_infos
[console
];
326 struct plat_serial8250_port
*port
= &legacy_serial_ports
[console
];
330 stride
= 1 << port
->regshift
;
332 /* Check if a translated MMIO address has been found */
334 addr
= ioremap(info
->taddr
, 0x1000);
337 udbg_uart_init_mmio(addr
, stride
);
339 /* Check if it's PIO and we support untranslated PIO */
340 if (port
->iotype
== UPIO_PORT
&& isa_io_special
)
341 udbg_uart_init_pio(port
->iobase
, stride
);
346 /* Try to query the current speed */
347 if (info
->speed
== 0)
348 info
->speed
= udbg_probe_uart_speed(info
->clock
);
351 DBG("default console speed = %d\n", info
->speed
);
352 udbg_uart_setup(info
->speed
, info
->clock
);
356 * This is called very early, as part of setup_system() or eventually
357 * setup_arch(), basically before anything else in this file. This function
358 * will try to build a list of all the available 8250-compatible serial ports
359 * in the machine using the Open Firmware device-tree. It currently only deals
360 * with ISA and PCI busses but could be extended. It allows a very early boot
361 * console to be initialized, that list is also used later to provide 8250 with
362 * the machine non-PCI ports and to properly pick the default console port
364 void __init
find_legacy_serial_ports(void)
366 struct device_node
*np
, *stdout
= NULL
;
370 DBG(" -> find_legacy_serial_port()\n");
372 /* Now find out if one of these is out firmware console */
373 path
= of_get_property(of_chosen
, "linux,stdout-path", NULL
);
375 stdout
= of_find_node_by_path(path
);
377 DBG("stdout is %pOF\n", stdout
);
379 DBG(" no linux,stdout-path !\n");
382 /* Iterate over all the 16550 ports, looking for known parents */
383 for_each_compatible_node(np
, "serial", "ns16550") {
384 struct device_node
*parent
= of_get_parent(np
);
387 if (of_match_node(legacy_serial_parents
, parent
) != NULL
) {
388 if (of_device_is_available(np
)) {
389 index
= add_legacy_soc_port(np
, np
);
390 if (index
>= 0 && np
== stdout
)
391 legacy_serial_console
= index
;
397 /* Next, fill our array with ISA ports */
398 for_each_node_by_type(np
, "serial") {
399 struct device_node
*isa
= of_get_parent(np
);
400 if (isa
&& (!strcmp(isa
->name
, "isa") ||
401 !strcmp(isa
->name
, "lpc"))) {
402 if (of_device_is_available(np
)) {
403 index
= add_legacy_isa_port(np
, isa
);
404 if (index
>= 0 && np
== stdout
)
405 legacy_serial_console
= index
;
412 /* Next, try to locate PCI ports */
413 for (np
= NULL
; (np
= of_find_all_nodes(np
));) {
414 struct device_node
*pci
, *parent
= of_get_parent(np
);
415 if (parent
&& !strcmp(parent
->name
, "isa")) {
419 if (strcmp(np
->name
, "serial") && strcmp(np
->type
, "serial")) {
423 /* Check for known pciclass, and also check whether we have
424 * a device with child nodes for ports or not
426 if (of_device_is_compatible(np
, "pciclass,0700") ||
427 of_device_is_compatible(np
, "pciclass,070002"))
429 else if (of_device_is_compatible(parent
, "pciclass,0700") ||
430 of_device_is_compatible(parent
, "pciclass,070002"))
436 index
= add_legacy_pci_port(np
, pci
);
437 if (index
>= 0 && np
== stdout
)
438 legacy_serial_console
= index
;
443 DBG("legacy_serial_console = %d\n", legacy_serial_console
);
444 if (legacy_serial_console
>= 0)
445 setup_legacy_serial_console(legacy_serial_console
);
446 DBG(" <- find_legacy_serial_port()\n");
449 static struct platform_device serial_device
= {
450 .name
= "serial8250",
451 .id
= PLAT8250_DEV_PLATFORM
,
453 .platform_data
= legacy_serial_ports
,
457 static void __init
fixup_port_irq(int index
,
458 struct device_node
*np
,
459 struct plat_serial8250_port
*port
)
463 DBG("fixup_port_irq(%d)\n", index
);
465 virq
= irq_of_parse_and_map(np
, 0);
466 if (!virq
&& legacy_serial_infos
[index
].irq_check_parent
) {
467 np
= of_get_parent(np
);
470 virq
= irq_of_parse_and_map(np
, 0);
478 #ifdef CONFIG_SERIAL_8250_FSL
479 if (of_device_is_compatible(np
, "fsl,ns16550"))
480 port
->handle_irq
= fsl8250_handle_irq
;
484 static void __init
fixup_port_pio(int index
,
485 struct device_node
*np
,
486 struct plat_serial8250_port
*port
)
489 struct pci_controller
*hose
;
491 DBG("fixup_port_pio(%d)\n", index
);
493 hose
= pci_find_hose_for_OF_device(np
);
495 unsigned long offset
= (unsigned long)hose
->io_base_virt
-
501 DBG("port %d, IO %lx -> %lx\n",
502 index
, port
->iobase
, port
->iobase
+ offset
);
503 port
->iobase
+= offset
;
508 static void __init
fixup_port_mmio(int index
,
509 struct device_node
*np
,
510 struct plat_serial8250_port
*port
)
512 DBG("fixup_port_mmio(%d)\n", index
);
514 port
->membase
= ioremap(port
->mapbase
, 0x100);
518 * This is called as an arch initcall, hopefully before the PCI bus is
519 * probed and/or the 8250 driver loaded since we need to register our
520 * platform devices before 8250 PCI ones are detected as some of them
521 * must properly "override" the platform ones.
523 * This function fixes up the interrupt value for platform ports as it
524 * couldn't be done earlier before interrupt maps have been parsed. It
525 * also "corrects" the IO address for PIO ports for the same reason,
526 * since earlier, the PHBs virtual IO space wasn't assigned yet. It then
527 * registers all those platform ports for use by the 8250 driver when it
530 static int __init
serial_dev_init(void)
534 if (legacy_serial_count
== 0)
538 * Before we register the platform serial devices, we need
539 * to fixup their interrupts and their IO ports.
541 DBG("Fixing serial ports interrupts and IO ports ...\n");
543 for (i
= 0; i
< legacy_serial_count
; i
++) {
544 struct plat_serial8250_port
*port
= &legacy_serial_ports
[i
];
545 struct device_node
*np
= legacy_serial_infos
[i
].np
;
548 fixup_port_irq(i
, np
, port
);
549 if (port
->iotype
== UPIO_PORT
)
550 fixup_port_pio(i
, np
, port
);
551 if ((port
->iotype
== UPIO_MEM
) || (port
->iotype
== UPIO_TSI
))
552 fixup_port_mmio(i
, np
, port
);
555 DBG("Registering platform serial ports\n");
557 return platform_device_register(&serial_device
);
559 device_initcall(serial_dev_init
);
562 #ifdef CONFIG_SERIAL_8250_CONSOLE
564 * This is called very early, as part of console_init() (typically just after
565 * time_init()). This function is respondible for trying to find a good
566 * default console on serial ports. It tries to match the open firmware
567 * default output with one of the available serial console drivers that have
568 * been probed earlier by find_legacy_serial_ports()
570 static int __init
check_legacy_serial_console(void)
572 struct device_node
*prom_stdout
= NULL
;
573 int i
, speed
= 0, offset
= 0;
577 DBG(" -> check_legacy_serial_console()\n");
579 /* The user has requested a console so this is already set up. */
580 if (strstr(boot_command_line
, "console=")) {
581 DBG(" console was specified !\n");
586 DBG(" of_chosen is NULL !\n");
590 if (legacy_serial_console
< 0) {
591 DBG(" legacy_serial_console not found !\n");
594 /* We are getting a weird phandle from OF ... */
595 /* ... So use the full path instead */
596 name
= of_get_property(of_chosen
, "linux,stdout-path", NULL
);
598 DBG(" no linux,stdout-path !\n");
601 prom_stdout
= of_find_node_by_path(name
);
603 DBG(" can't find stdout package %s !\n", name
);
606 DBG("stdout is %pOF\n", prom_stdout
);
608 name
= of_get_property(prom_stdout
, "name", NULL
);
610 DBG(" stdout package has no name !\n");
613 spd
= of_get_property(prom_stdout
, "current-speed", NULL
);
615 speed
= be32_to_cpup(spd
);
617 if (strcmp(name
, "serial") != 0)
620 /* Look for it in probed array */
621 for (i
= 0; i
< legacy_serial_count
; i
++) {
622 if (prom_stdout
!= legacy_serial_infos
[i
].np
)
625 speed
= legacy_serial_infos
[i
].speed
;
628 if (i
>= legacy_serial_count
)
631 of_node_put(prom_stdout
);
633 DBG("Found serial console at ttyS%d\n", offset
);
636 static char __initdata opt
[16];
637 sprintf(opt
, "%d", speed
);
638 return add_preferred_console("ttyS", offset
, opt
);
640 return add_preferred_console("ttyS", offset
, NULL
);
643 DBG("No preferred console found !\n");
644 of_node_put(prom_stdout
);
647 console_initcall(check_legacy_serial_console
);
649 #endif /* CONFIG_SERIAL_8250_CONSOLE */