ste-nomadik-s8815.dts 2.9 KB
Newer Older
1 2 3 4 5 6
/*
 * Device Tree for the ST-Ericsson Nomadik S8815 board
 * Produced by Calao Systems
 */

/dts-v1/;
7
#include <dt-bindings/interrupt-controller/irq.h>
8
#include "ste-nomadik-stn8815.dtsi"
9 10 11 12 13 14 15 16 17

/ {
	model = "Calao Systems USB-S8815";
	compatible = "calaosystems,usb-s8815";

	chosen {
		bootargs = "root=/dev/ram0 console=ttyAMA1,115200n8 earlyprintk";
	};

18 19 20 21
	aliases {
		serial1 = &uart1;
	};

22 23 24 25 26 27
	src@101e0000 {
		/* These chrystal drivers are not used on this board */
		disable-sxtalo;
		disable-mxtalo;
	};

28 29 30 31 32 33 34 35 36
	pinctrl {
		/* Hog CD pins */
		pinctrl-names = "default";
		pinctrl-0 = <&cd_default_mode>;

		mmcsd-cd {
			cd_default_mode: cd_default {
				cd_default_cfg1 {
					/* CD input GPIO */
37
					pins = "GPIO111_H21";
38 39 40 41
					ste,input = <0>;
				};
				cd_default_cfg2 {
					/* CD GPIO biasing */
42
					pins = "GPIO112_J21";
43 44 45 46
					ste,output = <0>;
				};
			};
		};
47 48 49
		gpioi2c {
			gpioi2c_default_mode: gpioi2c_default {
				gpioi2c_default_cfg {
50
					pins = "GPIO73_C21", "GPIO74_C20";
51 52 53 54
					ste,input = <0>;
				};
			};
		};
55 56 57
		user-led {
			user_led_default_mode: user_led_default {
				user_led_default_cfg {
58
					pins = "GPIO2_C5";
59 60 61 62 63 64 65
					ste,output = <1>;
				};
			};
		};
		user-button {
			user_button_default_mode: user_button_default {
				user_button_default_cfg {
66
					pins = "GPIO3_A4";
67 68 69 70 71 72
					ste,input = <0>;
				};
			};
		};
	};

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
	/* Ethernet */
	external-bus@34000000 {
		compatible = "simple-bus";
		reg = <0x34000000 0x1000000>;
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0 0x34000000 0x1000000>;
		ethernet@300 {
			compatible = "smsc,lan91c111";
			reg = <0x300 0x0fd00>;
			interrupt-parent = <&gpio3>;
			interrupts = <8 IRQ_TYPE_EDGE_RISING>;
		};
	};

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
	/* GPIO I2C connected to the USB portions of the STw4811 only */
	gpio-i2c {
		compatible = "i2c-gpio";
		gpios = <&gpio2 10 0>, /* sda */
			<&gpio2 9 0>; /* scl */
		#address-cells = <1>;
		#size-cells = <0>;
		pinctrl-names = "default";
		pinctrl-0 = <&gpioi2c_default_mode>;

		stw4811@2d {
			   compatible = "st,stw4811-usb";
			   reg = <0x2d>;
		};
	};


105 106 107 108 109 110 111
	/* Configure card detect for the uSD slot */
	amba {
		mmcsd: sdi@101f6000 {
			cd-gpios = <&gpio3 15 GPIO_ACTIVE_LOW>;
		};
	};

112 113
	/* Custom board node with GPIO pins to active etc */
	usb-s8815 {
114 115 116 117
		/* This will bias the MMC/SD card detect line */
		mmcsd-gpio {
			gpios = <&gpio3 16 0x1>;
		};
118
	};
119 120 121 122 123 124 125 126 127

	/* The user LED on the board is set up to be used for heartbeat */
	leds {
		compatible = "gpio-leds";
		user-led {
			label = "user_led";
			gpios = <&gpio0 2 0x1>;
			default-state = "off";
			linux,default-trigger = "heartbeat";
128 129
			pinctrl-names = "default";
			pinctrl-0 = <&user_led_default_mode>;
130 131 132 133 134 135 136 137 138 139 140
		};
	};

	/* User key mapped in as "escape" */
	gpio-keys {
		compatible = "gpio-keys";
		user-button {
			label = "user_button";
			gpios = <&gpio0 3 0x1>;
			linux,code = <1>; /* KEY_ESC */
			gpio-key,wakeup;
141 142
			pinctrl-names = "default";
			pinctrl-0 = <&user_button_default_mode>;
143 144
		};
	};
145
};