blob: 04bfa647a93467ad70799dcda0afb448893499b7 [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 Lindgren5f0a2c62013-09-25 15:44:40 -070011#include <linux/gpio.h>
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070012#include <linux/init.h>
13#include <linux/kernel.h>
Tony Lindgren5f0a2c62013-09-25 15:44:40 -070014#include <linux/wl12xx.h>
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070015
16#include "common.h"
17#include "common-board-devices.h"
18#include "dss-common.h"
19
20struct pdata_init {
21 const char *compatible;
22 void (*fn)(void);
23};
24
Tony Lindgren3e7a3182013-09-25 15:44:39 -070025/*
26 * Create alias for USB host PHY clock.
27 * Remove this when clock phandle can be provided via DT
28 */
29static void __init __used legacy_init_ehci_clk(char *clkname)
30{
31 int ret;
32
33 ret = clk_add_alias("main_clk", NULL, clkname, NULL);
34 if (ret)
35 pr_err("%s:Failed to add main_clk alias to %s :%d\n",
36 __func__, clkname, ret);
37}
38
Tony Lindgren5f0a2c62013-09-25 15:44:40 -070039#if IS_ENABLED(CONFIG_WL12XX)
40
41static struct wl12xx_platform_data wl12xx __initdata;
42
43static void __init __used legacy_init_wl12xx(unsigned ref_clock,
44 unsigned tcxo_clock,
45 int gpio)
46{
47 int res;
48
49 wl12xx.board_ref_clock = ref_clock;
50 wl12xx.board_tcxo_clock = tcxo_clock;
51 wl12xx.irq = gpio_to_irq(gpio);
52
53 res = wl12xx_set_platform_data(&wl12xx);
54 if (res) {
55 pr_err("error setting wl12xx data: %d\n", res);
56 return;
57 }
58}
59#else
60static inline void legacy_init_wl12xx(unsigned ref_clock,
61 unsigned tcxo_clock,
62 int gpio)
63{
64}
65#endif
66
Tony Lindgren3e7a3182013-09-25 15:44:39 -070067#ifdef CONFIG_ARCH_OMAP4
68static void __init omap4_sdp_legacy_init(void)
69{
70 omap_4430sdp_display_init_of();
Tony Lindgren5f0a2c62013-09-25 15:44:40 -070071 legacy_init_wl12xx(WL12XX_REFCLOCK_26,
72 WL12XX_TCXOCLOCK_26, 53);
Tony Lindgren3e7a3182013-09-25 15:44:39 -070073}
74
75static void __init omap4_panda_legacy_init(void)
76{
77 omap4_panda_display_init_of();
78 legacy_init_ehci_clk("auxclk3_ck");
Tony Lindgren5f0a2c62013-09-25 15:44:40 -070079 legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 53);
Tony Lindgren3e7a3182013-09-25 15:44:39 -070080}
81#endif
82
83#ifdef CONFIG_SOC_OMAP5
84static void __init omap5_uevm_legacy_init(void)
85{
86 legacy_init_ehci_clk("auxclk1_ck");
87}
88#endif
89
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070090static struct pdata_init pdata_quirks[] __initdata = {
Tony Lindgren3e7a3182013-09-25 15:44:39 -070091#ifdef CONFIG_ARCH_OMAP4
92 { "ti,omap4-sdp", omap4_sdp_legacy_init, },
93 { "ti,omap4-panda", omap4_panda_legacy_init, },
94#endif
95#ifdef CONFIG_SOC_OMAP5
96 { "ti,omap5-uevm", omap5_uevm_legacy_init, },
97#endif
Tony Lindgren6a08e1e2013-09-25 15:44:39 -070098 { /* sentinel */ },
99};
100
101void __init pdata_quirks_init(void)
102{
103 struct pdata_init *quirks = pdata_quirks;
104
105 while (quirks->compatible) {
106 if (of_machine_is_compatible(quirks->compatible)) {
107 if (quirks->fn)
108 quirks->fn();
109 break;
110 }
111 quirks++;
112 }
113}