Skip to content

Commit a5ebccc

Browse files
committed
ARM: dts: Configure interconnect target module for am437x sgx
This seems to be similar to what we have for am335x. The following can be tested via sysfs with the to ensure the SGX module gets enabled and disabled properly: # echo on > /sys/bus/platform/devices/5600fe00.target-module/power/control # rwmem 0x5600fe00 # revision register 0x5600fe00 = 0x40000000 # echo auto > /sys/bus/platform/devices/5600fe00.target-module/power/control # rwmem 0x5000fe00 Bus error Note that this patch depends on the PRM rstctrl driver that has been recently posted. If the child device driver(s) need to prevent rstctrl reset on PM runtime suspend, the drivers need to increase the usecount for the shared rstctrl reset that can be mapped also for the child device(s) or accessed via dev->parent. Cc: Adam Ford <[email protected]> Cc: Filip Matijević <[email protected]> Cc: "H. Nikolaus Schaller" <[email protected]> Cc: Ivaylo Dimitrov <[email protected]> Cc: moaz korena <[email protected]> Cc: Merlijn Wajer <[email protected]> Cc: Paweł Chmiel <[email protected]> Cc: Philipp Rossak <[email protected]> Cc: Tomi Valkeinen <[email protected]> Signed-off-by: Tony Lindgren <[email protected]>
1 parent 45e118b commit a5ebccc

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

arch/arm/boot/dts/am4372.dtsi

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,26 @@
369369
pool;
370370
};
371371
};
372+
373+
target-module@56000000 {
374+
compatible = "ti,sysc-omap4", "ti,sysc";
375+
reg = <0x5600fe00 0x4>,
376+
<0x5600fe10 0x4>;
377+
reg-names = "rev", "sysc";
378+
ti,sysc-midle = <SYSC_IDLE_FORCE>,
379+
<SYSC_IDLE_NO>,
380+
<SYSC_IDLE_SMART>;
381+
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
382+
<SYSC_IDLE_NO>,
383+
<SYSC_IDLE_SMART>;
384+
clocks = <&gfx_l3_clkctrl AM4_GFX_L3_GFX_CLKCTRL 0>;
385+
clock-names = "fck";
386+
resets = <&prm_gfx 0>;
387+
reset-names = "rstctrl";
388+
#address-cells = <1>;
389+
#size-cells = <1>;
390+
ranges = <0 0x56000000 0x1000000>;
391+
};
372392
};
373393
};
374394

0 commit comments

Comments
 (0)