Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: twl6030: Move common configuration for OMAP4 boards in a separate dtsi file

The OMAP4 SoC family uses specially-designed PMIC (power management IC)
companion chip for power management needs: TWL6030/TWL6032.
Therefore there is a typical connection of PMIC to OMAP4 so we can
move it into separate .dtsi file and do not duplicate over
board-specific files.

Tested on OMAP4 SDP board and Pandaboard ES2.

Signed-off-by: Ruslan Bilovol <ruslan.bilovol@ti.com>
Signed-off-by: Benoit Cousson <bcousson@baylibre.com>

authored by

Ruslan Bilovol and committed by
Benoit Cousson
06a9ea5d 8906d654

+40 -40
+1 -20
arch/arm/boot/dts/omap4-panda-common.dtsi
··· 122 122 }; 123 123 }; 124 124 125 - &omap4_pmx_wkup { 126 - pinctrl-names = "default"; 127 - pinctrl-0 = < 128 - &twl6030_wkup_pins 129 - >; 130 - 131 - twl6030_wkup_pins: pinmux_twl6030_wkup_pins { 132 - pinctrl-single,pins = < 133 - 0x14 (PIN_OUTPUT | MUX_MODE2) /* fref_clk0_out.sys_drm_msecure */ 134 - >; 135 - }; 136 - }; 137 - 138 125 &omap4_pmx_core { 139 126 pinctrl-names = "default"; 140 127 pinctrl-0 = < 141 - &twl6030_pins 142 128 &twl6040_pins 143 129 &mcpdm_pins 144 130 &mcbsp1_pins ··· 132 146 &tpd12s015_pins 133 147 &hsusbb1_pins 134 148 >; 135 - 136 - twl6030_pins: pinmux_twl6030_pins { 137 - pinctrl-single,pins = < 138 - 0x15e (WAKEUP_EN | PIN_INPUT_PULLUP | MUX_MODE0) /* sys_nirq1.sys_nirq1 */ 139 - >; 140 - }; 141 149 142 150 twl6040_pins: pinmux_twl6040_pins { 143 151 pinctrl-single,pins = < ··· 285 305 }; 286 306 287 307 #include "twl6030.dtsi" 308 + #include "twl6030_omap4.dtsi" 288 309 289 310 &i2c2 { 290 311 pinctrl-names = "default";
+1 -20
arch/arm/boot/dts/omap4-sdp.dts
··· 155 155 }; 156 156 }; 157 157 158 - &omap4_pmx_wkup { 159 - pinctrl-names = "default"; 160 - pinctrl-0 = < 161 - &twl6030_wkup_pins 162 - >; 163 - 164 - twl6030_wkup_pins: pinmux_twl6030_wkup_pins { 165 - pinctrl-single,pins = < 166 - 0x14 (PIN_OUTPUT | MUX_MODE2) /* fref_clk0_out.sys_drm_msecure */ 167 - >; 168 - }; 169 - }; 170 - 171 158 &omap4_pmx_core { 172 159 pinctrl-names = "default"; 173 160 pinctrl-0 = < 174 - &twl6030_pins 175 161 &twl6040_pins 176 162 &mcpdm_pins 177 163 &dmic_pins ··· 189 203 pinctrl-single,pins = < 190 204 0x11c (PIN_INPUT | MUX_MODE0) /* uart4_rx.uart4_rx */ 191 205 0x11e (PIN_OUTPUT | MUX_MODE0) /* uart4_tx.uart4_tx */ 192 - >; 193 - }; 194 - 195 - twl6030_pins: pinmux_twl6030_pins { 196 - pinctrl-single,pins = < 197 - 0x15e (WAKEUP_EN | PIN_INPUT_PULLUP | MUX_MODE0) /* sys_nirq1.sys_nirq1 */ 198 206 >; 199 207 }; 200 208 ··· 350 370 }; 351 371 352 372 #include "twl6030.dtsi" 373 + #include "twl6030_omap4.dtsi" 353 374 354 375 &i2c2 { 355 376 pinctrl-names = "default";
+38
arch/arm/boot/dts/twl6030_omap4.dtsi
··· 1 + /* 2 + * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ 3 + * 4 + * This program is free software; you can redistribute it and/or modify 5 + * it under the terms of the GNU General Public License version 2 as 6 + * published by the Free Software Foundation. 7 + */ 8 + 9 + &twl { 10 + /* 11 + * On most OMAP4 platforms, the twl6030 IRQ line is connected 12 + * to the SYS_NIRQ1 line on OMAP and the twl6030 MSECURE line is 13 + * connected to the fref_clk0_out.sys_drm_msecure line. 14 + * Therefore, configure the defaults for the SYS_NIRQ1 and 15 + * fref_clk0_out.sys_drm_msecure pins here. 16 + */ 17 + pinctrl-names = "default"; 18 + pinctrl-0 = < 19 + &twl6030_pins 20 + &twl6030_wkup_pins 21 + >; 22 + }; 23 + 24 + &omap4_pmx_wkup { 25 + twl6030_wkup_pins: pinmux_twl6030_wkup_pins { 26 + pinctrl-single,pins = < 27 + 0x14 (PIN_OUTPUT | MUX_MODE2) /* fref_clk0_out.sys_drm_msecure */ 28 + >; 29 + }; 30 + }; 31 + 32 + &omap4_pmx_core { 33 + twl6030_pins: pinmux_twl6030_pins { 34 + pinctrl-single,pins = < 35 + 0x15e (WAKEUP_EN | PIN_INPUT_PULLUP | MUX_MODE0) /* sys_nirq1.sys_nirq1 */ 36 + >; 37 + }; 38 + };