Skip to content

Commit

Permalink
ARM: dts: omap3: Add gpio-twl4030 properties for BeagleBoard and omap…
Browse files Browse the repository at this point in the history
…3-EVM

Add device tree properties for twl4030/gpio, according to the
platform data of corresponding boards. This enables the led
connected to LEDB output for both boards, as well as
pullups/pulldowns on GPIO for the BeagleBoard.

Signed-off-by: Florian Vaussard <florian.vaussard@epfl.ch>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Vaibhav Hiremath <hvaibhav@ti.com>
  • Loading branch information
Florian Vaussard authored and Benoit Cousson committed Sep 7, 2012
1 parent f74ce8f commit a60be2f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
20 changes: 20 additions & 0 deletions arch/arm/boot/dts/omap3-beagle.dts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
device_type = "memory";
reg = <0x80000000 0x20000000>; /* 512 MB */
};

leds {
compatible = "gpio-leds";
pmu_stat {
label = "beagleboard::pmu_stat";
gpios = <&twl_gpio 19 0>; /* LEDB */
};
};
};

&i2c1 {
Expand Down Expand Up @@ -67,3 +75,15 @@
&mmc3 {
status = "disabled";
};

&twl_gpio {
ti,use-leds;
/* pullups: BIT(1) */
ti,pullups = <0x000002>;
/*
* pulldowns:
* BIT(2), BIT(6), BIT(7), BIT(8), BIT(13)
* BIT(15), BIT(16), BIT(17)
*/
ti,pulldowns = <0x03a1c4>;
};
13 changes: 13 additions & 0 deletions arch/arm/boot/dts/omap3-evm.dts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
device_type = "memory";
reg = <0x80000000 0x10000000>; /* 256 MB */
};

leds {
compatible = "gpio-leds";
ledb {
label = "omap3evm::ledb";
gpios = <&twl_gpio 19 0>; /* LEDB */
linux,default-trigger = "default-on";
};
};
};

&i2c1 {
Expand Down Expand Up @@ -46,3 +55,7 @@
reg = <0x5c>;
};
};

&twl_gpio {
ti,use-leds;
};

0 comments on commit a60be2f

Please sign in to comment.