blob: dae726228770421bea84353400dda87e390fcb0e [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001/*
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>
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>
23
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>
30
31#include "common.h"
32#include "common-board-devices.h"
33#include "control.h"
34#include "omap_device.h"
35#include "omap-secure.h"
36#include "soc.h"
37#include "hsmmc.h"
38
39static struct omap_hsmmc_platform_data __maybe_unused mmc_pdata[2];
40
41struct pdata_init {
42 const char *compatible;
43 void (*fn)(void);
44};
45
46static struct of_dev_auxdata omap_auxdata_lookup[];
47static struct twl4030_gpio_platform_data twl_gpio_auxdata;
48
49#ifdef CONFIG_MACH_NOKIA_N8X0
50static void __init omap2420_n8x0_legacy_init(void)
51{
52 omap_auxdata_lookup[0].platform_data = n8x0_legacy_init();
53}
54#else
55#define omap2420_n8x0_legacy_init NULL
56#endif
57
58#ifdef CONFIG_ARCH_OMAP3
59/*
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.
64 */
65static void __init omap3_gpio126_127_129(void)
66{
67 u32 reg;
68
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);
77 }
78}
79
80static void __init hsmmc2_internal_input_clk(void)
81{
82 u32 reg;
83
84 reg = omap_ctrl_readl(OMAP343X_CONTROL_DEVCONF1);
85 reg |= OMAP2_MMCSDIO2ADPCLKISEL;
86 omap_ctrl_writel(reg, OMAP343X_CONTROL_DEVCONF1);
87}
88
89static struct iommu_platform_data omap3_iommu_pdata = {
90 .reset_name = "mmu",
91 .assert_reset = omap_device_assert_hardreset,
92 .deassert_reset = omap_device_deassert_hardreset,
93};
94
95static int omap3_sbc_t3730_twl_callback(struct device *dev,
96 unsigned gpio,
97 unsigned ngpio)
98{
99 int res;
100
101 res = gpio_request_one(gpio + 2, GPIOF_OUT_INIT_HIGH,
102 "wlan pwr");
103 if (res)
104 return res;
105
106 gpio_export(gpio, 0);
107
108 return 0;
109}
110
111static void __init omap3_sbc_t3x_usb_hub_init(int gpio, char *hub_name)
112{
113 int err = gpio_request_one(gpio, GPIOF_OUT_INIT_LOW, hub_name);
114
115 if (err) {
116 pr_err("SBC-T3x: %s reset gpio request failed: %d\n",
117 hub_name, err);
118 return;
119 }
120
121 gpio_export(gpio, 0);
122
123 udelay(10);
124 gpio_set_value(gpio, 1);
125 msleep(1);
126}
127
128static void __init omap3_sbc_t3730_twl_init(void)
129{
130 twl_gpio_auxdata.setup = omap3_sbc_t3730_twl_callback;
131}
132
133static void __init omap3_sbc_t3730_legacy_init(void)
134{
135 omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
136}
137
138static void __init omap3_sbc_t3530_legacy_init(void)
139{
140 omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
141}
142
143static struct ti_st_plat_data wilink_pdata = {
144 .nshutdown_gpio = 137,
145 .dev_name = "/dev/ttyO1",
146 .flow_cntrl = 1,
147 .baud_rate = 300000,
148};
149
150static struct platform_device wl18xx_device = {
151 .name = "kim",
152 .id = -1,
153 .dev = {
154 .platform_data = &wilink_pdata,
155 }
156};
157
158static struct ti_st_plat_data wilink7_pdata = {
159 .nshutdown_gpio = 162,
160 .dev_name = "/dev/ttyO1",
161 .flow_cntrl = 1,
162 .baud_rate = 3000000,
163};
164
165static struct platform_device wl128x_device = {
166 .name = "kim",
167 .id = -1,
168 .dev = {
169 .platform_data = &wilink7_pdata,
170 }
171};
172
173static struct platform_device btwilink_device = {
174 .name = "btwilink",
175 .id = -1,
176};
177
178static void __init omap3_igep0020_rev_f_legacy_init(void)
179{
180 platform_device_register(&wl18xx_device);
181 platform_device_register(&btwilink_device);
182}
183
184static void __init omap3_igep0030_rev_g_legacy_init(void)
185{
186 platform_device_register(&wl18xx_device);
187 platform_device_register(&btwilink_device);
188}
189
190static void __init omap3_evm_legacy_init(void)
191{
192 hsmmc2_internal_input_clk();
193}
194
195static void am35xx_enable_emac_int(void)
196{
197 u32 v;
198
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 */
204}
205
206static void am35xx_disable_emac_int(void)
207{
208 u32 v;
209
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 */
214}
215
216static struct emac_platform_data am35xx_emac_pdata = {
217 .interrupt_enable = am35xx_enable_emac_int,
218 .interrupt_disable = am35xx_disable_emac_int,
219};
220
221static void __init am35xx_emac_reset(void)
222{
223 u32 v;
224
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 */
229}
230
231static struct gpio cm_t3517_wlan_gpios[] __initdata = {
232 { 56, GPIOF_OUT_INIT_HIGH, "wlan pwr" },
233 { 4, GPIOF_OUT_INIT_HIGH, "xcvr noe" },
234};
235
236static void __init omap3_sbc_t3517_wifi_init(void)
237{
238 int err = gpio_request_array(cm_t3517_wlan_gpios,
239 ARRAY_SIZE(cm_t3517_wlan_gpios));
240 if (err) {
241 pr_err("SBC-T3517: wl12xx gpios request failed: %d\n", err);
242 return;
243 }
244
245 gpio_export(cm_t3517_wlan_gpios[0].gpio, 0);
246 gpio_export(cm_t3517_wlan_gpios[1].gpio, 0);
247
248 msleep(100);
249 gpio_set_value(cm_t3517_wlan_gpios[1].gpio, 0);
250}
251
252static void __init omap3_sbc_t3517_legacy_init(void)
253{
254 omap3_sbc_t3x_usb_hub_init(152, "cm-t3517 usb hub");
255 omap3_sbc_t3x_usb_hub_init(98, "sb-t35 usb hub");
256 am35xx_emac_reset();
257 hsmmc2_internal_input_clk();
258 omap3_sbc_t3517_wifi_init();
259}
260
261static void __init am3517_evm_legacy_init(void)
262{
263 am35xx_emac_reset();
264}
265
266static struct platform_device omap3_rom_rng_device = {
267 .name = "omap3-rom-rng",
268 .id = -1,
269 .dev = {
270 .platform_data = rx51_secure_rng_call,
271 },
272};
273
274static void __init nokia_n900_legacy_init(void)
275{
276 hsmmc2_internal_input_clk();
277 mmc_pdata[0].name = "external";
278 mmc_pdata[1].name = "internal";
279
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");
283 /* set IBE to 1 */
284 rx51_secure_update_aux_cr(BIT(6), 0);
285 } else {
286 pr_warn("RX-51: Not enabling ARM errata 430973 workaround\n");
287 pr_warn("Thumb binaries may crash randomly without this workaround\n");
288 }
289
290 pr_info("RX-51: Registering OMAP3 HWRNG device\n");
291 platform_device_register(&omap3_rom_rng_device);
292 }
293}
294
295static void __init omap3_tao3530_legacy_init(void)
296{
297 hsmmc2_internal_input_clk();
298}
299
300static void __init omap3_logicpd_torpedo_init(void)
301{
302 omap3_gpio126_127_129();
303 platform_device_register(&wl128x_device);
304 platform_device_register(&btwilink_device);
305}
306
307/* omap3pandora legacy devices */
308
309static struct platform_device pandora_backlight = {
310 .name = "pandora-backlight",
311 .id = -1,
312};
313
314static void __init omap3_pandora_legacy_init(void)
315{
316 platform_device_register(&pandora_backlight);
317}
318#endif /* CONFIG_ARCH_OMAP3 */
319
320#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
321static struct iommu_platform_data omap4_iommu_pdata = {
322 .reset_name = "mmu_cache",
323 .assert_reset = omap_device_assert_hardreset,
324 .deassert_reset = omap_device_deassert_hardreset,
325};
326#endif
327
328#if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_AM43XX)
329static struct wkup_m3_platform_data wkup_m3_data = {
330 .reset_name = "wkup_m3",
331 .assert_reset = omap_device_assert_hardreset,
332 .deassert_reset = omap_device_deassert_hardreset,
333};
334#endif
335
336#ifdef CONFIG_SOC_OMAP5
337static void __init omap5_uevm_legacy_init(void)
338{
339}
340#endif
341
342#ifdef CONFIG_SOC_DRA7XX
343static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc1;
344static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc2;
345static struct omap_hsmmc_platform_data dra7_hsmmc_data_mmc3;
346
347static void __init dra7x_evm_mmc_quirk(void)
348{
349 if (omap_rev() == DRA752_REV_ES1_1 || omap_rev() == DRA752_REV_ES1_0) {
350 dra7_hsmmc_data_mmc1.version = "rev11";
351 dra7_hsmmc_data_mmc1.max_freq = 96000000;
352
353 dra7_hsmmc_data_mmc2.version = "rev11";
354 dra7_hsmmc_data_mmc2.max_freq = 48000000;
355
356 dra7_hsmmc_data_mmc3.version = "rev11";
357 dra7_hsmmc_data_mmc3.max_freq = 48000000;
358 }
359}
360#endif
361
362static int ti_sysc_enable_module(struct device *dev,
363 const struct ti_sysc_cookie *cookie)
364{
365 if (!cookie->data)
366 return -EINVAL;
367
368 return omap_hwmod_enable(cookie->data);
369}
370
371static int ti_sysc_idle_module(struct device *dev,
372 const struct ti_sysc_cookie *cookie)
373{
374 if (!cookie->data)
375 return -EINVAL;
376
377 return omap_hwmod_idle(cookie->data);
378}
379
380static int ti_sysc_shutdown_module(struct device *dev,
381 const struct ti_sysc_cookie *cookie)
382{
383 if (!cookie->data)
384 return -EINVAL;
385
386 return omap_hwmod_shutdown(cookie->data);
387}
388
389static struct of_dev_auxdata omap_auxdata_lookup[];
390
391static struct ti_sysc_platform_data ti_sysc_pdata = {
392 .auxdata = omap_auxdata_lookup,
393 .init_module = omap_hwmod_init_module,
394 .enable_module = ti_sysc_enable_module,
395 .idle_module = ti_sysc_idle_module,
396 .shutdown_module = ti_sysc_shutdown_module,
397};
398
399static struct pcs_pdata pcs_pdata;
400
401void omap_pcs_legacy_init(int irq, void (*rearm)(void))
402{
403 pcs_pdata.irq = irq;
404 pcs_pdata.rearm = rearm;
405}
406
407/*
408 * GPIOs for TWL are initialized by the I2C bus and need custom
409 * handing until DSS has device tree bindings.
410 */
411void omap_auxdata_legacy_init(struct device *dev)
412{
413 if (dev->platform_data)
414 return;
415
416 if (strcmp("twl4030-gpio", dev_name(dev)))
417 return;
418
419 dev->platform_data = &twl_gpio_auxdata;
420}
421
422#if IS_ENABLED(CONFIG_SND_OMAP_SOC_MCBSP)
423static struct omap_mcbsp_platform_data mcbsp_pdata;
424static void __init omap3_mcbsp_init(void)
425{
426 omap3_mcbsp_init_pdata_callback(&mcbsp_pdata);
427}
428#else
429static void __init omap3_mcbsp_init(void) {}
430#endif
431
432/*
433 * Few boards still need auxdata populated before we populate
434 * the dev entries in of_platform_populate().
435 */
436static struct pdata_init auxdata_quirks[] __initdata = {
437#ifdef CONFIG_SOC_OMAP2420
438 { "nokia,n800", omap2420_n8x0_legacy_init, },
439 { "nokia,n810", omap2420_n8x0_legacy_init, },
440 { "nokia,n810-wimax", omap2420_n8x0_legacy_init, },
441#endif
442#ifdef CONFIG_ARCH_OMAP3
443 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_twl_init, },
444#endif
445 { /* sentinel */ },
446};
447
448struct omap_sr_data __maybe_unused omap_sr_pdata[OMAP_SR_NR];
449
450static struct of_dev_auxdata omap_auxdata_lookup[] = {
451#ifdef CONFIG_MACH_NOKIA_N8X0
452 OF_DEV_AUXDATA("ti,omap2420-mmc", 0x4809c000, "mmci-omap.0", NULL),
453 OF_DEV_AUXDATA("menelaus", 0x72, "1-0072", &n8x0_menelaus_platform_data),
454 OF_DEV_AUXDATA("tlv320aic3x", 0x18, "2-0018", &n810_aic33_data),
455#endif
456#ifdef CONFIG_ARCH_OMAP3
457 OF_DEV_AUXDATA("ti,omap2-iommu", 0x5d000000, "5d000000.mmu",
458 &omap3_iommu_pdata),
459 OF_DEV_AUXDATA("ti,omap3-smartreflex-core", 0x480cb000,
460 "480cb000.smartreflex", &omap_sr_pdata[OMAP_SR_CORE]),
461 OF_DEV_AUXDATA("ti,omap3-smartreflex-mpu-iva", 0x480c9000,
462 "480c9000.smartreflex", &omap_sr_pdata[OMAP_SR_MPU]),
463 OF_DEV_AUXDATA("ti,omap3-hsmmc", 0x4809c000, "4809c000.mmc", &mmc_pdata[0]),
464 OF_DEV_AUXDATA("ti,omap3-hsmmc", 0x480b4000, "480b4000.mmc", &mmc_pdata[1]),
465 /* Only on am3517 */
466 OF_DEV_AUXDATA("ti,davinci_mdio", 0x5c030000, "davinci_mdio.0", NULL),
467 OF_DEV_AUXDATA("ti,am3517-emac", 0x5c000000, "davinci_emac.0",
468 &am35xx_emac_pdata),
469 /* McBSP modules with sidetone core */
470#if IS_ENABLED(CONFIG_SND_OMAP_SOC_MCBSP)
471 OF_DEV_AUXDATA("ti,omap3-mcbsp", 0x49022000, "49022000.mcbsp", &mcbsp_pdata),
472 OF_DEV_AUXDATA("ti,omap3-mcbsp", 0x49024000, "49024000.mcbsp", &mcbsp_pdata),
473#endif
474#endif
475#ifdef CONFIG_SOC_AM33XX
476 OF_DEV_AUXDATA("ti,am3352-wkup-m3", 0x44d00000, "44d00000.wkup_m3",
477 &wkup_m3_data),
478#endif
479#ifdef CONFIG_SOC_AM43XX
480 OF_DEV_AUXDATA("ti,am4372-wkup-m3", 0x44d00000, "44d00000.wkup_m3",
481 &wkup_m3_data),
482#endif
483#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
484 OF_DEV_AUXDATA("ti,omap4-iommu", 0x4a066000, "4a066000.mmu",
485 &omap4_iommu_pdata),
486 OF_DEV_AUXDATA("ti,omap4-iommu", 0x55082000, "55082000.mmu",
487 &omap4_iommu_pdata),
488 OF_DEV_AUXDATA("ti,omap4-smartreflex-iva", 0x4a0db000,
489 "4a0db000.smartreflex", &omap_sr_pdata[OMAP_SR_IVA]),
490 OF_DEV_AUXDATA("ti,omap4-smartreflex-core", 0x4a0dd000,
491 "4a0dd000.smartreflex", &omap_sr_pdata[OMAP_SR_CORE]),
492 OF_DEV_AUXDATA("ti,omap4-smartreflex-mpu", 0x4a0d9000,
493 "4a0d9000.smartreflex", &omap_sr_pdata[OMAP_SR_MPU]),
494#endif
495#ifdef CONFIG_SOC_DRA7XX
496 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x4809c000, "4809c000.mmc",
497 &dra7_hsmmc_data_mmc1),
498 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x480b4000, "480b4000.mmc",
499 &dra7_hsmmc_data_mmc2),
500 OF_DEV_AUXDATA("ti,dra7-hsmmc", 0x480ad000, "480ad000.mmc",
501 &dra7_hsmmc_data_mmc3),
502#endif
503 /* Common auxdata */
504 OF_DEV_AUXDATA("ti,sysc", 0, NULL, &ti_sysc_pdata),
505 OF_DEV_AUXDATA("pinctrl-single", 0, NULL, &pcs_pdata),
506 { /* sentinel */ },
507};
508
509/*
510 * Few boards still need to initialize some legacy devices with
511 * platform data until the drivers support device tree.
512 */
513static struct pdata_init pdata_quirks[] __initdata = {
514#ifdef CONFIG_ARCH_OMAP3
515 { "compulab,omap3-sbc-t3517", omap3_sbc_t3517_legacy_init, },
516 { "compulab,omap3-sbc-t3530", omap3_sbc_t3530_legacy_init, },
517 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_legacy_init, },
518 { "nokia,omap3-n900", nokia_n900_legacy_init, },
519 { "nokia,omap3-n9", hsmmc2_internal_input_clk, },
520 { "nokia,omap3-n950", hsmmc2_internal_input_clk, },
521 { "isee,omap3-igep0020-rev-f", omap3_igep0020_rev_f_legacy_init, },
522 { "isee,omap3-igep0030-rev-g", omap3_igep0030_rev_g_legacy_init, },
523 { "logicpd,dm3730-torpedo-devkit", omap3_logicpd_torpedo_init, },
524 { "ti,omap3-evm-37xx", omap3_evm_legacy_init, },
525 { "ti,am3517-evm", am3517_evm_legacy_init, },
526 { "technexion,omap3-tao3530", omap3_tao3530_legacy_init, },
527 { "openpandora,omap3-pandora-600mhz", omap3_pandora_legacy_init, },
528 { "openpandora,omap3-pandora-1ghz", omap3_pandora_legacy_init, },
529#endif
530#ifdef CONFIG_SOC_OMAP5
531 { "ti,omap5-uevm", omap5_uevm_legacy_init, },
532#endif
533#ifdef CONFIG_SOC_DRA7XX
534 { "ti,dra7-evm", dra7x_evm_mmc_quirk, },
535#endif
536 { /* sentinel */ },
537};
538
539static void pdata_quirks_check(struct pdata_init *quirks)
540{
541 while (quirks->compatible) {
542 if (of_machine_is_compatible(quirks->compatible)) {
543 if (quirks->fn)
544 quirks->fn();
545 }
546 quirks++;
547 }
548}
549
550void __init pdata_quirks_init(const struct of_device_id *omap_dt_match_table)
551{
552 /*
553 * We still need this for omap2420 and omap3 PM to work, others are
554 * using drivers/misc/sram.c already.
555 */
556 if (of_machine_is_compatible("ti,omap2420") ||
557 of_machine_is_compatible("ti,omap3"))
558 omap_sdrc_init(NULL, NULL);
559
560 if (of_machine_is_compatible("ti,omap3"))
561 omap3_mcbsp_init();
562 pdata_quirks_check(auxdata_quirks);
563 of_platform_populate(NULL, omap_dt_match_table,
564 omap_auxdata_lookup, NULL);
565 pdata_quirks_check(pdata_quirks);
566}