powerpc/legacy_serial: Bail if reg-offset/shift properties are present
[linux-2.6/verdex.git] / arch / powerpc / kernel / legacy_serial.c
blobcf37f5ca4b71e6b30c2a3d7bb46fb17f8bf66f50
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>
6 #include <linux/pci.h>
7 #include <linux/of_device.h>
8 #include <asm/io.h>
9 #include <asm/mmu.h>
10 #include <asm/prom.h>
11 #include <asm/serial.h>
12 #include <asm/udbg.h>
13 #include <asm/pci-bridge.h>
14 #include <asm/ppc-pci.h>
16 #undef DEBUG
18 #ifdef DEBUG
19 #define DBG(fmt...) do { printk(fmt); } while(0)
20 #else
21 #define DBG(fmt...) do { } while(0)
22 #endif
24 #define MAX_LEGACY_SERIAL_PORTS 8
26 static struct plat_serial8250_port
27 legacy_serial_ports[MAX_LEGACY_SERIAL_PORTS+1];
28 static struct legacy_serial_info {
29 struct device_node *np;
30 unsigned int speed;
31 unsigned int clock;
32 int irq_check_parent;
33 phys_addr_t taddr;
34 } legacy_serial_infos[MAX_LEGACY_SERIAL_PORTS];
36 static struct __initdata of_device_id parents[] = {
37 {.type = "soc",},
38 {.type = "tsi-bridge",},
39 {.type = "opb", },
40 {.compatible = "ibm,opb",},
41 {.compatible = "simple-bus",},
42 {.compatible = "wrs,epld-localbus",},
45 static unsigned int legacy_serial_count;
46 static int legacy_serial_console = -1;
48 static int __init add_legacy_port(struct device_node *np, int want_index,
49 int iotype, phys_addr_t base,
50 phys_addr_t taddr, unsigned long irq,
51 upf_t flags, int irq_check_parent)
53 const u32 *clk, *spd;
54 u32 clock = BASE_BAUD * 16;
55 int index;
57 /* get clock freq. if present */
58 clk = of_get_property(np, "clock-frequency", NULL);
59 if (clk && *clk)
60 clock = *clk;
62 /* get default speed if present */
63 spd = of_get_property(np, "current-speed", NULL);
65 /* If we have a location index, then try to use it */
66 if (want_index >= 0 && want_index < MAX_LEGACY_SERIAL_PORTS)
67 index = want_index;
68 else
69 index = legacy_serial_count;
71 /* if our index is still out of range, that mean that
72 * array is full, we could scan for a free slot but that
73 * make little sense to bother, just skip the port
75 if (index >= MAX_LEGACY_SERIAL_PORTS)
76 return -1;
77 if (index >= legacy_serial_count)
78 legacy_serial_count = index + 1;
80 /* Check if there is a port who already claimed our slot */
81 if (legacy_serial_infos[index].np != 0) {
82 /* if we still have some room, move it, else override */
83 if (legacy_serial_count < MAX_LEGACY_SERIAL_PORTS) {
84 printk(KERN_DEBUG "Moved legacy port %d -> %d\n",
85 index, legacy_serial_count);
86 legacy_serial_ports[legacy_serial_count] =
87 legacy_serial_ports[index];
88 legacy_serial_infos[legacy_serial_count] =
89 legacy_serial_infos[index];
90 legacy_serial_count++;
91 } else {
92 printk(KERN_DEBUG "Replacing legacy port %d\n", index);
96 /* Now fill the entry */
97 memset(&legacy_serial_ports[index], 0,
98 sizeof(struct plat_serial8250_port));
99 if (iotype == UPIO_PORT)
100 legacy_serial_ports[index].iobase = base;
101 else
102 legacy_serial_ports[index].mapbase = base;
103 legacy_serial_ports[index].iotype = iotype;
104 legacy_serial_ports[index].uartclk = clock;
105 legacy_serial_ports[index].irq = irq;
106 legacy_serial_ports[index].flags = flags;
107 legacy_serial_infos[index].taddr = taddr;
108 legacy_serial_infos[index].np = of_node_get(np);
109 legacy_serial_infos[index].clock = clock;
110 legacy_serial_infos[index].speed = spd ? *spd : 0;
111 legacy_serial_infos[index].irq_check_parent = irq_check_parent;
113 printk(KERN_DEBUG "Found legacy serial port %d for %s\n",
114 index, np->full_name);
115 printk(KERN_DEBUG " %s=%llx, taddr=%llx, irq=%lx, clk=%d, speed=%d\n",
116 (iotype == UPIO_PORT) ? "port" : "mem",
117 (unsigned long long)base, (unsigned long long)taddr, irq,
118 legacy_serial_ports[index].uartclk,
119 legacy_serial_infos[index].speed);
121 return index;
124 static int __init add_legacy_soc_port(struct device_node *np,
125 struct device_node *soc_dev)
127 u64 addr;
128 const u32 *addrp;
129 upf_t flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_SHARE_IRQ
130 | UPF_FIXED_PORT;
131 struct device_node *tsi = of_get_parent(np);
133 /* We only support ports that have a clock frequency properly
134 * encoded in the device-tree.
136 if (of_get_property(np, "clock-frequency", NULL) == NULL)
137 return -1;
139 /* if reg-shift or offset, don't try to use it */
140 if ((of_get_property(np, "reg-shift", NULL) != NULL) ||
141 (of_get_property(np, "reg-offset", NULL) != NULL))
142 return -1;
144 /* if rtas uses this device, don't try to use it as well */
145 if (of_get_property(np, "used-by-rtas", NULL) != NULL)
146 return -1;
148 /* Get the address */
149 addrp = of_get_address(soc_dev, 0, NULL, NULL);
150 if (addrp == NULL)
151 return -1;
153 addr = of_translate_address(soc_dev, addrp);
154 if (addr == OF_BAD_ADDR)
155 return -1;
157 /* Add port, irq will be dealt with later. We passed a translated
158 * IO port value. It will be fixed up later along with the irq
160 if (tsi && !strcmp(tsi->type, "tsi-bridge"))
161 return add_legacy_port(np, -1, UPIO_TSI, addr, addr, NO_IRQ, flags, 0);
162 else
163 return add_legacy_port(np, -1, UPIO_MEM, addr, addr, NO_IRQ, flags, 0);
166 static int __init add_legacy_isa_port(struct device_node *np,
167 struct device_node *isa_brg)
169 const u32 *reg;
170 const char *typep;
171 int index = -1;
172 u64 taddr;
174 DBG(" -> add_legacy_isa_port(%s)\n", np->full_name);
176 /* Get the ISA port number */
177 reg = of_get_property(np, "reg", NULL);
178 if (reg == NULL)
179 return -1;
181 /* Verify it's an IO port, we don't support anything else */
182 if (!(reg[0] & 0x00000001))
183 return -1;
185 /* Now look for an "ibm,aix-loc" property that gives us ordering
186 * if any...
188 typep = of_get_property(np, "ibm,aix-loc", NULL);
190 /* If we have a location index, then use it */
191 if (typep && *typep == 'S')
192 index = simple_strtol(typep+1, NULL, 0) - 1;
194 /* Translate ISA address. If it fails, we still register the port
195 * with no translated address so that it can be picked up as an IO
196 * port later by the serial driver
198 taddr = of_translate_address(np, reg);
199 if (taddr == OF_BAD_ADDR)
200 taddr = 0;
202 /* Add port, irq will be dealt with later */
203 return add_legacy_port(np, index, UPIO_PORT, reg[1], taddr,
204 NO_IRQ, UPF_BOOT_AUTOCONF, 0);
208 #ifdef CONFIG_PCI
209 static int __init add_legacy_pci_port(struct device_node *np,
210 struct device_node *pci_dev)
212 u64 addr, base;
213 const u32 *addrp;
214 unsigned int flags;
215 int iotype, index = -1, lindex = 0;
217 DBG(" -> add_legacy_pci_port(%s)\n", np->full_name);
219 /* We only support ports that have a clock frequency properly
220 * encoded in the device-tree (that is have an fcode). Anything
221 * else can't be used that early and will be normally probed by
222 * the generic 8250_pci driver later on. The reason is that 8250
223 * compatible UARTs on PCI need all sort of quirks (port offsets
224 * etc...) that this code doesn't know about
226 if (of_get_property(np, "clock-frequency", NULL) == NULL)
227 return -1;
229 /* Get the PCI address. Assume BAR 0 */
230 addrp = of_get_pci_address(pci_dev, 0, NULL, &flags);
231 if (addrp == NULL)
232 return -1;
234 /* We only support BAR 0 for now */
235 iotype = (flags & IORESOURCE_MEM) ? UPIO_MEM : UPIO_PORT;
236 addr = of_translate_address(pci_dev, addrp);
237 if (addr == OF_BAD_ADDR)
238 return -1;
240 /* Set the IO base to the same as the translated address for MMIO,
241 * or to the domain local IO base for PIO (it will be fixed up later)
243 if (iotype == UPIO_MEM)
244 base = addr;
245 else
246 base = addrp[2];
248 /* Try to guess an index... If we have subdevices of the pci dev,
249 * we get to their "reg" property
251 if (np != pci_dev) {
252 const u32 *reg = of_get_property(np, "reg", NULL);
253 if (reg && (*reg < 4))
254 index = lindex = *reg;
257 /* Local index means it's the Nth port in the PCI chip. Unfortunately
258 * the offset to add here is device specific. We know about those
259 * EXAR ports and we default to the most common case. If your UART
260 * doesn't work for these settings, you'll have to add your own special
261 * cases here
263 if (of_device_is_compatible(pci_dev, "pci13a8,152") ||
264 of_device_is_compatible(pci_dev, "pci13a8,154") ||
265 of_device_is_compatible(pci_dev, "pci13a8,158")) {
266 addr += 0x200 * lindex;
267 base += 0x200 * lindex;
268 } else {
269 addr += 8 * lindex;
270 base += 8 * lindex;
273 /* Add port, irq will be dealt with later. We passed a translated
274 * IO port value. It will be fixed up later along with the irq
276 return add_legacy_port(np, index, iotype, base, addr, NO_IRQ,
277 UPF_BOOT_AUTOCONF, np != pci_dev);
279 #endif
281 static void __init setup_legacy_serial_console(int console)
283 struct legacy_serial_info *info =
284 &legacy_serial_infos[console];
285 void __iomem *addr;
287 if (info->taddr == 0)
288 return;
289 addr = ioremap(info->taddr, 0x1000);
290 if (addr == NULL)
291 return;
292 if (info->speed == 0)
293 info->speed = udbg_probe_uart_speed(addr, info->clock);
294 DBG("default console speed = %d\n", info->speed);
295 udbg_init_uart(addr, info->speed, info->clock);
299 * This is called very early, as part of setup_system() or eventually
300 * setup_arch(), basically before anything else in this file. This function
301 * will try to build a list of all the available 8250-compatible serial ports
302 * in the machine using the Open Firmware device-tree. It currently only deals
303 * with ISA and PCI busses but could be extended. It allows a very early boot
304 * console to be initialized, that list is also used later to provide 8250 with
305 * the machine non-PCI ports and to properly pick the default console port
307 void __init find_legacy_serial_ports(void)
309 struct device_node *np, *stdout = NULL;
310 const char *path;
311 int index;
313 DBG(" -> find_legacy_serial_port()\n");
315 /* Now find out if one of these is out firmware console */
316 path = of_get_property(of_chosen, "linux,stdout-path", NULL);
317 if (path != NULL) {
318 stdout = of_find_node_by_path(path);
319 if (stdout)
320 DBG("stdout is %s\n", stdout->full_name);
321 } else {
322 DBG(" no linux,stdout-path !\n");
325 /* Iterate over all the 16550 ports, looking for known parents */
326 for_each_compatible_node(np, "serial", "ns16550") {
327 struct device_node *parent = of_get_parent(np);
328 if (!parent)
329 continue;
330 if (of_match_node(parents, parent) != NULL) {
331 index = add_legacy_soc_port(np, np);
332 if (index >= 0 && np == stdout)
333 legacy_serial_console = index;
335 of_node_put(parent);
338 /* Next, fill our array with ISA ports */
339 for_each_node_by_type(np, "serial") {
340 struct device_node *isa = of_get_parent(np);
341 if (isa && !strcmp(isa->name, "isa")) {
342 index = add_legacy_isa_port(np, isa);
343 if (index >= 0 && np == stdout)
344 legacy_serial_console = index;
346 of_node_put(isa);
349 #ifdef CONFIG_PCI
350 /* Next, try to locate PCI ports */
351 for (np = NULL; (np = of_find_all_nodes(np));) {
352 struct device_node *pci, *parent = of_get_parent(np);
353 if (parent && !strcmp(parent->name, "isa")) {
354 of_node_put(parent);
355 continue;
357 if (strcmp(np->name, "serial") && strcmp(np->type, "serial")) {
358 of_node_put(parent);
359 continue;
361 /* Check for known pciclass, and also check wether we have
362 * a device with child nodes for ports or not
364 if (of_device_is_compatible(np, "pciclass,0700") ||
365 of_device_is_compatible(np, "pciclass,070002"))
366 pci = np;
367 else if (of_device_is_compatible(parent, "pciclass,0700") ||
368 of_device_is_compatible(parent, "pciclass,070002"))
369 pci = parent;
370 else {
371 of_node_put(parent);
372 continue;
374 index = add_legacy_pci_port(np, pci);
375 if (index >= 0 && np == stdout)
376 legacy_serial_console = index;
377 of_node_put(parent);
379 #endif
381 DBG("legacy_serial_console = %d\n", legacy_serial_console);
382 if (legacy_serial_console >= 0)
383 setup_legacy_serial_console(legacy_serial_console);
384 DBG(" <- find_legacy_serial_port()\n");
387 static struct platform_device serial_device = {
388 .name = "serial8250",
389 .id = PLAT8250_DEV_PLATFORM,
390 .dev = {
391 .platform_data = legacy_serial_ports,
395 static void __init fixup_port_irq(int index,
396 struct device_node *np,
397 struct plat_serial8250_port *port)
399 unsigned int virq;
401 DBG("fixup_port_irq(%d)\n", index);
403 virq = irq_of_parse_and_map(np, 0);
404 if (virq == NO_IRQ && legacy_serial_infos[index].irq_check_parent) {
405 np = of_get_parent(np);
406 if (np == NULL)
407 return;
408 virq = irq_of_parse_and_map(np, 0);
409 of_node_put(np);
411 if (virq == NO_IRQ)
412 return;
414 port->irq = virq;
417 static void __init fixup_port_pio(int index,
418 struct device_node *np,
419 struct plat_serial8250_port *port)
421 #ifdef CONFIG_PCI
422 struct pci_controller *hose;
424 DBG("fixup_port_pio(%d)\n", index);
426 hose = pci_find_hose_for_OF_device(np);
427 if (hose) {
428 unsigned long offset = (unsigned long)hose->io_base_virt -
429 #ifdef CONFIG_PPC64
430 pci_io_base;
431 #else
432 isa_io_base;
433 #endif
434 DBG("port %d, IO %lx -> %lx\n",
435 index, port->iobase, port->iobase + offset);
436 port->iobase += offset;
438 #endif
441 static void __init fixup_port_mmio(int index,
442 struct device_node *np,
443 struct plat_serial8250_port *port)
445 DBG("fixup_port_mmio(%d)\n", index);
447 port->membase = ioremap(port->mapbase, 0x100);
451 * This is called as an arch initcall, hopefully before the PCI bus is
452 * probed and/or the 8250 driver loaded since we need to register our
453 * platform devices before 8250 PCI ones are detected as some of them
454 * must properly "override" the platform ones.
456 * This function fixes up the interrupt value for platform ports as it
457 * couldn't be done earlier before interrupt maps have been parsed. It
458 * also "corrects" the IO address for PIO ports for the same reason,
459 * since earlier, the PHBs virtual IO space wasn't assigned yet. It then
460 * registers all those platform ports for use by the 8250 driver when it
461 * finally loads.
463 static int __init serial_dev_init(void)
465 int i;
467 if (legacy_serial_count == 0)
468 return -ENODEV;
471 * Before we register the platfrom serial devices, we need
472 * to fixup their interrupts and their IO ports.
474 DBG("Fixing serial ports interrupts and IO ports ...\n");
476 for (i = 0; i < legacy_serial_count; i++) {
477 struct plat_serial8250_port *port = &legacy_serial_ports[i];
478 struct device_node *np = legacy_serial_infos[i].np;
480 if (port->irq == NO_IRQ)
481 fixup_port_irq(i, np, port);
482 if (port->iotype == UPIO_PORT)
483 fixup_port_pio(i, np, port);
484 if ((port->iotype == UPIO_MEM) || (port->iotype == UPIO_TSI))
485 fixup_port_mmio(i, np, port);
488 DBG("Registering platform serial ports\n");
490 return platform_device_register(&serial_device);
492 device_initcall(serial_dev_init);
496 * This is called very early, as part of console_init() (typically just after
497 * time_init()). This function is respondible for trying to find a good
498 * default console on serial ports. It tries to match the open firmware
499 * default output with one of the available serial console drivers, either
500 * one of the platform serial ports that have been probed earlier by
501 * find_legacy_serial_ports() or some more platform specific ones.
503 static int __init check_legacy_serial_console(void)
505 struct device_node *prom_stdout = NULL;
506 int speed = 0, offset = 0;
507 const char *name;
508 const u32 *spd;
510 DBG(" -> check_legacy_serial_console()\n");
512 /* The user has requested a console so this is already set up. */
513 if (strstr(boot_command_line, "console=")) {
514 DBG(" console was specified !\n");
515 return -EBUSY;
518 if (!of_chosen) {
519 DBG(" of_chosen is NULL !\n");
520 return -ENODEV;
523 if (legacy_serial_console < 0) {
524 DBG(" legacy_serial_console not found !\n");
525 return -ENODEV;
527 /* We are getting a weird phandle from OF ... */
528 /* ... So use the full path instead */
529 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
530 if (name == NULL) {
531 DBG(" no linux,stdout-path !\n");
532 return -ENODEV;
534 prom_stdout = of_find_node_by_path(name);
535 if (!prom_stdout) {
536 DBG(" can't find stdout package %s !\n", name);
537 return -ENODEV;
539 DBG("stdout is %s\n", prom_stdout->full_name);
541 name = of_get_property(prom_stdout, "name", NULL);
542 if (!name) {
543 DBG(" stdout package has no name !\n");
544 goto not_found;
546 spd = of_get_property(prom_stdout, "current-speed", NULL);
547 if (spd)
548 speed = *spd;
550 if (0)
552 #ifdef CONFIG_SERIAL_8250_CONSOLE
553 else if (strcmp(name, "serial") == 0) {
554 int i;
555 /* Look for it in probed array */
556 for (i = 0; i < legacy_serial_count; i++) {
557 if (prom_stdout != legacy_serial_infos[i].np)
558 continue;
559 offset = i;
560 speed = legacy_serial_infos[i].speed;
561 break;
563 if (i >= legacy_serial_count)
564 goto not_found;
566 #endif /* CONFIG_SERIAL_8250_CONSOLE */
567 #ifdef CONFIG_SERIAL_PMACZILOG_CONSOLE
568 else if (strcmp(name, "ch-a") == 0)
569 offset = 0;
570 else if (strcmp(name, "ch-b") == 0)
571 offset = 1;
572 #endif /* CONFIG_SERIAL_PMACZILOG_CONSOLE */
573 else
574 goto not_found;
575 of_node_put(prom_stdout);
577 DBG("Found serial console at ttyS%d\n", offset);
579 if (speed) {
580 static char __initdata opt[16];
581 sprintf(opt, "%d", speed);
582 return add_preferred_console("ttyS", offset, opt);
583 } else
584 return add_preferred_console("ttyS", offset, NULL);
586 not_found:
587 DBG("No preferred console found !\n");
588 of_node_put(prom_stdout);
589 return -ENODEV;
591 console_initcall(check_legacy_serial_console);