ste-snowball.dts 10.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * 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/;
13
#include "ste-dbx5x0.dtsi"
14
#include "ste-href-family-pinctrl.dtsi"
15 16 17

/ {
	model = "Calao Systems Snowball platform with device tree";
18
	compatible = "calaosystems,snowball-a9500", "st-ericsson,u9500";
19 20 21 22 23

	memory {
		reg = <0x00000000 0x20000000>;
	};

24 25
	en_3v3_reg: en_3v3 {
		compatible = "regulator-fixed";
26 27 28 29 30 31 32
		regulator-name = "en-3v3-fixed-supply";
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		/* AB8500 GPIOs start from 1 - offset 25 is GPIO26. */
		gpio = <&ab8500_gpio 25 0x4>;
		startup-delay-us = <5000>;
		enable-active-high;
33 34
	};

35 36 37 38 39 40 41 42 43 44
	gpio_keys {
		compatible = "gpio-keys";
		#address-cells = <1>;
		#size-cells = <0>;

		button@1 {
			debounce_interval = <50>;
			wakeup = <1>;
			linux,code = <2>;
			label = "userpb";
45
			gpios = <&gpio1 0 0x4>;
46 47 48 49 50
		};
		button@2 {
			debounce_interval = <50>;
			wakeup = <1>;
			linux,code = <3>;
51
			label = "extkb1";
52
			gpios = <&gpio4 23 0x4>;
53 54 55 56 57
		};
		button@3 {
			debounce_interval = <50>;
			wakeup = <1>;
			linux,code = <4>;
58
			label = "extkb2";
59
			gpios = <&gpio4 24 0x4>;
60 61 62 63 64
		};
		button@4 {
			debounce_interval = <50>;
			wakeup = <1>;
			linux,code = <5>;
65
			label = "extkb3";
66
			gpios = <&gpio5 1 0x4>;
67 68 69 70 71
		};
		button@5 {
			debounce_interval = <50>;
			wakeup = <1>;
			linux,code = <6>;
72
			label = "extkb4";
73
			gpios = <&gpio5 2 0x4>;
74 75 76 77 78
		};
	};

	leds {
		compatible = "gpio-leds";
79 80
		pinctrl-names = "default";
		pinctrl-0 = <&gpioled_snowball_mode>;
81 82
		used-led {
			label = "user_led";
83
			gpios = <&gpio4 14 0x4>;
84
			default-state = "on";
85
			linux,default-trigger = "heartbeat";
86 87 88
		};
	};

89
	soc {
90 91 92 93 94
		usb_per5@a03e0000 {
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&musb_default_mode>;
			pinctrl-1 = <&musb_sleep_mode>;
		};
95 96 97 98 99 100 101 102

		sound {
			compatible = "stericsson,snd-soc-mop500";

			stericsson,cpu-dai = <&msp1 &msp3>;
			stericsson,audio-codec = <&codec>;
		};

103 104 105 106 107 108
		msp0: msp@80123000 {
			pinctrl-names = "default";
			pinctrl-0 = <&msp0_default_mode>;
			status = "okay";
		};

109
		msp1: msp@80124000 {
110 111 112 113 114 115 116 117
			pinctrl-names = "default";
			pinctrl-0 = <&msp1_default_mode>;
			status = "okay";
		};

		msp2: msp@80117000 {
			pinctrl-names = "default";
			pinctrl-0 = <&msp2_default_mode>;
118 119 120 121 122 123 124
			status = "okay";
		};

		msp3: msp@80125000 {
			status = "okay";
		};

125
		external-bus@50000000 {
126 127 128 129 130
			status = "okay";

			ethernet@0 {
				compatible = "smsc,lan9115";
				reg = <0 0x10000>;
131
				interrupts = <12 IRQ_TYPE_EDGE_RISING>;
132
				interrupt-parent = <&gpio4>;
133 134
				vdd33a-supply = <&en_3v3_reg>;
				vddvario-supply = <&db8500_vape_reg>;
135 136
				pinctrl-names = "default";
				pinctrl-0 = <&eth_snowball_mode>;
137

138 139 140 141 142
				reg-shift = <1>;
				reg-io-width = <2>;
				smsc,force-internal-phy;
				smsc,irq-active-high;
				smsc,irq-push-pull;
143 144

				clocks = <&prcc_pclk 3 0>;
145 146 147
			};
		};

148
		vmmci: regulator-gpio {
149 150
			gpios = <&gpio7 4 0x4>;
			enable-gpio = <&gpio6 25 0x4>;
151 152
		};

153
		// External Micro SD slot
154
		sdi0_per1@80126000 {
155
			arm,primecell-periphid = <0x10480180>;
156
			max-frequency = <100000000>;
157
			bus-width = <4>;
158
			mmc-cap-mmc-highspeed;
159
			vmmc-supply = <&ab8500_ldo_aux3_reg>;
160
			vqmmc-supply = <&vmmci>;
161 162 163
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&sdi0_default_mode>;
			pinctrl-1 = <&sdi0_sleep_mode>;
164

165
			cd-gpios  = <&gpio6 26 0x4>; // 218
166 167 168
			cd-inverted;

			status = "okay";
169 170
		};

171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
		// WLAN SDIO channel
		sdi1_per2@80118000 {
			arm,primecell-periphid = <0x10480180>;
			max-frequency = <100000000>;
			bus-width = <4>;
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&sdi1_default_mode>;
			pinctrl-1 = <&sdi1_sleep_mode>;

			status = "okay";
		};

		// Unused PoP eMMC - register and put it to sleep by default */
		sdi2_per3@80005000 {
			arm,primecell-periphid = <0x10480180>;
			pinctrl-names = "default";
			pinctrl-0 = <&sdi2_sleep_mode>;

			status = "okay";
		};

192
		// On-board eMMC
193
		sdi4_per2@80114000 {
194
			arm,primecell-periphid = <0x10480180>;
195
		        max-frequency = <100000000>;
196 197
			bus-width = <8>;
			mmc-cap-mmc-highspeed;
198
			vmmc-supply = <&ab8500_ldo_aux2_reg>;
199 200 201
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&sdi4_default_mode>;
			pinctrl-1 = <&sdi4_sleep_mode>;
202 203

			status = "okay";
204 205
		};

206
		uart@80120000 {
207 208 209
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&uart0_default_mode>;
			pinctrl-1 = <&uart0_sleep_mode>;
210 211 212 213
			status = "okay";
		};

		uart@80121000 {
214 215 216
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&uart1_default_mode>;
			pinctrl-1 = <&uart1_sleep_mode>;
217 218 219 220
			status = "okay";
		};

		uart@80007000 {
221 222 223
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&uart2_default_mode>;
			pinctrl-1 = <&uart2_sleep_mode>;
224 225 226
			status = "okay";
		};

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
		i2c@80004000 {
			pinctrl-names = "default","sleep";
			pinctrl-0 = <&i2c0_default_mode>;
			pinctrl-1 = <&i2c0_sleep_mode>;
		};

		i2c@80122000 {
			pinctrl-names = "default","sleep";
			pinctrl-0 = <&i2c1_default_mode>;
			pinctrl-1 = <&i2c1_sleep_mode>;
		};

		i2c@80128000 {
			pinctrl-names = "default","sleep";
			pinctrl-0 = <&i2c2_default_mode>;
			pinctrl-1 = <&i2c2_sleep_mode>;
		};

		i2c@80110000 {
			pinctrl-names = "default","sleep";
			pinctrl-0 = <&i2c3_default_mode>;
			pinctrl-1 = <&i2c3_sleep_mode>;
		};

251 252 253 254 255
		ssp@80002000 {
			pinctrl-names = "default";
			pinctrl-0 = <&ssp0_snowball_mode>;
		};

256 257 258
		cpufreq-cooling {
			status = "okay";
		};
259

260
		prcmu@80157000 {
261 262 263 264
			cpufreq {
				status = "okay";
			};

265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
			thermal@801573c0 {
				num-trips = <4>;

				trip0-temp = <70000>;
				trip0-type = "active";
				trip0-cdev-num = <1>;
				trip0-cdev-name0 = "thermal-cpufreq-0";

				trip1-temp = <75000>;
				trip1-type = "active";
				trip1-cdev-num = <1>;
				trip1-cdev-name0 = "thermal-cpufreq-0";

				trip2-temp = <80000>;
				trip2-type = "active";
				trip2-cdev-num = <1>;
				trip2-cdev-name0 = "thermal-cpufreq-0";

				trip3-temp = <85000>;
				trip3-type = "critical";
				trip3-cdev-num = <0>;

				status = "okay";
			};

290
			ab8500 {
291 292 293 294
				ab8500-gpio {
					compatible = "stericsson,ab8500-gpio";
				};

295 296 297 298 299 300 301 302 303 304 305 306 307 308
				ext_regulators: ab8500-ext-regulators {
					ab8500_ext1_reg: ab8500_ext1 {
						regulator-name = "ab8500-ext-supply1";
					};

					ab8500_ext2_reg_reg: ab8500_ext2 {
						regulator-name = "ab8500-ext-supply2";
					};

					ab8500_ext3_reg_reg: ab8500_ext3 {
						regulator-name = "ab8500-ext-supply3";
					};
				};

309 310 311 312 313 314 315 316 317 318 319 320 321
				ab8500-regulators {
					ab8500_ldo_aux1_reg: ab8500_ldo_aux1 {
						regulator-name = "V-DISPLAY";
					};

					ab8500_ldo_aux2_reg: ab8500_ldo_aux2 {
						regulator-name = "V-eMMC1";
					};

					ab8500_ldo_aux3_reg: ab8500_ldo_aux3 {
						regulator-name = "V-MMC-SD";
					};

322
					ab8500_ldo_intcore_reg: ab8500_ldo_intcore {
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
						regulator-name = "V-INTCORE";
					};

					ab8500_ldo_tvout_reg: ab8500_ldo_tvout {
						regulator-name = "V-TVOUT";
					};

					ab8500_ldo_usb_reg: ab8500_ldo_usb {
						regulator-name = "dummy";
					};

					ab8500_ldo_audio_reg: ab8500_ldo_audio {
						regulator-name = "V-AUD";
					};

					ab8500_ldo_anamic1_reg: ab8500_ldo_anamic1 {
						regulator-name = "V-AMIC1";
					};

342
					ab8500_ldo_anamic2_reg: ab8500_ldo_anamic2 {
343 344 345 346 347 348 349 350 351 352 353 354 355
						regulator-name = "V-AMIC2";
					};

					ab8500_ldo_dmic_reg: ab8500_ldo_dmic {
						regulator-name = "V-DMIC";
					};

					ab8500_ldo_ana_reg: ab8500_ldo_ana {
						regulator-name = "V-CSI/DSI";
					};
				};
			};
		};
356 357

		pinctrl {
358 359 360 361 362 363 364 365 366 367
			/*
			 * Set this up using hogs, as time goes by and as seems fit, these
			 * can be moved over to being controlled by respective device.
			 */
			pinctrl-names = "default";
			pinctrl-0 = <&accel_snowball_mode>,
				  <&magneto_snowball_mode>,
				  <&gbf_snowball_mode>,
				  <&wlan_snowball_mode>;

368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
			ethernet {
				/*
				 * Mux in "SM" which is used for the
				 * SMSC911x Ethernet adapter
				 */
				eth_snowball_mode: eth_snowball {
					snowball_mux {
						ste,function = "sm";
						ste,pins = "sm_b_1";
					};
					/* LAN IRQ pin */
					snowball_cfg1 {
						ste,pins = "GPIO140_B11";
						ste,config = <&in_nopull>;
					};
					/* LAN reset pin */
					snowball_cfg2 {
						ste,pins = "GPIO141_C12";
						ste,config = <&gpio_out_hi>;
					};

				};
			};
391 392 393 394 395 396 397 398 399 400 401 402 403
			sdi0 {
				sdi0_default_mode: sdi0_default {
					snowball_mux {
						ste,function = "mc0";
						ste,pins = "mc0dat31dir_a_1";
					};
					snowball_cfg1 {
						ste,pins = "GPIO21_AB3"; /* DAT31DIR */
						ste,config = <&out_hi>;
					};

				};
			};
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
			ssp0 {
				ssp0_snowball_mode: ssp0_snowball_default {
					snowball_mux {
						ste,function = "ssp0";
						ste,pins = "ssp0_a_1";
					};
					snowball_cfg1 {
						ste,pins = "GPIO144_B13"; /* FRM */
						ste,config = <&gpio_out_hi>;
					};
					snowball_cfg2 {
						ste,pins = "GPIO145_C13"; /* RXD */
						ste,config = <&in_pd>;
					};
					snowball_cfg3 {
						ste,pins =
						"GPIO146_D13", /* TXD */
						"GPIO143_D12"; /* CLK */
						ste,config = <&out_lo>;
					};

				};
			};
427 428 429 430 431 432 433 434 435
			gpio_led {
				gpioled_snowball_mode: gpioled_default {
					snowball_cfg1 {
						ste,pins = "GPIO142_C11";
						ste,config = <&gpio_out_hi>;
					};

				};
			};
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
			accelerometer {
				accel_snowball_mode: accel_snowball {
					/* Accelerometer lines */
					snowball_cfg1 {
						ste,pins =
						"GPIO163_C20", /* ACCEL_IRQ1 */
						"GPIO164_B21"; /* ACCEL_IRQ2 */
						ste,config = <&gpio_in_pu>;
					};
				};
			};
			magnetometer {
				magneto_snowball_mode: magneto_snowball {
					snowball_cfg1 {
						ste,pins = "GPIO165_C21"; /* MAG_DRDY */
						ste,config = <&gpio_in_pu>;
					};
				};
			};
			gbf {
				gbf_snowball_mode: gbf_snowball {
					/*
					 * GBF (GPS, Bluetooth, FM-radio) interface,
					 * pull low to reset state
					 */
					snowball_cfg1 {
						ste,pins = "GPIO171_D23"; /* GBF_ENA_RESET */
						ste,config = <&gpio_out_lo>;
					};
				 };
			};
			wlan {
				wlan_snowball_mode: wlan_snowball {
					/*
					 * Activate this mode with the WLAN chip.
					 * These are plain GPIO pins used by WLAN
					 */
					snowball_cfg1 {
						ste,pins =
						"GPIO161_D21", /* WLAN_PMU_EN */
						"GPIO215_AH13"; /* WLAN_ENA */
						ste,config = <&gpio_out_lo>;
					};
					snowball_cfg2 {
						ste,pins = "GPIO216_AG12"; /* WLAN_IRQ */
						ste,config = <&gpio_in_pu>;
					};
				};
			};
485
		};
486 487 488 489 490 491

		mcde@a0350000 {
			pinctrl-names = "default", "sleep";
			pinctrl-0 = <&lcd_default_mode>;
			pinctrl-1 = <&lcd_sleep_mode>;
		};
492 493
	};
};