2 * linux/arch/arm/mach-clps711x/autcpu12.c
4 * (c) 2001 Thomas Gleixner, autronix automation <gleixner@autronix.de>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/types.h>
23 #include <linux/string.h>
26 #include <linux/gpio.h>
27 #include <linux/ioport.h>
28 #include <linux/interrupt.h>
29 #include <linux/mtd/physmap.h>
30 #include <linux/mtd/plat-ram.h>
31 #include <linux/mtd/partitions.h>
32 #include <linux/mtd/nand-gpio.h>
33 #include <linux/platform_device.h>
34 #include <linux/basic_mmio_gpio.h>
36 #include <mach/hardware.h>
37 #include <asm/sizes.h>
38 #include <asm/setup.h>
39 #include <asm/mach-types.h>
40 #include <asm/mach/arch.h>
41 #include <asm/pgtable.h>
44 #include <asm/mach/map.h>
50 #define AUTCPU12_FLASH_BASE (CS0_PHYS_BASE)
52 /* Board specific hardware definitions */
53 #define AUTCPU12_CHAR_LCD_BASE (CS1_PHYS_BASE + 0x00000000)
54 #define AUTCPU12_CSAUX1_BASE (CS1_PHYS_BASE + 0x04000000)
55 #define AUTCPU12_CAN_BASE (CS1_PHYS_BASE + 0x08000000)
56 #define AUTCPU12_TOUCH_BASE (CS1_PHYS_BASE + 0x0a000000)
57 #define AUTCPU12_IO_BASE (CS1_PHYS_BASE + 0x0c000000)
58 #define AUTCPU12_LPT_BASE (CS1_PHYS_BASE + 0x0e000000)
61 #define AUTCPU12_NVRAM_BASE (CS1_PHYS_BASE + 0x02000000)
63 /* SmartMedia flash */
64 #define AUTCPU12_SMC_BASE (CS1_PHYS_BASE + 0x06000000)
65 #define AUTCPU12_SMC_SEL_BASE (AUTCPU12_SMC_BASE + 0x10)
68 #define AUTCPU12_CS8900_BASE (CS2_PHYS_BASE + 0x300)
69 #define AUTCPU12_CS8900_IRQ (IRQ_EINT3)
72 #define AUTCPU12_MMGPIO_BASE (CLPS711X_NR_GPIO)
73 #define AUTCPU12_SMC_NCE (AUTCPU12_MMGPIO_BASE + 0) /* Bit 0 */
74 #define AUTCPU12_SMC_RDY CLPS711X_GPIO(1, 2)
75 #define AUTCPU12_SMC_ALE CLPS711X_GPIO(1, 3)
76 #define AUTCPU12_SMC_CLE CLPS711X_GPIO(1, 3)
78 /* LCD contrast digital potentiometer */
79 #define AUTCPU12_DPOT_CS CLPS711X_GPIO(4, 0)
80 #define AUTCPU12_DPOT_CLK CLPS711X_GPIO(4, 1)
81 #define AUTCPU12_DPOT_UD CLPS711X_GPIO(4, 2)
83 static struct resource autcpu12_cs8900_resource
[] __initdata
= {
84 DEFINE_RES_MEM(AUTCPU12_CS8900_BASE
, SZ_1K
),
85 DEFINE_RES_IRQ(AUTCPU12_CS8900_IRQ
),
88 static struct resource autcpu12_nand_resource
[] __initdata
= {
89 DEFINE_RES_MEM(AUTCPU12_SMC_BASE
, SZ_16
),
92 static struct mtd_partition autcpu12_nand_parts
[] __initdata
= {
94 .name
= "Flash partition 1",
99 .name
= "Flash partition 2",
100 .offset
= MTDPART_OFS_APPEND
,
101 .size
= MTDPART_SIZ_FULL
,
105 static void __init
autcpu12_adjust_parts(struct gpio_nand_platdata
*pdata
,
114 pdata
->parts
[0].size
= SZ_16M
;
117 pr_warn("Unsupported SmartMedia device size %u\n", sz
);
122 static struct gpio_nand_platdata autcpu12_nand_pdata __initdata
= {
123 .gpio_rdy
= AUTCPU12_SMC_RDY
,
124 .gpio_nce
= AUTCPU12_SMC_NCE
,
125 .gpio_ale
= AUTCPU12_SMC_ALE
,
126 .gpio_cle
= AUTCPU12_SMC_CLE
,
129 .parts
= autcpu12_nand_parts
,
130 .num_parts
= ARRAY_SIZE(autcpu12_nand_parts
),
131 .adjust_parts
= autcpu12_adjust_parts
,
134 static struct platform_device autcpu12_nand_pdev __initdata
= {
137 .resource
= autcpu12_nand_resource
,
138 .num_resources
= ARRAY_SIZE(autcpu12_nand_resource
),
140 .platform_data
= &autcpu12_nand_pdata
,
144 static struct resource autcpu12_mmgpio_resource
[] __initdata
= {
145 DEFINE_RES_MEM_NAMED(AUTCPU12_SMC_SEL_BASE
, SZ_1
, "dat"),
148 static struct bgpio_pdata autcpu12_mmgpio_pdata __initdata
= {
149 .base
= AUTCPU12_MMGPIO_BASE
,
153 static struct platform_device autcpu12_mmgpio_pdev __initdata
= {
154 .name
= "basic-mmio-gpio",
156 .resource
= autcpu12_mmgpio_resource
,
157 .num_resources
= ARRAY_SIZE(autcpu12_mmgpio_resource
),
159 .platform_data
= &autcpu12_mmgpio_pdata
,
163 static const struct gpio autcpu12_gpios
[] __initconst
= {
164 { AUTCPU12_DPOT_CS
, GPIOF_OUT_INIT_HIGH
, "DPOT CS" },
165 { AUTCPU12_DPOT_CLK
, GPIOF_OUT_INIT_LOW
, "DPOT CLK" },
166 { AUTCPU12_DPOT_UD
, GPIOF_OUT_INIT_LOW
, "DPOT UD" },
169 static struct mtd_partition autcpu12_flash_partitions
[] = {
173 .size
= MTDPART_SIZ_FULL
,
177 static struct physmap_flash_data autcpu12_flash_pdata
= {
179 .parts
= autcpu12_flash_partitions
,
180 .nr_parts
= ARRAY_SIZE(autcpu12_flash_partitions
),
183 static struct resource autcpu12_flash_resources
[] __initdata
= {
184 DEFINE_RES_MEM(AUTCPU12_FLASH_BASE
, SZ_8M
),
187 static struct platform_device autcpu12_flash_pdev __initdata
= {
188 .name
= "physmap-flash",
190 .resource
= autcpu12_flash_resources
,
191 .num_resources
= ARRAY_SIZE(autcpu12_flash_resources
),
193 .platform_data
= &autcpu12_flash_pdata
,
197 static struct resource autcpu12_nvram_resource
[] __initdata
= {
198 DEFINE_RES_MEM(AUTCPU12_NVRAM_BASE
, 0),
201 static struct platdata_mtd_ram autcpu12_nvram_pdata
= {
205 static struct platform_device autcpu12_nvram_pdev __initdata
= {
208 .resource
= autcpu12_nvram_resource
,
209 .num_resources
= ARRAY_SIZE(autcpu12_nvram_resource
),
211 .platform_data
= &autcpu12_nvram_pdata
,
215 static void __init
autcpu12_nvram_init(void)
218 unsigned int save
[2];
219 resource_size_t nvram_size
= SZ_128K
;
225 * Write complement to ofs 64K
226 * Read and check result on ofs 0K
229 nvram
= ioremap(autcpu12_nvram_resource
[0].start
, SZ_128K
);
231 save
[0] = readl(nvram
+ 0);
232 save
[1] = readl(nvram
+ SZ_64K
);
233 writel(~save
[0], nvram
+ SZ_64K
);
234 if (readl(nvram
+ 0) != save
[0]) {
235 writel(save
[0], nvram
+ 0);
238 writel(save
[1], nvram
+ SZ_64K
);
241 autcpu12_nvram_resource
[0].end
=
242 autcpu12_nvram_resource
[0].start
+ nvram_size
- 1;
243 platform_device_register(&autcpu12_nvram_pdev
);
245 pr_err("Failed to remap NVRAM resource\n");
248 static void __init
autcpu12_init(void)
250 clps711x_devices_init();
251 platform_device_register(&autcpu12_flash_pdev
);
252 platform_device_register_simple("video-clps711x", 0, NULL
, 0);
253 platform_device_register_simple("cs89x0", 0, autcpu12_cs8900_resource
,
254 ARRAY_SIZE(autcpu12_cs8900_resource
));
255 platform_device_register(&autcpu12_mmgpio_pdev
);
256 autcpu12_nvram_init();
259 static void __init
autcpu12_init_late(void)
261 gpio_request_array(autcpu12_gpios
, ARRAY_SIZE(autcpu12_gpios
));
263 if (IS_ENABLED(MTD_NAND_GPIO
) && IS_ENABLED(GPIO_GENERIC_PLATFORM
)) {
264 /* We are need both drivers to handle NAND */
265 platform_device_register(&autcpu12_nand_pdev
);
269 MACHINE_START(AUTCPU12
, "autronix autcpu12")
270 /* Maintainer: Thomas Gleixner */
271 .atag_offset
= 0x20000,
272 .nr_irqs
= CLPS711X_NR_IRQS
,
273 .map_io
= clps711x_map_io
,
274 .init_early
= clps711x_init_early
,
275 .init_irq
= clps711x_init_irq
,
276 .init_time
= clps711x_timer_init
,
277 .init_machine
= autcpu12_init
,
278 .init_late
= autcpu12_init_late
,
279 .handle_irq
= clps711x_handle_irq
,
280 .restart
= clps711x_restart
,