]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/arm/mach-davinci/board-neuros-osd2.c
Davinci: aintc/cpintc - use ioremap()
[net-next-2.6.git] / arch / arm / mach-davinci / board-neuros-osd2.c
CommitLineData
c16fe267
AP
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 * Additionaly 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/mtd/partitions.h>
29
30#include <asm/mach-types.h>
31#include <asm/mach/arch.h>
32
33#include <mach/dm644x.h>
7a9978a1 34#include <mach/common.h>
c16fe267
AP
35#include <mach/i2c.h>
36#include <mach/serial.h>
37#include <mach/mux.h>
38#include <mach/nand.h>
39#include <mach/mmc.h>
40#include <mach/usb.h>
41
42#define NEUROS_OSD2_PHY_MASK 0x2
43#define NEUROS_OSD2_MDIO_FREQUENCY 2200000 /* PHY bus frequency */
44
c16fe267
AP
45#define LXT971_PHY_ID 0x001378e2
46#define LXT971_PHY_MASK 0xfffffff0
47
48#define NTOSD2_AUDIOSOC_I2C_ADDR 0x18
49#define NTOSD2_MSP430_I2C_ADDR 0x59
50#define NTOSD2_MSP430_IRQ 2
51
52/* Neuros OSD2 has a Samsung 256 MByte NAND flash (Dev ID of 0xAA,
53 * 2048 blocks in the device, 64 pages per block, 2048 bytes per
54 * page.
55 */
56
57#define NAND_BLOCK_SIZE SZ_128K
58
28552c2e 59static struct mtd_partition davinci_ntosd2_nandflash_partition[] = {
c16fe267
AP
60 {
61 /* UBL (a few copies) plus U-Boot */
62 .name = "bootloader",
63 .offset = 0,
64 .size = 15 * NAND_BLOCK_SIZE,
65 .mask_flags = MTD_WRITEABLE, /* force read-only */
66 }, {
67 /* U-Boot environment */
68 .name = "params",
69 .offset = MTDPART_OFS_APPEND,
70 .size = 1 * NAND_BLOCK_SIZE,
71 .mask_flags = 0,
72 }, {
73 /* Kernel */
74 .name = "kernel",
75 .offset = MTDPART_OFS_APPEND,
76 .size = SZ_4M,
77 .mask_flags = 0,
78 }, {
79 /* File System */
80 .name = "filesystem",
81 .offset = MTDPART_OFS_APPEND,
82 .size = MTDPART_SIZ_FULL,
83 .mask_flags = 0,
84 }
85 /* A few blocks at end hold a flash Bad Block Table. */
86};
87
88static struct davinci_nand_pdata davinci_ntosd2_nandflash_data = {
89 .parts = davinci_ntosd2_nandflash_partition,
90 .nr_parts = ARRAY_SIZE(davinci_ntosd2_nandflash_partition),
91 .ecc_mode = NAND_ECC_HW,
92 .options = NAND_USE_FLASH_BBT,
93};
94
95static struct resource davinci_ntosd2_nandflash_resource[] = {
96 {
70342174
SS
97 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
98 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
c16fe267
AP
99 .flags = IORESOURCE_MEM,
100 }, {
70342174
SS
101 .start = DM644X_ASYNC_EMIF_CONTROL_BASE,
102 .end = DM644X_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
c16fe267
AP
103 .flags = IORESOURCE_MEM,
104 },
105};
106
107static struct platform_device davinci_ntosd2_nandflash_device = {
108 .name = "davinci_nand",
109 .id = 0,
110 .dev = {
111 .platform_data = &davinci_ntosd2_nandflash_data,
112 },
113 .num_resources = ARRAY_SIZE(davinci_ntosd2_nandflash_resource),
114 .resource = davinci_ntosd2_nandflash_resource,
115};
116
117static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
118
119static struct platform_device davinci_fb_device = {
120 .name = "davincifb",
121 .id = -1,
122 .dev = {
123 .dma_mask = &davinci_fb_dma_mask,
124 .coherent_dma_mask = DMA_BIT_MASK(32),
125 },
126 .num_resources = 0,
127};
128
c16fe267
AP
129static struct snd_platform_data dm644x_ntosd2_snd_data;
130
131static 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
138static struct gpio_led_platform_data ntosd2_leds_data = {
139 .num_leds = ARRAY_SIZE(ntosd2_leds),
140 .leds = ntosd2_leds,
141};
142
143static 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
152static struct platform_device *davinci_ntosd2_devices[] __initdata = {
153 &davinci_fb_device,
154 &ntosd2_leds_dev,
155};
156
157static struct davinci_uart_config uart_config __initdata = {
158 .enabled_uarts = (1 << 0),
159};
160
161static void __init davinci_ntosd2_map_io(void)
162{
163 dm644x_init();
164}
165
166/*
167 I2C initialization
168*/
169static struct davinci_i2c_platform_data ntosd2_i2c_pdata = {
170 .bus_freq = 20 /* kHz */,
171 .bus_delay = 100 /* usec */,
172};
173
174static struct i2c_board_info __initdata ntosd2_i2c_info[] = {
175};
176
177static int ntosd2_init_i2c(void)
178{
179 int status;
180
181 davinci_init_i2c(&ntosd2_i2c_pdata);
182 status = gpio_request(NTOSD2_MSP430_IRQ, ntosd2_i2c_info[0].type);
183 if (status == 0) {
184 status = gpio_direction_input(NTOSD2_MSP430_IRQ);
185 if (status == 0) {
186 status = gpio_to_irq(NTOSD2_MSP430_IRQ);
187 if (status > 0) {
188 ntosd2_i2c_info[0].irq = status;
189 i2c_register_board_info(1,
190 ntosd2_i2c_info,
191 ARRAY_SIZE(ntosd2_i2c_info));
192 }
193 }
194 }
195 return status;
196}
197
198static struct davinci_mmc_config davinci_ntosd2_mmc_config = {
199 .wires = 4,
200 .version = MMC_CTLR_VERSION_1
201};
202
203
204#if defined(CONFIG_BLK_DEV_PALMCHIP_BK3710) || \
205 defined(CONFIG_BLK_DEV_PALMCHIP_BK3710_MODULE)
206#define HAS_ATA 1
207#else
208#define HAS_ATA 0
209#endif
210
211#if defined(CONFIG_MTD_NAND_DAVINCI) || \
212 defined(CONFIG_MTD_NAND_DAVINCI_MODULE)
213#define HAS_NAND 1
214#else
215#define HAS_NAND 0
216#endif
217
218static __init void davinci_ntosd2_init(void)
219{
220 struct clk *aemif_clk;
221 struct davinci_soc_info *soc_info = &davinci_soc_info;
222 int status;
223
224 aemif_clk = clk_get(NULL, "aemif");
225 clk_enable(aemif_clk);
226
227 if (HAS_ATA) {
228 if (HAS_NAND)
229 pr_warning("WARNING: both IDE and Flash are "
230 "enabled, but they share AEMIF pins.\n"
231 "\tDisable IDE for NAND/NOR support.\n");
7a9978a1 232 davinci_init_ide();
c16fe267
AP
233 } else if (HAS_NAND) {
234 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
235 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
236
237 /* only one device will be jumpered and detected */
238 if (HAS_NAND)
239 platform_device_register(
240 &davinci_ntosd2_nandflash_device);
241 }
242
243 platform_add_devices(davinci_ntosd2_devices,
244 ARRAY_SIZE(davinci_ntosd2_devices));
245
246 /* Initialize I2C interface specific for this board */
247 status = ntosd2_init_i2c();
248 if (status < 0)
249 pr_warning("davinci_ntosd2_init: msp430 irq setup failed:"
250 " %d\n", status);
251
252 davinci_serial_init(&uart_config);
253 dm644x_init_asp(&dm644x_ntosd2_snd_data);
254
255 soc_info->emac_pdata->phy_mask = NEUROS_OSD2_PHY_MASK;
256 soc_info->emac_pdata->mdio_max_freq = NEUROS_OSD2_MDIO_FREQUENCY;
257
258 davinci_setup_usb(1000, 8);
259 /*
260 * Mux the pins to be GPIOs, VLYNQEN is already done at startup.
261 * The AEAWx are five new AEAW pins that can be muxed by separately.
262 * They are a bitmask for GPIO management. According TI
263 * documentation (http://www.ti.com/lit/gpn/tms320dm6446) to employ
264 * gpio(10,11,12,13) for leds any combination of bits works except
265 * four last. So we are to reset all five.
266 */
267 davinci_cfg_reg(DM644X_AEAW0);
268 davinci_cfg_reg(DM644X_AEAW1);
269 davinci_cfg_reg(DM644X_AEAW2);
270 davinci_cfg_reg(DM644X_AEAW3);
271 davinci_cfg_reg(DM644X_AEAW4);
272
273 davinci_setup_mmc(0, &davinci_ntosd2_mmc_config);
274}
275
c16fe267
AP
276MACHINE_START(NEUROS_OSD2, "Neuros OSD2")
277 /* Maintainer: Neuros Technologies <neuros@groups.google.com> */
278 .phys_io = IO_PHYS,
279 .io_pg_offst = (__IO_ADDRESS(IO_PHYS) >> 18) & 0xfffc,
280 .boot_params = (DAVINCI_DDR_BASE + 0x100),
281 .map_io = davinci_ntosd2_map_io,
bd808947 282 .init_irq = davinci_irq_init,
c16fe267
AP
283 .timer = &davinci_timer,
284 .init_machine = davinci_ntosd2_init,
285MACHINE_END