diff options
author | Adam Ford <aford173@gmail.com> | 2019-07-30 08:32:37 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-31 13:08:07 -0400 |
commit | 2fd156b307b950ab30bd09ef52d8090eee0ca164 (patch) | |
tree | 14e53b0f2927fce99b3510d861e5a1fd7e2f2411 /arch/arm/dts/da850-evm-u-boot.dtsi | |
parent | 575ce432b8e0f42a4f4777c04a823c31e11a3a45 (diff) | |
download | u-boot-2fd156b307b950ab30bd09ef52d8090eee0ca164.tar.gz u-boot-2fd156b307b950ab30bd09ef52d8090eee0ca164.tar.bz2 u-boot-2fd156b307b950ab30bd09ef52d8090eee0ca164.zip |
ARM: dts: da850-evm: Fix MDIO pinmux
In attempts to speed up SPL and reduce size, the MDIO pin muxing
was inadvertently affected. Since the ethernet driver will setup
the pin muxing when ethernet is loaded, this patch will also
pinmux the MDIO pins at the same time. Once an DM compatible
MDIO driver is available, this can be removed.
Fixes: 877ab2423bc2 ("ARM: davinci: da850: Manual pinmux only
when PINCTRL not available")
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'arch/arm/dts/da850-evm-u-boot.dtsi')
-rw-r--r-- | arch/arm/dts/da850-evm-u-boot.dtsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/dts/da850-evm-u-boot.dtsi b/arch/arm/dts/da850-evm-u-boot.dtsi index d9e8b9926a..aa42d30c72 100644 --- a/arch/arm/dts/da850-evm-u-boot.dtsi +++ b/arch/arm/dts/da850-evm-u-boot.dtsi @@ -16,6 +16,10 @@ }; }; +ð0 { + pinctrl-0 = <&mii_pins>, <&mdio_pins>; +}; + &flash { compatible = "m25p64", "jedec,spi-nor"; }; |