2 * sh7372 processor support
4 * Copyright (C) 2010 Magnus Damm
5 * Copyright (C) 2008 Yoshihiro Shimoda
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/platform_device.h>
25 #include <linux/delay.h>
26 #include <linux/input.h>
28 #include <linux/serial_sci.h>
29 #include <linux/sh_intc.h>
30 #include <linux/sh_timer.h>
31 #include <mach/hardware.h>
32 #include <asm/mach-types.h>
33 #include <asm/mach/arch.h>
35 static struct plat_sci_port scif0_platform_data
= {
36 .mapbase
= 0xe6c40000,
37 .flags
= UPF_BOOT_AUTOCONF
,
39 .irqs
= { 80, 80, 80, 80 },
42 static struct platform_device scif0_device
= {
46 .platform_data
= &scif0_platform_data
,
50 static struct plat_sci_port scif1_platform_data
= {
51 .mapbase
= 0xe6c50000,
52 .flags
= UPF_BOOT_AUTOCONF
,
54 .irqs
= { 81, 81, 81, 81 },
57 static struct platform_device scif1_device
= {
61 .platform_data
= &scif1_platform_data
,
65 static struct plat_sci_port scif2_platform_data
= {
66 .mapbase
= 0xe6c60000,
67 .flags
= UPF_BOOT_AUTOCONF
,
69 .irqs
= { 82, 82, 82, 82 },
72 static struct platform_device scif2_device
= {
76 .platform_data
= &scif2_platform_data
,
80 static struct plat_sci_port scif3_platform_data
= {
81 .mapbase
= 0xe6c70000,
82 .flags
= UPF_BOOT_AUTOCONF
,
84 .irqs
= { 83, 83, 83, 83 },
87 static struct platform_device scif3_device
= {
91 .platform_data
= &scif3_platform_data
,
95 static struct plat_sci_port scif4_platform_data
= {
96 .mapbase
= 0xe6c80000,
97 .flags
= UPF_BOOT_AUTOCONF
,
99 .irqs
= { 89, 89, 89, 89 },
102 static struct platform_device scif4_device
= {
106 .platform_data
= &scif4_platform_data
,
110 static struct plat_sci_port scif5_platform_data
= {
111 .mapbase
= 0xe6cb0000,
112 .flags
= UPF_BOOT_AUTOCONF
,
114 .irqs
= { 90, 90, 90, 90 },
117 static struct platform_device scif5_device
= {
121 .platform_data
= &scif5_platform_data
,
125 static struct plat_sci_port scif6_platform_data
= {
126 .mapbase
= 0xe6c30000,
127 .flags
= UPF_BOOT_AUTOCONF
,
129 .irqs
= { 91, 91, 91, 91 },
132 static struct platform_device scif6_device
= {
136 .platform_data
= &scif6_platform_data
,
140 static struct sh_timer_config cmt10_platform_data
= {
142 .channel_offset
= 0x10,
145 .clockevent_rating
= 125,
146 .clocksource_rating
= 125,
149 static struct resource cmt10_resources
[] = {
154 .flags
= IORESOURCE_MEM
,
158 .flags
= IORESOURCE_IRQ
,
162 static struct platform_device cmt10_device
= {
166 .platform_data
= &cmt10_platform_data
,
168 .resource
= cmt10_resources
,
169 .num_resources
= ARRAY_SIZE(cmt10_resources
),
172 static struct platform_device
*sh7372_early_devices
[] __initdata
= {
183 void __init
sh7372_add_standard_devices(void)
185 platform_add_devices(sh7372_early_devices
,
186 ARRAY_SIZE(sh7372_early_devices
));
189 #define SMSTPCR3 0xe615013c
190 #define SMSTPCR3_CMT1 (1 << 29)
192 void __init
sh7372_add_early_devices(void)
194 /* enable clock to CMT1 */
195 __raw_writel(__raw_readl(SMSTPCR3
) & ~SMSTPCR3_CMT1
, SMSTPCR3
);
197 early_platform_add_devices(sh7372_early_devices
,
198 ARRAY_SIZE(sh7372_early_devices
));