blob: ca46fb2b5803633ca698db162b2a6fd0dce16cfa [file] [log] [blame]
Benoit Cousson295e98c2011-07-14 01:44:54 +05301/*
2 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8/dts-v1/;
9
10/include/ "omap3.dtsi"
11
12/ {
13 model = "TI OMAP3 BeagleBoard";
14 compatible = "ti,omap3-beagle", "ti,omap3";
15
Benoit Cousson295e98c2011-07-14 01:44:54 +053016 memory {
17 device_type = "memory";
18 reg = <0x80000000 0x20000000>; /* 512 MB */
19 };
Florian Vaussarda60be2f2012-09-05 09:46:26 +020020
21 leds {
22 compatible = "gpio-leds";
23 pmu_stat {
24 label = "beagleboard::pmu_stat";
25 gpios = <&twl_gpio 19 0>; /* LEDB */
26 };
Benoit Cousson1c1737e2012-09-05 16:42:04 +020027
28 heartbeat {
29 label = "beagleboard::usr0";
30 gpios = <&gpio5 22 0>; /* 150 -> D6 LED */
31 linux,default-trigger = "heartbeat";
32 };
33
34 mmc {
35 label = "beagleboard::usr1";
36 gpios = <&gpio5 21 0>; /* 149 -> D7 LED */
37 linux,default-trigger = "mmc0";
38 };
Florian Vaussarda60be2f2012-09-05 09:46:26 +020039 };
Benoit Cousson295e98c2011-07-14 01:44:54 +053040};
Benoit Cousson5340b512011-07-14 01:44:54 +053041
42&i2c1 {
43 clock-frequency = <2600000>;
44
45 twl: twl@48 {
46 reg = <0x48>;
47 interrupts = <7>; /* SYS_NIRQ cascaded to intc */
48 interrupt-parent = <&intc>;
Rajendra Nayakecc7b062012-02-08 15:50:12 -080049
Rajendra Nayak624411c2012-07-30 18:42:20 +053050 vsim: regulator-vsim {
Rajendra Nayakecc7b062012-02-08 15:50:12 -080051 compatible = "ti,twl4030-vsim";
52 regulator-min-microvolt = <1800000>;
53 regulator-max-microvolt = <3000000>;
54 };
Benoit Cousson5340b512011-07-14 01:44:54 +053055 };
56};
57
58/include/ "twl4030.dtsi"
59
60&i2c2 {
61 clock-frequency = <400000>;
62};
63
64&i2c3 {
65 clock-frequency = <100000>;
66
67 /*
68 * Display monitor features are burnt in the EEPROM
69 * as EDID data.
70 */
71 eeprom@50 {
72 compatible = "ti,eeprom";
73 reg = <0x50>;
74 };
75};
Rajendra Nayakb3431f52012-02-22 17:42:27 +053076
77&mmc1 {
78 vmmc-supply = <&vmmc1>;
79 vmmc_aux-supply = <&vsim>;
Arnd Bergmann7f217792012-05-13 00:14:24 -040080 bus-width = <8>;
Rajendra Nayakb3431f52012-02-22 17:42:27 +053081};
82
83&mmc2 {
Roland Stiggefd5c3fd2012-06-21 01:36:03 -070084 status = "disabled";
Rajendra Nayakb3431f52012-02-22 17:42:27 +053085};
86
87&mmc3 {
Roland Stiggefd5c3fd2012-06-21 01:36:03 -070088 status = "disabled";
Rajendra Nayakb3431f52012-02-22 17:42:27 +053089};
Florian Vaussarda60be2f2012-09-05 09:46:26 +020090
91&twl_gpio {
92 ti,use-leds;
93 /* pullups: BIT(1) */
94 ti,pullups = <0x000002>;
95 /*
96 * pulldowns:
97 * BIT(2), BIT(6), BIT(7), BIT(8), BIT(13)
98 * BIT(15), BIT(16), BIT(17)
99 */
100 ti,pulldowns = <0x03a1c4>;
101};