mirror of https://gitee.com/openkylin/linux.git
sh: Add setup code for various CPU subtypes.
This adds some simple setup code for most of the CPU subtypes, primarily simple platform device registration. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
237b98f61d
commit
7dec62e96b
|
@ -4,6 +4,14 @@
|
||||||
|
|
||||||
obj-y := ex.o probe.o
|
obj-y := ex.o probe.o
|
||||||
|
|
||||||
|
# CPU subtype setup
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7705) += setup-sh7705.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7707) += setup-sh7709.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7708) += setup-sh7708.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7709) += setup-sh7709.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7300) += setup-sh7300.o
|
||||||
|
|
||||||
|
# Primary on-chip clocks (common)
|
||||||
clock-$(CONFIG_CPU_SH3) := clock-sh3.o
|
clock-$(CONFIG_CPU_SH3) := clock-sh3.o
|
||||||
clock-$(CONFIG_CPU_SUBTYPE_SH7300) := clock-sh7300.o
|
clock-$(CONFIG_CPU_SUBTYPE_SH7300) := clock-sh7300.o
|
||||||
clock-$(CONFIG_CPU_SUBTYPE_SH7705) := clock-sh7705.o
|
clock-$(CONFIG_CPU_SUBTYPE_SH7705) := clock-sh7705.o
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
/*
|
||||||
|
* SH7300 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xa4430000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCI,
|
||||||
|
.irqs = { 80, 80, 80, 80 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh7300_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh7300_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh7300_devices,
|
||||||
|
ARRAY_SIZE(sh7300_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh7300_devices_setup);
|
|
@ -0,0 +1,48 @@
|
||||||
|
/*
|
||||||
|
* SH7705 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xa4400000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 52, 53, 55, 54 },
|
||||||
|
}, {
|
||||||
|
.mapbase = 0xa4410000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 56, 57, 59, 58 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh7705_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh7705_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh7705_devices,
|
||||||
|
ARRAY_SIZE(sh7705_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh7705_devices_setup);
|
|
@ -0,0 +1,43 @@
|
||||||
|
/*
|
||||||
|
* SH7708 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xfffffe80,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCI,
|
||||||
|
.irqs = { 23, 24, 25, 0 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh7708_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh7708_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh7708_devices,
|
||||||
|
ARRAY_SIZE(sh7708_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh7708_devices_setup);
|
|
@ -0,0 +1,53 @@
|
||||||
|
/*
|
||||||
|
* SH7707/SH7709 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xfffffe80,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCI,
|
||||||
|
.irqs = { 23, 24, 25, 0 },
|
||||||
|
}, {
|
||||||
|
.mapbase = 0xa4000150,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 56, 57, 59, 58 },
|
||||||
|
}, {
|
||||||
|
.mapbase = 0xa4000140,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_IRDA,
|
||||||
|
.irqs = { 52, 53, 55, 54 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh7709_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh7709_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh7709_devices,
|
||||||
|
ARRAY_SIZE(sh7709_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh7709_devices_setup);
|
|
@ -8,7 +8,13 @@ obj-$(CONFIG_SH_FPU) += fpu.o
|
||||||
obj-$(CONFIG_SH_STORE_QUEUES) += sq.o
|
obj-$(CONFIG_SH_STORE_QUEUES) += sq.o
|
||||||
|
|
||||||
# CPU subtype setup
|
# CPU subtype setup
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7750) += setup-sh7750.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7751) += setup-sh7750.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7760) += setup-sh7760.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH7770) += setup-sh7770.o
|
||||||
obj-$(CONFIG_CPU_SUBTYPE_SH7780) += setup-sh7780.o
|
obj-$(CONFIG_CPU_SUBTYPE_SH7780) += setup-sh7780.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH73180) += setup-sh73180.o
|
||||||
|
obj-$(CONFIG_CPU_SUBTYPE_SH4_202) += setup-sh4-202.o
|
||||||
|
|
||||||
# Primary on-chip clocks (common)
|
# Primary on-chip clocks (common)
|
||||||
clock-$(CONFIG_CPU_SH4) := clock-sh4.o
|
clock-$(CONFIG_CPU_SH4) := clock-sh4.o
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
/*
|
||||||
|
* SH4-202 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xffe80000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 40, 41, 43, 42 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh4202_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh4202_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh4202_devices,
|
||||||
|
ARRAY_SIZE(sh4202_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh4202_devices_setup);
|
|
@ -0,0 +1,43 @@
|
||||||
|
/*
|
||||||
|
* SH73180 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xffe80000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 80, 81, 83, 82 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh73180_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh73180_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh73180_devices,
|
||||||
|
ARRAY_SIZE(sh73180_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh73180_devices_setup);
|
|
@ -0,0 +1,48 @@
|
||||||
|
/*
|
||||||
|
* SH7750/SH7751 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xffe00000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCI,
|
||||||
|
.irqs = { 23, 24, 25, 0 },
|
||||||
|
}, {
|
||||||
|
.mapbase = 0xffe80000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 40, 41, 43, 42 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh7750_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh7750_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh7750_devices,
|
||||||
|
ARRAY_SIZE(sh7750_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh7750_devices_setup);
|
|
@ -0,0 +1,53 @@
|
||||||
|
/*
|
||||||
|
* SH7760 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xfe600000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 52, 53, 55, 54 },
|
||||||
|
}, {
|
||||||
|
.mapbase = 0xfe610000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 72, 73, 75, 74 },
|
||||||
|
}, {
|
||||||
|
.mapbase = 0xfe620000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 76, 77, 79, 78 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh7760_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh7760_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh7760_devices,
|
||||||
|
ARRAY_SIZE(sh7760_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh7760_devices_setup);
|
|
@ -0,0 +1,53 @@
|
||||||
|
/*
|
||||||
|
* SH7770 Setup
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Paul Mundt
|
||||||
|
*
|
||||||
|
* 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 = 0xff923000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 61, 61, 61, 61 },
|
||||||
|
}, {
|
||||||
|
.mapbase = 0xff924000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 62, 62, 62, 62 },
|
||||||
|
}, {
|
||||||
|
.mapbase = 0xff925000,
|
||||||
|
.flags = UPF_BOOT_AUTOCONF,
|
||||||
|
.type = PORT_SCIF,
|
||||||
|
.irqs = { 63, 63, 63, 63 },
|
||||||
|
}, {
|
||||||
|
.flags = 0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device sci_device = {
|
||||||
|
.name = "sh-sci",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = sci_platform_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *sh7770_devices[] __initdata = {
|
||||||
|
&sci_device,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init sh7770_devices_setup(void)
|
||||||
|
{
|
||||||
|
return platform_add_devices(sh7770_devices,
|
||||||
|
ARRAY_SIZE(sh7770_devices));
|
||||||
|
}
|
||||||
|
__initcall(sh7770_devices_setup);
|
Loading…
Reference in New Issue