blob: 516e1233d771cb3cd87cde8e73ef6f4d296e861b [file] [log] [blame]
Ralf Baechlee7c47822007-07-10 17:33:01 +01001/*
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 *
Ralf Baechle566a3b92008-12-01 08:16:08 +00006 * Copyright (C) 2006, 07 MIPS Technologies, Inc.
Ralf Baechlee7c47822007-07-10 17:33:01 +01007 * written by Ralf Baechle (ralf@linux-mips.org)
Ralf Baechle566a3b92008-12-01 08:16:08 +00008 * written by Ralf Baechle <ralf@linux-mips.org>
Ralf Baechlee7c47822007-07-10 17:33:01 +01009 *
Tiejun Chen192cc7f2008-11-25 16:33:20 +080010 * Copyright (C) 2008 Wind River Systems, Inc.
11 * updated by Tiejun Chen <tiejun.chen@windriver.com>
12 *
13 * 1. Probe driver for the Malta's UART ports:
Ralf Baechlee7c47822007-07-10 17:33:01 +010014 *
15 * o 2 ports in the SMC SuperIO
16 * o 1 port in the CBUS UART, a discrete 16550 which normally is only used
17 * for bringups.
18 *
19 * We don't use 8250_platform.c on Malta as it would result in the CBUS
20 * UART becoming ttyS0.
Tiejun Chen192cc7f2008-11-25 16:33:20 +080021 *
22 * 2. Register RTC-CMOS platform device on Malta.
Ralf Baechlee7c47822007-07-10 17:33:01 +010023 */
Ralf Baechlee7c47822007-07-10 17:33:01 +010024#include <linux/init.h>
25#include <linux/serial_8250.h>
Ralf Baechle566a3b92008-12-01 08:16:08 +000026#include <linux/module.h>
David Howellsca4d3e672010-10-07 14:08:54 +010027#include <linux/irq.h>
Tiejun Chen192cc7f2008-11-25 16:33:20 +080028#include <linux/platform_device.h>
Ralf Baechle225ae5f2012-11-13 10:41:50 +010029#include <asm/mips-boards/maltaint.h>
Ralf Baechlee7c47822007-07-10 17:33:01 +010030
31#define SMC_PORT(base, int) \
32{ \
33 .iobase = base, \
34 .irq = int, \
35 .uartclk = 1843200, \
36 .iotype = UPIO_PORT, \
37 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, \
38 .regshift = 0, \
39}
40
41#define CBUS_UART_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP)
42
43static struct plat_serial8250_port uart8250_data[] = {
44 SMC_PORT(0x3F8, 4),
45 SMC_PORT(0x2F8, 3),
Leonid Yegoshinf6ba0612013-10-14 09:49:25 +010046#ifndef CONFIG_MIPS_CMP
Ralf Baechlee7c47822007-07-10 17:33:01 +010047 {
48 .mapbase = 0x1f000900, /* The CBUS UART */
Ralf Baechle225ae5f2012-11-13 10:41:50 +010049 .irq = MIPS_CPU_IRQ_BASE + MIPSCPU_INT_MB2,
Ralf Baechlee7c47822007-07-10 17:33:01 +010050 .uartclk = 3686400, /* Twice the usual clk! */
51 .iotype = UPIO_MEM32,
52 .flags = CBUS_UART_FLAGS,
53 .regshift = 3,
54 },
Leonid Yegoshinf6ba0612013-10-14 09:49:25 +010055#endif
Ralf Baechlee7c47822007-07-10 17:33:01 +010056 { },
57};
58
Tiejun Chen192cc7f2008-11-25 16:33:20 +080059static struct platform_device malta_uart8250_device = {
Ralf Baechlee7c47822007-07-10 17:33:01 +010060 .name = "serial8250",
Ralf Baechle566a3b92008-12-01 08:16:08 +000061 .id = PLAT8250_DEV_PLATFORM,
Ralf Baechlee7c47822007-07-10 17:33:01 +010062 .dev = {
63 .platform_data = uart8250_data,
64 },
65};
66
Tiejun Chen192cc7f2008-11-25 16:33:20 +080067static struct platform_device *malta_devices[] __initdata = {
68 &malta_uart8250_device,
Tiejun Chen192cc7f2008-11-25 16:33:20 +080069};
70
71static int __init malta_add_devices(void)
Ralf Baechlee7c47822007-07-10 17:33:01 +010072{
Masahiro Yamadadb194622016-09-15 00:31:01 +090073 return platform_add_devices(malta_devices, ARRAY_SIZE(malta_devices));
Ralf Baechlee7c47822007-07-10 17:33:01 +010074}
75
Tiejun Chen192cc7f2008-11-25 16:33:20 +080076device_initcall(malta_add_devices);