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
6 * Copyright (C) 2006, 07 MIPS Technologies, Inc.
7 * written by Ralf Baechle (ralf@linux-mips.org)
8 * written by Ralf Baechle <ralf@linux-mips.org>
10 * Copyright (C) 2008 Wind River Systems, Inc.
11 * updated by Tiejun Chen <tiejun.chen@windriver.com>
13 * 1. Probe driver for the Malta's UART ports:
15 * o 2 ports in the SMC SuperIO
16 * o 1 port in the CBUS UART, a discrete 16550 which normally is only used
19 * We don't use 8250_platform.c on Malta as it would result in the CBUS
20 * UART becoming ttyS0.
22 * 2. Register RTC-CMOS platform device on Malta.
24 #include <linux/init.h>
25 #include <linux/serial_8250.h>
26 #include <linux/mc146818rtc.h>
27 #include <linux/module.h>
28 #include <linux/mtd/partitions.h>
29 #include <linux/mtd/physmap.h>
30 #include <linux/platform_device.h>
31 #include <mtd/mtd-abi.h>
33 #define SMC_PORT(base, int) \
38 .iotype = UPIO_PORT, \
39 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, \
43 #define CBUS_UART_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP)
45 static struct plat_serial8250_port uart8250_data[] = {
49 .mapbase = 0x1f000900, /* The CBUS UART */
50 .irq = MIPS_CPU_IRQ_BASE + 2,
51 .uartclk = 3686400, /* Twice the usual clk! */
53 .flags = CBUS_UART_FLAGS,
59 static struct platform_device malta_uart8250_device = {
61 .id = PLAT8250_DEV_PLATFORM,
63 .platform_data = uart8250_data,
67 struct resource malta_rtc_resources[] = {
71 .flags = IORESOURCE_IO,
75 .flags = IORESOURCE_IRQ,
79 static struct platform_device malta_rtc_device = {
82 .resource = malta_rtc_resources,
83 .num_resources = ARRAY_SIZE(malta_rtc_resources),
86 static struct mtd_partition malta_mtd_partitions[] = {
91 .mask_flags = MTD_WRITEABLE
97 .name = "Board Config",
100 .mask_flags = MTD_WRITEABLE
104 static struct physmap_flash_data malta_flash_data = {
106 .nr_parts = ARRAY_SIZE(malta_mtd_partitions),
107 .parts = malta_mtd_partitions
110 static struct resource malta_flash_resource = {
113 .flags = IORESOURCE_MEM
116 static struct platform_device malta_flash_device = {
117 .name = "physmap-flash",
120 .platform_data = &malta_flash_data,
123 .resource = &malta_flash_resource,
126 static struct platform_device *malta_devices[] __initdata = {
127 &malta_uart8250_device,
132 static int __init malta_add_devices(void)
136 err = platform_add_devices(malta_devices, ARRAY_SIZE(malta_devices));
141 * Set RTC to BCD mode to support current alarm code.
143 CMOS_WRITE(CMOS_READ(RTC_CONTROL) & ~RTC_DM_BINARY, RTC_CONTROL);
148 device_initcall(malta_add_devices);