2 * Legacy platform_data quirks
4 * Copyright (C) 2013 Texas Instruments
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 * published by the Free Software Foundation.
10 #include <linux/clk.h>
11 #include <linux/davinci_emac.h>
12 #include <linux/gpio.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/of_platform.h>
16 #include <linux/ti_wilink_st.h>
17 #include <linux/wl12xx.h>
18 #include <linux/mmc/card.h>
19 #include <linux/mmc/host.h>
20 #include <linux/power/smartreflex.h>
21 #include <linux/regulator/machine.h>
22 #include <linux/regulator/fixed.h>
24 #include <linux/platform_data/pinctrl-single.h>
25 #include <linux/platform_data/hsmmc-omap.h>
26 #include <linux/platform_data/iommu-omap.h>
27 #include <linux/platform_data/ti-sysc.h>
28 #include <linux/platform_data/wkup_m3.h>
29 #include <linux/platform_data/asoc-ti-mcbsp.h>
32 #include "common-board-devices.h"
34 #include "omap_device.h"
35 #include "omap-secure.h"
39 static struct omap_hsmmc_platform_data __maybe_unused mmc_pdata[2];
42 const char *compatible;
46 static struct of_dev_auxdata omap_auxdata_lookup[];
47 static struct twl4030_gpio_platform_data twl_gpio_auxdata;
49 #ifdef CONFIG_MACH_NOKIA_N8X0
50 static void __init omap2420_n8x0_legacy_init(void)
52 omap_auxdata_lookup[0].platform_data = n8x0_legacy_init();
55 #define omap2420_n8x0_legacy_init NULL
58 #ifdef CONFIG_ARCH_OMAP3
60 * Configures GPIOs 126, 127 and 129 to 1.8V mode instead of 3.0V
61 * mode for MMC1 in case bootloader did not configure things.
62 * Note that if the pins are used for MMC1, pbias-regulator
63 * manages the IO voltage.
65 static void __init omap3_gpio126_127_129(void)
69 reg = omap_ctrl_readl(OMAP343X_CONTROL_PBIAS_LITE);
70 reg &= ~OMAP343X_PBIASLITEVMODE1;
71 reg |= OMAP343X_PBIASLITEPWRDNZ1;
72 omap_ctrl_writel(reg, OMAP343X_CONTROL_PBIAS_LITE);
73 if (cpu_is_omap3630()) {
74 reg = omap_ctrl_readl(OMAP34XX_CONTROL_WKUP_CTRL);
75 reg |= OMAP36XX_GPIO_IO_PWRDNZ;
76 omap_ctrl_writel(reg, OMAP34XX_CONTROL_WKUP_CTRL);
80 static void __init hsmmc2_internal_input_clk(void)
84 reg = omap_ctrl_readl(OMAP343X_CONTROL_DEVCONF1);
85 reg |= OMAP2_MMCSDIO2ADPCLKISEL;
86 omap_ctrl_writel(reg, OMAP343X_CONTROL_DEVCONF1);
89 static struct iommu_platform_data omap3_iommu_pdata = {
91 .assert_reset = omap_device_assert_hardreset,
92 .deassert_reset = omap_device_deassert_hardreset,
95 static int omap3_sbc_t3730_twl_callback(struct device *dev,
101 res = gpio_request_one(gpio + 2, GPIOF_OUT_INIT_HIGH,
106 gpio_export(gpio, 0);
111 static void __init omap3_sbc_t3x_usb_hub_init(int gpio, char *hub_name)
113 int err = gpio_request_one(gpio, GPIOF_OUT_INIT_LOW, hub_name);
116 pr_err("SBC-T3x: %s reset gpio request failed: %d\n",
121 gpio_export(gpio, 0);
124 gpio_set_value(gpio, 1);
128 static void __init omap3_sbc_t3730_twl_init(void)
130 twl_gpio_auxdata.setup = omap3_sbc_t3730_twl_callback;
133 static void __init omap3_sbc_t3730_legacy_init(void)
135 omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
138 static void __init omap3_sbc_t3530_legacy_init(void)
140 omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
143 static struct ti_st_plat_data wilink_pdata = {
144 .nshutdown_gpio = 137,
145 .dev_name = "/dev/ttyO1",
150 static struct platform_device wl18xx_device = {
154 .platform_data = &wilink_pdata,
158 static struct ti_st_plat_data wilink7_pdata = {
159 .nshutdown_gpio = 162,
160 .dev_name = "/dev/ttyO1",
162 .baud_rate = 3000000,
165 static struct platform_device wl128x_device = {
169 .platform_data = &wilink7_pdata,
173 static struct platform_device btwilink_device = {
178 static void __init omap3_igep0020_rev_f_legacy_init(void)
180 platform_device_register(&wl18xx_device);
181 platform_device_register(&btwilink_device);
184 static void __init omap3_igep0030_rev_g_legacy_init(void)
186 platform_device_register(&wl18xx_device);
187 platform_device_register(&btwilink_device);
190 static void __init omap3_evm_legacy_init(void)
192 hsmmc2_internal_input_clk();
195 static void am35xx_enable_emac_int(void)
199 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
200 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR |
201 AM35XX_CPGMAC_C0_MISC_PULSE_CLR | AM35XX_CPGMAC_C0_RX_THRESH_CLR);
202 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
203 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
206 static void am35xx_disable_emac_int(void)
210 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
211 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR);
212 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
213 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
216 static struct emac_platform_data am35xx_emac_pdata = {
217 .interrupt_enable = am35xx_enable_emac_int,
218 .interrupt_disable = am35xx_disable_emac_int,
221 static void __init am35xx_emac_reset(void)
225 v = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
226 v &= ~AM35XX_CPGMACSS_SW_RST;
227 omap_ctrl_writel(v, AM35XX_CONTROL_IP_SW_RESET);
228 omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); /* OCP barrier */
231 static struct gpio cm_t3517_wlan_gpios[] __initdata = {
232 { 56, GPIOF_OUT_INIT_HIGH, "wlan pwr" },
233 { 4, GPIOF_OUT_INIT_HIGH, "xcvr noe" },
236 static void __init omap3_sbc_t3517_wifi_init(void)
238 int err = gpio_request_array(cm_t3517_wlan_gpios,
239 ARRAY_SIZE(cm_t3517_wlan_gpios));
241 pr_err("SBC-T3517: wl12xx gpios request failed: %d\n", err);
245 gpio_export(cm_t3517_wlan_gpios[0].gpio, 0);
246 gpio_export(cm_t3517_wlan_gpios[1].gpio, 0);
249 gpio_set_value(cm_t3517_wlan_gpios[1].gpio, 0);
252 static void __init omap3_sbc_t3517_legacy_init(void)
254 omap3_sbc_t3x_usb_hub_init(152, "cm-t3517 usb hub");
255 omap3_sbc_t3x_usb_hub_init(98, "sb-t35 usb hub");
257 hsmmc2_internal_input_clk();
258 omap3_sbc_t3517_wifi_init();
261 static void __init am3517_evm_legacy_init(void)
266 static struct platform_device omap3_rom_rng_device = {
267 .name = "omap3-rom-rng",
270 .platform_data = rx51_secure_rng_call,
274 static void __init nokia_n900_legacy_init(void)
276 hsmmc2_internal_input_clk();
277 mmc_pdata[0].name = "external";
278 mmc_pdata[1].name = "internal";
280 if (omap_type() == OMAP2_DEVICE_TYPE_SEC) {
281 if (IS_ENABLED(CONFIG_ARM_ERRATA_430973)) {
282 pr_info("RX-51: Enabling ARM errata 430973 workaround\n");
284 rx51_secure_update_aux_cr(BIT(6), 0);
286 pr_warn("RX-51: Not enabling ARM errata 430973 workaround\n");
287 pr_warn("Thumb binaries may crash randomly without this workaround\n");
290 pr_info("RX-51: Registering OMAP3 HWRNG device\n");
291 platform_device_register(&omap3_rom_rng_device);
295 static void __init omap3_tao3530_legacy_init(void)
297 hsmmc2_internal_input_clk();
300 static void __init omap3_logicpd_torpedo_init(void)
302 omap3_gpio126_127_129();
303 platform_device_register(&wl128x_device);
304 platform_device_register(&btwilink_device);
307 /* omap3pandora legacy devices */
308 #define PANDORA_WIFI_IRQ_GPIO 21
309 #define PANDORA_WIFI_NRESET_GPIO 23
311 static struct platform_device pandora_backlight = {
312 .name = "pandora-backlight",
316 static struct regulator_consumer_supply pandora_vmmc3_supply[] = {
317 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2"),
320 static struct regulator_init_data pandora_vmmc3 = {
322 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
324 .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc3_supply),
325 .consumer_supplies = pandora_vmmc3_supply,
328 static struct fixed_voltage_config pandora_vwlan = {
329 .supply_name = "vwlan",
330 .microvolts = 1800000, /* 1.8V */
331 .gpio = PANDORA_WIFI_NRESET_GPIO,
332 .startup_delay = 50000, /* 50ms */
334 .init_data = &pandora_vmmc3,
337 static struct platform_device pandora_vwlan_device = {
338 .name = "reg-fixed-voltage",
341 .platform_data = &pandora_vwlan,
345 static void pandora_wl1251_init_card(struct mmc_card *card)
348 * We have TI wl1251 attached to MMC3. Pass this information to
349 * SDIO core because it can't be probed by normal methods.
351 if (card->type == MMC_TYPE_SDIO || card->type == MMC_TYPE_SD_COMBO) {
352 card->quirks |= MMC_QUIRK_NONSTD_SDIO;
353 card->cccr.wide_bus = 1;
354 card->cis.vendor = 0x104c;
355 card->cis.device = 0x9066;
356 card->cis.blksize = 512;
357 card->cis.max_dtr = 24000000;
362 static struct omap2_hsmmc_info pandora_mmc3[] = {
365 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
366 .init_card = pandora_wl1251_init_card,
371 static void __init pandora_wl1251_init(void)
373 struct wl1251_platform_data pandora_wl1251_pdata;
376 memset(&pandora_wl1251_pdata, 0, sizeof(pandora_wl1251_pdata));
378 pandora_wl1251_pdata.power_gpio = -1;
380 ret = gpio_request_one(PANDORA_WIFI_IRQ_GPIO, GPIOF_IN, "wl1251 irq");
384 pandora_wl1251_pdata.irq = gpio_to_irq(PANDORA_WIFI_IRQ_GPIO);
385 if (pandora_wl1251_pdata.irq < 0)
388 pandora_wl1251_pdata.use_eeprom = true;
389 ret = wl1251_set_platform_data(&pandora_wl1251_pdata);
396 gpio_free(PANDORA_WIFI_IRQ_GPIO);
398 pr_err("wl1251 board initialisation failed\n");
401 static void __init omap3_pandora_legacy_init(void)
403 platform_device_register(&pandora_backlight);
404 platform_device_register(&pandora_vwlan_device);
405 omap_hsmmc_init(pandora_mmc3);
406 omap_hsmmc_late_init(pandora_mmc3);
407 pandora_wl1251_init();
409 #endif /* CONFIG_ARCH_OMAP3 */
411 #if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
412 static struct iommu_platform_data omap4_iommu_pdata = {
413 .reset_name = "mmu_cache",
414 .assert_reset = omap_device_assert_hardreset,
415 .deassert_reset = omap_device_deassert_hardreset,
419 #if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_AM43XX)
420 static struct wkup_m3_platform_data wkup_m3_data = {
421 .reset_name = "wkup_m3",
422 .assert_reset = omap_device_assert_hardreset,
423 .deassert_reset = omap_device_deassert_hardreset,
427 #ifdef CONFIG_SOC_OMAP5
428 static void __init omap5_uevm_legacy_init(void)
433 #ifdef CONFIG_SOC_DRA7XX
434 static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc1;
435 static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc2;
436 static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc3;
438 static void __init dra7x_evm_mmc_quirk(void)
440 if (omap_rev() == DRA752_REV_ES1_1 || omap_rev() == DRA752_REV_ES1_0) {
441 dra7_hsmmc_data_mmc1.version = "rev11";
442 dra7_hsmmc_data_mmc1.max_freq = 96000000;
444 dra7_hsmmc_data_mmc2.version = "rev11";
445 dra7_hsmmc_data_mmc2.max_freq = 48000000;
447 dra7_hsmmc_data_mmc3.version = "rev11";
448 dra7_hsmmc_data_mmc3.max_freq = 48000000;
453 static int ti_sysc_enable_module(struct device *dev,
454 const struct ti_sysc_cookie *cookie)
459 return omap_hwmod_enable(cookie->data);
462 static int ti_sysc_idle_module(struct device *dev,
463 const struct ti_sysc_cookie *cookie)
468 return omap_hwmod_idle(cookie->data);
471 static int ti_sysc_shutdown_module(struct device *dev,
472 const struct ti_sysc_cookie *cookie)
477 return omap_hwmod_shutdown(cookie->data);
480 static struct of_dev_auxdata omap_auxdata_lookup[];
482 static struct ti_sysc_platform_data ti_sysc_pdata = {
483 .auxdata = omap_auxdata_lookup,
484 .init_module = omap_hwmod_init_module,
485 .enable_module = ti_sysc_enable_module,
486 .idle_module = ti_sysc_idle_module,
487 .shutdown_module = ti_sysc_shutdown_module,
490 static struct pcs_pdata pcs_pdata;
492 void omap_pcs_legacy_init(int irq, void (*rearm)(void))
495 pcs_pdata.rearm = rearm;
499 * GPIOs for TWL are initialized by the I2C bus and need custom
500 * handing until DSS has device tree bindings.
502 void omap_auxdata_legacy_init(struct device *dev)
504 if (dev->platform_data)
507 if (strcmp("twl4030-gpio", dev_name(dev)))
510 dev->platform_data = &twl_gpio_auxdata;
513 #if IS_ENABLED(CONFIG_SND_OMAP_SOC_MCBSP)
514 static struct omap_mcbsp_platform_data mcbsp_pdata;
515 static void __init omap3_mcbsp_init(void)
517 omap3_mcbsp_init_pdata_callback(&mcbsp_pdata);
520 static void __init omap3_mcbsp_init(void) {}
524 * Few boards still need auxdata populated before we populate
525 * the dev entries in of_platform_populate().
527 static struct pdata_init auxdata_quirks[] __initdata = {
528 #ifdef CONFIG_SOC_OMAP2420
529 { "nokia,n800", omap2420_n8x0_legacy_init, },
530 { "nokia,n810", omap2420_n8x0_legacy_init, },
531 { "nokia,n810-wimax", omap2420_n8x0_legacy_init, },
533 #ifdef CONFIG_ARCH_OMAP3
534 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_twl_init, },
539 struct omap_sr_data __maybe_unused omap_sr_pdata[OMAP_SR_NR];
541 static struct of_dev_auxdata omap_auxdata_lookup[] = {
542 #ifdef CONFIG_MACH_NOKIA_N8X0
543 OF_DEV_AUXDATA("ti,omap2420-mmc", 0x4809c000, "mmci-omap.0", NULL),
544 OF_DEV_AUXDATA("menelaus", 0x72, "1-0072", &n8x0_menelaus_platform_data),
545 OF_DEV_AUXDATA("tlv320aic3x", 0x18, "2-0018", &n810_aic33_data),
547 #ifdef CONFIG_ARCH_OMAP3
548 OF_DEV_AUXDATA("ti,omap2-iommu", 0x5d000000, "5d000000.mmu",
550 OF_DEV_AUXDATA("ti,omap3-smartreflex-core", 0x480cb000,
551 "480cb000.smartreflex", &omap_sr_pdata[OMAP_SR_CORE]),
552 OF_DEV_AUXDATA("ti,omap3-smartreflex-mpu-iva", 0x480c9000,
553 "480c9000.smartreflex", &omap_sr_pdata[OMAP_SR_MPU]),
554 OF_DEV_AUXDATA("ti,omap3-hsmmc", 0x4809c000, "4809c000.mmc", &mmc_pdata[0]),
555 OF_DEV_AUXDATA("ti,omap3-hsmmc", 0x480b4000, "480b4000.mmc", &mmc_pdata[1]),
557 OF_DEV_AUXDATA("ti,davinci_mdio", 0x5c030000, "davinci_mdio.0", NULL),
558 OF_DEV_AUXDATA("ti,am3517-emac", 0x5c000000, "davinci_emac.0",
560 /* McBSP modules with sidetone core */
561 #if IS_ENABLED(CONFIG_SND_OMAP_SOC_MCBSP)
562 OF_DEV_AUXDATA("ti,omap3-mcbsp", 0x49022000, "49022000.mcbsp", &mcbsp_pdata),
563 OF_DEV_AUXDATA("ti,omap3-mcbsp", 0x49024000, "49024000.mcbsp", &mcbsp_pdata),
566 #ifdef CONFIG_SOC_AM33XX
567 OF_DEV_AUXDATA("ti,am3352-wkup-m3", 0x44d00000, "44d00000.wkup_m3",
570 #ifdef CONFIG_SOC_AM43XX
571 OF_DEV_AUXDATA("ti,am4372-wkup-m3", 0x44d00000, "44d00000.wkup_m3",
574 #if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
575 OF_DEV_AUXDATA("ti,omap4-iommu", 0x4a066000, "4a066000.mmu",
577 OF_DEV_AUXDATA("ti,omap4-iommu", 0x55082000, "55082000.mmu",
579 OF_DEV_AUXDATA("ti,omap4-smartreflex-iva", 0x4a0db000,
580 "4a0db000.smartreflex", &omap_sr_pdata[OMAP_SR_IVA]),
581 OF_DEV_AUXDATA("ti,omap4-smartreflex-core", 0x4a0dd000,
582 "4a0dd000.smartreflex", &omap_sr_pdata[OMAP_SR_CORE]),
583 OF_DEV_AUXDATA("ti,omap4-smartreflex-mpu", 0x4a0d9000,
584 "4a0d9000.smartreflex", &omap_sr_pdata[OMAP_SR_MPU]),
586 #ifdef CONFIG_SOC_DRA7XX
587 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x4809c000, "4809c000.mmc",
588 &dra7_hsmmc_data_mmc1),
589 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x480b4000, "480b4000.mmc",
590 &dra7_hsmmc_data_mmc2),
591 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x480ad000, "480ad000.mmc",
592 &dra7_hsmmc_data_mmc3),
595 OF_DEV_AUXDATA("ti,sysc", 0, NULL, &ti_sysc_pdata),
596 OF_DEV_AUXDATA("pinctrl-single", 0, NULL, &pcs_pdata),
601 * Few boards still need to initialize some legacy devices with
602 * platform data until the drivers support device tree.
604 static struct pdata_init pdata_quirks[] __initdata = {
605 #ifdef CONFIG_ARCH_OMAP3
606 { "compulab,omap3-sbc-t3517", omap3_sbc_t3517_legacy_init, },
607 { "compulab,omap3-sbc-t3530", omap3_sbc_t3530_legacy_init, },
608 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_legacy_init, },
609 { "nokia,omap3-n900", nokia_n900_legacy_init, },
610 { "nokia,omap3-n9", hsmmc2_internal_input_clk, },
611 { "nokia,omap3-n950", hsmmc2_internal_input_clk, },
612 { "isee,omap3-igep0020-rev-f", omap3_igep0020_rev_f_legacy_init, },
613 { "isee,omap3-igep0030-rev-g", omap3_igep0030_rev_g_legacy_init, },
614 { "logicpd,dm3730-torpedo-devkit", omap3_logicpd_torpedo_init, },
615 { "ti,omap3-evm-37xx", omap3_evm_legacy_init, },
616 { "ti,am3517-evm", am3517_evm_legacy_init, },
617 { "technexion,omap3-tao3530", omap3_tao3530_legacy_init, },
618 { "openpandora,omap3-pandora-600mhz", omap3_pandora_legacy_init, },
619 { "openpandora,omap3-pandora-1ghz", omap3_pandora_legacy_init, },
621 #ifdef CONFIG_SOC_OMAP5
622 { "ti,omap5-uevm", omap5_uevm_legacy_init, },
624 #ifdef CONFIG_SOC_DRA7XX
625 { "ti,dra7-evm", dra7x_evm_mmc_quirk, },
630 static void pdata_quirks_check(struct pdata_init *quirks)
632 while (quirks->compatible) {
633 if (of_machine_is_compatible(quirks->compatible)) {
641 void __init pdata_quirks_init(const struct of_device_id *omap_dt_match_table)
644 * We still need this for omap2420 and omap3 PM to work, others are
645 * using drivers/misc/sram.c already.
647 if (of_machine_is_compatible("ti,omap2420") ||
648 of_machine_is_compatible("ti,omap3"))
649 omap_sdrc_init(NULL, NULL);
651 if (of_machine_is_compatible("ti,omap3"))
653 pdata_quirks_check(auxdata_quirks);
654 of_platform_populate(NULL, omap_dt_match_table,
655 omap_auxdata_lookup, NULL);
656 pdata_quirks_check(pdata_quirks);