blob: c33e07e2f0d4e3d01b9e58e6347d4ca42ed81a18 [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>
Tony Lindgren5f0a2c62013-09-25 15:44:40 -070016#include <linux/wl12xx.h>
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070017
Tony Lindgren30a69ef2013-10-10 15:45:13 -070018#include <linux/platform_data/pinctrl-single.h>
19
Tony Lindgren71900312013-12-06 10:53:04 -080020#include "am35xx.h"
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070021#include "common.h"
22#include "common-board-devices.h"
23#include "dss-common.h"
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030024#include "control.h"
Sebastian Reicheldeff82e2014-02-17 22:30:58 +010025#include "omap-secure.h"
26#include "soc.h"
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070027
28struct pdata_init {
29 const char *compatible;
30 void (*fn)(void);
31};
32
Tony Lindgrenfa590c92013-11-25 15:17:10 -080033struct of_dev_auxdata omap_auxdata_lookup[];
Tony Lindgrendad12d12013-12-06 10:52:58 -080034static struct twl4030_gpio_platform_data twl_gpio_auxdata;
Tony Lindgrenfa590c92013-11-25 15:17:10 -080035
Tony Lindgren3e7a3182013-09-25 15:44:39 -070036/*
37 * Create alias for USB host PHY clock.
38 * Remove this when clock phandle can be provided via DT
39 */
40static void __init __used legacy_init_ehci_clk(char *clkname)
41{
42 int ret;
43
44 ret = clk_add_alias("main_clk", NULL, clkname, NULL);
45 if (ret)
46 pr_err("%s:Failed to add main_clk alias to %s :%d\n",
47 __func__, clkname, ret);
48}
49
Tony Lindgren5f0a2c62013-09-25 15:44:40 -070050#if IS_ENABLED(CONFIG_WL12XX)
51
52static struct wl12xx_platform_data wl12xx __initdata;
53
54static void __init __used legacy_init_wl12xx(unsigned ref_clock,
55 unsigned tcxo_clock,
56 int gpio)
57{
58 int res;
59
60 wl12xx.board_ref_clock = ref_clock;
61 wl12xx.board_tcxo_clock = tcxo_clock;
62 wl12xx.irq = gpio_to_irq(gpio);
63
64 res = wl12xx_set_platform_data(&wl12xx);
65 if (res) {
66 pr_err("error setting wl12xx data: %d\n", res);
67 return;
68 }
69}
70#else
71static inline void legacy_init_wl12xx(unsigned ref_clock,
72 unsigned tcxo_clock,
73 int gpio)
74{
75}
76#endif
77
Tony Lindgrenfa590c92013-11-25 15:17:10 -080078#ifdef CONFIG_MACH_NOKIA_N8X0
79static void __init omap2420_n8x0_legacy_init(void)
80{
81 omap_auxdata_lookup[0].platform_data = n8x0_legacy_init();
82}
83#else
84#define omap2420_n8x0_legacy_init NULL
85#endif
86
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030087#ifdef CONFIG_ARCH_OMAP3
88static void __init hsmmc2_internal_input_clk(void)
89{
90 u32 reg;
91
92 reg = omap_ctrl_readl(OMAP343X_CONTROL_DEVCONF1);
93 reg |= OMAP2_MMCSDIO2ADPCLKISEL;
94 omap_ctrl_writel(reg, OMAP343X_CONTROL_DEVCONF1);
95}
Javier Martinez Canillas15c98872013-10-09 11:19:18 +020096
Tony Lindgren0f0cfc62013-12-18 13:13:21 -080097static int omap3_sbc_t3730_twl_callback(struct device *dev,
98 unsigned gpio,
99 unsigned ngpio)
100{
101 int res;
102
103 res = gpio_request_one(gpio + 2, GPIOF_OUT_INIT_HIGH,
104 "wlan rst");
105 if (res)
106 return res;
107
108 gpio_export(gpio, 0);
109
110 return 0;
111}
112
113static void __init omap3_sbc_t3730_twl_init(void)
114{
115 twl_gpio_auxdata.setup = omap3_sbc_t3730_twl_callback;
116}
117
118static void __init omap3_sbc_t3730_legacy_init(void)
119{
120 legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 136);
121 omap_ads7846_init(1, 57, 0, NULL);
122}
123
Javier Martinez Canillas15c98872013-10-09 11:19:18 +0200124static void __init omap3_igep0020_legacy_init(void)
125{
126 omap3_igep2_display_init_of();
127}
Tony Lindgren79b39f72013-10-11 09:20:54 -0700128
129static void __init omap3_evm_legacy_init(void)
130{
131 legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 149);
132}
133
134static void __init omap3_zoom_legacy_init(void)
135{
136 legacy_init_wl12xx(WL12XX_REFCLOCK_26, 0, 162);
137}
Tony Lindgren71900312013-12-06 10:53:04 -0800138
139static void am35xx_enable_emac_int(void)
140{
141 u32 v;
142
143 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
144 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR |
145 AM35XX_CPGMAC_C0_MISC_PULSE_CLR | AM35XX_CPGMAC_C0_RX_THRESH_CLR);
146 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
147 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
148}
149
150static void am35xx_disable_emac_int(void)
151{
152 u32 v;
153
154 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
155 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR);
156 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
157 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
158}
159
160static struct emac_platform_data am35xx_emac_pdata = {
161 .interrupt_enable = am35xx_enable_emac_int,
162 .interrupt_disable = am35xx_disable_emac_int,
163};
164
165static void __init am3517_evm_legacy_init(void)
166{
167 u32 v;
168
169 v = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
170 v &= ~AM35XX_CPGMACSS_SW_RST;
171 omap_ctrl_writel(v, AM35XX_CONTROL_IP_SW_RESET);
172 omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); /* OCP barrier */
173}
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100174
175static void __init nokia_n900_legacy_init(void)
176{
177 hsmmc2_internal_input_clk();
178
179 if (omap_type() == OMAP2_DEVICE_TYPE_SEC) {
180 if (IS_ENABLED(CONFIG_ARM_ERRATA_430973)) {
181 pr_info("RX-51: Enabling ARM errata 430973 workaround\n");
182 /* set IBE to 1 */
183 rx51_secure_update_aux_cr(BIT(6), 0);
184 } else {
185 pr_warning("RX-51: Not enabling ARM errata 430973 workaround\n");
186 pr_warning("Thumb binaries may crash randomly without this workaround\n");
187 }
188 }
189}
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300190#endif /* CONFIG_ARCH_OMAP3 */
191
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700192#ifdef CONFIG_ARCH_OMAP4
193static void __init omap4_sdp_legacy_init(void)
194{
195 omap_4430sdp_display_init_of();
Tony Lindgren5f0a2c62013-09-25 15:44:40 -0700196 legacy_init_wl12xx(WL12XX_REFCLOCK_26,
197 WL12XX_TCXOCLOCK_26, 53);
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700198}
199
200static void __init omap4_panda_legacy_init(void)
201{
202 omap4_panda_display_init_of();
203 legacy_init_ehci_clk("auxclk3_ck");
Tony Lindgren5f0a2c62013-09-25 15:44:40 -0700204 legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 53);
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700205}
206#endif
207
208#ifdef CONFIG_SOC_OMAP5
209static void __init omap5_uevm_legacy_init(void)
210{
211 legacy_init_ehci_clk("auxclk1_ck");
212}
213#endif
214
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700215static struct pcs_pdata pcs_pdata;
216
217void omap_pcs_legacy_init(int irq, void (*rearm)(void))
218{
219 pcs_pdata.irq = irq;
220 pcs_pdata.rearm = rearm;
221}
222
Tony Lindgren036582f2013-11-25 15:17:09 -0800223/*
Tony Lindgrendad12d12013-12-06 10:52:58 -0800224 * GPIOs for TWL are initialized by the I2C bus and need custom
225 * handing until DSS has device tree bindings.
226 */
227void omap_auxdata_legacy_init(struct device *dev)
228{
229 if (dev->platform_data)
230 return;
231
232 if (strcmp("twl4030-gpio", dev_name(dev)))
233 return;
234
235 dev->platform_data = &twl_gpio_auxdata;
236}
237
238/*
Tony Lindgren036582f2013-11-25 15:17:09 -0800239 * Few boards still need auxdata populated before we populate
240 * the dev entries in of_platform_populate().
241 */
242static struct pdata_init auxdata_quirks[] __initdata = {
Tony Lindgrenfa590c92013-11-25 15:17:10 -0800243#ifdef CONFIG_SOC_OMAP2420
244 { "nokia,n800", omap2420_n8x0_legacy_init, },
245 { "nokia,n810", omap2420_n8x0_legacy_init, },
246 { "nokia,n810-wimax", omap2420_n8x0_legacy_init, },
247#endif
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800248#ifdef CONFIG_ARCH_OMAP3
249 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_twl_init, },
250#endif
Tony Lindgren036582f2013-11-25 15:17:09 -0800251 { /* sentinel */ },
252};
253
Tony Lindgren8651bd82013-10-10 15:45:12 -0700254struct of_dev_auxdata omap_auxdata_lookup[] __initdata = {
Tony Lindgren036582f2013-11-25 15:17:09 -0800255#ifdef CONFIG_MACH_NOKIA_N8X0
256 OF_DEV_AUXDATA("ti,omap2420-mmc", 0x4809c000, "mmci-omap.0", NULL),
257#endif
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700258#ifdef CONFIG_ARCH_OMAP3
259 OF_DEV_AUXDATA("ti,omap3-padconf", 0x48002030, "48002030.pinmux", &pcs_pdata),
Tony Lindgren4b416362014-02-27 15:35:48 -0800260 OF_DEV_AUXDATA("ti,omap3-padconf", 0x480025a0, "480025a0.pinmux", &pcs_pdata),
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700261 OF_DEV_AUXDATA("ti,omap3-padconf", 0x48002a00, "48002a00.pinmux", &pcs_pdata),
Tony Lindgren71900312013-12-06 10:53:04 -0800262 /* Only on am3517 */
263 OF_DEV_AUXDATA("ti,davinci_mdio", 0x5c030000, "davinci_mdio.0", NULL),
264 OF_DEV_AUXDATA("ti,am3517-emac", 0x5c000000, "davinci_emac.0",
265 &am35xx_emac_pdata),
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700266#endif
267#ifdef CONFIG_ARCH_OMAP4
268 OF_DEV_AUXDATA("ti,omap4-padconf", 0x4a100040, "4a100040.pinmux", &pcs_pdata),
269 OF_DEV_AUXDATA("ti,omap4-padconf", 0x4a31e040, "4a31e040.pinmux", &pcs_pdata),
270#endif
Tony Lindgren8651bd82013-10-10 15:45:12 -0700271 { /* sentinel */ },
272};
273
Tony Lindgren036582f2013-11-25 15:17:09 -0800274/*
275 * Few boards still need to initialize some legacy devices with
276 * platform data until the drivers support device tree.
277 */
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700278static struct pdata_init pdata_quirks[] __initdata = {
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300279#ifdef CONFIG_ARCH_OMAP3
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800280 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_legacy_init, },
Sebastian Reicheldeff82e2014-02-17 22:30:58 +0100281 { "nokia,omap3-n900", nokia_n900_legacy_init, },
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300282 { "nokia,omap3-n9", hsmmc2_internal_input_clk, },
283 { "nokia,omap3-n950", hsmmc2_internal_input_clk, },
Javier Martinez Canillas15c98872013-10-09 11:19:18 +0200284 { "isee,omap3-igep0020", omap3_igep0020_legacy_init, },
Tony Lindgren79b39f72013-10-11 09:20:54 -0700285 { "ti,omap3-evm-37xx", omap3_evm_legacy_init, },
286 { "ti,omap3-zoom3", omap3_zoom_legacy_init, },
Tony Lindgren71900312013-12-06 10:53:04 -0800287 { "ti,am3517-evm", am3517_evm_legacy_init, },
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300288#endif
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700289#ifdef CONFIG_ARCH_OMAP4
290 { "ti,omap4-sdp", omap4_sdp_legacy_init, },
291 { "ti,omap4-panda", omap4_panda_legacy_init, },
292#endif
293#ifdef CONFIG_SOC_OMAP5
294 { "ti,omap5-uevm", omap5_uevm_legacy_init, },
295#endif
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700296 { /* sentinel */ },
297};
298
Tony Lindgren036582f2013-11-25 15:17:09 -0800299static void pdata_quirks_check(struct pdata_init *quirks)
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700300{
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700301 while (quirks->compatible) {
302 if (of_machine_is_compatible(quirks->compatible)) {
303 if (quirks->fn)
304 quirks->fn();
305 break;
306 }
307 quirks++;
308 }
309}
Tony Lindgren036582f2013-11-25 15:17:09 -0800310
311void __init pdata_quirks_init(struct of_device_id *omap_dt_match_table)
312{
313 omap_sdrc_init(NULL, NULL);
314 pdata_quirks_check(auxdata_quirks);
315 of_platform_populate(NULL, omap_dt_match_table,
316 omap_auxdata_lookup, NULL);
317 pdata_quirks_check(pdata_quirks);
318}