bf76e062c1
Here we split the description of the external-bus@50000000 over two description files. In the more generic db8500 description file we only specify the external-bus. Normally this would be used to communicate with a NOR-flash device. On the Snowball however, the SMSC9115 Ethernet chip occupies it. In the Snowball board specific description file is where we actually specify that it is in fact the Ethernet device which lives here. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
141 lines
2.4 KiB
Text
141 lines
2.4 KiB
Text
/*
|
|
* Copyright 2011 ST-Ericsson AB
|
|
*
|
|
* The code contained herein is licensed under the GNU General Public
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
* Version 2 or later at the following locations:
|
|
*
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/include/ "db8500.dtsi"
|
|
|
|
/ {
|
|
model = "Calao Systems Snowball platform with device tree";
|
|
compatible = "calaosystems,snowball-a9500";
|
|
|
|
memory {
|
|
reg = <0x00000000 0x20000000>;
|
|
};
|
|
|
|
gpio_keys {
|
|
compatible = "gpio-keys";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
button@1 {
|
|
debounce_interval = <50>;
|
|
wakeup = <1>;
|
|
linux,code = <2>;
|
|
label = "userpb";
|
|
gpios = <&gpio1 0 0>;
|
|
};
|
|
button@2 {
|
|
debounce_interval = <50>;
|
|
wakeup = <1>;
|
|
linux,code = <3>;
|
|
label = "extkb1";
|
|
gpios = <&gpio4 23 0>;
|
|
};
|
|
button@3 {
|
|
debounce_interval = <50>;
|
|
wakeup = <1>;
|
|
linux,code = <4>;
|
|
label = "extkb2";
|
|
gpios = <&gpio4 24 0>;
|
|
};
|
|
button@4 {
|
|
debounce_interval = <50>;
|
|
wakeup = <1>;
|
|
linux,code = <5>;
|
|
label = "extkb3";
|
|
gpios = <&gpio5 1 0>;
|
|
};
|
|
button@5 {
|
|
debounce_interval = <50>;
|
|
wakeup = <1>;
|
|
linux,code = <6>;
|
|
label = "extkb4";
|
|
gpios = <&gpio5 2 0>;
|
|
};
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
used-led {
|
|
label = "user_led";
|
|
gpios = <&gpio4 14>;
|
|
};
|
|
};
|
|
|
|
soc-u9500 {
|
|
|
|
external-bus@50000000 {
|
|
status = "okay";
|
|
|
|
ethernet@0 {
|
|
compatible = "smsc,lan9115";
|
|
reg = <0 0x10000>;
|
|
interrupts = <12 0x1>;
|
|
interrupt-parent = <&gpio4>;
|
|
|
|
reg-shift = <1>;
|
|
reg-io-width = <2>;
|
|
smsc,force-internal-phy;
|
|
smsc,irq-active-high;
|
|
smsc,irq-push-pull;
|
|
};
|
|
};
|
|
|
|
sdi@80126000 {
|
|
status = "enabled";
|
|
cd-gpios = <&gpio6 26>;
|
|
};
|
|
|
|
sdi@80114000 {
|
|
status = "enabled";
|
|
};
|
|
|
|
uart@80120000 {
|
|
status = "okay";
|
|
};
|
|
|
|
uart@80121000 {
|
|
status = "okay";
|
|
};
|
|
|
|
uart@80007000 {
|
|
status = "okay";
|
|
};
|
|
|
|
i2c@80004000 {
|
|
tc3589x@42 {
|
|
//compatible = "tc3589x";
|
|
reg = <0x42>;
|
|
interrupts = <25>;
|
|
interrupt-parent = <&gpio6>;
|
|
};
|
|
tps61052@33 {
|
|
//compatible = "tps61052";
|
|
reg = <0x33>;
|
|
};
|
|
};
|
|
|
|
i2c@80128000 {
|
|
lp5521@0x33 {
|
|
// compatible = "lp5521";
|
|
reg = <0x33>;
|
|
};
|
|
lp5521@0x34 {
|
|
// compatible = "lp5521";
|
|
reg = <0x34>;
|
|
};
|
|
bh1780@0x29 {
|
|
// compatible = "rohm,bh1780gli";
|
|
reg = <0x33>;
|
|
};
|
|
};
|
|
};
|
|
};
|