diff options
author | Tom Rini <trini@konsulko.com> | 2020-04-11 11:26:48 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-11 11:26:48 -0400 |
commit | db76ec084de14238a43d822feaec802c181e342f (patch) | |
tree | 7867c3ea1c5556502462b1adf19a824d68f69f9b /arch/sandbox/dts/sandbox64.dts | |
parent | 67bbc1ecd311c78b06e845a3fd4e333806782367 (diff) | |
parent | f7553b0e808f38d6303445661db062b74e865de9 (diff) | |
download | u-boot-db76ec084de14238a43d822feaec802c181e342f.tar.gz |
Merge tag 'dm-next-pull-10apr20' of git://git.denx.de/u-boot-dm into nextWIP/11Apr2020-next
Functions for reading indexed values from device tree
Enhancements to 'dm' command
Log test enhancements and syslog driver
DM change to read parent ofdata before children
Minor fixes
Diffstat (limited to 'arch/sandbox/dts/sandbox64.dts')
-rw-r--r-- | arch/sandbox/dts/sandbox64.dts | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/arch/sandbox/dts/sandbox64.dts b/arch/sandbox/dts/sandbox64.dts index 5c95cee9d7..a39f94feec 100644 --- a/arch/sandbox/dts/sandbox64.dts +++ b/arch/sandbox/dts/sandbox64.dts @@ -10,7 +10,7 @@ aliases { i2c0 = &i2c_0; - pci0 = &pci; + pci0 = &pcic; rtc0 = &rtc_0; axi0 = &axi; spi0 = &spi; @@ -20,6 +20,26 @@ reg = /bits/ 64 <0 CONFIG_SYS_SDRAM_SIZE>; }; + reserved-memory { + #address-cells = <2>; + #size-cells = <2>; + ranges; + + reservation_test_size { + size = <0 0x4000>; + alignment = <0 0x2000>; + }; + + reservation_test@a000 { + reg = <0 0x00d0a000 0 0x2000>; + }; + + reservation_test@7000 { + reg = <0 0x00d07000 0 0x1000>; + }; + }; + + /* ... */ cros_ec: cros-ec { reg = <0 0 0 0>; u-boot,dm-pre-reloc; @@ -47,9 +67,10 @@ pinctrl-0 = <&pinctrl_i2c0>; }; - pci: pci-controller { + pcic: pci@0 { compatible = "sandbox,pci"; device_type = "pci"; + bus-range = <0x00 0xff>; #address-cells = <3>; #size-cells = <2>; ranges = <0x02000000 0 0x10000000 0 0x10000000 0 0x2000 |