]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/arm/mach-davinci/board-neuros-osd2.c
Merge branches 'for-4.11/upstream-fixes', 'for-4.12/accutouch', 'for-4.12/cp2112...
[mirror_ubuntu-artful-kernel.git] / arch / arm / mach-davinci / board-neuros-osd2.c
1 /*
2 * Neuros Technologies OSD2 board support
3 *
4 * Modified from original 644X-EVM board support.
5 * 2008 (c) Neuros Technology, LLC.
6 * 2009 (c) Jorge Luis Zapata Muga <jorgeluis.zapata@gmail.com>
7 * 2009 (c) Andrey A. Porodko <Andrey.Porodko@gmail.com>
8 *
9 * The Neuros OSD 2.0 is the hardware component of the Neuros Open
10 * Internet Television Platform. Hardware is very close to TI
11 * DM644X-EVM board. It has:
12 * DM6446M02 module with 256MB NAND, 256MB RAM, TLV320AIC32 AIC,
13 * USB, Ethernet, SD/MMC, UART, THS8200, TVP7000 for video.
14 * Additionally realtime clock, IR remote control receiver,
15 * IR Blaster based on MSP430 (firmware although is different
16 * from used in DM644X-EVM), internal ATA-6 3.5” HDD drive
17 * with PATA interface, two muxed red-green leds.
18 *
19 * For more information please refer to
20 * http://wiki.neurostechnology.com/index.php/OSD_2.0_HD
21 *
22 * This file is licensed under the terms of the GNU General Public
23 * License version 2. This program is licensed "as is" without any
24 * warranty of any kind, whether express or implied.
25 */
26 #include <linux/platform_device.h>
27 #include <linux/gpio.h>
28 #include <linux/leds.h>
29 #include <linux/mtd/partitions.h>
30 #include <linux/platform_data/gpio-davinci.h>
31 #include <linux/platform_data/i2c-davinci.h>
32 #include <linux/platform_data/mmc-davinci.h>
33 #include <linux/platform_data/mtd-davinci.h>
34 #include <linux/platform_data/usb-davinci.h>
35
36 #include <asm/mach-types.h>
37 #include <asm/mach/arch.h>
38
39 #include <mach/common.h>
40 #include <mach/serial.h>
41 #include <mach/mux.h>
42
43 #include "davinci.h"
44
45 #define NEUROS_OSD2_PHY_ID "davinci_mdio-0:01"
46 #define LXT971_PHY_ID 0x001378e2
47 #define LXT971_PHY_MASK 0xfffffff0
48
49 #define NTOSD2_AUDIOSOC_I2C_ADDR 0x18
50 #define NTOSD2_MSP430_I2C_ADDR 0x59
51 #define NTOSD2_MSP430_IRQ 2
52
53 /* Neuros OSD2 has a Samsung 256 MByte NAND flash (Dev ID of 0xAA,
54 * 2048 blocks in the device, 64 pages per block, 2048 bytes per
55 * page.
56 */
57
58 #define NAND_BLOCK_SIZE SZ_128K
59
60 static struct mtd_partition davinci_ntosd2_nandflash_partition[] = {
61 {
62 /* UBL (a few copies) plus U-Boot */
63 .name = "bootloader",
64 .offset = 0,
65 .size = 15 * NAND_BLOCK_SIZE,
66 .mask_flags = MTD_WRITEABLE, /* force read-only */
67 }, {
68 /* U-Boot environment */
69 .name = "params",
70 .offset = MTDPART_OFS_APPEND,
71 .size = 1 * NAND_BLOCK_SIZE,
72 .mask_flags = 0,
73 }, {
74 /* Kernel */
75 .name = "kernel",
76 .offset = MTDPART_OFS_APPEND,
77 .size = SZ_4M,
78 .mask_flags = 0,
79 }, {
80 /* File System */
81 .name = "filesystem",
82 .offset = MTDPART_OFS_APPEND,
83 .size = MTDPART_SIZ_FULL,
84 .mask_flags = 0,
85 }
86 /* A few blocks at end hold a flash Bad Block Table. */
87 };
88
89 static struct davinci_nand_pdata davinci_ntosd2_nandflash_data = {
90 .parts = davinci_ntosd2_nandflash_partition,
91 .nr_parts = ARRAY_SIZE(davinci_ntosd2_nandflash_partition),
92 .ecc_mode = NAND_ECC_HW,
93 .ecc_bits = 1,
94 .bbt_options = NAND_BBT_USE_FLASH,
95 };
96
97 static struct resource davinci_ntosd2_nandflash_resource[] = {
98 {
99 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
100 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
101 .flags = IORESOURCE_MEM,
102 }, {
103 .start = DM644X_ASYNC_EMIF_CONTROL_BASE,
104 .end = DM644X_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
105 .flags = IORESOURCE_MEM,
106 },
107 };
108
109 static struct platform_device davinci_ntosd2_nandflash_device = {
110 .name = "davinci_nand",
111 .id = 0,
112 .dev = {
113 .platform_data = &davinci_ntosd2_nandflash_data,
114 },
115 .num_resources = ARRAY_SIZE(davinci_ntosd2_nandflash_resource),
116 .resource = davinci_ntosd2_nandflash_resource,
117 };
118
119 static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
120
121 static struct platform_device davinci_fb_device = {
122 .name = "davincifb",
123 .id = -1,
124 .dev = {
125 .dma_mask = &davinci_fb_dma_mask,
126 .coherent_dma_mask = DMA_BIT_MASK(32),
127 },
128 .num_resources = 0,
129 };
130
131 static struct gpio_led ntosd2_leds[] = {
132 { .name = "led1_green", .gpio = GPIO(10), },
133 { .name = "led1_red", .gpio = GPIO(11), },
134 { .name = "led2_green", .gpio = GPIO(12), },
135 { .name = "led2_red", .gpio = GPIO(13), },
136 };
137
138 static struct gpio_led_platform_data ntosd2_leds_data = {
139 .num_leds = ARRAY_SIZE(ntosd2_leds),
140 .leds = ntosd2_leds,
141 };
142
143 static struct platform_device ntosd2_leds_dev = {
144 .name = "leds-gpio",
145 .id = -1,
146 .dev = {
147 .platform_data = &ntosd2_leds_data,
148 },
149 };
150
151
152 static struct platform_device *davinci_ntosd2_devices[] __initdata = {
153 &davinci_fb_device,
154 &ntosd2_leds_dev,
155 };
156
157 static void __init davinci_ntosd2_map_io(void)
158 {
159 dm644x_init();
160 }
161
162 static struct davinci_mmc_config davinci_ntosd2_mmc_config = {
163 .wires = 4,
164 };
165
166 #define HAS_ATA IS_ENABLED(CONFIG_BLK_DEV_PALMCHIP_BK3710)
167
168 #define HAS_NAND IS_ENABLED(CONFIG_MTD_NAND_DAVINCI)
169
170 static __init void davinci_ntosd2_init(void)
171 {
172 int ret;
173 struct clk *aemif_clk;
174 struct davinci_soc_info *soc_info = &davinci_soc_info;
175
176 ret = dm644x_gpio_register();
177 if (ret)
178 pr_warn("%s: GPIO init failed: %d\n", __func__, ret);
179
180 aemif_clk = clk_get(NULL, "aemif");
181 clk_prepare_enable(aemif_clk);
182
183 if (HAS_ATA) {
184 if (HAS_NAND)
185 pr_warn("WARNING: both IDE and Flash are enabled, but they share AEMIF pins\n"
186 "\tDisable IDE for NAND/NOR support\n");
187 davinci_init_ide();
188 } else if (HAS_NAND) {
189 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
190 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
191
192 /* only one device will be jumpered and detected */
193 if (HAS_NAND)
194 platform_device_register(
195 &davinci_ntosd2_nandflash_device);
196 }
197
198 platform_add_devices(davinci_ntosd2_devices,
199 ARRAY_SIZE(davinci_ntosd2_devices));
200
201 davinci_serial_init(dm644x_serial_device);
202 dm644x_init_asp();
203
204 soc_info->emac_pdata->phy_id = NEUROS_OSD2_PHY_ID;
205
206 davinci_setup_usb(1000, 8);
207 /*
208 * Mux the pins to be GPIOs, VLYNQEN is already done at startup.
209 * The AEAWx are five new AEAW pins that can be muxed by separately.
210 * They are a bitmask for GPIO management. According TI
211 * documentation (http://www.ti.com/lit/gpn/tms320dm6446) to employ
212 * gpio(10,11,12,13) for leds any combination of bits works except
213 * four last. So we are to reset all five.
214 */
215 davinci_cfg_reg(DM644X_AEAW0);
216 davinci_cfg_reg(DM644X_AEAW1);
217 davinci_cfg_reg(DM644X_AEAW2);
218 davinci_cfg_reg(DM644X_AEAW3);
219 davinci_cfg_reg(DM644X_AEAW4);
220
221 davinci_setup_mmc(0, &davinci_ntosd2_mmc_config);
222 }
223
224 MACHINE_START(NEUROS_OSD2, "Neuros OSD2")
225 /* Maintainer: Neuros Technologies <neuros@groups.google.com> */
226 .atag_offset = 0x100,
227 .map_io = davinci_ntosd2_map_io,
228 .init_irq = davinci_irq_init,
229 .init_time = davinci_timer_init,
230 .init_machine = davinci_ntosd2_init,
231 .init_late = davinci_init_late,
232 .dma_zone_size = SZ_128M,
233 .restart = davinci_restart,
234 MACHINE_END