2014-02-26 22:59:21 +00:00
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "sandbox";
|
|
|
|
compatible = "sandbox";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
|
2014-07-23 12:55:03 +00:00
|
|
|
aliases {
|
|
|
|
console = &uart0;
|
2015-05-22 21:42:15 +00:00
|
|
|
eth0 = "/eth@10002000";
|
|
|
|
eth5 = ð_5;
|
2015-01-25 15:27:05 +00:00
|
|
|
i2c0 = "/i2c@0";
|
2015-05-13 11:38:34 +00:00
|
|
|
pci0 = &pci;
|
2015-05-22 21:42:17 +00:00
|
|
|
rtc0 = &rtc_0;
|
|
|
|
rtc1 = &rtc_1;
|
2015-05-22 21:42:15 +00:00
|
|
|
spi0 = "/spi@0";
|
2015-05-13 11:38:34 +00:00
|
|
|
testfdt6 = "/e-test";
|
2015-01-25 15:27:05 +00:00
|
|
|
testbus3 = "/some-bus";
|
|
|
|
testfdt0 = "/some-bus/c-test@0";
|
|
|
|
testfdt1 = "/some-bus/c-test@1";
|
|
|
|
testfdt3 = "/b-test";
|
|
|
|
testfdt5 = "/some-bus/c-test@5";
|
|
|
|
testfdt8 = "/a-test";
|
2015-03-25 18:23:05 +00:00
|
|
|
usb0 = &usb_0;
|
|
|
|
usb1 = &usb_1;
|
|
|
|
usb2 = &usb_2;
|
2014-07-23 12:55:03 +00:00
|
|
|
};
|
|
|
|
|
2014-02-26 22:59:21 +00:00
|
|
|
a-test {
|
|
|
|
reg = <0>;
|
|
|
|
compatible = "denx,u-boot-fdt-test";
|
2014-07-23 12:54:57 +00:00
|
|
|
ping-expect = <0>;
|
2014-02-26 22:59:21 +00:00
|
|
|
ping-add = <0>;
|
2014-07-23 12:55:03 +00:00
|
|
|
u-boot,dm-pre-reloc;
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
test-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 5 0 3 2 1>,
|
|
|
|
<0>, <&gpio_a 12>;
|
|
|
|
test2-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 6 1 3 2 1>,
|
|
|
|
<&gpio_b 7 2 3 2 1>, <&gpio_b 8 4 3 2 1>,
|
|
|
|
<&gpio_b 9 0xc 3 2 1>;
|
2014-02-26 22:59:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
junk {
|
|
|
|
reg = <1>;
|
|
|
|
compatible = "not,compatible";
|
|
|
|
};
|
|
|
|
|
|
|
|
no-compatible {
|
|
|
|
reg = <2>;
|
|
|
|
};
|
|
|
|
|
|
|
|
b-test {
|
|
|
|
reg = <3>;
|
|
|
|
compatible = "denx,u-boot-fdt-test";
|
2014-07-23 12:54:57 +00:00
|
|
|
ping-expect = <3>;
|
2014-02-26 22:59:21 +00:00
|
|
|
ping-add = <3>;
|
|
|
|
};
|
|
|
|
|
|
|
|
some-bus {
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2014-07-23 12:55:18 +00:00
|
|
|
compatible = "denx,u-boot-test-bus";
|
2014-07-23 12:55:12 +00:00
|
|
|
reg = <3>;
|
2014-07-23 12:54:57 +00:00
|
|
|
ping-expect = <4>;
|
2014-02-26 22:59:21 +00:00
|
|
|
ping-add = <4>;
|
2014-07-23 12:55:18 +00:00
|
|
|
c-test@5 {
|
2014-02-26 22:59:21 +00:00
|
|
|
compatible = "denx,u-boot-fdt-test";
|
|
|
|
reg = <5>;
|
2014-07-23 12:55:18 +00:00
|
|
|
ping-expect = <5>;
|
2014-02-26 22:59:21 +00:00
|
|
|
ping-add = <5>;
|
|
|
|
};
|
2014-07-23 12:55:18 +00:00
|
|
|
c-test@0 {
|
|
|
|
compatible = "denx,u-boot-fdt-test";
|
|
|
|
reg = <0>;
|
|
|
|
ping-expect = <6>;
|
|
|
|
ping-add = <6>;
|
|
|
|
};
|
|
|
|
c-test@1 {
|
|
|
|
compatible = "denx,u-boot-fdt-test";
|
|
|
|
reg = <1>;
|
|
|
|
ping-expect = <7>;
|
|
|
|
ping-add = <7>;
|
|
|
|
};
|
2014-02-26 22:59:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
d-test {
|
2014-07-23 12:55:12 +00:00
|
|
|
reg = <3>;
|
|
|
|
ping-expect = <6>;
|
|
|
|
ping-add = <6>;
|
|
|
|
compatible = "google,another-fdt-test";
|
|
|
|
};
|
|
|
|
|
|
|
|
e-test {
|
|
|
|
reg = <3>;
|
2014-07-23 12:54:57 +00:00
|
|
|
ping-expect = <6>;
|
2014-02-26 22:59:21 +00:00
|
|
|
ping-add = <6>;
|
|
|
|
compatible = "google,another-fdt-test";
|
|
|
|
};
|
|
|
|
|
2015-01-25 15:27:05 +00:00
|
|
|
f-test {
|
|
|
|
compatible = "denx,u-boot-fdt-test";
|
|
|
|
};
|
|
|
|
|
|
|
|
g-test {
|
|
|
|
compatible = "denx,u-boot-fdt-test";
|
|
|
|
};
|
|
|
|
|
2015-07-06 18:54:24 +00:00
|
|
|
clk@0 {
|
|
|
|
compatible = "sandbox,clk";
|
|
|
|
};
|
|
|
|
|
2015-05-22 21:42:15 +00:00
|
|
|
eth@10002000 {
|
|
|
|
compatible = "sandbox,eth";
|
|
|
|
reg = <0x10002000 0x1000>;
|
|
|
|
fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x00>;
|
|
|
|
};
|
|
|
|
|
|
|
|
eth_5: eth@10003000 {
|
|
|
|
compatible = "sandbox,eth";
|
|
|
|
reg = <0x10003000 0x1000>;
|
|
|
|
fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x11>;
|
|
|
|
};
|
|
|
|
|
|
|
|
eth@10004000 {
|
|
|
|
compatible = "sandbox,eth";
|
|
|
|
reg = <0x10004000 0x1000>;
|
|
|
|
fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x22>;
|
|
|
|
};
|
|
|
|
|
2014-10-14 05:42:11 +00:00
|
|
|
gpio_a: base-gpios {
|
2014-02-26 22:59:21 +00:00
|
|
|
compatible = "sandbox,gpio";
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
gpio-controller;
|
|
|
|
#gpio-cells = <1>;
|
2014-02-26 22:59:21 +00:00
|
|
|
gpio-bank-name = "a";
|
|
|
|
num-gpios = <20>;
|
|
|
|
};
|
|
|
|
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
gpio_b: extra-gpios {
|
2014-02-26 22:59:21 +00:00
|
|
|
compatible = "sandbox,gpio";
|
dm: gpio: Add better functions to request GPIOs
At present U-Boot sort-of supports the standard way of reading GPIOs from
device tree nodes, but the support is incomplete, a bit clunky and only
works for GPIO bindings where #gpio-cells is 2.
Add new functions to request GPIOs, taking full account of the device
tree binding. These permit requesting a GPIO with a simple call like:
gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN);
This will request the GPIO, looking at the device's node which might be
this, for example:
cd-gpios = <&gpio TEGRA_GPIO(B, 3) GPIO_ACTIVE_LOW>;
The GPIO will be set to input mode in this case and polarity will be
honoured by the GPIO calls.
It is also possible to request and free a list of GPIOs.
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-01-06 03:05:29 +00:00
|
|
|
gpio-controller;
|
|
|
|
#gpio-cells = <5>;
|
2014-02-26 22:59:21 +00:00
|
|
|
gpio-bank-name = "b";
|
|
|
|
num-gpios = <10>;
|
|
|
|
};
|
2014-10-14 05:42:11 +00:00
|
|
|
|
2014-12-10 15:55:55 +00:00
|
|
|
i2c@0 {
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
reg = <0>;
|
|
|
|
compatible = "sandbox,i2c";
|
|
|
|
clock-frequency = <100000>;
|
|
|
|
eeprom@2c {
|
|
|
|
reg = <0x2c>;
|
|
|
|
compatible = "i2c-eeprom";
|
|
|
|
emul {
|
|
|
|
compatible = "sandbox,i2c-eeprom";
|
|
|
|
sandbox,filename = "i2c.bin";
|
|
|
|
sandbox,size = <256>;
|
|
|
|
};
|
|
|
|
};
|
2015-05-13 11:38:35 +00:00
|
|
|
|
2015-05-22 21:42:17 +00:00
|
|
|
rtc_0: rtc@43 {
|
|
|
|
reg = <0x43>;
|
|
|
|
compatible = "sandbox-rtc";
|
|
|
|
emul {
|
|
|
|
compatible = "sandbox,i2c-rtc";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
rtc_1: rtc@61 {
|
|
|
|
reg = <0x61>;
|
|
|
|
compatible = "sandbox-rtc";
|
|
|
|
emul {
|
|
|
|
compatible = "sandbox,i2c-rtc";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-05-13 11:38:35 +00:00
|
|
|
sandbox_pmic: sandbox_pmic {
|
|
|
|
reg = <0x40>;
|
|
|
|
};
|
2014-12-10 15:55:55 +00:00
|
|
|
};
|
|
|
|
|
2015-07-06 18:54:32 +00:00
|
|
|
mmc {
|
|
|
|
compatible = "sandbox,mmc";
|
|
|
|
};
|
|
|
|
|
2015-03-05 19:25:34 +00:00
|
|
|
pci: pci-controller {
|
|
|
|
compatible = "sandbox,pci";
|
|
|
|
device_type = "pci";
|
|
|
|
#address-cells = <3>;
|
|
|
|
#size-cells = <2>;
|
|
|
|
ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000
|
|
|
|
0x01000000 0 0x20000000 0x20000000 0 0x2000>;
|
|
|
|
pci@1f,0 {
|
|
|
|
compatible = "pci-generic";
|
|
|
|
reg = <0xf800 0 0 0 0>;
|
|
|
|
emul@1f,0 {
|
|
|
|
compatible = "sandbox,swap-case";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-07-06 18:54:31 +00:00
|
|
|
ram {
|
|
|
|
compatible = "sandbox,ram";
|
|
|
|
};
|
|
|
|
|
2015-07-06 18:54:29 +00:00
|
|
|
reset@0 {
|
|
|
|
compatible = "sandbox,warm-reset";
|
|
|
|
};
|
|
|
|
|
|
|
|
reset@1 {
|
|
|
|
compatible = "sandbox,reset";
|
|
|
|
};
|
|
|
|
|
2014-10-14 05:42:11 +00:00
|
|
|
spi@0 {
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
reg = <0>;
|
|
|
|
compatible = "sandbox,spi";
|
|
|
|
cs-gpios = <0>, <&gpio_a 0>;
|
|
|
|
spi.bin@0 {
|
|
|
|
reg = <0>;
|
|
|
|
compatible = "spansion,m25p16", "spi-flash";
|
|
|
|
spi-max-frequency = <40000000>;
|
|
|
|
sandbox,filename = "spi.bin";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-05-22 21:42:15 +00:00
|
|
|
uart0: serial {
|
|
|
|
compatible = "sandbox,serial";
|
|
|
|
u-boot,dm-pre-reloc;
|
2015-03-22 22:09:15 +00:00
|
|
|
};
|
|
|
|
|
2015-03-25 18:23:05 +00:00
|
|
|
usb_0: usb@0 {
|
|
|
|
compatible = "sandbox,usb";
|
|
|
|
status = "disabled";
|
|
|
|
hub {
|
|
|
|
compatible = "sandbox,usb-hub";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
flash-stick {
|
|
|
|
reg = <0>;
|
|
|
|
compatible = "sandbox,usb-flash";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
usb_1: usb@1 {
|
|
|
|
compatible = "sandbox,usb";
|
|
|
|
hub {
|
|
|
|
compatible = "usb-hub";
|
|
|
|
usb,device-class = <9>;
|
|
|
|
hub-emul {
|
|
|
|
compatible = "sandbox,usb-hub";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
flash-stick {
|
|
|
|
reg = <0>;
|
|
|
|
compatible = "sandbox,usb-flash";
|
|
|
|
sandbox,filepath = "testflash.bin";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
usb_2: usb@2 {
|
|
|
|
compatible = "sandbox,usb";
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
2014-02-26 22:59:21 +00:00
|
|
|
};
|
2015-05-13 11:38:35 +00:00
|
|
|
|
|
|
|
#include "sandbox_pmic.dtsi"
|