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 <linux/irq.h>
22 #include <asm/heartbeat.h>
23 #include <mach/sh7785lcr.h>
26 * NOTE: This board has 2 physical memory maps.
27 * Please look at include/asm-sh/sh7785lcr.h or hardware manual.
29 static struct resource heartbeat_resources
[] = {
33 .flags
= IORESOURCE_MEM
,
37 static struct heartbeat_data heartbeat_data
= {
41 static struct platform_device heartbeat_device
= {
45 .platform_data
= &heartbeat_data
,
47 .num_resources
= ARRAY_SIZE(heartbeat_resources
),
48 .resource
= heartbeat_resources
,
51 static struct mtd_partition nor_flash_partitions
[] = {
59 .offset
= MTDPART_OFS_APPEND
,
64 .offset
= MTDPART_OFS_APPEND
,
65 .size
= 4 * 1024 * 1024,
69 .offset
= MTDPART_OFS_APPEND
,
70 .size
= MTDPART_SIZ_FULL
,
74 static struct physmap_flash_data nor_flash_data
= {
76 .parts
= nor_flash_partitions
,
77 .nr_parts
= ARRAY_SIZE(nor_flash_partitions
),
80 static struct resource nor_flash_resources
[] = {
82 .start
= NOR_FLASH_ADDR
,
83 .end
= NOR_FLASH_ADDR
+ NOR_FLASH_SIZE
- 1,
84 .flags
= IORESOURCE_MEM
,
88 static struct platform_device nor_flash_device
= {
89 .name
= "physmap-flash",
91 .platform_data
= &nor_flash_data
,
93 .num_resources
= ARRAY_SIZE(nor_flash_resources
),
94 .resource
= nor_flash_resources
,
97 static struct resource r8a66597_usb_host_resources
[] = {
99 .name
= "r8a66597_hcd",
100 .start
= R8A66597_ADDR
,
101 .end
= R8A66597_ADDR
+ R8A66597_SIZE
- 1,
102 .flags
= IORESOURCE_MEM
,
105 .name
= "r8a66597_hcd",
108 .flags
= IORESOURCE_IRQ
,
112 static struct platform_device r8a66597_usb_host_device
= {
113 .name
= "r8a66597_hcd",
117 .coherent_dma_mask
= 0xffffffff,
119 .num_resources
= ARRAY_SIZE(r8a66597_usb_host_resources
),
120 .resource
= r8a66597_usb_host_resources
,
123 static struct resource sm501_resources
[] = {
125 .start
= SM107_MEM_ADDR
,
126 .end
= SM107_MEM_ADDR
+ SM107_MEM_SIZE
- 1,
127 .flags
= IORESOURCE_MEM
,
130 .start
= SM107_REG_ADDR
,
131 .end
= SM107_REG_ADDR
+ SM107_REG_SIZE
- 1,
132 .flags
= IORESOURCE_MEM
,
136 .flags
= IORESOURCE_IRQ
,
140 static struct fb_videomode sm501_default_mode_crt
= {
141 .pixclock
= 35714, /* 28MHz */
150 .sync
= FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
153 static struct fb_videomode sm501_default_mode_pnl
= {
154 .pixclock
= 40000, /* 25MHz */
166 static struct sm501_platdata_fbsub sm501_pdata_fbsub_pnl
= {
168 .def_mode
= &sm501_default_mode_pnl
,
169 .flags
= SM501FB_FLAG_USE_INIT_MODE
|
170 SM501FB_FLAG_USE_HWCURSOR
|
171 SM501FB_FLAG_USE_HWACCEL
|
172 SM501FB_FLAG_DISABLE_AT_EXIT
|
173 SM501FB_FLAG_PANEL_NO_VBIASEN
,
176 static struct sm501_platdata_fbsub sm501_pdata_fbsub_crt
= {
178 .def_mode
= &sm501_default_mode_crt
,
179 .flags
= SM501FB_FLAG_USE_INIT_MODE
|
180 SM501FB_FLAG_USE_HWCURSOR
|
181 SM501FB_FLAG_USE_HWACCEL
|
182 SM501FB_FLAG_DISABLE_AT_EXIT
,
185 static struct sm501_platdata_fb sm501_fb_pdata
= {
186 .fb_route
= SM501_FB_OWN
,
187 .fb_crt
= &sm501_pdata_fbsub_crt
,
188 .fb_pnl
= &sm501_pdata_fbsub_pnl
,
191 static struct sm501_initdata sm501_initdata
= {
197 .mclk
= 84 * 1000000,
198 .m1xclk
= 112 * 1000000,
201 static struct sm501_platdata sm501_platform_data
= {
202 .init
= &sm501_initdata
,
203 .fb
= &sm501_fb_pdata
,
206 static struct platform_device sm501_device
= {
210 .platform_data
= &sm501_platform_data
,
212 .num_resources
= ARRAY_SIZE(sm501_resources
),
213 .resource
= sm501_resources
,
216 static struct resource i2c_resources
[] = {
218 .start
= PCA9564_ADDR
,
219 .end
= PCA9564_ADDR
+ PCA9564_SIZE
- 1,
220 .flags
= IORESOURCE_MEM
| IORESOURCE_MEM_8BIT
,
225 .flags
= IORESOURCE_IRQ
,
229 static struct i2c_pca9564_pf_platform_data i2c_platform_data
= {
231 .i2c_clock_speed
= I2C_PCA_CON_330kHz
,
235 static struct platform_device i2c_device
= {
236 .name
= "i2c-pca-platform",
239 .platform_data
= &i2c_platform_data
,
241 .num_resources
= ARRAY_SIZE(i2c_resources
),
242 .resource
= i2c_resources
,
245 static struct platform_device
*sh7785lcr_devices
[] __initdata
= {
248 &r8a66597_usb_host_device
,
253 static struct i2c_board_info __initdata sh7785lcr_i2c_devices
[] = {
255 I2C_BOARD_INFO("r2025sd", 0x32),
259 static int __init
sh7785lcr_devices_setup(void)
261 i2c_register_board_info(0, sh7785lcr_i2c_devices
,
262 ARRAY_SIZE(sh7785lcr_i2c_devices
));
264 return platform_add_devices(sh7785lcr_devices
,
265 ARRAY_SIZE(sh7785lcr_devices
));
267 __initcall(sh7785lcr_devices_setup
);
269 /* Initialize IRQ setting */
270 void __init
init_sh7785lcr_IRQ(void)
272 plat_irq_setup_pins(IRQ_MODE_IRQ7654
);
273 plat_irq_setup_pins(IRQ_MODE_IRQ3210
);
276 static void sh7785lcr_power_off(void)
280 p
= ioremap(PLD_POFCR
, PLD_POFCR
+ 1);
282 printk(KERN_ERR
"%s: ioremap error.\n", __func__
);
292 /* Initialize the board */
293 static void __init
sh7785lcr_setup(char **cmdline_p
)
295 void __iomem
*sm501_reg
;
297 printk(KERN_INFO
"Renesas Technology Corp. R0P7785LC0011RL support.\n");
299 pm_power_off
= sh7785lcr_power_off
;
301 /* sm501 DRAM configuration */
302 sm501_reg
= (void __iomem
*)0xb3e00000 + SM501_DRAM_CONTROL
;
303 writel(0x000307c2, sm501_reg
);
309 static struct sh_machine_vector mv_sh7785lcr __initmv
= {
310 .mv_name
= "SH7785LCR",
311 .mv_setup
= sh7785lcr_setup
,
312 .mv_init_irq
= init_sh7785lcr_IRQ
,