diff options
author | Andrew Jeffery <andrew@aj.id.au> | 2019-10-22 07:47:36 +0300 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2019-11-01 13:24:46 +0300 |
commit | 253d39f5a6c51a0c49c493e889670805ea1883fb (patch) | |
tree | 8b8f30dd1e7784e0046749326a8bd47a2aa81388 /arch/arm/boot/dts | |
parent | 8fc6327f0f0bb179b189e0301251a69cc27cc976 (diff) | |
download | linux-253d39f5a6c51a0c49c493e889670805ea1883fb.tar.xz |
ARM: dts: tacoma: Hog LPC pinmux
Requesting pinmux configuration is done at driver probe time. The LPC IP
is composed of many sub-devices, each with their own driver, and no
driver exists for the entire IP block. Avoid having each sub-device
request the LPC pinmux by just hogging it in the pinctrl node.
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'arch/arm/boot/dts')
-rw-r--r-- | arch/arm/boot/dts/aspeed-bmc-opp-tacoma.dts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/aspeed-bmc-opp-tacoma.dts b/arch/arm/boot/dts/aspeed-bmc-opp-tacoma.dts index f88e71c2b557..f02de4ab058c 100644 --- a/arch/arm/boot/dts/aspeed-bmc-opp-tacoma.dts +++ b/arch/arm/boot/dts/aspeed-bmc-opp-tacoma.dts @@ -1186,3 +1186,10 @@ &i2c13 { status = "okay"; }; + +&pinctrl { + /* Hog these as no driver is probed for the entire LPC block */ + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_lpc_default>, + <&pinctrl_lsirq_default>; +}; |