blob: 1ee831fc5d0e93c0006ca03273929d209e11be3d [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"
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070025
26struct pdata_init {
27 const char *compatible;
28 void (*fn)(void);
29};
30
Tony Lindgrenfa590c92013-11-25 15:17:10 -080031struct of_dev_auxdata omap_auxdata_lookup[];
Tony Lindgrendad12d12013-12-06 10:52:58 -080032static struct twl4030_gpio_platform_data twl_gpio_auxdata;
Tony Lindgrenfa590c92013-11-25 15:17:10 -080033
Tony Lindgren3e7a3182013-09-25 15:44:39 -070034/*
35 * Create alias for USB host PHY clock.
36 * Remove this when clock phandle can be provided via DT
37 */
38static void __init __used legacy_init_ehci_clk(char *clkname)
39{
40 int ret;
41
42 ret = clk_add_alias("main_clk", NULL, clkname, NULL);
43 if (ret)
44 pr_err("%s:Failed to add main_clk alias to %s :%d\n",
45 __func__, clkname, ret);
46}
47
Tony Lindgren5f0a2c62013-09-25 15:44:40 -070048#if IS_ENABLED(CONFIG_WL12XX)
49
50static struct wl12xx_platform_data wl12xx __initdata;
51
52static void __init __used legacy_init_wl12xx(unsigned ref_clock,
53 unsigned tcxo_clock,
54 int gpio)
55{
56 int res;
57
58 wl12xx.board_ref_clock = ref_clock;
59 wl12xx.board_tcxo_clock = tcxo_clock;
60 wl12xx.irq = gpio_to_irq(gpio);
61
62 res = wl12xx_set_platform_data(&wl12xx);
63 if (res) {
64 pr_err("error setting wl12xx data: %d\n", res);
65 return;
66 }
67}
68#else
69static inline void legacy_init_wl12xx(unsigned ref_clock,
70 unsigned tcxo_clock,
71 int gpio)
72{
73}
74#endif
75
Tony Lindgrenfa590c92013-11-25 15:17:10 -080076#ifdef CONFIG_MACH_NOKIA_N8X0
77static void __init omap2420_n8x0_legacy_init(void)
78{
79 omap_auxdata_lookup[0].platform_data = n8x0_legacy_init();
80}
81#else
82#define omap2420_n8x0_legacy_init NULL
83#endif
84
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +030085#ifdef CONFIG_ARCH_OMAP3
86static void __init hsmmc2_internal_input_clk(void)
87{
88 u32 reg;
89
90 reg = omap_ctrl_readl(OMAP343X_CONTROL_DEVCONF1);
91 reg |= OMAP2_MMCSDIO2ADPCLKISEL;
92 omap_ctrl_writel(reg, OMAP343X_CONTROL_DEVCONF1);
93}
Javier Martinez Canillas15c98872013-10-09 11:19:18 +020094
Tony Lindgren0f0cfc62013-12-18 13:13:21 -080095static 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,
Dmitry Lifshitzd234e422014-01-12 15:22:45 +0200102 "wlan pwr");
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800103 if (res)
104 return res;
105
106 gpio_export(gpio, 0);
107
108 return 0;
109}
110
111static void __init omap3_sbc_t3730_twl_init(void)
112{
113 twl_gpio_auxdata.setup = omap3_sbc_t3730_twl_callback;
114}
115
116static void __init omap3_sbc_t3730_legacy_init(void)
117{
118 legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 136);
119 omap_ads7846_init(1, 57, 0, NULL);
120}
121
Dmitry Lifshitz40ecc022014-01-12 15:22:53 +0200122static void __init omap3_sbc_t3530_legacy_init(void)
123{
124 omap_ads7846_init(1, 57, 0, NULL);
125}
126
Javier Martinez Canillas15c98872013-10-09 11:19:18 +0200127static void __init omap3_igep0020_legacy_init(void)
128{
129 omap3_igep2_display_init_of();
130}
Tony Lindgren79b39f72013-10-11 09:20:54 -0700131
132static void __init omap3_evm_legacy_init(void)
133{
134 legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 149);
135}
136
137static void __init omap3_zoom_legacy_init(void)
138{
139 legacy_init_wl12xx(WL12XX_REFCLOCK_26, 0, 162);
140}
Tony Lindgren71900312013-12-06 10:53:04 -0800141
142static void am35xx_enable_emac_int(void)
143{
144 u32 v;
145
146 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
147 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR |
148 AM35XX_CPGMAC_C0_MISC_PULSE_CLR | AM35XX_CPGMAC_C0_RX_THRESH_CLR);
149 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
150 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
151}
152
153static void am35xx_disable_emac_int(void)
154{
155 u32 v;
156
157 v = omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR);
158 v |= (AM35XX_CPGMAC_C0_RX_PULSE_CLR | AM35XX_CPGMAC_C0_TX_PULSE_CLR);
159 omap_ctrl_writel(v, AM35XX_CONTROL_LVL_INTR_CLEAR);
160 omap_ctrl_readl(AM35XX_CONTROL_LVL_INTR_CLEAR); /* OCP barrier */
161}
162
163static struct emac_platform_data am35xx_emac_pdata = {
164 .interrupt_enable = am35xx_enable_emac_int,
165 .interrupt_disable = am35xx_disable_emac_int,
166};
167
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200168static void __init am35xx_emac_reset(void)
Tony Lindgren71900312013-12-06 10:53:04 -0800169{
170 u32 v;
171
172 v = omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET);
173 v &= ~AM35XX_CPGMACSS_SW_RST;
174 omap_ctrl_writel(v, AM35XX_CONTROL_IP_SW_RESET);
175 omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); /* OCP barrier */
176}
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200177
178static struct gpio cm_t3517_wlan_gpios[] __initdata = {
179 { 56, GPIOF_OUT_INIT_HIGH, "wlan pwr" },
180 { 4, GPIOF_OUT_INIT_HIGH, "xcvr noe" },
181};
182
183static void __init omap3_sbc_t3517_wifi_init(void)
184{
185 int err = gpio_request_array(cm_t3517_wlan_gpios,
186 ARRAY_SIZE(cm_t3517_wlan_gpios));
187 if (err) {
188 pr_err("SBC-T3517: wl12xx gpios request failed: %d\n", err);
189 return;
190 }
191
192 gpio_export(cm_t3517_wlan_gpios[0].gpio, 0);
193 gpio_export(cm_t3517_wlan_gpios[1].gpio, 0);
194
195 msleep(100);
196 gpio_set_value(cm_t3517_wlan_gpios[1].gpio, 0);
197}
198
199static void __init omap3_sbc_t3517_legacy_init(void)
200{
201 am35xx_emac_reset();
202 hsmmc2_internal_input_clk();
203 omap3_sbc_t3517_wifi_init();
204 legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 145);
205 omap_ads7846_init(1, 57, 0, NULL);
206}
207
208static void __init am3517_evm_legacy_init(void)
209{
210 am35xx_emac_reset();
211}
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300212#endif /* CONFIG_ARCH_OMAP3 */
213
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700214#ifdef CONFIG_ARCH_OMAP4
215static void __init omap4_sdp_legacy_init(void)
216{
217 omap_4430sdp_display_init_of();
Tony Lindgren5f0a2c62013-09-25 15:44:40 -0700218 legacy_init_wl12xx(WL12XX_REFCLOCK_26,
219 WL12XX_TCXOCLOCK_26, 53);
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700220}
221
222static void __init omap4_panda_legacy_init(void)
223{
224 omap4_panda_display_init_of();
225 legacy_init_ehci_clk("auxclk3_ck");
Tony Lindgren5f0a2c62013-09-25 15:44:40 -0700226 legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 53);
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700227}
228#endif
229
230#ifdef CONFIG_SOC_OMAP5
231static void __init omap5_uevm_legacy_init(void)
232{
233 legacy_init_ehci_clk("auxclk1_ck");
234}
235#endif
236
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700237static struct pcs_pdata pcs_pdata;
238
239void omap_pcs_legacy_init(int irq, void (*rearm)(void))
240{
241 pcs_pdata.irq = irq;
242 pcs_pdata.rearm = rearm;
243}
244
Tony Lindgren036582f2013-11-25 15:17:09 -0800245/*
Tony Lindgrendad12d12013-12-06 10:52:58 -0800246 * GPIOs for TWL are initialized by the I2C bus and need custom
247 * handing until DSS has device tree bindings.
248 */
249void omap_auxdata_legacy_init(struct device *dev)
250{
251 if (dev->platform_data)
252 return;
253
254 if (strcmp("twl4030-gpio", dev_name(dev)))
255 return;
256
257 dev->platform_data = &twl_gpio_auxdata;
258}
259
260/*
Tony Lindgren036582f2013-11-25 15:17:09 -0800261 * Few boards still need auxdata populated before we populate
262 * the dev entries in of_platform_populate().
263 */
264static struct pdata_init auxdata_quirks[] __initdata = {
Tony Lindgrenfa590c92013-11-25 15:17:10 -0800265#ifdef CONFIG_SOC_OMAP2420
266 { "nokia,n800", omap2420_n8x0_legacy_init, },
267 { "nokia,n810", omap2420_n8x0_legacy_init, },
268 { "nokia,n810-wimax", omap2420_n8x0_legacy_init, },
269#endif
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800270#ifdef CONFIG_ARCH_OMAP3
271 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_twl_init, },
272#endif
Tony Lindgren036582f2013-11-25 15:17:09 -0800273 { /* sentinel */ },
274};
275
Tony Lindgren8651bd82013-10-10 15:45:12 -0700276struct of_dev_auxdata omap_auxdata_lookup[] __initdata = {
Tony Lindgren036582f2013-11-25 15:17:09 -0800277#ifdef CONFIG_MACH_NOKIA_N8X0
278 OF_DEV_AUXDATA("ti,omap2420-mmc", 0x4809c000, "mmci-omap.0", NULL),
279#endif
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700280#ifdef CONFIG_ARCH_OMAP3
281 OF_DEV_AUXDATA("ti,omap3-padconf", 0x48002030, "48002030.pinmux", &pcs_pdata),
282 OF_DEV_AUXDATA("ti,omap3-padconf", 0x48002a00, "48002a00.pinmux", &pcs_pdata),
Tony Lindgren71900312013-12-06 10:53:04 -0800283 /* Only on am3517 */
284 OF_DEV_AUXDATA("ti,davinci_mdio", 0x5c030000, "davinci_mdio.0", NULL),
285 OF_DEV_AUXDATA("ti,am3517-emac", 0x5c000000, "davinci_emac.0",
286 &am35xx_emac_pdata),
Tony Lindgren30a69ef2013-10-10 15:45:13 -0700287#endif
288#ifdef CONFIG_ARCH_OMAP4
289 OF_DEV_AUXDATA("ti,omap4-padconf", 0x4a100040, "4a100040.pinmux", &pcs_pdata),
290 OF_DEV_AUXDATA("ti,omap4-padconf", 0x4a31e040, "4a31e040.pinmux", &pcs_pdata),
291#endif
Tony Lindgren8651bd82013-10-10 15:45:12 -0700292 { /* sentinel */ },
293};
294
Tony Lindgren036582f2013-11-25 15:17:09 -0800295/*
296 * Few boards still need to initialize some legacy devices with
297 * platform data until the drivers support device tree.
298 */
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700299static struct pdata_init pdata_quirks[] __initdata = {
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300300#ifdef CONFIG_ARCH_OMAP3
Dmitry Lifshitzfb451052014-01-12 15:22:54 +0200301 { "compulab,omap3-sbc-t3517", omap3_sbc_t3517_legacy_init, },
Dmitry Lifshitz40ecc022014-01-12 15:22:53 +0200302 { "compulab,omap3-sbc-t3530", omap3_sbc_t3530_legacy_init, },
Tony Lindgren0f0cfc62013-12-18 13:13:21 -0800303 { "compulab,omap3-sbc-t3730", omap3_sbc_t3730_legacy_init, },
Tony Lindgrenedd5eb42013-11-25 14:23:45 -0800304 { "nokia,omap3-n900", hsmmc2_internal_input_clk, },
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300305 { "nokia,omap3-n9", hsmmc2_internal_input_clk, },
306 { "nokia,omap3-n950", hsmmc2_internal_input_clk, },
Javier Martinez Canillas15c98872013-10-09 11:19:18 +0200307 { "isee,omap3-igep0020", omap3_igep0020_legacy_init, },
Tony Lindgren79b39f72013-10-11 09:20:54 -0700308 { "ti,omap3-evm-37xx", omap3_evm_legacy_init, },
309 { "ti,omap3-zoom3", omap3_zoom_legacy_init, },
Tony Lindgren71900312013-12-06 10:53:04 -0800310 { "ti,am3517-evm", am3517_evm_legacy_init, },
Aaro Koskinenfaf4bd42013-09-24 22:28:15 +0300311#endif
Tony Lindgren3e7a3182013-09-25 15:44:39 -0700312#ifdef CONFIG_ARCH_OMAP4
313 { "ti,omap4-sdp", omap4_sdp_legacy_init, },
314 { "ti,omap4-panda", omap4_panda_legacy_init, },
315#endif
316#ifdef CONFIG_SOC_OMAP5
317 { "ti,omap5-uevm", omap5_uevm_legacy_init, },
318#endif
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700319 { /* sentinel */ },
320};
321
Tony Lindgren036582f2013-11-25 15:17:09 -0800322static void pdata_quirks_check(struct pdata_init *quirks)
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700323{
Tony Lindgren6a08e1e2013-09-25 15:44:39 -0700324 while (quirks->compatible) {
325 if (of_machine_is_compatible(quirks->compatible)) {
326 if (quirks->fn)
327 quirks->fn();
328 break;
329 }
330 quirks++;
331 }
332}
Tony Lindgren036582f2013-11-25 15:17:09 -0800333
334void __init pdata_quirks_init(struct of_device_id *omap_dt_match_table)
335{
336 omap_sdrc_init(NULL, NULL);
337 pdata_quirks_check(auxdata_quirks);
338 of_platform_populate(NULL, omap_dt_match_table,
339 omap_auxdata_lookup, NULL);
340 pdata_quirks_check(pdata_quirks);
341}