blob: 53ee6f1f018d114fd08a29276df10192f8bd0b68 [file] [log] [blame]
Steven J. Hill30700332012-05-30 21:02:49 +00001/*
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) 2012 MIPS Technologies, Inc. All rights reserved.
7 */
8#include <linux/module.h>
9#include <linux/init.h>
Andrew Bresticker4060bbe2014-10-20 12:03:53 -070010#include <linux/irqchip/mips-gic.h>
Steven J. Hill30700332012-05-30 21:02:49 +000011#include <linux/serial_8250.h>
12
Andrew Bresticker18743d22014-09-18 14:47:24 -070013#include <asm/mips-boards/sead3int.h>
14
15#define UART(base) \
Steven J. Hill30700332012-05-30 21:02:49 +000016{ \
17 .mapbase = base, \
Andrew Bresticker18743d22014-09-18 14:47:24 -070018 .irq = -1, \
Steven J. Hill30700332012-05-30 21:02:49 +000019 .uartclk = 14745600, \
20 .iotype = UPIO_MEM32, \
21 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, \
22 .regshift = 2, \
23}
24
25static struct plat_serial8250_port uart8250_data[] = {
Andrew Bresticker18743d22014-09-18 14:47:24 -070026 UART(0x1f000900), /* ttyS0 = USB */
27 UART(0x1f000800), /* ttyS1 = RS232 */
Steven J. Hill30700332012-05-30 21:02:49 +000028 { },
29};
30
31static struct platform_device uart8250_device = {
32 .name = "serial8250",
33 .id = PLAT8250_DEV_PLATFORM2,
34 .dev = {
35 .platform_data = uart8250_data,
36 },
37};
38
39static int __init uart8250_init(void)
40{
Andrew Bresticker18743d22014-09-18 14:47:24 -070041 if (gic_present) {
42 uart8250_data[0].irq = MIPS_GIC_IRQ_BASE + GIC_INT_UART0;
43 uart8250_data[1].irq = MIPS_GIC_IRQ_BASE + GIC_INT_UART1;
44 } else {
45 uart8250_data[0].irq = MIPS_CPU_IRQ_BASE + CPU_INT_UART0;
46 uart8250_data[1].irq = MIPS_CPU_IRQ_BASE + CPU_INT_UART1;
47 }
Steven J. Hill30700332012-05-30 21:02:49 +000048 return platform_device_register(&uart8250_device);
49}
50
51module_init(uart8250_init);
52
53MODULE_AUTHOR("Chris Dearman <chris@mips.com>");
54MODULE_LICENSE("GPL");
55MODULE_DESCRIPTION("8250 UART probe driver for SEAD3");