Eric Miao | 01215e3 | 2009-03-20 13:33:49 +0800 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-mmp/ttc_dkb.c |
| 3 | * |
| 4 | * Support for the Marvell PXA910-based TTC_DKB Development Platform. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * publishhed by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/platform_device.h> |
Haojian Zhuang | d6587c3 | 2009-09-23 01:57:35 +0800 | [diff] [blame] | 14 | #include <linux/mtd/mtd.h> |
| 15 | #include <linux/mtd/partitions.h> |
| 16 | #include <linux/mtd/onenand.h> |
Haojian Zhuang | 0bd8696 | 2010-09-08 09:42:42 -0400 | [diff] [blame] | 17 | #include <linux/interrupt.h> |
Haojian Zhuang | e04eb14 | 2011-04-01 10:39:28 +0800 | [diff] [blame] | 18 | #include <linux/i2c/pca953x.h> |
| 19 | #include <linux/gpio.h> |
Eric Miao | 01215e3 | 2009-03-20 13:33:49 +0800 | [diff] [blame] | 20 | |
| 21 | #include <asm/mach-types.h> |
| 22 | #include <asm/mach/arch.h> |
Haojian Zhuang | d6587c3 | 2009-09-23 01:57:35 +0800 | [diff] [blame] | 23 | #include <asm/mach/flash.h> |
Eric Miao | 01215e3 | 2009-03-20 13:33:49 +0800 | [diff] [blame] | 24 | #include <mach/addr-map.h> |
| 25 | #include <mach/mfp-pxa910.h> |
| 26 | #include <mach/pxa910.h> |
| 27 | |
| 28 | #include "common.h" |
| 29 | |
Haojian Zhuang | e04eb14 | 2011-04-01 10:39:28 +0800 | [diff] [blame] | 30 | #define TTCDKB_GPIO_EXT0(x) (NR_BUILTIN_GPIO + ((x < 0) ? 0 : \ |
| 31 | ((x < 16) ? x : 15))) |
| 32 | #define TTCDKB_GPIO_EXT1(x) (NR_BUILTIN_GPIO + 16 + ((x < 0) ? 0 : \ |
| 33 | ((x < 16) ? x : 15))) |
| 34 | |
| 35 | /* |
| 36 | * 16 board interrupts -- MAX7312 GPIO expander |
| 37 | * 16 board interrupts -- PCA9575 GPIO expander |
| 38 | * 24 board interrupts -- 88PM860x PMIC |
| 39 | */ |
| 40 | #define TTCDKB_NR_IRQS (IRQ_BOARD_START + 16 + 16 + 24) |
Haojian Zhuang | 0bd8696 | 2010-09-08 09:42:42 -0400 | [diff] [blame] | 41 | |
Eric Miao | 01215e3 | 2009-03-20 13:33:49 +0800 | [diff] [blame] | 42 | static unsigned long ttc_dkb_pin_config[] __initdata = { |
| 43 | /* UART2 */ |
| 44 | GPIO47_UART2_RXD, |
| 45 | GPIO48_UART2_TXD, |
Haojian Zhuang | d6587c3 | 2009-09-23 01:57:35 +0800 | [diff] [blame] | 46 | |
| 47 | /* DFI */ |
| 48 | DF_IO0_ND_IO0, |
| 49 | DF_IO1_ND_IO1, |
| 50 | DF_IO2_ND_IO2, |
| 51 | DF_IO3_ND_IO3, |
| 52 | DF_IO4_ND_IO4, |
| 53 | DF_IO5_ND_IO5, |
| 54 | DF_IO6_ND_IO6, |
| 55 | DF_IO7_ND_IO7, |
| 56 | DF_IO8_ND_IO8, |
| 57 | DF_IO9_ND_IO9, |
| 58 | DF_IO10_ND_IO10, |
| 59 | DF_IO11_ND_IO11, |
| 60 | DF_IO12_ND_IO12, |
| 61 | DF_IO13_ND_IO13, |
| 62 | DF_IO14_ND_IO14, |
| 63 | DF_IO15_ND_IO15, |
| 64 | DF_nCS0_SM_nCS2_nCS0, |
| 65 | DF_ALE_SM_WEn_ND_ALE, |
| 66 | DF_CLE_SM_OEn_ND_CLE, |
| 67 | DF_WEn_DF_WEn, |
| 68 | DF_REn_DF_REn, |
| 69 | DF_RDY0_DF_RDY0, |
| 70 | }; |
| 71 | |
| 72 | static struct mtd_partition ttc_dkb_onenand_partitions[] = { |
| 73 | { |
| 74 | .name = "bootloader", |
| 75 | .offset = 0, |
| 76 | .size = SZ_1M, |
| 77 | .mask_flags = MTD_WRITEABLE, |
| 78 | }, { |
| 79 | .name = "reserved", |
| 80 | .offset = MTDPART_OFS_APPEND, |
| 81 | .size = SZ_128K, |
| 82 | .mask_flags = MTD_WRITEABLE, |
| 83 | }, { |
| 84 | .name = "reserved", |
| 85 | .offset = MTDPART_OFS_APPEND, |
| 86 | .size = SZ_8M, |
| 87 | .mask_flags = MTD_WRITEABLE, |
| 88 | }, { |
| 89 | .name = "kernel", |
| 90 | .offset = MTDPART_OFS_APPEND, |
| 91 | .size = (SZ_2M + SZ_1M), |
| 92 | .mask_flags = 0, |
| 93 | }, { |
| 94 | .name = "filesystem", |
| 95 | .offset = MTDPART_OFS_APPEND, |
Stephen Boyd | 3f8e288 | 2011-07-26 18:45:54 +0100 | [diff] [blame] | 96 | .size = SZ_32M + SZ_16M, |
Haojian Zhuang | d6587c3 | 2009-09-23 01:57:35 +0800 | [diff] [blame] | 97 | .mask_flags = 0, |
| 98 | } |
| 99 | }; |
| 100 | |
Haojian Zhuang | d622387 | 2009-11-20 10:57:16 -0500 | [diff] [blame] | 101 | static struct onenand_platform_data ttc_dkb_onenand_info = { |
Haojian Zhuang | d6587c3 | 2009-09-23 01:57:35 +0800 | [diff] [blame] | 102 | .parts = ttc_dkb_onenand_partitions, |
| 103 | .nr_parts = ARRAY_SIZE(ttc_dkb_onenand_partitions), |
| 104 | }; |
| 105 | |
| 106 | static struct resource ttc_dkb_resource_onenand[] = { |
| 107 | [0] = { |
| 108 | .start = SMC_CS0_PHYS_BASE, |
| 109 | .end = SMC_CS0_PHYS_BASE + SZ_1M, |
| 110 | .flags = IORESOURCE_MEM, |
| 111 | }, |
| 112 | }; |
| 113 | |
| 114 | static struct platform_device ttc_dkb_device_onenand = { |
| 115 | .name = "onenand-flash", |
| 116 | .id = -1, |
| 117 | .resource = ttc_dkb_resource_onenand, |
| 118 | .num_resources = ARRAY_SIZE(ttc_dkb_resource_onenand), |
| 119 | .dev = { |
| 120 | .platform_data = &ttc_dkb_onenand_info, |
| 121 | }, |
| 122 | }; |
| 123 | |
| 124 | static struct platform_device *ttc_dkb_devices[] = { |
| 125 | &ttc_dkb_device_onenand, |
Eric Miao | 01215e3 | 2009-03-20 13:33:49 +0800 | [diff] [blame] | 126 | }; |
| 127 | |
Haojian Zhuang | e04eb14 | 2011-04-01 10:39:28 +0800 | [diff] [blame] | 128 | static struct pca953x_platform_data max7312_data[] = { |
| 129 | { |
| 130 | .gpio_base = TTCDKB_GPIO_EXT0(0), |
| 131 | .irq_base = IRQ_BOARD_START, |
| 132 | }, |
| 133 | }; |
| 134 | |
| 135 | static struct i2c_board_info ttc_dkb_i2c_info[] = { |
| 136 | { |
| 137 | .type = "max7312", |
| 138 | .addr = 0x23, |
| 139 | .irq = IRQ_GPIO(80), |
| 140 | .platform_data = &max7312_data, |
| 141 | }, |
| 142 | }; |
| 143 | |
Eric Miao | 01215e3 | 2009-03-20 13:33:49 +0800 | [diff] [blame] | 144 | static void __init ttc_dkb_init(void) |
| 145 | { |
| 146 | mfp_config(ARRAY_AND_SIZE(ttc_dkb_pin_config)); |
| 147 | |
| 148 | /* on-chip devices */ |
| 149 | pxa910_add_uart(1); |
Haojian Zhuang | d6587c3 | 2009-09-23 01:57:35 +0800 | [diff] [blame] | 150 | |
| 151 | /* off-chip devices */ |
Haojian Zhuang | e04eb14 | 2011-04-01 10:39:28 +0800 | [diff] [blame] | 152 | pxa910_add_twsi(0, NULL, ARRAY_AND_SIZE(ttc_dkb_i2c_info)); |
Haojian Zhuang | d6587c3 | 2009-09-23 01:57:35 +0800 | [diff] [blame] | 153 | platform_add_devices(ARRAY_AND_SIZE(ttc_dkb_devices)); |
Eric Miao | 01215e3 | 2009-03-20 13:33:49 +0800 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | MACHINE_START(TTC_DKB, "PXA910-based TTC_DKB Development Platform") |
Eric Miao | 8022887 | 2010-07-15 17:50:13 +0800 | [diff] [blame] | 157 | .map_io = mmp_map_io, |
Haojian Zhuang | 0bd8696 | 2010-09-08 09:42:42 -0400 | [diff] [blame] | 158 | .nr_irqs = TTCDKB_NR_IRQS, |
Eric Miao | 01215e3 | 2009-03-20 13:33:49 +0800 | [diff] [blame] | 159 | .init_irq = pxa910_init_irq, |
| 160 | .timer = &pxa910_timer, |
| 161 | .init_machine = ttc_dkb_init, |
| 162 | MACHINE_END |