]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/arm/mach-davinci/board-omapl138-hawk.c
Merge tag 'davinci-for-v5.1/soc-part2' of git://git.kernel.org/pub/scm/linux/kernel...
[linux.git] / arch / arm / mach-davinci / board-omapl138-hawk.c
1 /*
2  * Hawkboard.org based on TI's OMAP-L138 Platform
3  *
4  * Initial code: Syed Mohammed Khasim
5  *
6  * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com
7  *
8  * This file is licensed under the terms of the GNU General Public License
9  * version 2. This program is licensed "as is" without any warranty of
10  * any kind, whether express or implied.
11  */
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/console.h>
15 #include <linux/interrupt.h>
16 #include <linux/gpio.h>
17 #include <linux/gpio/machine.h>
18 #include <linux/mtd/partitions.h>
19 #include <linux/mtd/rawnand.h>
20 #include <linux/platform_data/gpio-davinci.h>
21 #include <linux/platform_data/mtd-davinci.h>
22 #include <linux/platform_data/mtd-davinci-aemif.h>
23 #include <linux/platform_data/ti-aemif.h>
24 #include <linux/regulator/machine.h>
25
26 #include <asm/mach-types.h>
27 #include <asm/mach/arch.h>
28
29 #include <mach/common.h>
30 #include "cp_intc.h"
31 #include <mach/da8xx.h>
32 #include <mach/mux.h>
33
34 #define HAWKBOARD_PHY_ID                "davinci_mdio-0:07"
35
36 #define DA850_USB1_VBUS_PIN             GPIO_TO_PIN(2, 4)
37 #define DA850_USB1_OC_PIN               GPIO_TO_PIN(6, 13)
38
39 static short omapl138_hawk_mii_pins[] __initdata = {
40         DA850_MII_TXEN, DA850_MII_TXCLK, DA850_MII_COL, DA850_MII_TXD_3,
41         DA850_MII_TXD_2, DA850_MII_TXD_1, DA850_MII_TXD_0, DA850_MII_RXER,
42         DA850_MII_CRS, DA850_MII_RXCLK, DA850_MII_RXDV, DA850_MII_RXD_3,
43         DA850_MII_RXD_2, DA850_MII_RXD_1, DA850_MII_RXD_0, DA850_MDIO_CLK,
44         DA850_MDIO_D,
45         -1
46 };
47
48 static __init void omapl138_hawk_config_emac(void)
49 {
50         void __iomem *cfgchip3 = DA8XX_SYSCFG0_VIRT(DA8XX_CFGCHIP3_REG);
51         int ret;
52         u32 val;
53         struct davinci_soc_info *soc_info = &davinci_soc_info;
54
55         val = __raw_readl(cfgchip3);
56         val &= ~BIT(8);
57         ret = davinci_cfg_reg_list(omapl138_hawk_mii_pins);
58         if (ret) {
59                 pr_warn("%s: CPGMAC/MII mux setup failed: %d\n", __func__, ret);
60                 return;
61         }
62
63         /* configure the CFGCHIP3 register for MII */
64         __raw_writel(val, cfgchip3);
65         pr_info("EMAC: MII PHY configured\n");
66
67         soc_info->emac_pdata->phy_id = HAWKBOARD_PHY_ID;
68
69         ret = da8xx_register_emac();
70         if (ret)
71                 pr_warn("%s: EMAC registration failed: %d\n", __func__, ret);
72 }
73
74 /*
75  * The following EDMA channels/slots are not being used by drivers (for
76  * example: Timer, GPIO, UART events etc) on da850/omap-l138 EVM/Hawkboard,
77  * hence they are being reserved for codecs on the DSP side.
78  */
79 static const s16 da850_dma0_rsv_chans[][2] = {
80         /* (offset, number) */
81         { 8,  6},
82         {24,  4},
83         {30,  2},
84         {-1, -1}
85 };
86
87 static const s16 da850_dma0_rsv_slots[][2] = {
88         /* (offset, number) */
89         { 8,  6},
90         {24,  4},
91         {30, 50},
92         {-1, -1}
93 };
94
95 static const s16 da850_dma1_rsv_chans[][2] = {
96         /* (offset, number) */
97         { 0, 28},
98         {30,  2},
99         {-1, -1}
100 };
101
102 static const s16 da850_dma1_rsv_slots[][2] = {
103         /* (offset, number) */
104         { 0, 28},
105         {30, 90},
106         {-1, -1}
107 };
108
109 static struct edma_rsv_info da850_edma_cc0_rsv = {
110         .rsv_chans      = da850_dma0_rsv_chans,
111         .rsv_slots      = da850_dma0_rsv_slots,
112 };
113
114 static struct edma_rsv_info da850_edma_cc1_rsv = {
115         .rsv_chans      = da850_dma1_rsv_chans,
116         .rsv_slots      = da850_dma1_rsv_slots,
117 };
118
119 static struct edma_rsv_info *da850_edma_rsv[2] = {
120         &da850_edma_cc0_rsv,
121         &da850_edma_cc1_rsv,
122 };
123
124 static const short hawk_mmcsd0_pins[] = {
125         DA850_MMCSD0_DAT_0, DA850_MMCSD0_DAT_1, DA850_MMCSD0_DAT_2,
126         DA850_MMCSD0_DAT_3, DA850_MMCSD0_CLK, DA850_MMCSD0_CMD,
127         DA850_GPIO3_12, DA850_GPIO3_13,
128         -1
129 };
130
131 #define DA850_HAWK_MMCSD_CD_PIN         GPIO_TO_PIN(3, 12)
132 #define DA850_HAWK_MMCSD_WP_PIN         GPIO_TO_PIN(3, 13)
133
134 static struct gpiod_lookup_table mmc_gpios_table = {
135         .dev_id = "da830-mmc.0",
136         .table = {
137                 GPIO_LOOKUP("davinci_gpio", DA850_HAWK_MMCSD_CD_PIN, "cd",
138                             GPIO_ACTIVE_LOW),
139                 GPIO_LOOKUP("davinci_gpio", DA850_HAWK_MMCSD_WP_PIN, "wp",
140                             GPIO_ACTIVE_LOW),
141         },
142 };
143
144 static struct davinci_mmc_config da850_mmc_config = {
145         .wires          = 4,
146         .max_freq       = 50000000,
147         .caps           = MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED,
148 };
149
150 static __init void omapl138_hawk_mmc_init(void)
151 {
152         int ret;
153
154         ret = davinci_cfg_reg_list(hawk_mmcsd0_pins);
155         if (ret) {
156                 pr_warn("%s: MMC/SD0 mux setup failed: %d\n", __func__, ret);
157                 return;
158         }
159
160         gpiod_add_lookup_table(&mmc_gpios_table);
161
162         ret = da8xx_register_mmcsd0(&da850_mmc_config);
163         if (ret) {
164                 pr_warn("%s: MMC/SD0 registration failed: %d\n", __func__, ret);
165                 goto mmc_setup_mmcsd_fail;
166         }
167
168         return;
169
170 mmc_setup_mmcsd_fail:
171         gpiod_remove_lookup_table(&mmc_gpios_table);
172 }
173
174 static struct mtd_partition omapl138_hawk_nandflash_partition[] = {
175         {
176                 .name           = "u-boot env",
177                 .offset         = 0,
178                 .size           = SZ_128K,
179                 .mask_flags     = MTD_WRITEABLE,
180          },
181         {
182                 .name           = "u-boot",
183                 .offset         = MTDPART_OFS_APPEND,
184                 .size           = SZ_512K,
185                 .mask_flags     = MTD_WRITEABLE,
186         },
187         {
188                 .name           = "free space",
189                 .offset         = MTDPART_OFS_APPEND,
190                 .size           = MTDPART_SIZ_FULL,
191                 .mask_flags     = 0,
192         },
193 };
194
195 static struct davinci_aemif_timing omapl138_hawk_nandflash_timing = {
196         .wsetup         = 24,
197         .wstrobe        = 21,
198         .whold          = 14,
199         .rsetup         = 19,
200         .rstrobe        = 50,
201         .rhold          = 0,
202         .ta             = 20,
203 };
204
205 static struct davinci_nand_pdata omapl138_hawk_nandflash_data = {
206         .core_chipsel   = 1,
207         .parts          = omapl138_hawk_nandflash_partition,
208         .nr_parts       = ARRAY_SIZE(omapl138_hawk_nandflash_partition),
209         .ecc_mode       = NAND_ECC_HW,
210         .ecc_bits       = 4,
211         .bbt_options    = NAND_BBT_USE_FLASH,
212         .options        = NAND_BUSWIDTH_16,
213         .timing         = &omapl138_hawk_nandflash_timing,
214         .mask_chipsel   = 0,
215         .mask_ale       = 0,
216         .mask_cle       = 0,
217 };
218
219 static struct resource omapl138_hawk_nandflash_resource[] = {
220         {
221                 .start  = DA8XX_AEMIF_CS3_BASE,
222                 .end    = DA8XX_AEMIF_CS3_BASE + SZ_32M,
223                 .flags  = IORESOURCE_MEM,
224         },
225         {
226                 .start  = DA8XX_AEMIF_CTL_BASE,
227                 .end    = DA8XX_AEMIF_CTL_BASE + SZ_32K,
228                 .flags  = IORESOURCE_MEM,
229         },
230 };
231
232 static struct resource omapl138_hawk_aemif_resource[] = {
233         {
234                 .start  = DA8XX_AEMIF_CTL_BASE,
235                 .end    = DA8XX_AEMIF_CTL_BASE + SZ_32K,
236                 .flags  = IORESOURCE_MEM,
237         }
238 };
239
240 static struct aemif_abus_data omapl138_hawk_aemif_abus_data[] = {
241         {
242                 .cs     = 3,
243         }
244 };
245
246 static struct platform_device omapl138_hawk_aemif_devices[] = {
247         {
248                 .name           = "davinci_nand",
249                 .id             = -1,
250                 .dev            = {
251                         .platform_data  = &omapl138_hawk_nandflash_data,
252                 },
253                 .resource       = omapl138_hawk_nandflash_resource,
254                 .num_resources  = ARRAY_SIZE(omapl138_hawk_nandflash_resource),
255         }
256 };
257
258 static struct aemif_platform_data omapl138_hawk_aemif_pdata = {
259         .cs_offset = 2,
260         .abus_data = omapl138_hawk_aemif_abus_data,
261         .num_abus_data = ARRAY_SIZE(omapl138_hawk_aemif_abus_data),
262         .sub_devices = omapl138_hawk_aemif_devices,
263         .num_sub_devices = ARRAY_SIZE(omapl138_hawk_aemif_devices),
264 };
265
266 static struct platform_device omapl138_hawk_aemif_device = {
267         .name           = "ti-aemif",
268         .id             = -1,
269         .dev = {
270                 .platform_data  = &omapl138_hawk_aemif_pdata,
271         },
272         .resource       = omapl138_hawk_aemif_resource,
273         .num_resources  = ARRAY_SIZE(omapl138_hawk_aemif_resource),
274 };
275
276 static const short omapl138_hawk_nand_pins[] = {
277         DA850_EMA_WAIT_1, DA850_NEMA_OE, DA850_NEMA_WE, DA850_NEMA_CS_3,
278         DA850_EMA_D_0, DA850_EMA_D_1, DA850_EMA_D_2, DA850_EMA_D_3,
279         DA850_EMA_D_4, DA850_EMA_D_5, DA850_EMA_D_6, DA850_EMA_D_7,
280         DA850_EMA_D_8, DA850_EMA_D_9, DA850_EMA_D_10, DA850_EMA_D_11,
281         DA850_EMA_D_12, DA850_EMA_D_13, DA850_EMA_D_14, DA850_EMA_D_15,
282         DA850_EMA_A_1, DA850_EMA_A_2,
283         -1
284 };
285
286 static int omapl138_hawk_register_aemif(void)
287 {
288         int ret;
289
290         ret = davinci_cfg_reg_list(omapl138_hawk_nand_pins);
291         if (ret)
292                 pr_warn("%s: NAND mux setup failed: %d\n", __func__, ret);
293
294         return platform_device_register(&omapl138_hawk_aemif_device);
295 }
296
297 static const short da850_hawk_usb11_pins[] = {
298         DA850_GPIO2_4, DA850_GPIO6_13,
299         -1
300 };
301
302 static struct gpiod_lookup_table hawk_usb_gpio_lookup = {
303         .dev_id         = "ohci-da8xx",
304         .table = {
305                 GPIO_LOOKUP("davinci_gpio", DA850_USB1_VBUS_PIN, "vbus", 0),
306                 GPIO_LOOKUP("davinci_gpio", DA850_USB1_OC_PIN, "oc", 0),
307         },
308 };
309
310 static struct da8xx_ohci_root_hub omapl138_hawk_usb11_pdata = {
311         /* TPS2087 switch @ 5V */
312         .potpgt         = (3 + 1) / 2,  /* 3 ms max */
313 };
314
315 static __init void omapl138_hawk_usb_init(void)
316 {
317         int ret;
318
319         ret = davinci_cfg_reg_list(da850_hawk_usb11_pins);
320         if (ret) {
321                 pr_warn("%s: USB 1.1 PinMux setup failed: %d\n", __func__, ret);
322                 return;
323         }
324
325         ret = da8xx_register_usb_phy_clocks();
326         if (ret)
327                 pr_warn("%s: USB PHY CLK registration failed: %d\n",
328                         __func__, ret);
329
330         ret = da8xx_register_usb_phy();
331         if (ret)
332                 pr_warn("%s: USB PHY registration failed: %d\n",
333                         __func__, ret);
334
335         gpiod_add_lookup_table(&hawk_usb_gpio_lookup);
336
337         ret = da8xx_register_usb11(&omapl138_hawk_usb11_pdata);
338         if (ret)
339                 pr_warn("%s: USB 1.1 registration failed: %d\n", __func__, ret);
340
341         return;
342 }
343
344 static __init void omapl138_hawk_init(void)
345 {
346         int ret;
347
348         da850_register_clocks();
349
350         ret = da850_register_gpio();
351         if (ret)
352                 pr_warn("%s: GPIO init failed: %d\n", __func__, ret);
353
354         davinci_serial_init(da8xx_serial_device);
355
356         omapl138_hawk_config_emac();
357
358         ret = da850_register_edma(da850_edma_rsv);
359         if (ret)
360                 pr_warn("%s: EDMA registration failed: %d\n", __func__, ret);
361
362         omapl138_hawk_mmc_init();
363
364         omapl138_hawk_usb_init();
365
366         ret = omapl138_hawk_register_aemif();
367         if (ret)
368                 pr_warn("%s: aemif registration failed: %d\n", __func__, ret);
369
370         ret = da8xx_register_watchdog();
371         if (ret)
372                 pr_warn("%s: watchdog registration failed: %d\n",
373                         __func__, ret);
374
375         ret = da8xx_register_rproc();
376         if (ret)
377                 pr_warn("%s: dsp/rproc registration failed: %d\n",
378                         __func__, ret);
379
380         regulator_has_full_constraints();
381 }
382
383 #ifdef CONFIG_SERIAL_8250_CONSOLE
384 static int __init omapl138_hawk_console_init(void)
385 {
386         if (!machine_is_omapl138_hawkboard())
387                 return 0;
388
389         return add_preferred_console("ttyS", 2, "115200");
390 }
391 console_initcall(omapl138_hawk_console_init);
392 #endif
393
394 static void __init omapl138_hawk_map_io(void)
395 {
396         da850_init();
397 }
398
399 MACHINE_START(OMAPL138_HAWKBOARD, "AM18x/OMAP-L138 Hawkboard")
400         .atag_offset    = 0x100,
401         .map_io         = omapl138_hawk_map_io,
402         .init_irq       = cp_intc_init,
403         .init_time      = da850_init_time,
404         .init_machine   = omapl138_hawk_init,
405         .init_late      = davinci_init_late,
406         .dma_zone_size  = SZ_128M,
407         .reserve        = da8xx_rproc_reserve_cma,
408 MACHINE_END