2 * Renesas Technology Corp. R0P7785LC0011RL Support.
4 * Copyright (C) 2008 Yoshihiro Shimoda
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
11 #include <linux/init.h>
12 #include <linux/platform_device.h>
13 #include <linux/sm501.h>
14 #include <linux/sm501-regs.h>
16 #include <linux/mtd/physmap.h>
17 #include <linux/delay.h>
18 #include <linux/i2c.h>
19 #include <linux/i2c-pca-platform.h>
20 #include <linux/i2c-algo-pca.h>
21 #include <asm/heartbeat.h>
22 #include <asm/sh7785lcr.h>
25 * NOTE: This board has 2 physical memory maps.
26 * Please look at include/asm-sh/sh7785lcr.h or hardware manual.
28 static struct resource heartbeat_resources[] = {
32 .flags = IORESOURCE_MEM,
36 static struct heartbeat_data heartbeat_data = {
40 static struct platform_device heartbeat_device = {
44 .platform_data = &heartbeat_data,
46 .num_resources = ARRAY_SIZE(heartbeat_resources),
47 .resource = heartbeat_resources,
50 static struct mtd_partition nor_flash_partitions[] = {
58 .offset = MTDPART_OFS_APPEND,
63 .offset = MTDPART_OFS_APPEND,
64 .size = 4 * 1024 * 1024,
68 .offset = MTDPART_OFS_APPEND,
69 .size = MTDPART_SIZ_FULL,
73 static struct physmap_flash_data nor_flash_data = {
75 .parts = nor_flash_partitions,
76 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
79 static struct resource nor_flash_resources[] = {
81 .start = NOR_FLASH_ADDR,
82 .end = NOR_FLASH_ADDR + NOR_FLASH_SIZE - 1,
83 .flags = IORESOURCE_MEM,
87 static struct platform_device nor_flash_device = {
88 .name = "physmap-flash",
90 .platform_data = &nor_flash_data,
92 .num_resources = ARRAY_SIZE(nor_flash_resources),
93 .resource = nor_flash_resources,
96 static struct resource r8a66597_usb_host_resources[] = {
98 .name = "r8a66597_hcd",
99 .start = R8A66597_ADDR,
100 .end = R8A66597_ADDR + R8A66597_SIZE - 1,
101 .flags = IORESOURCE_MEM,
104 .name = "r8a66597_hcd",
107 .flags = IORESOURCE_IRQ,
111 static struct platform_device r8a66597_usb_host_device = {
112 .name = "r8a66597_hcd",
116 .coherent_dma_mask = 0xffffffff,
118 .num_resources = ARRAY_SIZE(r8a66597_usb_host_resources),
119 .resource = r8a66597_usb_host_resources,
122 static struct resource sm501_resources[] = {
124 .start = SM107_MEM_ADDR,
125 .end = SM107_MEM_ADDR + SM107_MEM_SIZE - 1,
126 .flags = IORESOURCE_MEM,
129 .start = SM107_REG_ADDR,
130 .end = SM107_REG_ADDR + SM107_REG_SIZE - 1,
131 .flags = IORESOURCE_MEM,
135 .flags = IORESOURCE_IRQ,
139 static struct fb_videomode sm501_default_mode_crt = {
140 .pixclock = 35714, /* 28MHz */
149 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
152 static struct fb_videomode sm501_default_mode_pnl = {
153 .pixclock = 40000, /* 25MHz */
165 static struct sm501_platdata_fbsub sm501_pdata_fbsub_pnl = {
167 .def_mode = &sm501_default_mode_pnl,
168 .flags = SM501FB_FLAG_USE_INIT_MODE |
169 SM501FB_FLAG_USE_HWCURSOR |
170 SM501FB_FLAG_USE_HWACCEL |
171 SM501FB_FLAG_DISABLE_AT_EXIT |
172 SM501FB_FLAG_PANEL_NO_VBIASEN,
175 static struct sm501_platdata_fbsub sm501_pdata_fbsub_crt = {
177 .def_mode = &sm501_default_mode_crt,
178 .flags = SM501FB_FLAG_USE_INIT_MODE |
179 SM501FB_FLAG_USE_HWCURSOR |
180 SM501FB_FLAG_USE_HWACCEL |
181 SM501FB_FLAG_DISABLE_AT_EXIT,
184 static struct sm501_platdata_fb sm501_fb_pdata = {
185 .fb_route = SM501_FB_OWN,
186 .fb_crt = &sm501_pdata_fbsub_crt,
187 .fb_pnl = &sm501_pdata_fbsub_pnl,
190 static struct sm501_initdata sm501_initdata = {
196 .mclk = 84 * 1000000,
197 .m1xclk = 112 * 1000000,
200 static struct sm501_platdata sm501_platform_data = {
201 .init = &sm501_initdata,
202 .fb = &sm501_fb_pdata,
205 static struct platform_device sm501_device = {
209 .platform_data = &sm501_platform_data,
211 .num_resources = ARRAY_SIZE(sm501_resources),
212 .resource = sm501_resources,
215 static struct resource i2c_resources[] = {
217 .start = PCA9564_ADDR,
218 .end = PCA9564_ADDR + PCA9564_SIZE - 1,
219 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT,
224 .flags = IORESOURCE_IRQ,
228 static struct i2c_pca9564_pf_platform_data i2c_platform_data = {
230 .i2c_clock_speed = I2C_PCA_CON_330kHz,
234 static struct platform_device i2c_device = {
235 .name = "i2c-pca-platform",
238 .platform_data = &i2c_platform_data,
240 .num_resources = ARRAY_SIZE(i2c_resources),
241 .resource = i2c_resources,
244 static struct platform_device *sh7785lcr_devices[] __initdata = {
247 &r8a66597_usb_host_device,
252 static struct i2c_board_info __initdata sh7785lcr_i2c_devices[] = {
254 I2C_BOARD_INFO("r2025sd", 0x32),
258 static int __init sh7785lcr_devices_setup(void)
260 i2c_register_board_info(0, sh7785lcr_i2c_devices,
261 ARRAY_SIZE(sh7785lcr_i2c_devices));
263 return platform_add_devices(sh7785lcr_devices,
264 ARRAY_SIZE(sh7785lcr_devices));
266 __initcall(sh7785lcr_devices_setup);
268 /* Initialize IRQ setting */
269 void __init init_sh7785lcr_IRQ(void)
271 plat_irq_setup_pins(IRQ_MODE_IRQ7654);
272 plat_irq_setup_pins(IRQ_MODE_IRQ3210);
275 static void sh7785lcr_power_off(void)
277 ctrl_outb(0x01, P2SEGADDR(PLD_POFCR));
280 /* Initialize the board */
281 static void __init sh7785lcr_setup(char **cmdline_p)
283 void __iomem *sm501_reg;
285 printk(KERN_INFO "Renesas Technology Corp. R0P7785LC0011RL support.\n");
287 pm_power_off = sh7785lcr_power_off;
289 /* sm501 DRAM configuration */
290 sm501_reg = (void __iomem *)0xb3e00000 + SM501_DRAM_CONTROL;
291 writel(0x000307c2, sm501_reg);
297 static struct sh_machine_vector mv_sh7785lcr __initmv = {
298 .mv_name = "SH7785LCR",
299 .mv_setup = sh7785lcr_setup,
300 .mv_init_irq = init_sh7785lcr_IRQ,