9d4436a6fb
This implements initial support for the SH7206 (SH-2A) and SH7619 (SH-2) MMU-less CPUs. Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
/*
|
|
* SH7206 Setup
|
|
*
|
|
* Copyright (C) 2006 Yoshinori Sato
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
#include <linux/platform_device.h>
|
|
#include <linux/init.h>
|
|
#include <linux/serial.h>
|
|
#include <asm/sci.h>
|
|
|
|
static struct plat_sci_port sci_platform_data[] = {
|
|
{
|
|
.mapbase = 0xfffe8000,
|
|
.flags = UPF_BOOT_AUTOCONF,
|
|
.type = PORT_SCIF,
|
|
.irqs = { 240, 241, 242, 243},
|
|
}, {
|
|
.mapbase = 0xfffe8800,
|
|
.flags = UPF_BOOT_AUTOCONF,
|
|
.type = PORT_SCIF,
|
|
.irqs = { 244, 245, 246, 247},
|
|
}, {
|
|
.mapbase = 0xfffe9000,
|
|
.flags = UPF_BOOT_AUTOCONF,
|
|
.type = PORT_SCIF,
|
|
.irqs = { 248, 249, 250, 251},
|
|
}, {
|
|
.mapbase = 0xfffe9800,
|
|
.flags = UPF_BOOT_AUTOCONF,
|
|
.type = PORT_SCIF,
|
|
.irqs = { 252, 253, 254, 255},
|
|
}, {
|
|
.flags = 0,
|
|
}
|
|
};
|
|
|
|
static struct platform_device sci_device = {
|
|
.name = "sh-sci",
|
|
.id = -1,
|
|
.dev = {
|
|
.platform_data = sci_platform_data,
|
|
},
|
|
};
|
|
|
|
static struct platform_device *sh7206_devices[] __initdata = {
|
|
&sci_device,
|
|
};
|
|
|
|
static int __init sh7206_devices_setup(void)
|
|
{
|
|
return platform_add_devices(sh7206_devices,
|
|
ARRAY_SIZE(sh7206_devices));
|
|
}
|
|
__initcall(sh7206_devices_setup);
|