Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[pandora-kernel.git] / arch / sh / kernel / cpu / sh5 / setup-sh5.c
1 /*
2  * SH5-101/SH5-103 CPU Setup
3  *
4  *  Copyright (C) 2009  Paul Mundt
5  *
6  * This file is subject to the terms and conditions of the GNU General Public
7  * License.  See the file "COPYING" in the main directory of this archive
8  * for more details.
9  */
10 #include <linux/platform_device.h>
11 #include <linux/init.h>
12 #include <linux/serial.h>
13 #include <linux/serial_sci.h>
14 #include <linux/io.h>
15 #include <linux/mm.h>
16 #include <linux/sh_timer.h>
17 #include <asm/addrspace.h>
18
19 static struct plat_sci_port scif0_platform_data = {
20         .mapbase        = PHYS_PERIPHERAL_BLOCK + 0x01030000,
21         .flags          = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
22         .type           = PORT_SCIF,
23         .irqs           = { 39, 40, 42, 0 },
24 };
25
26 static struct platform_device scif0_device = {
27         .name           = "sh-sci",
28         .id             = 0,
29         .dev            = {
30                 .platform_data  = &scif0_platform_data,
31         },
32 };
33
34 static struct resource rtc_resources[] = {
35         [0] = {
36                 .start  = PHYS_PERIPHERAL_BLOCK + 0x01040000,
37                 .end    = PHYS_PERIPHERAL_BLOCK + 0x01040000 + 0x58 - 1,
38                 .flags  = IORESOURCE_IO,
39         },
40         [1] = {
41                 /* Period IRQ */
42                 .start  = IRQ_PRI,
43                 .flags  = IORESOURCE_IRQ,
44         },
45         [2] = {
46                 /* Carry IRQ */
47                 .start  = IRQ_CUI,
48                 .flags  = IORESOURCE_IRQ,
49         },
50         [3] = {
51                 /* Alarm IRQ */
52                 .start  = IRQ_ATI,
53                 .flags  = IORESOURCE_IRQ,
54         },
55 };
56
57 static struct platform_device rtc_device = {
58         .name           = "sh-rtc",
59         .id             = -1,
60         .num_resources  = ARRAY_SIZE(rtc_resources),
61         .resource       = rtc_resources,
62 };
63
64 #define TMU_BLOCK_OFF   0x01020000
65 #define TMU_BASE        PHYS_PERIPHERAL_BLOCK + TMU_BLOCK_OFF
66 #define TMU0_BASE       (TMU_BASE + 0x8 + (0xc * 0x0))
67 #define TMU1_BASE       (TMU_BASE + 0x8 + (0xc * 0x1))
68 #define TMU2_BASE       (TMU_BASE + 0x8 + (0xc * 0x2))
69
70 static struct sh_timer_config tmu0_platform_data = {
71         .name = "TMU0",
72         .channel_offset = 0x04,
73         .timer_bit = 0,
74         .clk = "peripheral_clk",
75         .clockevent_rating = 200,
76 };
77
78 static struct resource tmu0_resources[] = {
79         [0] = {
80                 .name   = "TMU0",
81                 .start  = TMU0_BASE,
82                 .end    = TMU0_BASE + 0xc - 1,
83                 .flags  = IORESOURCE_MEM,
84         },
85         [1] = {
86                 .start  = IRQ_TUNI0,
87                 .flags  = IORESOURCE_IRQ,
88         },
89 };
90
91 static struct platform_device tmu0_device = {
92         .name           = "sh_tmu",
93         .id             = 0,
94         .dev = {
95                 .platform_data  = &tmu0_platform_data,
96         },
97         .resource       = tmu0_resources,
98         .num_resources  = ARRAY_SIZE(tmu0_resources),
99 };
100
101 static struct sh_timer_config tmu1_platform_data = {
102         .name = "TMU1",
103         .channel_offset = 0x10,
104         .timer_bit = 1,
105         .clk = "peripheral_clk",
106         .clocksource_rating = 200,
107 };
108
109 static struct resource tmu1_resources[] = {
110         [0] = {
111                 .name   = "TMU1",
112                 .start  = TMU1_BASE,
113                 .end    = TMU1_BASE + 0xc - 1,
114                 .flags  = IORESOURCE_MEM,
115         },
116         [1] = {
117                 .start  = IRQ_TUNI1,
118                 .flags  = IORESOURCE_IRQ,
119         },
120 };
121
122 static struct platform_device tmu1_device = {
123         .name           = "sh_tmu",
124         .id             = 1,
125         .dev = {
126                 .platform_data  = &tmu1_platform_data,
127         },
128         .resource       = tmu1_resources,
129         .num_resources  = ARRAY_SIZE(tmu1_resources),
130 };
131
132 static struct sh_timer_config tmu2_platform_data = {
133         .name = "TMU2",
134         .channel_offset = 0x1c,
135         .timer_bit = 2,
136         .clk = "peripheral_clk",
137 };
138
139 static struct resource tmu2_resources[] = {
140         [0] = {
141                 .name   = "TMU2",
142                 .start  = TMU2_BASE,
143                 .end    = TMU2_BASE + 0xc - 1,
144                 .flags  = IORESOURCE_MEM,
145         },
146         [1] = {
147                 .start  = IRQ_TUNI2,
148                 .flags  = IORESOURCE_IRQ,
149         },
150 };
151
152 static struct platform_device tmu2_device = {
153         .name           = "sh_tmu",
154         .id             = 2,
155         .dev = {
156                 .platform_data  = &tmu2_platform_data,
157         },
158         .resource       = tmu2_resources,
159         .num_resources  = ARRAY_SIZE(tmu2_resources),
160 };
161
162 static struct platform_device *sh5_early_devices[] __initdata = {
163         &scif0_device,
164         &tmu0_device,
165         &tmu1_device,
166         &tmu2_device,
167 };
168
169 static struct platform_device *sh5_devices[] __initdata = {
170         &rtc_device,
171 };
172
173 static int __init sh5_devices_setup(void)
174 {
175         int ret;
176
177         ret = platform_add_devices(sh5_early_devices,
178                                    ARRAY_SIZE(sh5_early_devices));
179         if (unlikely(ret != 0))
180                 return ret;
181
182         return platform_add_devices(sh5_devices,
183                                     ARRAY_SIZE(sh5_devices));
184 }
185 arch_initcall(sh5_devices_setup);
186
187 void __init plat_early_device_setup(void)
188 {
189         early_platform_add_devices(sh5_early_devices,
190                                    ARRAY_SIZE(sh5_early_devices));
191 }