diff options
author | Cooper Jr., Franklin <fcooper@ti.com> | 2017-06-16 17:25:30 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-10 14:26:00 -0400 |
commit | 42468c8b77471bbbb8310d033c26845c6643fd92 (patch) | |
tree | 78111ba24739f4688280a5d41a88b71f5739e6d3 | |
parent | 0d3f97db7174b6ecff9b5fb4c9a48b343360a154 (diff) | |
download | u-boot-42468c8b77471bbbb8310d033c26845c6643fd92.zip u-boot-42468c8b77471bbbb8310d033c26845c6643fd92.tar.gz u-boot-42468c8b77471bbbb8310d033c26845c6643fd92.tar.bz2 |
ARM: dts: k2g: Disable netcp by default
Disable netcp by default like all other peripherals in the dtsi file.
Enable the peripheral explicitly in the board specific dts file.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | arch/arm/dts/keystone-k2g-evm.dts | 4 | ||||
-rw-r--r-- | arch/arm/dts/keystone-k2g-netcp.dtsi | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/dts/keystone-k2g-evm.dts b/arch/arm/dts/keystone-k2g-evm.dts index f6fce33..de208b3 100644 --- a/arch/arm/dts/keystone-k2g-evm.dts +++ b/arch/arm/dts/keystone-k2g-evm.dts @@ -37,6 +37,10 @@ phy-handle = <ðphy0>; }; +&netcp { + status = "okay"; +}; + &spi1 { status = "okay"; diff --git a/arch/arm/dts/keystone-k2g-netcp.dtsi b/arch/arm/dts/keystone-k2g-netcp.dtsi index a9b26c3..d76f2a1 100644 --- a/arch/arm/dts/keystone-k2g-netcp.dtsi +++ b/arch/arm/dts/keystone-k2g-netcp.dtsi @@ -99,6 +99,7 @@ netcp: netcp@4000000 { reg = <0x2620110 0x8>; reg-names = "efuse"; compatible = "ti,netcp-1.0"; + status = "disabled"; #address-cells = <1>; #size-cells = <1>; /* power-domains = <&k2g_pds K2G_DEV_NSS0>; */ |