mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
x86: dts: link: Move SPD info into the memory controller
The SDRAM SPD (Serial Presence Detect) information should be contained with the SDRAM controller. This makes it easier for the controller to access it and removes the need for a separate compatible string. As a first step, move the information. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
e9822d44a5
commit
a86d45491e
1 changed files with 110 additions and 111 deletions
|
@ -62,6 +62,19 @@
|
|||
intel,duplicate-por;
|
||||
};
|
||||
|
||||
pci {
|
||||
compatible = "pci-x86";
|
||||
#address-cells = <3>;
|
||||
#size-cells = <2>;
|
||||
u-boot,dm-pre-reloc;
|
||||
ranges = <0x02000000 0x0 0xe0000000 0xe0000000 0 0x10000000
|
||||
0x42000000 0x0 0xd0000000 0xd0000000 0 0x10000000
|
||||
0x01000000 0x0 0x1000 0x1000 0 0xefff>;
|
||||
|
||||
northbridge@0,0 {
|
||||
reg = <0x00000000 0 0 0 0>;
|
||||
compatible = "intel,bd82x6x-northbridge";
|
||||
u-boot,dm-pre-reloc;
|
||||
spd {
|
||||
compatible = "memory-spd";
|
||||
#address-cells = <1>;
|
||||
|
@ -172,20 +185,6 @@
|
|||
ff ff ff ff ff ff ff ff];
|
||||
};
|
||||
};
|
||||
|
||||
pci {
|
||||
compatible = "pci-x86";
|
||||
#address-cells = <3>;
|
||||
#size-cells = <2>;
|
||||
u-boot,dm-pre-reloc;
|
||||
ranges = <0x02000000 0x0 0xe0000000 0xe0000000 0 0x10000000
|
||||
0x42000000 0x0 0xd0000000 0xd0000000 0 0x10000000
|
||||
0x01000000 0x0 0x1000 0x1000 0 0xefff>;
|
||||
|
||||
northbridge@0,0 {
|
||||
reg = <0x00000000 0 0 0 0>;
|
||||
compatible = "intel,bd82x6x-northbridge";
|
||||
u-boot,dm-pre-reloc;
|
||||
};
|
||||
|
||||
gma@2,0 {
|
||||
|
|
Loading…
Add table
Reference in a new issue