diff options
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/renesas/migor/setup.c | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/arch/sh/boards/renesas/migor/setup.c b/arch/sh/boards/renesas/migor/setup.c index 44d9b5675ec9..bc7a4cec1277 100644 --- a/arch/sh/boards/renesas/migor/setup.c +++ b/arch/sh/boards/renesas/migor/setup.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/interrupt.h> | 12 | #include <linux/interrupt.h> |
13 | #include <linux/input.h> | 13 | #include <linux/input.h> |
14 | #include <linux/mtd/physmap.h> | 14 | #include <linux/mtd/physmap.h> |
15 | #include <linux/mtd/nand.h> | ||
15 | #include <asm/machvec.h> | 16 | #include <asm/machvec.h> |
16 | #include <asm/io.h> | 17 | #include <asm/io.h> |
17 | #include <asm/sh_keysc.h> | 18 | #include <asm/sh_keysc.h> |
@@ -122,10 +123,77 @@ static struct platform_device migor_nor_flash_device = { | |||
122 | }, | 123 | }, |
123 | }; | 124 | }; |
124 | 125 | ||
126 | static struct mtd_partition migor_nand_flash_partitions[] = { | ||
127 | { | ||
128 | .name = "nanddata1", | ||
129 | .offset = 0x0, | ||
130 | .size = 512 * 1024 * 1024, | ||
131 | }, | ||
132 | { | ||
133 | .name = "nanddata2", | ||
134 | .offset = MTDPART_OFS_APPEND, | ||
135 | .size = 512 * 1024 * 1024, | ||
136 | }, | ||
137 | }; | ||
138 | |||
139 | static void migor_nand_flash_cmd_ctl(struct mtd_info *mtd, int cmd, | ||
140 | unsigned int ctrl) | ||
141 | { | ||
142 | struct nand_chip *chip = mtd->priv; | ||
143 | |||
144 | if (cmd == NAND_CMD_NONE) | ||
145 | return; | ||
146 | |||
147 | if (ctrl & NAND_CLE) | ||
148 | writeb(cmd, chip->IO_ADDR_W + 0x00400000); | ||
149 | else if (ctrl & NAND_ALE) | ||
150 | writeb(cmd, chip->IO_ADDR_W + 0x00800000); | ||
151 | else | ||
152 | writeb(cmd, chip->IO_ADDR_W); | ||
153 | } | ||
154 | |||
155 | static int migor_nand_flash_ready(struct mtd_info *mtd) | ||
156 | { | ||
157 | return ctrl_inb(PORT_PADR) & 0x02; /* PTA1 */ | ||
158 | } | ||
159 | |||
160 | struct platform_nand_data migor_nand_flash_data = { | ||
161 | .chip = { | ||
162 | .nr_chips = 1, | ||
163 | .partitions = migor_nand_flash_partitions, | ||
164 | .nr_partitions = ARRAY_SIZE(migor_nand_flash_partitions), | ||
165 | .chip_delay = 20, | ||
166 | .part_probe_types = (const char *[]) { "cmdlinepart", NULL }, | ||
167 | }, | ||
168 | .ctrl = { | ||
169 | .dev_ready = migor_nand_flash_ready, | ||
170 | .cmd_ctrl = migor_nand_flash_cmd_ctl, | ||
171 | }, | ||
172 | }; | ||
173 | |||
174 | static struct resource migor_nand_flash_resources[] = { | ||
175 | [0] = { | ||
176 | .name = "NAND Flash", | ||
177 | .start = 0x18000000, | ||
178 | .end = 0x18ffffff, | ||
179 | .flags = IORESOURCE_MEM, | ||
180 | }, | ||
181 | }; | ||
182 | |||
183 | static struct platform_device migor_nand_flash_device = { | ||
184 | .name = "gen_nand", | ||
185 | .resource = migor_nand_flash_resources, | ||
186 | .num_resources = ARRAY_SIZE(migor_nand_flash_resources), | ||
187 | .dev = { | ||
188 | .platform_data = &migor_nand_flash_data, | ||
189 | } | ||
190 | }; | ||
191 | |||
125 | static struct platform_device *migor_devices[] __initdata = { | 192 | static struct platform_device *migor_devices[] __initdata = { |
126 | &smc91x_eth_device, | 193 | &smc91x_eth_device, |
127 | &sh_keysc_device, | 194 | &sh_keysc_device, |
128 | &migor_nor_flash_device, | 195 | &migor_nor_flash_device, |
196 | &migor_nand_flash_device, | ||
129 | }; | 197 | }; |
130 | 198 | ||
131 | static int __init migor_devices_setup(void) | 199 | static int __init migor_devices_setup(void) |
@@ -146,6 +214,11 @@ static void __init migor_setup(char **cmdline_p) | |||
146 | ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x4000, PORT_HIZCRA); | 214 | ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x4000, PORT_HIZCRA); |
147 | ctrl_outw(ctrl_inw(PORT_HIZCRC) & ~0xc000, PORT_HIZCRC); | 215 | ctrl_outw(ctrl_inw(PORT_HIZCRC) & ~0xc000, PORT_HIZCRC); |
148 | ctrl_outl(ctrl_inl(MSTPCR2) & ~0x00004000, MSTPCR2); | 216 | ctrl_outl(ctrl_inl(MSTPCR2) & ~0x00004000, MSTPCR2); |
217 | |||
218 | /* NAND Flash */ | ||
219 | ctrl_outw(ctrl_inw(PORT_PXCR) & 0x0fff, PORT_PXCR); | ||
220 | ctrl_outl((ctrl_inl(BSC_CS6ABCR) & ~0x00000600) | 0x00000200, | ||
221 | BSC_CS6ABCR); | ||
149 | } | 222 | } |
150 | 223 | ||
151 | static struct sh_machine_vector mv_migor __initmv = { | 224 | static struct sh_machine_vector mv_migor __initmv = { |