blob: fcef68836979753b7900f46ae5de6bd96d9f03c3 [file] [log] [blame]
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2007 Aurelien Jarno <aurelien@aurel32.net>
7 */
8
9#include <linux/module.h>
10#include <linux/init.h>
11#include <linux/serial.h>
12#include <linux/serial_8250.h>
13#include <linux/ssb/ssb.h>
14#include <bcm47xx.h>
15
16static struct plat_serial8250_port uart8250_data[5];
17
18static struct platform_device uart8250_device = {
19 .name = "serial8250",
20 .id = PLAT8250_DEV_PLATFORM,
21 .dev = {
22 .platform_data = uart8250_data,
23 },
24};
25
Hauke Mehrtensa656ffc2011-07-23 01:20:13 +020026#ifdef CONFIG_BCM47XX_SSB
Hauke Mehrtens08ccf5722011-07-23 01:20:12 +020027static int __init uart8250_init_ssb(void)
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +020028{
29 int i;
Hauke Mehrtens08ccf5722011-07-23 01:20:12 +020030 struct ssb_mipscore *mcore = &(bcm47xx_bus.ssb.mipscore);
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +020031
32 memset(&uart8250_data, 0, sizeof(uart8250_data));
33
34 for (i = 0; i < mcore->nr_serial_ports; i++) {
35 struct plat_serial8250_port *p = &(uart8250_data[i]);
36 struct ssb_serial_port *ssb_port = &(mcore->serial_ports[i]);
37
38 p->mapbase = (unsigned int) ssb_port->regs;
39 p->membase = (void *) ssb_port->regs;
40 p->irq = ssb_port->irq + 2;
41 p->uartclk = ssb_port->baud_base;
42 p->regshift = ssb_port->reg_shift;
43 p->iotype = UPIO_MEM;
44 p->flags = UPF_BOOT_AUTOCONF | UPF_SHARE_IRQ;
45 }
46 return platform_device_register(&uart8250_device);
47}
Hauke Mehrtensa656ffc2011-07-23 01:20:13 +020048#endif
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +020049
Hauke Mehrtens08ccf5722011-07-23 01:20:12 +020050static int __init uart8250_init(void)
51{
52 switch (bcm47xx_bus_type) {
Hauke Mehrtensa656ffc2011-07-23 01:20:13 +020053#ifdef CONFIG_BCM47XX_SSB
Hauke Mehrtens08ccf5722011-07-23 01:20:12 +020054 case BCM47XX_BUS_TYPE_SSB:
55 return uart8250_init_ssb();
Hauke Mehrtensa656ffc2011-07-23 01:20:13 +020056#endif
Hauke Mehrtens08ccf5722011-07-23 01:20:12 +020057 }
58 return -EINVAL;
59}
60
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +020061module_init(uart8250_init);
62
63MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
64MODULE_LICENSE("GPL");
65MODULE_DESCRIPTION("8250 UART probe driver for the BCM47XX platforms");