blob: ab2b2b2b90e58acef0e2ac6cc29178e1a701ee3b [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>
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070013#include <linux/init.h>
14#include <linux/kernel.h>
Tony Lindgren8651bd82013-10-10 15:45:12 -070015#include <linux/of_platform.h>
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +010016#include <linux/ti_wilink_st.h>
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +030017#include <linux/wl12xx.h>
18#include <linux/mmc/card.h>
19#include <linux/mmc/host.h>
20#include <linux/regulator/machine.h>
21#include <linux/regulator/fixed.h>
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070022
Tony Lindgren30a69ef2013-10-10 15:45:13 -070023#include <linux/platform_data/pinctrl-single.h>
Tony Lindgren10c1f7d2016-04-28 08:20:53 -070024#include <linux/platform_data/hsmmc-omap.h>
Suman Anna910f1672014-03-05 18:24:13 -060025#include <linux/platform_data/iommu-omap.h>
Dave Gerlach6da74c52015-07-13 12:34:53 -050026#include <linux/platform_data/wkup_m3.h>
Neil Armstrong20437f72016-01-22 17:15:51 +010027#include <linux/platform_data/pwm_omap_dmtimer.h>
Tony Lindgren8453c5c2016-04-28 08:21:03 -070028#include <linux/platform_data/media/ir-rx51.h>
Peter Ujfalusic26c84c2016-05-30 11:23:47 +030029#include <linux/platform_data/asoc-ti-mcbsp.h>
Neil Armstrong20437f72016-01-22 17:15:51 +010030#include <plat/dmtimer.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"
34#include "dss-common.h"
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030035#include "control.h"
Suman Anna910f1672014-03-05 18:24:13 -060036#include "omap_device.h"
Tony Lindgren8453c5c2016-04-28 08:21:03 -070037#include "omap-pm.h"
Sebastian Reicheldeff82e2014-02-17 22:30:58 +010038#include "omap-secure.h"
39#include "soc.h"
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +030040#include "hsmmc.h"
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070041
Tony Lindgren10c1f7d2016-04-28 08:20:53 -070042static struct omap_hsmmc_platform_data __maybe_unused mmc_pdata[2];
43
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070044struct pdata_init {
45 const char *compatible;
46 void (*fn)(void);
47};
48
Sekhar Norif734a9b2015-07-11 20:29:15 +053049static struct of_dev_auxdata omap_auxdata_lookup[];
Tony Lindgrendad12d12013-12-06 10:52:58 -080050static struct twl4030_gpio_platform_data twl_gpio_auxdata;
Tony Lindgrenfa590c92013-11-25 15:17:10 -080051
Tony Lindgrenfa590c92013-11-25 15:17:10 -080052#ifdef CONFIG_MACH_NOKIA_N8X0
53static void __init omap2420_n8x0_legacy_init(void)
54{
55 omap_auxdata_lookup[0].platform_data = n8x0_legacy_init();
56}
57#else
58#define omap2420_n8x0_legacy_init NULL
59#endif
60
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030061#ifdef CONFIG_ARCH_OMAP3
Tony Lindgrenb96b3322015-05-20 09:23:43 -070062/*
63 * Configures GPIOs 126, 127 and 129 to 1.8V mode instead of 3.0V
64 * mode for MMC1 in case bootloader did not configure things.
65 * Note that if the pins are used for MMC1, pbias-regulator
66 * manages the IO voltage.
67 */
68static void __init omap3_gpio126_127_129(void)
69{
70 u32 reg;
71
72 reg = omap_ctrl_readl(OMAP343X_CONTROL_PBIAS_LITE);
73 reg &= ~OMAP343X_PBIASLITEVMODE1;
74 reg |= OMAP343X_PBIASLITEPWRDNZ1;
75 omap_ctrl_writel(reg, OMAP343X_CONTROL_PBIAS_LITE);
76 if (cpu_is_omap3630()) {
77 reg = omap_ctrl_readl(OMAP34XX_CONTROL_WKUP_CTRL);
78 reg |= OMAP36XX_GPIO_IO_PWRDNZ;
79 omap_ctrl_writel(reg, OMAP34XX_CONTROL_WKUP_CTRL);
80 }
81}
82
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030083static void __init hsmmc2_internal_input_clk(void)
84{
85 u32 reg;
86
87 reg = omap_ctrl_readl(OMAP343X_CONTROL_DEVCONF1);
88 reg |= OMAP2_MMCSDIO2ADPCLKISEL;
89 omap_ctrl_writel(reg, OMAP343X_CONTROL_DEVCONF1);
90}
Javier Martinez Canillas15c98872013-10-09 11:19:18 +020091
Suman Anna910f1672014-03-05 18:24:13 -060092static struct iommu_platform_data omap3_iommu_pdata = {
93 .reset_name = "mmu",
94 .assert_reset = omap_device_assert_hardreset,
95 .deassert_reset = omap_device_deassert_hardreset,
96};
97
Tony Lindgren0f0cfc62013-12-18 13:13:21 -080098static int omap3_sbc_t3730_twl_callback(struct device *dev,
99 unsigned gpio,
100 unsigned ngpio)
101{
102 int res;
103
104 res = gpio_request_one(gpio + 2, GPIOF_OUT_INIT_HIGH,
Dmitry Lifshitzd234e422014-01-12 15:22:45 +0200105 "wlan pwr");
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800106 if (res)
107 return res;
108
109 gpio_export(gpio, 0);
110
111 return 0;
112}
113
Dmitry Lifshitzb62d91e2014-01-12 15:22:55 +0200114static void __init omap3_sbc_t3x_usb_hub_init(int gpio, char *hub_name)
115{
116 int err = gpio_request_one(gpio, GPIOF_OUT_INIT_LOW, hub_name);
117
118 if (err) {
119 pr_err("SBC-T3x: %s reset gpio request failed: %d\n",
120 hub_name, err);
121 return;
122 }
123
124 gpio_export(gpio, 0);
125
126 udelay(10);
127 gpio_set_value(gpio, 1);
128 msleep(1);
129}
130
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800131static void __init omap3_sbc_t3730_twl_init(void)
132{
133 twl_gpio_auxdata.setup = omap3_sbc_t3730_twl_callback;
134}
135
136static void __init omap3_sbc_t3730_legacy_init(void)
137{
Dmitry Lifshitzb62d91e2014-01-12 15:22:55 +0200138 omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800139}
140
Dmitry Lifshitz40ecc022014-01-12 15:22:53 +0200141static void __init omap3_sbc_t3530_legacy_init(void)
142{
Dmitry Lifshitzb62d91e2014-01-12 15:22:55 +0200143 omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
Dmitry Lifshitz40ecc022014-01-12 15:22:53 +0200144}
145
Sekhar Norif734a9b2015-07-11 20:29:15 +0530146static struct ti_st_plat_data wilink_pdata = {
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100147 .nshutdown_gpio = 137,
148 .dev_name = "/dev/ttyO1",
149 .flow_cntrl = 1,
150 .baud_rate = 300000,
151};
152
153static struct platform_device wl18xx_device = {
154 .name = "kim",
155 .id = -1,
156 .dev = {
157 .platform_data = &wilink_pdata,
158 }
159};
160
Adam Ford485fa122015-12-16 15:34:15 -0600161static struct ti_st_plat_data wilink7_pdata = {
162 .nshutdown_gpio = 162,
163 .dev_name = "/dev/ttyO1",
164 .flow_cntrl = 1,
165 .baud_rate = 300000,
166};
167
168static struct platform_device wl128x_device = {
169 .name = "kim",
170 .id = -1,
171 .dev = {
172 .platform_data = &wilink7_pdata,
173 }
174};
175
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100176static struct platform_device btwilink_device = {
177 .name = "btwilink",
178 .id = -1,
179};
180
181static void __init omap3_igep0020_rev_f_legacy_init(void)
Javier Martinez Canillas15c98872013-10-09 11:19:18 +0200182{
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100183 platform_device_register(&wl18xx_device);
184 platform_device_register(&btwilink_device);
185}
186
187static void __init omap3_igep0030_rev_g_legacy_init(void)
188{
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100189 platform_device_register(&wl18xx_device);
190 platform_device_register(&btwilink_device);
Javier Martinez Canillas15c98872013-10-09 11:19:18 +0200191}
Tony Lindgren79b39f72013-10-11 09:20:54 -0700192
193static void __init omap3_evm_legacy_init(void)
194{
Tony Lindgren5b7610f2015-03-06 10:37:34 -0800195 hsmmc2_internal_input_clk();
Tony Lindgren79b39f72013-10-11 09:20:54 -0700196}
Tony Lindgren71900312013-12-06 10:53:04 -0800197
198static void am35xx_enable_emac_int(void)
199{
200 u32 v;
201
202 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
203 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR |
204 AM35XX_CPGMAC_C0_MISC_PULSE_CLR | AM35XX_CPGMAC_C0_RX_THRESH_CLR);
205 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
206 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
207}
208
209static void am35xx_disable_emac_int(void)
210{
211 u32 v;
212
213 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
214 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR);
215 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
216 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
217}
218
219static struct emac_platform_data am35xx_emac_pdata = {
220 .interrupt_enable = am35xx_enable_emac_int,
221 .interrupt_disable = am35xx_disable_emac_int,
222};
223
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200224static void __init am35xx_emac_reset(void)
Tony Lindgren71900312013-12-06 10:53:04 -0800225{
226 u32 v;
227
228 v = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
229 v &= ~AM35XX_CPGMACSS_SW_RST;
230 omap_ctrl_writel(v, AM35XX_CONTROL_IP_SW_RESET);
231 omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); /* OCP barrier */
232}
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100233
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200234static struct gpio cm_t3517_wlan_gpios[] __initdata = {
235 { 56, GPIOF_OUT_INIT_HIGH, "wlan pwr" },
236 { 4, GPIOF_OUT_INIT_HIGH, "xcvr noe" },
237};
238
239static void __init omap3_sbc_t3517_wifi_init(void)
240{
241 int err = gpio_request_array(cm_t3517_wlan_gpios,
242 ARRAY_SIZE(cm_t3517_wlan_gpios));
243 if (err) {
244 pr_err("SBC-T3517: wl12xx gpios request failed: %d\n", err);
245 return;
246 }
247
248 gpio_export(cm_t3517_wlan_gpios[0].gpio, 0);
249 gpio_export(cm_t3517_wlan_gpios[1].gpio, 0);
250
251 msleep(100);
252 gpio_set_value(cm_t3517_wlan_gpios[1].gpio, 0);
253}
254
255static void __init omap3_sbc_t3517_legacy_init(void)
256{
Dmitry Lifshitzb62d91e2014-01-12 15:22:55 +0200257 omap3_sbc_t3x_usb_hub_init(152, "cm-t3517 usb hub");
258 omap3_sbc_t3x_usb_hub_init(98, "sb-t35 usb hub");
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200259 am35xx_emac_reset();
260 hsmmc2_internal_input_clk();
261 omap3_sbc_t3517_wifi_init();
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200262}
263
264static void __init am3517_evm_legacy_init(void)
265{
266 am35xx_emac_reset();
267}
Linus Torvaldsf83ccb92014-04-05 15:29:04 -0700268
Sebastian Reichel14c0a5b2014-04-07 14:28:46 +0200269static struct platform_device omap3_rom_rng_device = {
270 .name = "omap3-rom-rng",
271 .id = -1,
272 .dev = {
273 .platform_data = rx51_secure_rng_call,
274 },
275};
276
Tony Lindgren8453c5c2016-04-28 08:21:03 -0700277static struct platform_device rx51_lirc_device;
278
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100279static void __init nokia_n900_legacy_init(void)
280{
281 hsmmc2_internal_input_clk();
Tony Lindgren10c1f7d2016-04-28 08:20:53 -0700282 mmc_pdata[0].name = "external";
283 mmc_pdata[1].name = "internal";
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100284
285 if (omap_type() == OMAP2_DEVICE_TYPE_SEC) {
286 if (IS_ENABLED(CONFIG_ARM_ERRATA_430973)) {
287 pr_info("RX-51: Enabling ARM errata 430973 workaround\n");
288 /* set IBE to 1 */
289 rx51_secure_update_aux_cr(BIT(6), 0);
290 } else {
Joe Perches3d0cb732014-09-13 11:31:16 -0700291 pr_warn("RX-51: Not enabling ARM errata 430973 workaround\n");
292 pr_warn("Thumb binaries may crash randomly without this workaround\n");
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100293 }
Sebastian Reichel14c0a5b2014-04-07 14:28:46 +0200294
Aaro Koskinen448f8bc2015-11-23 23:32:57 +0200295 pr_info("RX-51: Registering OMAP3 HWRNG device\n");
Sebastian Reichel14c0a5b2014-04-07 14:28:46 +0200296 platform_device_register(&omap3_rom_rng_device);
297
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100298 }
Tony Lindgren8453c5c2016-04-28 08:21:03 -0700299
300 platform_device_register(&rx51_lirc_device);
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100301}
Stefan Roese63dd5bc2014-08-29 12:40:03 +0200302
303static void __init omap3_tao3530_legacy_init(void)
304{
305 hsmmc2_internal_input_clk();
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300306}
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300307
Adam Ford485fa122015-12-16 15:34:15 -0600308static void __init omap3_logicpd_torpedo_init(void)
309{
310 omap3_gpio126_127_129();
311 platform_device_register(&wl128x_device);
312 platform_device_register(&btwilink_device);
313}
314
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300315/* omap3pandora legacy devices */
316#define PANDORA_WIFI_IRQ_GPIO 21
317#define PANDORA_WIFI_NRESET_GPIO 23
318
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300319static struct platform_device pandora_backlight = {
320 .name = "pandora-backlight",
321 .id = -1,
322};
323
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300324static struct regulator_consumer_supply pandora_vmmc3_supply[] = {
325 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2"),
326};
327
328static struct regulator_init_data pandora_vmmc3 = {
329 .constraints = {
330 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
331 },
332 .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc3_supply),
333 .consumer_supplies = pandora_vmmc3_supply,
334};
335
336static struct fixed_voltage_config pandora_vwlan = {
337 .supply_name = "vwlan",
338 .microvolts = 1800000, /* 1.8V */
339 .gpio = PANDORA_WIFI_NRESET_GPIO,
340 .startup_delay = 50000, /* 50ms */
341 .enable_high = 1,
342 .init_data = &pandora_vmmc3,
343};
344
345static struct platform_device pandora_vwlan_device = {
346 .name = "reg-fixed-voltage",
347 .id = 1,
348 .dev = {
349 .platform_data = &pandora_vwlan,
350 },
351};
352
353static void pandora_wl1251_init_card(struct mmc_card *card)
354{
355 /*
356 * We have TI wl1251 attached to MMC3. Pass this information to
357 * SDIO core because it can't be probed by normal methods.
358 */
359 if (card->type == MMC_TYPE_SDIO || card->type == MMC_TYPE_SD_COMBO) {
360 card->quirks |= MMC_QUIRK_NONSTD_SDIO;
361 card->cccr.wide_bus = 1;
362 card->cis.vendor = 0x104c;
363 card->cis.device = 0x9066;
364 card->cis.blksize = 512;
365 card->cis.max_dtr = 24000000;
366 card->ocr = 0x80;
367 }
368}
369
370static struct omap2_hsmmc_info pandora_mmc3[] = {
371 {
372 .mmc = 3,
373 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
374 .gpio_cd = -EINVAL,
375 .gpio_wp = -EINVAL,
376 .init_card = pandora_wl1251_init_card,
377 },
378 {} /* Terminator */
379};
380
381static void __init pandora_wl1251_init(void)
382{
383 struct wl1251_platform_data pandora_wl1251_pdata;
384 int ret;
385
386 memset(&pandora_wl1251_pdata, 0, sizeof(pandora_wl1251_pdata));
387
388 pandora_wl1251_pdata.power_gpio = -1;
389
390 ret = gpio_request_one(PANDORA_WIFI_IRQ_GPIO, GPIOF_IN, "wl1251 irq");
391 if (ret < 0)
392 goto fail;
393
394 pandora_wl1251_pdata.irq = gpio_to_irq(PANDORA_WIFI_IRQ_GPIO);
395 if (pandora_wl1251_pdata.irq < 0)
396 goto fail_irq;
397
398 pandora_wl1251_pdata.use_eeprom = true;
399 ret = wl1251_set_platform_data(&pandora_wl1251_pdata);
400 if (ret < 0)
401 goto fail_irq;
402
403 return;
404
405fail_irq:
406 gpio_free(PANDORA_WIFI_IRQ_GPIO);
407fail:
408 pr_err("wl1251 board initialisation failed\n");
409}
410
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300411static void __init omap3_pandora_legacy_init(void)
412{
413 platform_device_register(&pandora_backlight);
Grazvydas Ignotasf9d50fe2015-07-21 04:12:01 +0300414 platform_device_register(&pandora_vwlan_device);
415 omap_hsmmc_init(pandora_mmc3);
416 omap_hsmmc_late_init(pandora_mmc3);
417 pandora_wl1251_init();
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300418}
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300419#endif /* CONFIG_ARCH_OMAP3 */
420
Suman Anna67eb1e62014-03-05 18:24:15 -0600421#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
Suman Anna910f1672014-03-05 18:24:13 -0600422static struct iommu_platform_data omap4_iommu_pdata = {
423 .reset_name = "mmu_cache",
424 .assert_reset = omap_device_assert_hardreset,
425 .deassert_reset = omap_device_deassert_hardreset,
426};
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700427#endif
428
Dave Gerlach6da74c52015-07-13 12:34:53 -0500429#if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_AM43XX)
430static struct wkup_m3_platform_data wkup_m3_data = {
431 .reset_name = "wkup_m3",
432 .assert_reset = omap_device_assert_hardreset,
433 .deassert_reset = omap_device_deassert_hardreset,
434};
435#endif
436
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700437#ifdef CONFIG_SOC_OMAP5
438static void __init omap5_uevm_legacy_init(void)
439{
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700440}
441#endif
442
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700443static struct pcs_pdata pcs_pdata;
444
445void omap_pcs_legacy_init(int irq, void (*rearm)(void))
446{
447 pcs_pdata.irq = irq;
448 pcs_pdata.rearm = rearm;
449}
450
Tony Lindgren036582f2013-11-25 15:17:09 -0800451/*
Tony Lindgrendad12d12013-12-06 10:52:58 -0800452 * GPIOs for TWL are initialized by the I2C bus and need custom
453 * handing until DSS has device tree bindings.
454 */
455void omap_auxdata_legacy_init(struct device *dev)
456{
457 if (dev->platform_data)
458 return;
459
460 if (strcmp("twl4030-gpio", dev_name(dev)))
461 return;
462
463 dev->platform_data = &twl_gpio_auxdata;
464}
465
Neil Armstrong20437f72016-01-22 17:15:51 +0100466/* Dual mode timer PWM callbacks platdata */
467#if IS_ENABLED(CONFIG_OMAP_DM_TIMER)
Tony Lindgren8453c5c2016-04-28 08:21:03 -0700468static struct pwm_omap_dmtimer_pdata pwm_dmtimer_pdata = {
Neil Armstrong20437f72016-01-22 17:15:51 +0100469 .request_by_node = omap_dm_timer_request_by_node,
Tony Lindgren8453c5c2016-04-28 08:21:03 -0700470 .request_specific = omap_dm_timer_request_specific,
471 .request = omap_dm_timer_request,
472 .set_source = omap_dm_timer_set_source,
473 .get_irq = omap_dm_timer_get_irq,
474 .set_int_enable = omap_dm_timer_set_int_enable,
475 .set_int_disable = omap_dm_timer_set_int_disable,
Neil Armstrong20437f72016-01-22 17:15:51 +0100476 .free = omap_dm_timer_free,
477 .enable = omap_dm_timer_enable,
478 .disable = omap_dm_timer_disable,
479 .get_fclk = omap_dm_timer_get_fclk,
480 .start = omap_dm_timer_start,
481 .stop = omap_dm_timer_stop,
482 .set_load = omap_dm_timer_set_load,
483 .set_match = omap_dm_timer_set_match,
484 .set_pwm = omap_dm_timer_set_pwm,
485 .set_prescaler = omap_dm_timer_set_prescaler,
Tony Lindgren8453c5c2016-04-28 08:21:03 -0700486 .read_counter = omap_dm_timer_read_counter,
Neil Armstrong20437f72016-01-22 17:15:51 +0100487 .write_counter = omap_dm_timer_write_counter,
Tony Lindgren8453c5c2016-04-28 08:21:03 -0700488 .read_status = omap_dm_timer_read_status,
489 .write_status = omap_dm_timer_write_status,
Neil Armstrong20437f72016-01-22 17:15:51 +0100490};
491#endif
492
Tony Lindgren8453c5c2016-04-28 08:21:03 -0700493static struct lirc_rx51_platform_data __maybe_unused rx51_lirc_data = {
494 .set_max_mpu_wakeup_lat = omap_pm_set_max_mpu_wakeup_lat,
495 .pwm_timer = 9, /* Use GPT 9 for CIR */
496#if IS_ENABLED(CONFIG_OMAP_DM_TIMER)
497 .dmtimer = &pwm_dmtimer_pdata,
498#endif
499};
500
501static struct platform_device __maybe_unused rx51_lirc_device = {
502 .name = "lirc_rx51",
503 .id = -1,
504 .dev = {
505 .platform_data = &rx51_lirc_data,
506 },
507};
508
Peter Ujfalusic26c84c2016-05-30 11:23:47 +0300509#if IS_ENABLED(CONFIG_SND_OMAP_SOC_MCBSP)
510static struct omap_mcbsp_platform_data mcbsp_pdata;
511static void __init omap3_mcbsp_init(void)
512{
513 omap3_mcbsp_init_pdata_callback(&mcbsp_pdata);
514}
515#else
516static void __init omap3_mcbsp_init(void) {}
517#endif
518
Tony Lindgrendad12d12013-12-06 10:52:58 -0800519/*
Tony Lindgren036582f2013-11-25 15:17:09 -0800520 * Few boards still need auxdata populated before we populate
521 * the dev entries in of_platform_populate().
522 */
523static struct pdata_init auxdata_quirks[] __initdata = {
Tony Lindgrenfa590c92013-11-25 15:17:10 -0800524#ifdef CONFIG_SOC_OMAP2420
525 { "nokia,n800", omap2420_n8x0_legacy_init, },
526 { "nokia,n810", omap2420_n8x0_legacy_init, },
527 { "nokia,n810-wimax", omap2420_n8x0_legacy_init, },
528#endif
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800529#ifdef CONFIG_ARCH_OMAP3
530 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_twl_init, },
531#endif
Tony Lindgren036582f2013-11-25 15:17:09 -0800532 { /* sentinel */ },
533};
534
Sekhar Norif734a9b2015-07-11 20:29:15 +0530535static struct of_dev_auxdata omap_auxdata_lookup[] __initdata = {
Tony Lindgren036582f2013-11-25 15:17:09 -0800536#ifdef CONFIG_MACH_NOKIA_N8X0
537 OF_DEV_AUXDATA("ti,omap2420-mmc", 0x4809c000, "mmci-omap.0", NULL),
Felipe Balbie92ce892014-09-16 15:31:40 -0500538 OF_DEV_AUXDATA("menelaus", 0x72, "1-0072", &n8x0_menelaus_platform_data),
539 OF_DEV_AUXDATA("tlv320aic3x", 0x18, "2-0018", &n810_aic33_data),
Tony Lindgren036582f2013-11-25 15:17:09 -0800540#endif
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700541#ifdef CONFIG_ARCH_OMAP3
Suman Anna910f1672014-03-05 18:24:13 -0600542 OF_DEV_AUXDATA("ti,omap2-iommu", 0x5d000000, "5d000000.mmu",
543 &omap3_iommu_pdata),
Tony Lindgren10c1f7d2016-04-28 08:20:53 -0700544 OF_DEV_AUXDATA("ti,omap3-hsmmc", 0x4809c000, "4809c000.mmc", &mmc_pdata[0]),
545 OF_DEV_AUXDATA("ti,omap3-hsmmc", 0x480b4000, "480b4000.mmc", &mmc_pdata[1]),
Tony Lindgren71900312013-12-06 10:53:04 -0800546 /* Only on am3517 */
547 OF_DEV_AUXDATA("ti,davinci_mdio", 0x5c030000, "davinci_mdio.0", NULL),
548 OF_DEV_AUXDATA("ti,am3517-emac", 0x5c000000, "davinci_emac.0",
549 &am35xx_emac_pdata),
Peter Ujfalusic26c84c2016-05-30 11:23:47 +0300550 /* McBSP modules with sidetone core */
551#if IS_ENABLED(CONFIG_SND_OMAP_SOC_MCBSP)
552 OF_DEV_AUXDATA("ti,omap3-mcbsp", 0x49022000, "49022000.mcbsp", &mcbsp_pdata),
553 OF_DEV_AUXDATA("ti,omap3-mcbsp", 0x49024000, "49024000.mcbsp", &mcbsp_pdata),
554#endif
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700555#endif
Dave Gerlach6da74c52015-07-13 12:34:53 -0500556#ifdef CONFIG_SOC_AM33XX
557 OF_DEV_AUXDATA("ti,am3352-wkup-m3", 0x44d00000, "44d00000.wkup_m3",
558 &wkup_m3_data),
559#endif
Keerthydbbe9772014-04-07 11:54:49 +0530560#ifdef CONFIG_SOC_AM43XX
Dave Gerlach6da74c52015-07-13 12:34:53 -0500561 OF_DEV_AUXDATA("ti,am4372-wkup-m3", 0x44d00000, "44d00000.wkup_m3",
562 &wkup_m3_data),
Keerthydbbe9772014-04-07 11:54:49 +0530563#endif
Neil Armstrong20437f72016-01-22 17:15:51 +0100564#if IS_ENABLED(CONFIG_OMAP_DM_TIMER)
565 OF_DEV_AUXDATA("ti,omap-dmtimer-pwm", 0, NULL, &pwm_dmtimer_pdata),
566#endif
Suman Anna67eb1e62014-03-05 18:24:15 -0600567#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
Suman Anna910f1672014-03-05 18:24:13 -0600568 OF_DEV_AUXDATA("ti,omap4-iommu", 0x4a066000, "4a066000.mmu",
569 &omap4_iommu_pdata),
570 OF_DEV_AUXDATA("ti,omap4-iommu", 0x55082000, "55082000.mmu",
571 &omap4_iommu_pdata),
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700572#endif
Tony Lindgrend4f414e2016-04-15 08:45:33 -0700573 /* Common auxdata */
574 OF_DEV_AUXDATA("pinctrl-single", 0, NULL, &pcs_pdata),
Tony Lindgren8651bd82013-10-10 15:45:12 -0700575 { /* sentinel */ },
576};
577
Tony Lindgren036582f2013-11-25 15:17:09 -0800578/*
579 * Few boards still need to initialize some legacy devices with
580 * platform data until the drivers support device tree.
581 */
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700582static struct pdata_init pdata_quirks[] __initdata = {
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300583#ifdef CONFIG_ARCH_OMAP3
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200584 { "compulab,omap3-sbc-t3517", omap3_sbc_t3517_legacy_init, },
Dmitry Lifshitz40ecc022014-01-12 15:22:53 +0200585 { "compulab,omap3-sbc-t3530", omap3_sbc_t3530_legacy_init, },
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800586 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_legacy_init, },
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100587 { "nokia,omap3-n900", nokia_n900_legacy_init, },
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300588 { "nokia,omap3-n9", hsmmc2_internal_input_clk, },
589 { "nokia,omap3-n950", hsmmc2_internal_input_clk, },
Enric Balletbo i Serrad565b5f2014-11-06 13:01:51 +0100590 { "isee,omap3-igep0020-rev-f", omap3_igep0020_rev_f_legacy_init, },
591 { "isee,omap3-igep0030-rev-g", omap3_igep0030_rev_g_legacy_init, },
Adam Ford485fa122015-12-16 15:34:15 -0600592 { "logicpd,dm3730-torpedo-devkit", omap3_logicpd_torpedo_init, },
Tony Lindgren79b39f72013-10-11 09:20:54 -0700593 { "ti,omap3-evm-37xx", omap3_evm_legacy_init, },
Tony Lindgren71900312013-12-06 10:53:04 -0800594 { "ti,am3517-evm", am3517_evm_legacy_init, },
Stefan Roese63dd5bc2014-08-29 12:40:03 +0200595 { "technexion,omap3-tao3530", omap3_tao3530_legacy_init, },
Grazvydas Ignotasfc53e2c2015-07-21 04:12:00 +0300596 { "openpandora,omap3-pandora-600mhz", omap3_pandora_legacy_init, },
597 { "openpandora,omap3-pandora-1ghz", omap3_pandora_legacy_init, },
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300598#endif
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700599#ifdef CONFIG_SOC_OMAP5
600 { "ti,omap5-uevm", omap5_uevm_legacy_init, },
601#endif
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700602 { /* sentinel */ },
603};
604
Tony Lindgren036582f2013-11-25 15:17:09 -0800605static void pdata_quirks_check(struct pdata_init *quirks)
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700606{
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700607 while (quirks->compatible) {
608 if (of_machine_is_compatible(quirks->compatible)) {
609 if (quirks->fn)
610 quirks->fn();
611 break;
612 }
613 quirks++;
614 }
615}
Tony Lindgren036582f2013-11-25 15:17:09 -0800616
Uwe Kleine-König31957602014-09-10 10:26:17 +0200617void __init pdata_quirks_init(const struct of_device_id *omap_dt_match_table)
Tony Lindgren036582f2013-11-25 15:17:09 -0800618{
Tony Lindgren57df5382015-10-16 12:23:33 -0700619 /*
620 * We still need this for omap2420 and omap3 PM to work, others are
621 * using drivers/misc/sram.c already.
622 */
623 if (of_machine_is_compatible("ti,omap2420") ||
624 of_machine_is_compatible("ti,omap3"))
625 omap_sdrc_init(NULL, NULL);
626
Peter Ujfalusic26c84c2016-05-30 11:23:47 +0300627 if (of_machine_is_compatible("ti,omap3"))
628 omap3_mcbsp_init();
Tony Lindgren036582f2013-11-25 15:17:09 -0800629 pdata_quirks_check(auxdata_quirks);
630 of_platform_populate(NULL, omap_dt_match_table,
631 omap_auxdata_lookup, NULL);
632 pdata_quirks_check(pdata_quirks);
633}