2 * Renesas Europe EDOSK7760 Board Support
4 * Copyright (C) 2008 SPES Societa' Progettazione Elettronica e Software Ltd.
5 * Author: Luca Santini <luca.santini@spesonline.com>
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; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/init.h>
22 #include <linux/types.h>
23 #include <linux/platform_device.h>
24 #include <linux/smc91x.h>
25 #include <linux/interrupt.h>
26 #include <linux/i2c.h>
27 #include <linux/mtd/physmap.h>
28 #include <asm/machvec.h>
30 #include <asm/addrspace.h>
31 #include <asm/delay.h>
32 #include <asm/i2c-sh7760.h>
34 /* Bus state controller registers for CS4 area */
35 #define BSC_CS4BCR 0xA4FD0010
36 #define BSC_CS4WCR 0xA4FD0030
38 #define SMC_IOBASE 0xA2000000
39 #define SMC_IO_OFFSET 0x300
40 #define SMC_IOADDR (SMC_IOBASE + SMC_IO_OFFSET)
42 #define ETHERNET_IRQ 5
45 static struct mtd_partition edosk7760_nor_flash_partitions
[] = {
49 .size
= (1 * 1024 * 1024), /*1MB*/
50 .mask_flags
= MTD_WRITEABLE
, /* Read-only */
53 .offset
= MTDPART_OFS_APPEND
,
54 .size
= (2 * 1024 * 1024), /*2MB*/
57 .offset
= MTDPART_OFS_APPEND
,
58 .size
= (26 * 1024 * 1024),
61 .offset
= MTDPART_OFS_APPEND
,
62 .size
= MTDPART_SIZ_FULL
,
66 static struct physmap_flash_data edosk7760_nor_flash_data
= {
68 .parts
= edosk7760_nor_flash_partitions
,
69 .nr_parts
= ARRAY_SIZE(edosk7760_nor_flash_partitions
),
72 static struct resource edosk7760_nor_flash_resources
[] = {
76 .end
= (32 * 1024 * 1024) -1, /* 32MB*/
77 .flags
= IORESOURCE_MEM
,
81 static struct platform_device edosk7760_nor_flash_device
= {
82 .name
= "physmap-flash",
83 .resource
= edosk7760_nor_flash_resources
,
84 .num_resources
= ARRAY_SIZE(edosk7760_nor_flash_resources
),
86 .platform_data
= &edosk7760_nor_flash_data
,
90 /* i2c initialization functions */
91 static struct sh7760_i2c_platdata i2c_pd
= {
95 static struct resource sh7760_i2c1_res
[] = {
97 .start
= SH7760_I2C1_MMIO
,
98 .end
= SH7760_I2C1_MMIOEND
,
99 .flags
= IORESOURCE_MEM
,
101 .start
= SH7760_I2C1_IRQ
,
102 .end
= SH7760_I2C1_IRQ
,
103 .flags
= IORESOURCE_IRQ
,
107 static struct platform_device sh7760_i2c1_dev
= {
109 .platform_data
= &i2c_pd
,
112 .name
= SH7760_I2C_DEVNAME
,
114 .resource
= sh7760_i2c1_res
,
115 .num_resources
= ARRAY_SIZE(sh7760_i2c1_res
),
118 static struct resource sh7760_i2c0_res
[] = {
120 .start
= SH7760_I2C0_MMIO
,
121 .end
= SH7760_I2C0_MMIOEND
,
122 .flags
= IORESOURCE_MEM
,
124 .start
= SH7760_I2C0_IRQ
,
125 .end
= SH7760_I2C0_IRQ
,
126 .flags
= IORESOURCE_IRQ
,
130 static struct platform_device sh7760_i2c0_dev
= {
132 .platform_data
= &i2c_pd
,
134 .name
= SH7760_I2C_DEVNAME
,
136 .resource
= sh7760_i2c0_res
,
137 .num_resources
= ARRAY_SIZE(sh7760_i2c0_res
),
140 /* eth initialization functions */
141 static struct smc91x_platdata smc91x_info
= {
142 .flags
= SMC91X_USE_16BIT
| SMC91X_IO_SHIFT_1
| IORESOURCE_IRQ_LOWLEVEL
,
145 static struct resource smc91x_res
[] = {
148 .end
= SMC_IOADDR
+ 0x1f,
149 .flags
= IORESOURCE_MEM
,
152 .start
= ETHERNET_IRQ
,
154 .flags
= IORESOURCE_IRQ
,
158 static struct platform_device smc91x_dev
= {
161 .num_resources
= ARRAY_SIZE(smc91x_res
),
162 .resource
= smc91x_res
,
165 .platform_data
= &smc91x_info
,
169 /* platform init code */
170 static struct platform_device
*edosk7760_devices
[] __initdata
= {
172 &edosk7760_nor_flash_device
,
177 static int __init
init_edosk7760_devices(void)
179 plat_irq_setup_pins(IRQ_MODE_IRQ
);
181 return platform_add_devices(edosk7760_devices
,
182 ARRAY_SIZE(edosk7760_devices
));
184 __initcall(init_edosk7760_devices
);
189 struct sh_machine_vector mv_edosk7760 __initmv
= {
190 .mv_name
= "EDOSK7760",