]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: dts: omap3: Add gpio-twl4030 properties for BeagleBoard and omap3-EVM
authorFlorian Vaussard <florian.vaussard@epfl.ch>
Wed, 5 Sep 2012 07:46:26 +0000 (09:46 +0200)
committerBenoit Cousson <b-cousson@ti.com>
Fri, 7 Sep 2012 17:22:44 +0000 (19:22 +0200)
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>
arch/arm/boot/dts/omap3-beagle.dts
arch/arm/boot/dts/omap3-evm.dts

index e60cba0ed6f132779b0c7052ff25fcc0775ce283..3fe35c27ce1c497c71f2b049a13774bfe5686bdd 100644 (file)
                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 {
 &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>;
+};
index f349ee9182ce6b12390f74718c9a978b84acd817..e8ba1c247a39bf28622276e07a75bf6137baf463 100644 (file)
                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 {
@@ -46,3 +55,7 @@
                reg = <0x5c>;
        };
 };
+
+&twl_gpio {
+       ti,use-leds;
+};