diff options
author | Wang Dongsheng <dongsheng.wang@freescale.com> | 2015-08-13 23:12:09 -0400 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2015-08-17 20:33:20 -0400 |
commit | c8254e27fd34cdd21febd5b1caca409117914332 (patch) | |
tree | 9e94707ca887adcc7ca34d5eb6cb0496a96da194 | |
parent | 0d748ec5eaedfa0802e02df6b5912d32c752f88e (diff) |
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>
-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 @@ | |||
1 | Freescale Supplement configuration unit (SCFG) | ||
2 | |||
3 | SCFG is the supplemental configuration unit, that provides SoC specific | ||
4 | configuration and status registers for the chip. Such as getting PEX port | ||
5 | status. | ||
6 | |||
7 | Required properties: | ||
8 | |||
9 | - compatible: should be "fsl,<chip>-scfg" | ||
10 | - reg: should contain base address and length of SCFG memory-mapped | ||
11 | registers | ||
12 | |||
13 | Example: | ||
14 | |||
15 | scfg: global-utilities@fc000 { | ||
16 | compatible = "fsl,t1040-scfg"; | ||
17 | reg = <0xfc000 0x1000>; | ||
18 | }; | ||