2 * Hawkboard.org based on TI's OMAP-L138 Platform
4 * Initial code: Syed Mohammed Khasim
6 * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com
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.
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/platform_data/gpio-davinci.h>
19 #include <linux/regulator/machine.h>
21 #include <asm/mach-types.h>
22 #include <asm/mach/arch.h>
24 #include <mach/common.h>
26 #include <mach/da8xx.h>
29 #define HAWKBOARD_PHY_ID "davinci_mdio-0:07"
31 #define DA850_USB1_VBUS_PIN GPIO_TO_PIN(2, 4)
32 #define DA850_USB1_OC_PIN GPIO_TO_PIN(6, 13)
34 static short omapl138_hawk_mii_pins
[] __initdata
= {
35 DA850_MII_TXEN
, DA850_MII_TXCLK
, DA850_MII_COL
, DA850_MII_TXD_3
,
36 DA850_MII_TXD_2
, DA850_MII_TXD_1
, DA850_MII_TXD_0
, DA850_MII_RXER
,
37 DA850_MII_CRS
, DA850_MII_RXCLK
, DA850_MII_RXDV
, DA850_MII_RXD_3
,
38 DA850_MII_RXD_2
, DA850_MII_RXD_1
, DA850_MII_RXD_0
, DA850_MDIO_CLK
,
43 static __init
void omapl138_hawk_config_emac(void)
45 void __iomem
*cfgchip3
= DA8XX_SYSCFG0_VIRT(DA8XX_CFGCHIP3_REG
);
48 struct davinci_soc_info
*soc_info
= &davinci_soc_info
;
50 val
= __raw_readl(cfgchip3
);
52 ret
= davinci_cfg_reg_list(omapl138_hawk_mii_pins
);
54 pr_warn("%s: CPGMAC/MII mux setup failed: %d\n", __func__
, ret
);
58 /* configure the CFGCHIP3 register for MII */
59 __raw_writel(val
, cfgchip3
);
60 pr_info("EMAC: MII PHY configured\n");
62 soc_info
->emac_pdata
->phy_id
= HAWKBOARD_PHY_ID
;
64 ret
= da8xx_register_emac();
66 pr_warn("%s: EMAC registration failed: %d\n", __func__
, ret
);
70 * The following EDMA channels/slots are not being used by drivers (for
71 * example: Timer, GPIO, UART events etc) on da850/omap-l138 EVM/Hawkboard,
72 * hence they are being reserved for codecs on the DSP side.
74 static const s16 da850_dma0_rsv_chans
[][2] = {
75 /* (offset, number) */
82 static const s16 da850_dma0_rsv_slots
[][2] = {
83 /* (offset, number) */
90 static const s16 da850_dma1_rsv_chans
[][2] = {
91 /* (offset, number) */
97 static const s16 da850_dma1_rsv_slots
[][2] = {
98 /* (offset, number) */
104 static struct edma_rsv_info da850_edma_cc0_rsv
= {
105 .rsv_chans
= da850_dma0_rsv_chans
,
106 .rsv_slots
= da850_dma0_rsv_slots
,
109 static struct edma_rsv_info da850_edma_cc1_rsv
= {
110 .rsv_chans
= da850_dma1_rsv_chans
,
111 .rsv_slots
= da850_dma1_rsv_slots
,
114 static struct edma_rsv_info
*da850_edma_rsv
[2] = {
119 static const short hawk_mmcsd0_pins
[] = {
120 DA850_MMCSD0_DAT_0
, DA850_MMCSD0_DAT_1
, DA850_MMCSD0_DAT_2
,
121 DA850_MMCSD0_DAT_3
, DA850_MMCSD0_CLK
, DA850_MMCSD0_CMD
,
122 DA850_GPIO3_12
, DA850_GPIO3_13
,
126 static struct gpiod_lookup_table mmc_gpios_table
= {
127 .dev_id
= "da830-mmc.0",
129 /* CD: gpio3_12: gpio60: chip 1 contains gpio range 32-63*/
130 GPIO_LOOKUP("davinci_gpio.1", 28, "cd", GPIO_ACTIVE_LOW
),
131 GPIO_LOOKUP("davinci_gpio.1", 29, "wp", GPIO_ACTIVE_LOW
),
135 static struct davinci_mmc_config da850_mmc_config
= {
137 .max_freq
= 50000000,
138 .caps
= MMC_CAP_MMC_HIGHSPEED
| MMC_CAP_SD_HIGHSPEED
,
141 static __init
void omapl138_hawk_mmc_init(void)
145 ret
= davinci_cfg_reg_list(hawk_mmcsd0_pins
);
147 pr_warn("%s: MMC/SD0 mux setup failed: %d\n", __func__
, ret
);
151 gpiod_add_lookup_table(&mmc_gpios_table
);
153 ret
= da8xx_register_mmcsd0(&da850_mmc_config
);
155 pr_warn("%s: MMC/SD0 registration failed: %d\n", __func__
, ret
);
156 goto mmc_setup_mmcsd_fail
;
161 mmc_setup_mmcsd_fail
:
162 gpiod_remove_lookup_table(&mmc_gpios_table
);
165 static irqreturn_t
omapl138_hawk_usb_ocic_irq(int irq
, void *dev_id
);
166 static da8xx_ocic_handler_t hawk_usb_ocic_handler
;
168 static const short da850_hawk_usb11_pins
[] = {
169 DA850_GPIO2_4
, DA850_GPIO6_13
,
173 static int hawk_usb_set_power(unsigned port
, int on
)
175 gpio_set_value(DA850_USB1_VBUS_PIN
, on
);
179 static int hawk_usb_get_power(unsigned port
)
181 return gpio_get_value(DA850_USB1_VBUS_PIN
);
184 static int hawk_usb_get_oci(unsigned port
)
186 return !gpio_get_value(DA850_USB1_OC_PIN
);
189 static int hawk_usb_ocic_notify(da8xx_ocic_handler_t handler
)
191 int irq
= gpio_to_irq(DA850_USB1_OC_PIN
);
194 if (handler
!= NULL
) {
195 hawk_usb_ocic_handler
= handler
;
197 error
= request_irq(irq
, omapl138_hawk_usb_ocic_irq
,
198 IRQF_TRIGGER_RISING
|
199 IRQF_TRIGGER_FALLING
,
200 "OHCI over-current indicator", NULL
);
202 pr_err("%s: could not request IRQ to watch "
203 "over-current indicator changes\n", __func__
);
210 static struct da8xx_ohci_root_hub omapl138_hawk_usb11_pdata
= {
211 .set_power
= hawk_usb_set_power
,
212 .get_power
= hawk_usb_get_power
,
213 .get_oci
= hawk_usb_get_oci
,
214 .ocic_notify
= hawk_usb_ocic_notify
,
215 /* TPS2087 switch @ 5V */
216 .potpgt
= (3 + 1) / 2, /* 3 ms max */
219 static irqreturn_t
omapl138_hawk_usb_ocic_irq(int irq
, void *dev_id
)
221 hawk_usb_ocic_handler(&omapl138_hawk_usb11_pdata
, 1);
225 static __init
void omapl138_hawk_usb_init(void)
229 ret
= davinci_cfg_reg_list(da850_hawk_usb11_pins
);
231 pr_warn("%s: USB 1.1 PinMux setup failed: %d\n", __func__
, ret
);
235 ret
= da8xx_register_usb20_phy_clk(false);
237 pr_warn("%s: USB 2.0 PHY CLK registration failed: %d\n",
240 ret
= da8xx_register_usb11_phy_clk(false);
242 pr_warn("%s: USB 1.1 PHY CLK registration failed: %d\n",
245 ret
= da8xx_register_usb_phy();
247 pr_warn("%s: USB PHY registration failed: %d\n",
250 ret
= gpio_request_one(DA850_USB1_VBUS_PIN
,
251 GPIOF_DIR_OUT
, "USB1 VBUS");
253 pr_err("%s: failed to request GPIO for USB 1.1 port "
254 "power control: %d\n", __func__
, ret
);
258 ret
= gpio_request_one(DA850_USB1_OC_PIN
,
259 GPIOF_DIR_IN
, "USB1 OC");
261 pr_err("%s: failed to request GPIO for USB 1.1 port "
262 "over-current indicator: %d\n", __func__
, ret
);
263 goto usb11_setup_oc_fail
;
266 ret
= da8xx_register_usb11(&omapl138_hawk_usb11_pdata
);
268 pr_warn("%s: USB 1.1 registration failed: %d\n", __func__
, ret
);
269 goto usb11_setup_fail
;
275 gpio_free(DA850_USB1_OC_PIN
);
277 gpio_free(DA850_USB1_VBUS_PIN
);
280 static __init
void omapl138_hawk_init(void)
284 ret
= da8xx_register_cfgchip();
286 pr_warn("%s: CFGCHIP registration failed: %d\n", __func__
, ret
);
288 ret
= da850_register_gpio();
290 pr_warn("%s: GPIO init failed: %d\n", __func__
, ret
);
292 davinci_serial_init(da8xx_serial_device
);
294 omapl138_hawk_config_emac();
296 ret
= da850_register_edma(da850_edma_rsv
);
298 pr_warn("%s: EDMA registration failed: %d\n", __func__
, ret
);
300 omapl138_hawk_mmc_init();
302 omapl138_hawk_usb_init();
304 ret
= da8xx_register_watchdog();
306 pr_warn("%s: watchdog registration failed: %d\n",
309 ret
= da8xx_register_rproc();
311 pr_warn("%s: dsp/rproc registration failed: %d\n",
314 regulator_has_full_constraints();
317 #ifdef CONFIG_SERIAL_8250_CONSOLE
318 static int __init
omapl138_hawk_console_init(void)
320 if (!machine_is_omapl138_hawkboard())
323 return add_preferred_console("ttyS", 2, "115200");
325 console_initcall(omapl138_hawk_console_init
);
328 static void __init
omapl138_hawk_map_io(void)
333 MACHINE_START(OMAPL138_HAWKBOARD
, "AM18x/OMAP-L138 Hawkboard")
334 .atag_offset
= 0x100,
335 .map_io
= omapl138_hawk_map_io
,
336 .init_irq
= cp_intc_init
,
337 .init_time
= davinci_timer_init
,
338 .init_machine
= omapl138_hawk_init
,
339 .init_late
= davinci_init_late
,
340 .dma_zone_size
= SZ_128M
,
341 .restart
= da8xx_restart
,
342 .reserve
= da8xx_rproc_reserve_cma
,