forked from kdave/btrfs-devel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: dts: dra7: Separate AM57 dtsi files
AM5 and DRA7 SoC families have different set of modules in them so the SoC sepecific dtsi files need to be separated. e.g. Some of the major differences between AM576 and DRA76 DRA76x AM576x USB3 x USB4 x ATL x VCP x MLB x ISS x PRU-ICSS1 x PRU-ICSS2 x This patch only deals with disabling USB3, USB4 and ATL for AM57 variants. Signed-off-by: Roger Quadros <[email protected]> Reviewed-by: Lokesh Vutla <[email protected]> Signed-off-by: Tony Lindgren <[email protected]>
- Loading branch information
Showing
9 changed files
with
108 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/ | ||
*/ | ||
|
||
#include "dra72x.dtsi" | ||
|
||
/ { | ||
compatible = "ti,am5718", "ti,dra7"; | ||
}; | ||
|
||
/* | ||
* These modules are not present on AM5718 | ||
* | ||
* ATL | ||
* VCP1, VCP2 | ||
* MLB | ||
* ISS | ||
* USB3, USB4 | ||
*/ | ||
|
||
&usb3_tm { | ||
status = "disabled"; | ||
}; | ||
|
||
&usb4_tm { | ||
status = "disabled"; | ||
}; | ||
|
||
&atl_tm { | ||
status = "disabled"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/ | ||
*/ | ||
|
||
#include "dra74x.dtsi" | ||
|
||
/ { | ||
compatible = "ti,am5728", "ti,dra7"; | ||
}; | ||
|
||
/* | ||
* These modules are not present on AM5728 | ||
* | ||
* EVE1, EVE2 | ||
* ATL | ||
* VCP1, VCP2 | ||
* MLB | ||
* ISS | ||
* USB3, USB4 | ||
*/ | ||
|
||
&usb3_tm { | ||
status = "disabled"; | ||
}; | ||
|
||
&usb4_tm { | ||
status = "disabled"; | ||
}; | ||
|
||
&atl_tm { | ||
status = "disabled"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/ | ||
*/ | ||
|
||
#include "dra76x.dtsi" | ||
|
||
/ { | ||
compatible = "ti,am5748", "ti,dra762", "ti,dra7"; | ||
}; | ||
|
||
/* | ||
* These modules are not present on AM5748 | ||
* | ||
* EVE1, EVE2 | ||
* ATL | ||
* VCP1, VCP2 | ||
* MLB | ||
* ISS | ||
* USB3, USB4 | ||
*/ | ||
|
||
&usb3_tm { | ||
status = "disabled"; | ||
}; | ||
|
||
&usb4_tm { | ||
status = "disabled"; | ||
}; | ||
|
||
&atl_tm { | ||
status = "disabled"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters