diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-11-20 05:46:06 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-11-20 05:46:06 -0500 |
commit | 498149dd1218625867d5139773c560f9f12193c9 (patch) | |
tree | 55a47f737bcc8cbe8ff3296e452a20025c31926b /arch/arm/mach-omap2/pdata-quirks.c | |
parent | 7d9e89c7c4812f74e6540e015d36f88295ff0b60 (diff) | |
parent | 065bd7fe50de5e6d0fd5034cbc87120a558a1219 (diff) |
Merge tag 'omap-for-v3.19/dt-part1' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into next/dt
Pull "Device tree related changes for omaps" from Tony Lindgren:
- Fix currently harmless but wrong sizes for various GPMC connected
devices
- Set up timings for several GPMC connected devices to get rid of
bootloader dependencies in later patches
- Enable various drivers for dra7xx
- Prepare Igep boards to support new variants
- Add intial support for BeagleBoard-X15
* tag 'omap-for-v3.19/dt-part1' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap: (37 commits)
ARM: dts: DRA7: Add aliases for all serial ports
ARM: dts: Add am57xx-beagle-x15
ARM: OMAP2+: igep00x0: Add pdata-quirks for the btwilink device.
ARM: dts: omap3-igep00x0: Remove i2c2 node.
ARM: dts: omap3-igep0020-rev-f: Support IGEPv2 Rev. F
ARM: dts: omap3-igep0020-common: Introduce igep0020 common dtsi file.
ARM: dts: omap3-igep0030-rev-g: Support IGEP COM MODULE Rev. G
ARM: dts: omap3-igep0030-common: Introduce igep0030 common dtsi file.
ARM: dts: omap3-igep00x0: Move outside common file the on board Wifi module.
ARM: dts: omap3-igep0020: Specify IGEPv2 revision in device tree.
ARM: dts: omap3-igep0030: Specify IGEP COM revision in device tree.
ARM: dts: omap3-igep00x0: Move NAND configuration to a common place.
ARM: dts: omap3-igep00x0: Fix UART2 pins that aren't common.
ARM: dts: dra7: add labels to DWC3 nodes
ARM: dts: dra72x-evm: Enable CPSW and MDIO
ARM: dts: dra7-evm: Keep all VDD rails always-on
ARM: dts: dra72-evm: Add MMC nodes
ARM: dts: dra72-evm: Add power button node
ARM: dts: dra72-evm: Provide explicit pinmux for TPS PMIC
ARM: dts: dra72-evm: Add regulator information to USB2 PHYs
...
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-omap2/pdata-quirks.c')
-rw-r--r-- | arch/arm/mach-omap2/pdata-quirks.c | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/pdata-quirks.c b/arch/arm/mach-omap2/pdata-quirks.c index cec9d6c6442c..2156f69fc282 100644 --- a/arch/arm/mach-omap2/pdata-quirks.c +++ b/arch/arm/mach-omap2/pdata-quirks.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/of_platform.h> | 15 | #include <linux/of_platform.h> |
16 | #include <linux/ti_wilink_st.h> | ||
16 | #include <linux/wl12xx.h> | 17 | #include <linux/wl12xx.h> |
17 | 18 | ||
18 | #include <linux/platform_data/pinctrl-single.h> | 19 | #include <linux/platform_data/pinctrl-single.h> |
@@ -139,8 +140,38 @@ static void __init omap3_sbc_t3530_legacy_init(void) | |||
139 | omap_ads7846_init(1, 57, 0, NULL); | 140 | omap_ads7846_init(1, 57, 0, NULL); |
140 | } | 141 | } |
141 | 142 | ||
142 | static void __init omap3_igep0020_legacy_init(void) | 143 | 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 | |||
150 | static struct platform_device wl18xx_device = { | ||
151 | .name = "kim", | ||
152 | .id = -1, | ||
153 | .dev = { | ||
154 | .platform_data = &wilink_pdata, | ||
155 | } | ||
156 | }; | ||
157 | |||
158 | static struct platform_device btwilink_device = { | ||
159 | .name = "btwilink", | ||
160 | .id = -1, | ||
161 | }; | ||
162 | |||
163 | static void __init omap3_igep0020_rev_f_legacy_init(void) | ||
164 | { | ||
165 | legacy_init_wl12xx(0, 0, 177); | ||
166 | platform_device_register(&wl18xx_device); | ||
167 | platform_device_register(&btwilink_device); | ||
168 | } | ||
169 | |||
170 | static void __init omap3_igep0030_rev_g_legacy_init(void) | ||
143 | { | 171 | { |
172 | legacy_init_wl12xx(0, 0, 136); | ||
173 | platform_device_register(&wl18xx_device); | ||
174 | platform_device_register(&btwilink_device); | ||
144 | } | 175 | } |
145 | 176 | ||
146 | static void __init omap3_evm_legacy_init(void) | 177 | static void __init omap3_evm_legacy_init(void) |
@@ -390,7 +421,8 @@ static struct pdata_init pdata_quirks[] __initdata = { | |||
390 | { "nokia,omap3-n900", nokia_n900_legacy_init, }, | 421 | { "nokia,omap3-n900", nokia_n900_legacy_init, }, |
391 | { "nokia,omap3-n9", hsmmc2_internal_input_clk, }, | 422 | { "nokia,omap3-n9", hsmmc2_internal_input_clk, }, |
392 | { "nokia,omap3-n950", hsmmc2_internal_input_clk, }, | 423 | { "nokia,omap3-n950", hsmmc2_internal_input_clk, }, |
393 | { "isee,omap3-igep0020", omap3_igep0020_legacy_init, }, | 424 | { "isee,omap3-igep0020-rev-f", omap3_igep0020_rev_f_legacy_init, }, |
425 | { "isee,omap3-igep0030-rev-g", omap3_igep0030_rev_g_legacy_init, }, | ||
394 | { "ti,omap3-evm-37xx", omap3_evm_legacy_init, }, | 426 | { "ti,omap3-evm-37xx", omap3_evm_legacy_init, }, |
395 | { "ti,omap3-zoom3", omap3_zoom_legacy_init, }, | 427 | { "ti,omap3-zoom3", omap3_zoom_legacy_init, }, |
396 | { "ti,am3517-evm", am3517_evm_legacy_init, }, | 428 | { "ti,am3517-evm", am3517_evm_legacy_init, }, |