Commit 17ee3307 authored by Suman Anna's avatar Suman Anna Committed by Philipp Zabel

Documentation: dt: reset: Revise typos in TI syscon reset example

Fix couple of typos in the example given in the TI syscon reset
binding. The ti,reset-bits used for DSP0 are corrected to match
the values that will be used in the actual DT node.
Signed-off-by: default avatarSuman Anna <s-anna@ti.com>
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
parent 10132588
...@@ -63,7 +63,7 @@ Example: ...@@ -63,7 +63,7 @@ Example:
-------- --------
The following example demonstrates a syscon node, the reset controller node The following example demonstrates a syscon node, the reset controller node
using the syscon node, and a consumer (a DSP device) on the TI Keystone 2 using the syscon node, and a consumer (a DSP device) on the TI Keystone 2
Edison SoC. 66AK2E SoC.
/ { / {
soc { soc {
...@@ -71,13 +71,13 @@ Edison SoC. ...@@ -71,13 +71,13 @@ Edison SoC.
compatible = "syscon", "simple-mfd"; compatible = "syscon", "simple-mfd";
reg = <0x02350000 0x1000>; reg = <0x02350000 0x1000>;
pscrst: psc-reset { pscrst: reset-controller {
compatible = "ti,k2e-pscrst", "ti,syscon-reset"; compatible = "ti,k2e-pscrst", "ti,syscon-reset";
#reset-cells = <1>; #reset-cells = <1>;
ti,reset-bits = < ti,reset-bits = <
0xa3c 8 0xa3c 8 0x83c 8 (ASSERT_SET|DEASSERT_CLEAR|STATUS_SET) /* 0: pcrst-dsp0 */ 0xa3c 8 0xa3c 8 0x83c 8 (ASSERT_CLEAR | DEASSERT_SET | STATUS_CLEAR) /* 0: dsp0 */
0xa40 5 0xa44 3 0 0 (ASSERT_SET|DEASSERT_CLEAR|STATUS_NONE) /* 1: pcrst-example */ 0xa40 5 0xa44 3 0 0 (ASSERT_SET | DEASSERT_CLEAR | STATUS_NONE) /* 1: example */
>; >;
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment