mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 12:43:55 +08:00
c70a97447b
Missing bindings were found on running checkpatch.pl on bsc9132 device tree. This patch add/update the following - Add bindings for L2 cache controller - Add bindings for memory controller - Update bindings for USB controller Signed-off-by: Harninder Rai <harninder.rai@freescale.com> Signed-off-by: Scott Wood <scottwood@freescale.com>
28 lines
635 B
Plaintext
28 lines
635 B
Plaintext
Freescale DDR memory controller
|
|
|
|
Properties:
|
|
|
|
- compatible : Should include "fsl,chip-memory-controller" where
|
|
chip is the processor (bsc9132, mpc8572 etc.), or
|
|
"fsl,qoriq-memory-controller".
|
|
- reg : Address and size of DDR controller registers
|
|
- interrupts : Error interrupt of DDR controller
|
|
|
|
Example 1:
|
|
|
|
memory-controller@2000 {
|
|
compatible = "fsl,bsc9132-memory-controller";
|
|
reg = <0x2000 0x1000>;
|
|
interrupts = <16 2 1 8>;
|
|
};
|
|
|
|
|
|
Example 2:
|
|
|
|
ddr1: memory-controller@8000 {
|
|
compatible = "fsl,qoriq-memory-controller-v4.7",
|
|
"fsl,qoriq-memory-controller";
|
|
reg = <0x8000 0x1000>;
|
|
interrupts = <16 2 1 23>;
|
|
};
|