diff options
author | Wang Dongsheng <dongsheng.wang@freescale.com> | 2015-08-14 05:12:09 +0200 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2015-08-18 02:33:20 +0200 |
commit | c8254e27fd34cdd21febd5b1caca409117914332 (patch) | |
tree | 9e94707ca887adcc7ca34d5eb6cb0496a96da194 /Documentation/devicetree/bindings/powerpc | |
parent | powerpc/fsl-booke: Add T1040D4RDB/T1042D4RDB board support (diff) | |
download | linux-c8254e27fd34cdd21febd5b1caca409117914332.tar.xz linux-c8254e27fd34cdd21febd5b1caca409117914332.zip |
powerpc/85xx: Add binding for SCFG
SCFG provides SoC specific configuration and status registers for
the chip. Add this for powerpc platform.
Signed-off-by: Wang Dongsheng <dongsheng.wang@freescale.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'Documentation/devicetree/bindings/powerpc')
-rw-r--r-- | Documentation/devicetree/bindings/powerpc/fsl/scfg.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/powerpc/fsl/scfg.txt b/Documentation/devicetree/bindings/powerpc/fsl/scfg.txt new file mode 100644 index 000000000000..0532c46b3372 --- /dev/null +++ b/Documentation/devicetree/bindings/powerpc/fsl/scfg.txt @@ -0,0 +1,18 @@ +Freescale Supplement configuration unit (SCFG) + +SCFG is the supplemental configuration unit, that provides SoC specific +configuration and status registers for the chip. Such as getting PEX port +status. + +Required properties: + +- compatible: should be "fsl,<chip>-scfg" +- reg: should contain base address and length of SCFG memory-mapped +registers + +Example: + + scfg: global-utilities@fc000 { + compatible = "fsl,t1040-scfg"; + reg = <0xfc000 0x1000>; + }; |