|
@@ -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 {
|
|
@@ -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>;
|
|
|
+};
|