2 * Versatile Express V2M Motherboard Support
4 #include <linux/device.h>
5 #include <linux/amba/bus.h>
6 #include <linux/amba/mmci.h>
8 #include <linux/init.h>
9 #include <linux/platform_device.h>
10 #include <linux/ata_platform.h>
11 #include <linux/smsc911x.h>
12 #include <linux/spinlock.h>
13 #include <linux/sysdev.h>
14 #include <linux/usb/isp1760.h>
15 #include <linux/clkdev.h>
16 #include <linux/mtd/physmap.h>
18 #include <asm/mach-types.h>
19 #include <asm/sizes.h>
20 #include <asm/mach/arch.h>
21 #include <asm/mach/map.h>
22 #include <asm/mach/time.h>
23 #include <asm/hardware/arm_timer.h>
24 #include <asm/hardware/timer-sp.h>
25 #include <asm/hardware/sp810.h>
27 #include <mach/ct-ca9x4.h>
28 #include <mach/motherboard.h>
30 #include <plat/sched_clock.h>
34 #define V2M_PA_CS0 0x40000000
35 #define V2M_PA_CS1 0x44000000
36 #define V2M_PA_CS2 0x48000000
37 #define V2M_PA_CS3 0x4c000000
38 #define V2M_PA_CS7 0x10000000
40 static struct map_desc v2m_io_desc
[] __initdata
= {
42 .virtual = __MMIO_P2V(V2M_PA_CS7
),
43 .pfn
= __phys_to_pfn(V2M_PA_CS7
),
49 static void __init
v2m_timer_init(void)
53 /* Select 1MHz TIMCLK as the reference clock for SP804 timers */
54 scctrl
= readl(MMIO_P2V(V2M_SYSCTL
+ SCCTRL
));
55 scctrl
|= SCCTRL_TIMEREN0SEL_TIMCLK
;
56 scctrl
|= SCCTRL_TIMEREN1SEL_TIMCLK
;
57 writel(scctrl
, MMIO_P2V(V2M_SYSCTL
+ SCCTRL
));
59 writel(0, MMIO_P2V(V2M_TIMER0
) + TIMER_CTRL
);
60 writel(0, MMIO_P2V(V2M_TIMER1
) + TIMER_CTRL
);
62 sp804_clocksource_init(MMIO_P2V(V2M_TIMER1
), "v2m-timer1");
63 sp804_clockevents_init(MMIO_P2V(V2M_TIMER0
), IRQ_V2M_TIMER0
,
67 static struct sys_timer v2m_timer
= {
68 .init
= v2m_timer_init
,
72 static DEFINE_SPINLOCK(v2m_cfg_lock
);
74 int v2m_cfg_write(u32 devfn
, u32 data
)
76 /* Configuration interface broken? */
79 printk("%s: writing %08x to %08x\n", __func__
, data
, devfn
);
81 devfn
|= SYS_CFG_START
| SYS_CFG_WRITE
;
83 spin_lock(&v2m_cfg_lock
);
84 val
= readl(MMIO_P2V(V2M_SYS_CFGSTAT
));
85 writel(val
& ~SYS_CFG_COMPLETE
, MMIO_P2V(V2M_SYS_CFGSTAT
));
87 writel(data
, MMIO_P2V(V2M_SYS_CFGDATA
));
88 writel(devfn
, MMIO_P2V(V2M_SYS_CFGCTRL
));
91 val
= readl(MMIO_P2V(V2M_SYS_CFGSTAT
));
93 spin_unlock(&v2m_cfg_lock
);
95 return !!(val
& SYS_CFG_ERR
);
98 int v2m_cfg_read(u32 devfn
, u32
*data
)
102 devfn
|= SYS_CFG_START
;
104 spin_lock(&v2m_cfg_lock
);
105 writel(0, MMIO_P2V(V2M_SYS_CFGSTAT
));
106 writel(devfn
, MMIO_P2V(V2M_SYS_CFGCTRL
));
112 val
= readl(MMIO_P2V(V2M_SYS_CFGSTAT
));
115 *data
= readl(MMIO_P2V(V2M_SYS_CFGDATA
));
116 spin_unlock(&v2m_cfg_lock
);
118 return !!(val
& SYS_CFG_ERR
);
122 static struct resource v2m_pcie_i2c_resource
= {
123 .start
= V2M_SERIAL_BUS_PCI
,
124 .end
= V2M_SERIAL_BUS_PCI
+ SZ_4K
- 1,
125 .flags
= IORESOURCE_MEM
,
128 static struct platform_device v2m_pcie_i2c_device
= {
129 .name
= "versatile-i2c",
132 .resource
= &v2m_pcie_i2c_resource
,
135 static struct resource v2m_ddc_i2c_resource
= {
136 .start
= V2M_SERIAL_BUS_DVI
,
137 .end
= V2M_SERIAL_BUS_DVI
+ SZ_4K
- 1,
138 .flags
= IORESOURCE_MEM
,
141 static struct platform_device v2m_ddc_i2c_device
= {
142 .name
= "versatile-i2c",
145 .resource
= &v2m_ddc_i2c_resource
,
148 static struct resource v2m_eth_resources
[] = {
150 .start
= V2M_LAN9118
,
151 .end
= V2M_LAN9118
+ SZ_64K
- 1,
152 .flags
= IORESOURCE_MEM
,
154 .start
= IRQ_V2M_LAN9118
,
155 .end
= IRQ_V2M_LAN9118
,
156 .flags
= IORESOURCE_IRQ
,
160 static struct smsc911x_platform_config v2m_eth_config
= {
161 .flags
= SMSC911X_USE_32BIT
,
162 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_HIGH
,
163 .irq_type
= SMSC911X_IRQ_TYPE_PUSH_PULL
,
164 .phy_interface
= PHY_INTERFACE_MODE_MII
,
167 static struct platform_device v2m_eth_device
= {
170 .resource
= v2m_eth_resources
,
171 .num_resources
= ARRAY_SIZE(v2m_eth_resources
),
172 .dev
.platform_data
= &v2m_eth_config
,
175 static struct resource v2m_usb_resources
[] = {
177 .start
= V2M_ISP1761
,
178 .end
= V2M_ISP1761
+ SZ_128K
- 1,
179 .flags
= IORESOURCE_MEM
,
181 .start
= IRQ_V2M_ISP1761
,
182 .end
= IRQ_V2M_ISP1761
,
183 .flags
= IORESOURCE_IRQ
,
187 static struct isp1760_platform_data v2m_usb_config
= {
189 .bus_width_16
= false,
192 .dack_polarity_high
= false,
193 .dreq_polarity_high
= false,
196 static struct platform_device v2m_usb_device
= {
199 .resource
= v2m_usb_resources
,
200 .num_resources
= ARRAY_SIZE(v2m_usb_resources
),
201 .dev
.platform_data
= &v2m_usb_config
,
204 static void v2m_flash_set_vpp(struct platform_device
*pdev
, int on
)
206 writel(on
!= 0, MMIO_P2V(V2M_SYS_FLASH
));
209 static struct physmap_flash_data v2m_flash_data
= {
211 .set_vpp
= v2m_flash_set_vpp
,
214 static struct resource v2m_flash_resources
[] = {
217 .end
= V2M_NOR0
+ SZ_64M
- 1,
218 .flags
= IORESOURCE_MEM
,
221 .end
= V2M_NOR1
+ SZ_64M
- 1,
222 .flags
= IORESOURCE_MEM
,
226 static struct platform_device v2m_flash_device
= {
227 .name
= "physmap-flash",
229 .resource
= v2m_flash_resources
,
230 .num_resources
= ARRAY_SIZE(v2m_flash_resources
),
231 .dev
.platform_data
= &v2m_flash_data
,
234 static struct pata_platform_info v2m_pata_data
= {
238 static struct resource v2m_pata_resources
[] = {
241 .end
= V2M_CF
+ 0xff,
242 .flags
= IORESOURCE_MEM
,
244 .start
= V2M_CF
+ 0x100,
245 .end
= V2M_CF
+ SZ_4K
- 1,
246 .flags
= IORESOURCE_MEM
,
250 static struct platform_device v2m_cf_device
= {
251 .name
= "pata_platform",
253 .resource
= v2m_pata_resources
,
254 .num_resources
= ARRAY_SIZE(v2m_pata_resources
),
255 .dev
.platform_data
= &v2m_pata_data
,
258 static unsigned int v2m_mmci_status(struct device
*dev
)
260 return readl(MMIO_P2V(V2M_SYS_MCI
)) & (1 << 0);
263 static struct mmci_platform_data v2m_mmci_data
= {
264 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
265 .status
= v2m_mmci_status
,
268 static AMBA_DEVICE(aaci
, "mb:aaci", V2M_AACI
, NULL
);
269 static AMBA_DEVICE(mmci
, "mb:mmci", V2M_MMCI
, &v2m_mmci_data
);
270 static AMBA_DEVICE(kmi0
, "mb:kmi0", V2M_KMI0
, NULL
);
271 static AMBA_DEVICE(kmi1
, "mb:kmi1", V2M_KMI1
, NULL
);
272 static AMBA_DEVICE(uart0
, "mb:uart0", V2M_UART0
, NULL
);
273 static AMBA_DEVICE(uart1
, "mb:uart1", V2M_UART1
, NULL
);
274 static AMBA_DEVICE(uart2
, "mb:uart2", V2M_UART2
, NULL
);
275 static AMBA_DEVICE(uart3
, "mb:uart3", V2M_UART3
, NULL
);
276 static AMBA_DEVICE(wdt
, "mb:wdt", V2M_WDT
, NULL
);
277 static AMBA_DEVICE(rtc
, "mb:rtc", V2M_RTC
, NULL
);
279 static struct amba_device
*v2m_amba_devs
[] __initdata
= {
293 static long v2m_osc_round(struct clk
*clk
, unsigned long rate
)
298 static int v2m_osc1_set(struct clk
*clk
, unsigned long rate
)
300 return v2m_cfg_write(SYS_CFG_OSC
| SYS_CFG_SITE_MB
| 1, rate
);
303 static const struct clk_ops osc1_clk_ops
= {
304 .round
= v2m_osc_round
,
308 static struct clk osc1_clk
= {
309 .ops
= &osc1_clk_ops
,
313 static struct clk osc2_clk
= {
317 static struct clk v2m_sp804_clk
= {
321 static struct clk dummy_apb_pclk
;
323 static struct clk_lookup v2m_lookups
[] = {
324 { /* AMBA bus clock */
325 .con_id
= "apb_pclk",
326 .clk
= &dummy_apb_pclk
,
328 .dev_id
= "mb:uart0",
331 .dev_id
= "mb:uart1",
334 .dev_id
= "mb:uart2",
337 .dev_id
= "mb:uart3",
351 }, { /* SP804 timers */
353 .con_id
= "v2m-timer0",
354 .clk
= &v2m_sp804_clk
,
355 }, { /* SP804 timers */
357 .con_id
= "v2m-timer1",
358 .clk
= &v2m_sp804_clk
,
362 static void __init
v2m_init_early(void)
364 ct_desc
->init_early();
365 clkdev_add_table(v2m_lookups
, ARRAY_SIZE(v2m_lookups
));
366 versatile_sched_clock_init(MMIO_P2V(V2M_SYS_24MHZ
), 24000000);
369 static void v2m_power_off(void)
371 if (v2m_cfg_write(SYS_CFG_SHUTDOWN
| SYS_CFG_SITE_MB
, 0))
372 printk(KERN_EMERG
"Unable to shutdown\n");
375 static void v2m_restart(char str
, const char *cmd
)
377 if (v2m_cfg_write(SYS_CFG_REBOOT
| SYS_CFG_SITE_MB
, 0))
378 printk(KERN_EMERG
"Unable to reboot\n");
381 struct ct_desc
*ct_desc
;
383 static struct ct_desc
*ct_descs
[] __initdata
= {
384 #ifdef CONFIG_ARCH_VEXPRESS_CA9X4
389 static void __init
v2m_populate_ct_desc(void)
395 current_tile_id
= readl(MMIO_P2V(V2M_SYS_PROCID0
)) & V2M_CT_ID_MASK
;
397 for (i
= 0; i
< ARRAY_SIZE(ct_descs
) && !ct_desc
; ++i
)
398 if (ct_descs
[i
]->id
== current_tile_id
)
399 ct_desc
= ct_descs
[i
];
402 panic("vexpress: failed to populate core tile description "
403 "for tile ID 0x%8x\n", current_tile_id
);
406 static void __init
v2m_map_io(void)
408 iotable_init(v2m_io_desc
, ARRAY_SIZE(v2m_io_desc
));
409 v2m_populate_ct_desc();
413 static void __init
v2m_init_irq(void)
418 static void __init
v2m_init(void)
422 platform_device_register(&v2m_pcie_i2c_device
);
423 platform_device_register(&v2m_ddc_i2c_device
);
424 platform_device_register(&v2m_flash_device
);
425 platform_device_register(&v2m_cf_device
);
426 platform_device_register(&v2m_eth_device
);
427 platform_device_register(&v2m_usb_device
);
429 for (i
= 0; i
< ARRAY_SIZE(v2m_amba_devs
); i
++)
430 amba_device_register(v2m_amba_devs
[i
], &iomem_resource
);
432 pm_power_off
= v2m_power_off
;
433 arm_pm_restart
= v2m_restart
;
435 ct_desc
->init_tile();
438 MACHINE_START(VEXPRESS
, "ARM-Versatile Express")
439 .boot_params
= PLAT_PHYS_OFFSET
+ 0x00000100,
440 .map_io
= v2m_map_io
,
441 .init_early
= v2m_init_early
,
442 .init_irq
= v2m_init_irq
,
444 .init_machine
= v2m_init
,