blob: a2ecc5e69abb24068385644447860f27197ded54 [file] [log] [blame]
Tony Lindgren6a08e1e2013-09-25 15:44:39 -07001/*
2 * Legacy platform_data quirks
3 *
4 * Copyright (C) 2013 Texas Instruments
5 *
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.
9 */
10#include <linux/clk.h>
Tony Lindgren71900312013-12-06 10:53:04 -080011#include <linux/davinci_emac.h>
Tony Lindgren5f0a2c62013-09-25 15:44:40 -070012#include <linux/gpio.h>
Linus Walleijefdfeb02018-09-06 14:24:36 +020013#include <linux/gpio/machine.h>
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070014#include <linux/init.h>
15#include <linux/kernel.h>
Tony Lindgren8651bd82013-10-10 15:45:12 -070016#include <linux/of_platform.h>
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +010017#include <linux/ti_wilink_st.h>
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +030018#include <linux/wl12xx.h>
19#include <linux/mmc/card.h>
20#include <linux/mmc/host.h>
Tony Lindgrend060b402018-02-22 13:57:30 -080021#include <linux/power/smartreflex.h>
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +030022#include <linux/regulator/machine.h>
23#include <linux/regulator/fixed.h>
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070024
Tony Lindgren30a69ef2013-10-10 15:45:13 -070025#include <linux/platform_data/pinctrl-single.h>
Tony Lindgren10c1f7d2016-04-28 08:20:53 -070026#include <linux/platform_data/hsmmc-omap.h>
Suman Anna910f1672014-03-05 18:24:13 -060027#include <linux/platform_data/iommu-omap.h>
Tony Lindgrenef70b0b2018-02-22 14:00:25 -080028#include <linux/platform_data/ti-sysc.h>
Dave Gerlach6da74c52015-07-13 12:34:53 -050029#include <linux/platform_data/wkup_m3.h>
Peter Ujfalusic26c84c2016-05-30 11:23:47 +030030#include <linux/platform_data/asoc-ti-mcbsp.h>
Tony Lindgren30a69ef2013-10-10 15:45:13 -070031
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070032#include "common.h"
33#include "common-board-devices.h"
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030034#include "control.h"
Suman Anna910f1672014-03-05 18:24:13 -060035#include "omap_device.h"
Sebastian Reicheldeff82e2014-02-17 22:30:58 +010036#include "omap-secure.h"
37#include "soc.h"
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +030038#include "hsmmc.h"
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070039
Tony Lindgren10c1f7d2016-04-28 08:20:53 -070040static struct omap_hsmmc_platform_data __maybe_unused mmc_pdata[2];
41
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070042struct pdata_init {
43 const char *compatible;
44 void (*fn)(void);
45};
46
Sekhar Norif734a9b2015-07-11 20:29:15 +053047static struct of_dev_auxdata omap_auxdata_lookup[];
Tony Lindgrendad12d12013-12-06 10:52:58 -080048static struct twl4030_gpio_platform_data twl_gpio_auxdata;
Tony Lindgrenfa590c92013-11-25 15:17:10 -080049
Tony Lindgrenfa590c92013-11-25 15:17:10 -080050#ifdef CONFIG_MACH_NOKIA_N8X0
51static void __init omap2420_n8x0_legacy_init(void)
52{
53 omap_auxdata_lookup[0].platform_data = n8x0_legacy_init();
54}
55#else
56#define omap2420_n8x0_legacy_init NULL
57#endif
58
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030059#ifdef CONFIG_ARCH_OMAP3
Tony Lindgrenb96b3322015-05-20 09:23:43 -070060/*
61 * Configures GPIOs 126, 127 and 129 to 1.8V mode instead of 3.0V
62 * mode for MMC1 in case bootloader did not configure things.
63 * Note that if the pins are used for MMC1, pbias-regulator
64 * manages the IO voltage.
65 */
66static void __init omap3_gpio126_127_129(void)
67{
68 u32 reg;
69
70 reg = omap_ctrl_readl(OMAP343X_CONTROL_PBIAS_LITE);
71 reg &= ~OMAP343X_PBIASLITEVMODE1;
72 reg |= OMAP343X_PBIASLITEPWRDNZ1;
73 omap_ctrl_writel(reg, OMAP343X_CONTROL_PBIAS_LITE);
74 if (cpu_is_omap3630()) {
75 reg = omap_ctrl_readl(OMAP34XX_CONTROL_WKUP_CTRL);
76 reg |= OMAP36XX_GPIO_IO_PWRDNZ;
77 omap_ctrl_writel(reg, OMAP34XX_CONTROL_WKUP_CTRL);
78 }
79}
80
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030081static void __init hsmmc2_internal_input_clk(void)
82{
83 u32 reg;
84
85 reg = omap_ctrl_readl(OMAP343X_CONTROL_DEVCONF1);
86 reg |= OMAP2_MMCSDIO2ADPCLKISEL;
87 omap_ctrl_writel(reg, OMAP343X_CONTROL_DEVCONF1);
88}
Javier Martinez Canillas15c98872013-10-09 11:19:18 +020089
Suman Anna910f1672014-03-05 18:24:13 -060090static struct iommu_platform_data omap3_iommu_pdata = {
91 .reset_name = "mmu",
92 .assert_reset = omap_device_assert_hardreset,
93 .deassert_reset = omap_device_deassert_hardreset,
94};
95
Tony Lindgren0f0cfc62013-12-18 13:13:21 -080096static int omap3_sbc_t3730_twl_callback(struct device *dev,
97 unsigned gpio,
98 unsigned ngpio)
99{
100 int res;
101
102 res = gpio_request_one(gpio + 2, GPIOF_OUT_INIT_HIGH,
Dmitry Lifshitzd234e422014-01-12 15:22:45 +0200103 "wlan pwr");
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800104 if (res)
105 return res;
106
107 gpio_export(gpio, 0);
108
109 return 0;
110}
111
Dmitry Lifshitzb62d91e2014-01-12 15:22:55 +0200112static void __init omap3_sbc_t3x_usb_hub_init(int gpio, char *hub_name)
113{
114 int err = gpio_request_one(gpio, GPIOF_OUT_INIT_LOW, hub_name);
115
116 if (err) {
117 pr_err("SBC-T3x: %s reset gpio request failed: %d\n",
118 hub_name, err);
119 return;
120 }
121
122 gpio_export(gpio, 0);
123
124 udelay(10);
125 gpio_set_value(gpio, 1);
126 msleep(1);
127}
128
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800129static void __init omap3_sbc_t3730_twl_init(void)
130{
131 twl_gpio_auxdata.setup = omap3_sbc_t3730_twl_callback;
132}
133
134static void __init omap3_sbc_t3730_legacy_init(void)
135{
Dmitry Lifshitzb62d91e2014-01-12 15:22:55 +0200136 omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800137}
138
Dmitry Lifshitz40ecc022014-01-12 15:22:53 +0200139static void __init omap3_sbc_t3530_legacy_init(void)
140{
Dmitry Lifshitzb62d91e2014-01-12 15:22:55 +0200141 omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
Dmitry Lifshitz40ecc022014-01-12 15:22:53 +0200142}
143
Sekhar Norif734a9b2015-07-11 20:29:15 +0530144static struct ti_st_plat_data wilink_pdata = {
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100145 .nshutdown_gpio = 137,
146 .dev_name = "/dev/ttyO1",
147 .flow_cntrl = 1,
148 .baud_rate = 300000,
149};
150
151static struct platform_device wl18xx_device = {
152 .name = "kim",
153 .id = -1,
154 .dev = {
155 .platform_data = &wilink_pdata,
156 }
157};
158
Adam Ford485fa122015-12-16 15:34:15 -0600159static struct ti_st_plat_data wilink7_pdata = {
160 .nshutdown_gpio = 162,
161 .dev_name = "/dev/ttyO1",
162 .flow_cntrl = 1,
Adam Forda3ac3502017-01-03 11:37:48 -0600163 .baud_rate = 3000000,
Adam Ford485fa122015-12-16 15:34:15 -0600164};
165
166static struct platform_device wl128x_device = {
167 .name = "kim",
168 .id = -1,
169 .dev = {
170 .platform_data = &wilink7_pdata,
171 }
172};
173
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100174static struct platform_device btwilink_device = {
175 .name = "btwilink",
176 .id = -1,
177};
178
179static void __init omap3_igep0020_rev_f_legacy_init(void)
Javier Martinez Canillas15c98872013-10-09 11:19:18 +0200180{
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100181 platform_device_register(&wl18xx_device);
182 platform_device_register(&btwilink_device);
183}
184
185static void __init omap3_igep0030_rev_g_legacy_init(void)
186{
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100187 platform_device_register(&wl18xx_device);
188 platform_device_register(&btwilink_device);
Javier Martinez Canillas15c98872013-10-09 11:19:18 +0200189}
Tony Lindgren79b39f72013-10-11 09:20:54 -0700190
191static void __init omap3_evm_legacy_init(void)
192{
Tony Lindgren5b7610f2015-03-06 10:37:34 -0800193 hsmmc2_internal_input_clk();
Tony Lindgren79b39f72013-10-11 09:20:54 -0700194}
Tony Lindgren71900312013-12-06 10:53:04 -0800195
196static void am35xx_enable_emac_int(void)
197{
198 u32 v;
199
200 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
201 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR |
202 AM35XX_CPGMAC_C0_MISC_PULSE_CLR | AM35XX_CPGMAC_C0_RX_THRESH_CLR);
203 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
204 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
205}
206
207static void am35xx_disable_emac_int(void)
208{
209 u32 v;
210
211 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
212 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR);
213 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
214 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
215}
216
217static struct emac_platform_data am35xx_emac_pdata = {
218 .interrupt_enable = am35xx_enable_emac_int,
219 .interrupt_disable = am35xx_disable_emac_int,
220};
221
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200222static void __init am35xx_emac_reset(void)
Tony Lindgren71900312013-12-06 10:53:04 -0800223{
224 u32 v;
225
226 v = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
227 v &= ~AM35XX_CPGMACSS_SW_RST;
228 omap_ctrl_writel(v, AM35XX_CONTROL_IP_SW_RESET);
229 omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); /* OCP barrier */
230}
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100231
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200232static struct gpio cm_t3517_wlan_gpios[] __initdata = {
233 { 56, GPIOF_OUT_INIT_HIGH, "wlan pwr" },
234 { 4, GPIOF_OUT_INIT_HIGH, "xcvr noe" },
235};
236
237static void __init omap3_sbc_t3517_wifi_init(void)
238{
239 int err = gpio_request_array(cm_t3517_wlan_gpios,
240 ARRAY_SIZE(cm_t3517_wlan_gpios));
241 if (err) {
242 pr_err("SBC-T3517: wl12xx gpios request failed: %d\n", err);
243 return;
244 }
245
246 gpio_export(cm_t3517_wlan_gpios[0].gpio, 0);
247 gpio_export(cm_t3517_wlan_gpios[1].gpio, 0);
248
249 msleep(100);
250 gpio_set_value(cm_t3517_wlan_gpios[1].gpio, 0);
251}
252
253static void __init omap3_sbc_t3517_legacy_init(void)
254{
Dmitry Lifshitzb62d91e2014-01-12 15:22:55 +0200255 omap3_sbc_t3x_usb_hub_init(152, "cm-t3517 usb hub");
256 omap3_sbc_t3x_usb_hub_init(98, "sb-t35 usb hub");
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200257 am35xx_emac_reset();
258 hsmmc2_internal_input_clk();
259 omap3_sbc_t3517_wifi_init();
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200260}
261
262static void __init am3517_evm_legacy_init(void)
263{
264 am35xx_emac_reset();
265}
Linus Torvaldsf83ccb92014-04-05 15:29:04 -0700266
Sebastian Reichel14c0a5b2014-04-07 14:28:46 +0200267static struct platform_device omap3_rom_rng_device = {
268 .name = "omap3-rom-rng",
269 .id = -1,
270 .dev = {
271 .platform_data = rx51_secure_rng_call,
272 },
273};
274
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100275static void __init nokia_n900_legacy_init(void)
276{
277 hsmmc2_internal_input_clk();
Tony Lindgren10c1f7d2016-04-28 08:20:53 -0700278 mmc_pdata[0].name = "external";
279 mmc_pdata[1].name = "internal";
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100280
281 if (omap_type() == OMAP2_DEVICE_TYPE_SEC) {
282 if (IS_ENABLED(CONFIG_ARM_ERRATA_430973)) {
283 pr_info("RX-51: Enabling ARM errata 430973 workaround\n");
284 /* set IBE to 1 */
285 rx51_secure_update_aux_cr(BIT(6), 0);
286 } else {
Joe Perches3d0cb732014-09-13 11:31:16 -0700287 pr_warn("RX-51: Not enabling ARM errata 430973 workaround\n");
288 pr_warn("Thumb binaries may crash randomly without this workaround\n");
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100289 }
Sebastian Reichel14c0a5b2014-04-07 14:28:46 +0200290
Aaro Koskinen448f8bc2015-11-23 23:32:57 +0200291 pr_info("RX-51: Registering OMAP3 HWRNG device\n");
Sebastian Reichel14c0a5b2014-04-07 14:28:46 +0200292 platform_device_register(&omap3_rom_rng_device);
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100293 }
294}
Stefan Roese63dd5bc2014-08-29 12:40:03 +0200295
296static void __init omap3_tao3530_legacy_init(void)
297{
298 hsmmc2_internal_input_clk();
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300299}
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300300
Adam Ford485fa122015-12-16 15:34:15 -0600301static void __init omap3_logicpd_torpedo_init(void)
302{
303 omap3_gpio126_127_129();
304 platform_device_register(&wl128x_device);
305 platform_device_register(&btwilink_device);
306}
307
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300308/* omap3pandora legacy devices */
309#define PANDORA_WIFI_IRQ_GPIO 21
310#define PANDORA_WIFI_NRESET_GPIO 23
311
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300312static struct platform_device pandora_backlight = {
313 .name = "pandora-backlight",
314 .id = -1,
315};
316
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300317static struct regulator_consumer_supply pandora_vmmc3_supply[] = {
318 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2"),
319};
320
321static struct regulator_init_data pandora_vmmc3 = {
322 .constraints = {
323 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
324 },
325 .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc3_supply),
326 .consumer_supplies = pandora_vmmc3_supply,
327};
328
329static struct fixed_voltage_config pandora_vwlan = {
330 .supply_name = "vwlan",
331 .microvolts = 1800000, /* 1.8V */
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300332 .startup_delay = 50000, /* 50ms */
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300333 .init_data = &pandora_vmmc3,
334};
335
336static struct platform_device pandora_vwlan_device = {
337 .name = "reg-fixed-voltage",
338 .id = 1,
339 .dev = {
340 .platform_data = &pandora_vwlan,
341 },
342};
343
Linus Walleijefdfeb02018-09-06 14:24:36 +0200344static struct gpiod_lookup_table pandora_vwlan_gpiod_table = {
345 .dev_id = "reg-fixed-voltage.1",
346 .table = {
347 /*
348 * As this is a low GPIO number it should be at the first
349 * GPIO bank.
350 */
351 GPIO_LOOKUP("gpio-0-31", PANDORA_WIFI_NRESET_GPIO,
352 NULL, GPIO_ACTIVE_HIGH),
353 { },
354 },
355};
356
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300357static void pandora_wl1251_init_card(struct mmc_card *card)
358{
359 /*
360 * We have TI wl1251 attached to MMC3. Pass this information to
361 * SDIO core because it can't be probed by normal methods.
362 */
363 if (card->type == MMC_TYPE_SDIO || card->type == MMC_TYPE_SD_COMBO) {
364 card->quirks |= MMC_QUIRK_NONSTD_SDIO;
365 card->cccr.wide_bus = 1;
366 card->cis.vendor = 0x104c;
367 card->cis.device = 0x9066;
368 card->cis.blksize = 512;
369 card->cis.max_dtr = 24000000;
370 card->ocr = 0x80;
371 }
372}
373
374static struct omap2_hsmmc_info pandora_mmc3[] = {
375 {
376 .mmc = 3,
377 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300378 .init_card = pandora_wl1251_init_card,
379 },
380 {} /* Terminator */
381};
382
383static void __init pandora_wl1251_init(void)
384{
385 struct wl1251_platform_data pandora_wl1251_pdata;
386 int ret;
387
388 memset(&pandora_wl1251_pdata, 0, sizeof(pandora_wl1251_pdata));
389
390 pandora_wl1251_pdata.power_gpio = -1;
391
392 ret = gpio_request_one(PANDORA_WIFI_IRQ_GPIO, GPIOF_IN, "wl1251 irq");
393 if (ret < 0)
394 goto fail;
395
396 pandora_wl1251_pdata.irq = gpio_to_irq(PANDORA_WIFI_IRQ_GPIO);
397 if (pandora_wl1251_pdata.irq < 0)
398 goto fail_irq;
399
400 pandora_wl1251_pdata.use_eeprom = true;
401 ret = wl1251_set_platform_data(&pandora_wl1251_pdata);
402 if (ret < 0)
403 goto fail_irq;
404
405 return;
406
407fail_irq:
408 gpio_free(PANDORA_WIFI_IRQ_GPIO);
409fail:
410 pr_err("wl1251 board initialisation failed\n");
411}
412
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300413static void __init omap3_pandora_legacy_init(void)
414{
415 platform_device_register(&pandora_backlight);
Linus Walleijefdfeb02018-09-06 14:24:36 +0200416 gpiod_add_lookup_table(&pandora_vwlan_gpiod_table);
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300417 platform_device_register(&pandora_vwlan_device);
418 omap_hsmmc_init(pandora_mmc3);
419 omap_hsmmc_late_init(pandora_mmc3);
420 pandora_wl1251_init();
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300421}
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300422#endif /* CONFIG_ARCH_OMAP3 */
423
Suman Anna67eb1e62014-03-05 18:24:15 -0600424#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
Suman Anna910f1672014-03-05 18:24:13 -0600425static struct iommu_platform_data omap4_iommu_pdata = {
426 .reset_name = "mmu_cache",
427 .assert_reset = omap_device_assert_hardreset,
428 .deassert_reset = omap_device_deassert_hardreset,
429};
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700430#endif
431
Dave Gerlach6da74c52015-07-13 12:34:53 -0500432#if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_AM43XX)
433static struct wkup_m3_platform_data wkup_m3_data = {
434 .reset_name = "wkup_m3",
435 .assert_reset = omap_device_assert_hardreset,
436 .deassert_reset = omap_device_deassert_hardreset,
437};
438#endif
439
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700440#ifdef CONFIG_SOC_OMAP5
441static void __init omap5_uevm_legacy_init(void)
442{
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700443}
444#endif
445
Sekhar Norifc66ce02017-08-10 09:02:37 -0700446#ifdef CONFIG_SOC_DRA7XX
447static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc1;
448static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc2;
449static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc3;
450
451static void __init dra7x_evm_mmc_quirk(void)
452{
453 if (omap_rev() == DRA752_REV_ES1_1 || omap_rev() == DRA752_REV_ES1_0) {
454 dra7_hsmmc_data_mmc1.version = "rev11";
455 dra7_hsmmc_data_mmc1.max_freq = 96000000;
456
457 dra7_hsmmc_data_mmc2.version = "rev11";
458 dra7_hsmmc_data_mmc2.max_freq = 48000000;
459
460 dra7_hsmmc_data_mmc3.version = "rev11";
461 dra7_hsmmc_data_mmc3.max_freq = 48000000;
462 }
463}
464#endif
465
Tony Lindgrenef70b0b2018-02-22 14:00:25 -0800466static int ti_sysc_enable_module(struct device *dev,
467 const struct ti_sysc_cookie *cookie)
468{
469 if (!cookie->data)
470 return -EINVAL;
471
472 return omap_hwmod_enable(cookie->data);
473}
474
475static int ti_sysc_idle_module(struct device *dev,
476 const struct ti_sysc_cookie *cookie)
477{
478 if (!cookie->data)
479 return -EINVAL;
480
481 return omap_hwmod_idle(cookie->data);
482}
483
484static int ti_sysc_shutdown_module(struct device *dev,
485 const struct ti_sysc_cookie *cookie)
486{
487 if (!cookie->data)
488 return -EINVAL;
489
490 return omap_hwmod_shutdown(cookie->data);
491}
492
493static struct of_dev_auxdata omap_auxdata_lookup[];
494
495static struct ti_sysc_platform_data ti_sysc_pdata = {
496 .auxdata = omap_auxdata_lookup,
Tony Lindgren695eea32018-02-22 14:05:31 -0800497 .init_module = omap_hwmod_init_module,
Tony Lindgrenef70b0b2018-02-22 14:00:25 -0800498 .enable_module = ti_sysc_enable_module,
499 .idle_module = ti_sysc_idle_module,
500 .shutdown_module = ti_sysc_shutdown_module,
501};
502
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700503static struct pcs_pdata pcs_pdata;
504
505void omap_pcs_legacy_init(int irq, void (*rearm)(void))
506{
507 pcs_pdata.irq = irq;
508 pcs_pdata.rearm = rearm;
509}
510
Tony Lindgren036582f2013-11-25 15:17:09 -0800511/*
Tony Lindgrendad12d12013-12-06 10:52:58 -0800512 * GPIOs for TWL are initialized by the I2C bus and need custom
513 * handing until DSS has device tree bindings.
514 */
515void omap_auxdata_legacy_init(struct device *dev)
516{
517 if (dev->platform_data)
518 return;
519
520 if (strcmp("twl4030-gpio", dev_name(dev)))
521 return;
522
523 dev->platform_data = &twl_gpio_auxdata;
524}
525
Peter Ujfalusi558eb0b2018-12-17 14:21:37 +0200526#if IS_ENABLED(CONFIG_SND_SOC_OMAP_MCBSP)
Peter Ujfalusic26c84c2016-05-30 11:23:47 +0300527static struct omap_mcbsp_platform_data mcbsp_pdata;
528static void __init omap3_mcbsp_init(void)
529{
530 omap3_mcbsp_init_pdata_callback(&mcbsp_pdata);
531}
532#else
533static void __init omap3_mcbsp_init(void) {}
534#endif
535
Tony Lindgrendad12d12013-12-06 10:52:58 -0800536/*
Tony Lindgren036582f2013-11-25 15:17:09 -0800537 * Few boards still need auxdata populated before we populate
538 * the dev entries in of_platform_populate().
539 */
540static struct pdata_init auxdata_quirks[] __initdata = {
Tony Lindgrenfa590c92013-11-25 15:17:10 -0800541#ifdef CONFIG_SOC_OMAP2420
542 { "nokia,n800", omap2420_n8x0_legacy_init, },
543 { "nokia,n810", omap2420_n8x0_legacy_init, },
544 { "nokia,n810-wimax", omap2420_n8x0_legacy_init, },
545#endif
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800546#ifdef CONFIG_ARCH_OMAP3
547 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_twl_init, },
548#endif
Tony Lindgren036582f2013-11-25 15:17:09 -0800549 { /* sentinel */ },
550};
551
Tony Lindgrend060b402018-02-22 13:57:30 -0800552struct omap_sr_data __maybe_unused omap_sr_pdata[OMAP_SR_NR];
553
Tony Lindgrenef70b0b2018-02-22 14:00:25 -0800554static struct of_dev_auxdata omap_auxdata_lookup[] = {
Tony Lindgren036582f2013-11-25 15:17:09 -0800555#ifdef CONFIG_MACH_NOKIA_N8X0
556 OF_DEV_AUXDATA("ti,omap2420-mmc", 0x4809c000, "mmci-omap.0", NULL),
Felipe Balbie92ce892014-09-16 15:31:40 -0500557 OF_DEV_AUXDATA("menelaus", 0x72, "1-0072", &n8x0_menelaus_platform_data),
558 OF_DEV_AUXDATA("tlv320aic3x", 0x18, "2-0018", &n810_aic33_data),
Tony Lindgren036582f2013-11-25 15:17:09 -0800559#endif
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700560#ifdef CONFIG_ARCH_OMAP3
Suman Anna910f1672014-03-05 18:24:13 -0600561 OF_DEV_AUXDATA("ti,omap2-iommu", 0x5d000000, "5d000000.mmu",
562 &omap3_iommu_pdata),
Tony Lindgrend060b402018-02-22 13:57:30 -0800563 OF_DEV_AUXDATA("ti,omap3-smartreflex-core", 0x480cb000,
564 "480cb000.smartreflex", &omap_sr_pdata[OMAP_SR_CORE]),
565 OF_DEV_AUXDATA("ti,omap3-smartreflex-mpu-iva", 0x480c9000,
566 "480c9000.smartreflex", &omap_sr_pdata[OMAP_SR_MPU]),
Tony Lindgren10c1f7d2016-04-28 08:20:53 -0700567 OF_DEV_AUXDATA("ti,omap3-hsmmc", 0x4809c000, "4809c000.mmc", &mmc_pdata[0]),
568 OF_DEV_AUXDATA("ti,omap3-hsmmc", 0x480b4000, "480b4000.mmc", &mmc_pdata[1]),
Tony Lindgren71900312013-12-06 10:53:04 -0800569 /* Only on am3517 */
570 OF_DEV_AUXDATA("ti,davinci_mdio", 0x5c030000, "davinci_mdio.0", NULL),
571 OF_DEV_AUXDATA("ti,am3517-emac", 0x5c000000, "davinci_emac.0",
572 &am35xx_emac_pdata),
Peter Ujfalusic26c84c2016-05-30 11:23:47 +0300573 /* McBSP modules with sidetone core */
Peter Ujfalusi558eb0b2018-12-17 14:21:37 +0200574#if IS_ENABLED(CONFIG_SND_SOC_OMAP_MCBSP)
Peter Ujfalusic26c84c2016-05-30 11:23:47 +0300575 OF_DEV_AUXDATA("ti,omap3-mcbsp", 0x49022000, "49022000.mcbsp", &mcbsp_pdata),
576 OF_DEV_AUXDATA("ti,omap3-mcbsp", 0x49024000, "49024000.mcbsp", &mcbsp_pdata),
577#endif
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700578#endif
Dave Gerlach6da74c52015-07-13 12:34:53 -0500579#ifdef CONFIG_SOC_AM33XX
580 OF_DEV_AUXDATA("ti,am3352-wkup-m3", 0x44d00000, "44d00000.wkup_m3",
581 &wkup_m3_data),
582#endif
Keerthydbbe9772014-04-07 11:54:49 +0530583#ifdef CONFIG_SOC_AM43XX
Dave Gerlach6da74c52015-07-13 12:34:53 -0500584 OF_DEV_AUXDATA("ti,am4372-wkup-m3", 0x44d00000, "44d00000.wkup_m3",
585 &wkup_m3_data),
Keerthydbbe9772014-04-07 11:54:49 +0530586#endif
Suman Anna67eb1e62014-03-05 18:24:15 -0600587#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
Suman Anna910f1672014-03-05 18:24:13 -0600588 OF_DEV_AUXDATA("ti,omap4-iommu", 0x4a066000, "4a066000.mmu",
589 &omap4_iommu_pdata),
590 OF_DEV_AUXDATA("ti,omap4-iommu", 0x55082000, "55082000.mmu",
591 &omap4_iommu_pdata),
Tony Lindgrend060b402018-02-22 13:57:30 -0800592 OF_DEV_AUXDATA("ti,omap4-smartreflex-iva", 0x4a0db000,
593 "4a0db000.smartreflex", &omap_sr_pdata[OMAP_SR_IVA]),
594 OF_DEV_AUXDATA("ti,omap4-smartreflex-core", 0x4a0dd000,
595 "4a0dd000.smartreflex", &omap_sr_pdata[OMAP_SR_CORE]),
596 OF_DEV_AUXDATA("ti,omap4-smartreflex-mpu", 0x4a0d9000,
597 "4a0d9000.smartreflex", &omap_sr_pdata[OMAP_SR_MPU]),
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700598#endif
Sekhar Norifc66ce02017-08-10 09:02:37 -0700599#ifdef CONFIG_SOC_DRA7XX
600 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x4809c000, "4809c000.mmc",
601 &dra7_hsmmc_data_mmc1),
602 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x480b4000, "480b4000.mmc",
603 &dra7_hsmmc_data_mmc2),
604 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x480ad000, "480ad000.mmc",
605 &dra7_hsmmc_data_mmc3),
606#endif
Tony Lindgrend4f414e2016-04-15 08:45:33 -0700607 /* Common auxdata */
Tony Lindgrenef70b0b2018-02-22 14:00:25 -0800608 OF_DEV_AUXDATA("ti,sysc", 0, NULL, &ti_sysc_pdata),
Tony Lindgrend4f414e2016-04-15 08:45:33 -0700609 OF_DEV_AUXDATA("pinctrl-single", 0, NULL, &pcs_pdata),
Tony Lindgren8651bd82013-10-10 15:45:12 -0700610 { /* sentinel */ },
611};
612
Tony Lindgren036582f2013-11-25 15:17:09 -0800613/*
614 * Few boards still need to initialize some legacy devices with
615 * platform data until the drivers support device tree.
616 */
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700617static struct pdata_init pdata_quirks[] __initdata = {
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300618#ifdef CONFIG_ARCH_OMAP3
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200619 { "compulab,omap3-sbc-t3517", omap3_sbc_t3517_legacy_init, },
Dmitry Lifshitz40ecc022014-01-12 15:22:53 +0200620 { "compulab,omap3-sbc-t3530", omap3_sbc_t3530_legacy_init, },
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800621 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_legacy_init, },
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100622 { "nokia,omap3-n900", nokia_n900_legacy_init, },
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300623 { "nokia,omap3-n9", hsmmc2_internal_input_clk, },
624 { "nokia,omap3-n950", hsmmc2_internal_input_clk, },
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100625 { "isee,omap3-igep0020-rev-f", omap3_igep0020_rev_f_legacy_init, },
626 { "isee,omap3-igep0030-rev-g", omap3_igep0030_rev_g_legacy_init, },
Adam Ford485fa122015-12-16 15:34:15 -0600627 { "logicpd,dm3730-torpedo-devkit", omap3_logicpd_torpedo_init, },
Tony Lindgren79b39f72013-10-11 09:20:54 -0700628 { "ti,omap3-evm-37xx", omap3_evm_legacy_init, },
Tony Lindgren71900312013-12-06 10:53:04 -0800629 { "ti,am3517-evm", am3517_evm_legacy_init, },
Stefan Roese63dd5bc2014-08-29 12:40:03 +0200630 { "technexion,omap3-tao3530", omap3_tao3530_legacy_init, },
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300631 { "openpandora,omap3-pandora-600mhz", omap3_pandora_legacy_init, },
632 { "openpandora,omap3-pandora-1ghz", omap3_pandora_legacy_init, },
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300633#endif
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700634#ifdef CONFIG_SOC_OMAP5
635 { "ti,omap5-uevm", omap5_uevm_legacy_init, },
636#endif
Sekhar Norifc66ce02017-08-10 09:02:37 -0700637#ifdef CONFIG_SOC_DRA7XX
638 { "ti,dra7-evm", dra7x_evm_mmc_quirk, },
639#endif
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700640 { /* sentinel */ },
641};
642
Tony Lindgren036582f2013-11-25 15:17:09 -0800643static void pdata_quirks_check(struct pdata_init *quirks)
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700644{
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700645 while (quirks->compatible) {
646 if (of_machine_is_compatible(quirks->compatible)) {
647 if (quirks->fn)
648 quirks->fn();
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700649 }
650 quirks++;
651 }
652}
Tony Lindgren036582f2013-11-25 15:17:09 -0800653
Uwe Kleine-König31957602014-09-10 10:26:17 +0200654void __init pdata_quirks_init(const struct of_device_id *omap_dt_match_table)
Tony Lindgren036582f2013-11-25 15:17:09 -0800655{
Tony Lindgren57df5382015-10-16 12:23:33 -0700656 /*
657 * We still need this for omap2420 and omap3 PM to work, others are
658 * using drivers/misc/sram.c already.
659 */
660 if (of_machine_is_compatible("ti,omap2420") ||
661 of_machine_is_compatible("ti,omap3"))
662 omap_sdrc_init(NULL, NULL);
663
Peter Ujfalusic26c84c2016-05-30 11:23:47 +0300664 if (of_machine_is_compatible("ti,omap3"))
665 omap3_mcbsp_init();
Tony Lindgren036582f2013-11-25 15:17:09 -0800666 pdata_quirks_check(auxdata_quirks);
667 of_platform_populate(NULL, omap_dt_match_table,
668 omap_auxdata_lookup, NULL);
669 pdata_quirks_check(pdata_quirks);
670}