Commit 66c9270b authored by Daniel Tang's avatar Daniel Tang Committed by Arnd Bergmann

devicetree: Add TI-NSPIRE USB OTG support to device tree

Signed-off-by: default avatarDaniel Tang <dt.tangr@gmail.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 8f4edb9e
...@@ -51,6 +51,11 @@ &ahb_clk { ...@@ -51,6 +51,11 @@ &ahb_clk {
compatible = "lsi,nspire-classic-ahb-divider"; compatible = "lsi,nspire-classic-ahb-divider";
}; };
&vbus_reg {
gpio = <&gpio 5 0>;
};
/ { / {
memory { memory {
device_type = "memory"; device_type = "memory";
......
...@@ -69,6 +69,10 @@ &keypad { ...@@ -69,6 +69,10 @@ &keypad {
0x0709001d 0x070a0033 >; 0x0709001d 0x070a0033 >;
}; };
&vbus_reg {
gpio = <&gpio 2 0>;
};
/ { / {
model = "TI-NSPIRE CX"; model = "TI-NSPIRE CX";
compatible = "ti,nspire-cx"; compatible = "ti,nspire-cx";
......
...@@ -54,6 +54,20 @@ apb_pclk: apb_pclk { ...@@ -54,6 +54,20 @@ apb_pclk: apb_pclk {
clocks = <&ahb_clk>; clocks = <&ahb_clk>;
}; };
usb_phy: usb_phy {
compatible = "usb-nop-xceiv";
};
vbus_reg: vbus_reg {
compatible = "regulator-fixed";
regulator-name = "USB VBUS output";
regulator-type = "voltage";
regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
};
ahb { ahb {
compatible = "simple-bus"; compatible = "simple-bus";
#address-cells = <1>; #address-cells = <1>;
...@@ -65,8 +79,12 @@ spi: spi@A9000000 { ...@@ -65,8 +79,12 @@ spi: spi@A9000000 {
}; };
usb0: usb@B0000000 { usb0: usb@B0000000 {
compatible = "lsi,zevio-usb";
reg = <0xB0000000 0x1000>; reg = <0xB0000000 0x1000>;
interrupts = <8>; interrupts = <8>;
usb-phy = <&usb_phy>;
vbus-supply = <&vbus_reg>;
}; };
usb1: usb@B4000000 { usb1: usb@B4000000 {
...@@ -105,8 +123,11 @@ apb@90000000 { ...@@ -105,8 +123,11 @@ apb@90000000 {
ranges; ranges;
gpio: gpio@90000000 { gpio: gpio@90000000 {
compatible = "lsi,zevio-gpio";
reg = <0x90000000 0x1000>; reg = <0x90000000 0x1000>;
interrupts = <7>; interrupts = <7>;
gpio-controller;
#gpio-cells = <2>;
}; };
fast_timer: timer@90010000 { fast_timer: timer@90010000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment