Skip to content

Commit 8b1d967

Browse files
committed
dt-bindings: Update omap l4 binding for optional registers
The interconnects on omap variants have configuration registers. There are registers for a link agent, one or more interconnect agent, and an optional access protection. Let's also update the example for omap4 l4 per instance as it has multiple interconnect agent registers. For more information, see chapter "Interconnect" in TI techical reference manuals. Cc: Mark Rutland <mark.rutland@arm.com> Cc: Rob Herring <robh+dt@kernel.org> Cc: Tero Kristo <t-kristo@ti.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Tony Lindgren <tony@atomide.com>
1 parent ce397d2 commit 8b1d967

File tree

1 file changed

+13
-2
lines changed
  • Documentation/devicetree/bindings/arm/omap

1 file changed

+13
-2
lines changed

Documentation/devicetree/bindings/arm/omap/l4.txt

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Required properties:
77
Should be "ti,omap2-l4-wkup" for OMAP2 family l4 wkup bus
88
Should be "ti,omap3-l4-core" for OMAP3 family l4 core bus
99
Should be "ti,omap4-l4-cfg" for OMAP4 family l4 cfg bus
10+
Should be "ti,omap4-l4-per" for OMAP4 family l4 per bus
1011
Should be "ti,omap4-l4-wkup" for OMAP4 family l4 wkup bus
1112
Should be "ti,omap5-l4-cfg" for OMAP5 family l4 cfg bus
1213
Should be "ti,omap5-l4-wkup" for OMAP5 family l4 wkup bus
@@ -15,11 +16,21 @@ Required properties:
1516
Should be "ti,am3-l4-wkup" for AM33xx family l4 wkup bus
1617
Should be "ti,am4-l4-wkup" for AM43xx family l4 wkup bus
1718
- ranges : contains the IO map range for the bus
19+
- reg : registers link agent and interconnect agent and access protection
20+
- reg-names : "la" for link agent, "ia0" to "ia3" for one to three
21+
interconnect agent instances, "ap" for access if it exists
1822

1923
Examples:
2024

21-
l4: l4@48000000 {
22-
compatible "ti,omap2-l4", "simple-bus";
25+
l4: interconnect@48000000 {
26+
compatible "ti,omap4-l4-per", "simple-bus";
27+
reg = <0x48000000 0x800>,
28+
<0x48000800 0x800>,
29+
<0x48001000 0x400>,
30+
<0x48001400 0x400>,
31+
<0x48001800 0x400>,
32+
<0x48001c00 0x400>;
33+
reg-names = "ap", "la", "ia0", "ia1", "ia2", "ia3";
2334
#address-cells = <1>;
2435
#size-cells = <1>;
2536
ranges = <0 0x48000000 0x100000>;

0 commit comments

Comments
 (0)