blob: 01bcfaae75bc2d03b56aec59f8f68dadde9c84c1 [file] [log] [blame]
Daniel Mack4e4fc052008-01-23 14:54:50 +01001/*
Daniel Mack5c0dbb82009-03-13 16:37:08 +01002 * linux/arch/arm/mach-pxa/colibri-pxa270.c
Daniel Mack4e4fc052008-01-23 14:54:50 +01003 *
Daniel Mack5c0dbb82009-03-13 16:37:08 +01004 * Support for Toradex PXA270 based Colibri module
Daniel Mack4e4fc052008-01-23 14:54:50 +01005 * Daniel Mack <daniel@caiaq.de>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/platform_device.h>
15#include <linux/sysdev.h>
16#include <linux/interrupt.h>
17#include <linux/bitops.h>
18#include <linux/ioport.h>
19#include <linux/delay.h>
20#include <linux/mtd/mtd.h>
21#include <linux/mtd/partitions.h>
22#include <linux/mtd/physmap.h>
Daniel Mack5c0dbb82009-03-13 16:37:08 +010023#include <linux/gpio.h>
Daniel Mack4e4fc052008-01-23 14:54:50 +010024#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/hardware.h>
Daniel Mack4e4fc052008-01-23 14:54:50 +010026#include <asm/irq.h>
27#include <asm/sizes.h>
28#include <asm/mach/arch.h>
29#include <asm/mach/map.h>
30#include <asm/mach/irq.h>
31#include <asm/mach/flash.h>
Eric Miao51c62982009-01-02 23:17:22 +080032
33#include <mach/pxa27x.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/colibri.h>
Daniel Mack4e4fc052008-01-23 14:54:50 +010035
36#include "generic.h"
37#include "devices.h"
38
Daniel Mack5c0dbb82009-03-13 16:37:08 +010039/*
40 * GPIO configuration
41 */
42static mfp_cfg_t colibri_pxa270_pin_config[] __initdata = {
Eric Miaoc0b15412008-08-08 14:59:03 +080043 GPIO78_nCS_2, /* Ethernet CS */
44 GPIO114_GPIO, /* Ethernet IRQ */
45};
46
Daniel Mack4e4fc052008-01-23 14:54:50 +010047/*
Daniel Mack5c0dbb82009-03-13 16:37:08 +010048 * NOR flash
Daniel Mack4e4fc052008-01-23 14:54:50 +010049 */
50static struct mtd_partition colibri_partitions[] = {
51 {
52 .name = "Bootloader",
53 .offset = 0x00000000,
54 .size = 0x00040000,
55 .mask_flags = MTD_WRITEABLE /* force read-only */
56 }, {
57 .name = "Kernel",
58 .offset = 0x00040000,
59 .size = 0x00400000,
60 .mask_flags = 0
61 }, {
62 .name = "Rootfs",
63 .offset = 0x00440000,
64 .size = MTDPART_SIZ_FULL,
65 .mask_flags = 0
66 }
67};
68
69static struct physmap_flash_data colibri_flash_data[] = {
70 {
71 .width = 4, /* bankwidth in bytes */
72 .parts = colibri_partitions,
73 .nr_parts = ARRAY_SIZE(colibri_partitions)
74 }
75};
76
Daniel Mack5c0dbb82009-03-13 16:37:08 +010077static struct resource colibri_pxa270_flash_resource = {
Daniel Mack4e4fc052008-01-23 14:54:50 +010078 .start = PXA_CS0_PHYS,
79 .end = PXA_CS0_PHYS + SZ_32M - 1,
80 .flags = IORESOURCE_MEM,
81};
82
Daniel Mack5c0dbb82009-03-13 16:37:08 +010083static struct platform_device colibri_pxa270_flash_device = {
Daniel Mack4e4fc052008-01-23 14:54:50 +010084 .name = "physmap-flash",
85 .id = 0,
86 .dev = {
87 .platform_data = colibri_flash_data,
88 },
Daniel Mack5c0dbb82009-03-13 16:37:08 +010089 .resource = &colibri_pxa270_flash_resource,
Daniel Mack4e4fc052008-01-23 14:54:50 +010090 .num_resources = 1,
91};
92
93/*
94 * DM9000 Ethernet
95 */
Daniel Mack5c0dbb82009-03-13 16:37:08 +010096#if defined(CONFIG_DM9000)
Daniel Mack4e4fc052008-01-23 14:54:50 +010097static struct resource dm9000_resources[] = {
98 [0] = {
Daniel Mack5c0dbb82009-03-13 16:37:08 +010099 .start = COLIBRI_PXA270_ETH_PHYS,
100 .end = COLIBRI_PXA270_ETH_PHYS + 3,
Daniel Mack4e4fc052008-01-23 14:54:50 +0100101 .flags = IORESOURCE_MEM,
102 },
103 [1] = {
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100104 .start = COLIBRI_PXA270_ETH_PHYS + 4,
105 .end = COLIBRI_PXA270_ETH_PHYS + 4 + 500,
Daniel Mack4e4fc052008-01-23 14:54:50 +0100106 .flags = IORESOURCE_MEM,
107 },
108 [2] = {
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100109 .start = COLIBRI_PXA270_ETH_IRQ,
110 .end = COLIBRI_PXA270_ETH_IRQ,
Michael Abbottd0afc852008-05-14 16:29:24 -0700111 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_RISING,
Daniel Mack4e4fc052008-01-23 14:54:50 +0100112 },
113};
114
115static struct platform_device dm9000_device = {
116 .name = "dm9000",
117 .id = -1,
118 .num_resources = ARRAY_SIZE(dm9000_resources),
119 .resource = dm9000_resources,
120};
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100121#endif /* CONFIG_DM9000 */
Daniel Mack4e4fc052008-01-23 14:54:50 +0100122
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100123static struct platform_device *colibri_pxa270_devices[] __initdata = {
124 &colibri_pxa270_flash_device,
125#if defined(CONFIG_DM9000)
Daniel Mack4e4fc052008-01-23 14:54:50 +0100126 &dm9000_device,
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100127#endif
Daniel Mack4e4fc052008-01-23 14:54:50 +0100128};
129
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100130static void __init colibri_pxa270_init(void)
Daniel Mack4e4fc052008-01-23 14:54:50 +0100131{
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100132 pxa2xx_mfp_config(ARRAY_AND_SIZE(colibri_pxa270_pin_config));
133 platform_add_devices(ARRAY_AND_SIZE(colibri_pxa270_devices));
Daniel Mack4e4fc052008-01-23 14:54:50 +0100134}
135
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100136MACHINE_START(COLIBRI, "Toradex Colibri PXA270")
Daniel Mack4e4fc052008-01-23 14:54:50 +0100137 .phys_io = 0x40000000,
138 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
139 .boot_params = COLIBRI_SDRAM_BASE + 0x100,
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100140 .init_machine = colibri_pxa270_init,
Daniel Mack4e4fc052008-01-23 14:54:50 +0100141 .map_io = pxa_map_io,
142 .init_irq = pxa27x_init_irq,
143 .timer = &pxa_timer,
144MACHINE_END
Daniel Mack5c0dbb82009-03-13 16:37:08 +0100145