X-Git-Url: https://git.ao2.it/experiments/bbb-gpio-keypad.git/blobdiff_plain/cb13f20965339570792a0c2446159ba30c7f5bdb..8463e89998575ca4a922ab3a577d47a3f039dd3a:/bbb-gpio-keypad-00A0.dts diff --git a/bbb-gpio-keypad-00A0.dts b/bbb-gpio-keypad-00A0.dts index d290093..98a2fb2 100644 --- a/bbb-gpio-keypad-00A0.dts +++ b/bbb-gpio-keypad-00A0.dts @@ -1,3 +1,22 @@ +/* + * bbb-gpio-keypad - simple navigation keypad for the BeagleBone Black + * + * Copyright (C) 2018 Antonio Ospite + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + /dts-v1/; /plugin/; @@ -8,16 +27,18 @@ / { compatible = "ti,beaglebone", "ti,beaglebone-black"; - /* identification */ - part-number = "gpio-keypad-ao2"; + // Identification. + part-number = "bbb-gpio-keypad"; version = "00A0"; - // resources this cape uses + // Resources this cape uses, see also https://ao2.it/137 exclusive-use = "P8.07", "P8.08", "P8.09", - "P8.10"; + "P8.10", + "P8.26", + "P9.15"; fragment@0 { target = <&am33xx_pinmux>; @@ -28,6 +49,8 @@ BONE_P8_08 (PIN_INPUT_PULLUP | MUX_MODE7) BONE_P8_09 (PIN_INPUT_PULLUP | MUX_MODE7) BONE_P8_10 (PIN_INPUT_PULLUP | MUX_MODE7) + BONE_P8_26 (PIN_INPUT_PULLUP | MUX_MODE7) + BONE_P9_15 (PIN_INPUT_PULLUP | MUX_MODE7) >; }; }; @@ -38,6 +61,7 @@ __overlay__ { gpio_keys { compatible = "gpio-keys"; + autorepeat; pinctrl-names = "default"; pinctrl-0 = <&keypad_pins>; @@ -65,6 +89,18 @@ gpios = <&gpio2 4 GPIO_ACTIVE_LOW>; debounce_interval = <50>; }; + enter { + label = "GPIO Key ENTER"; + linux,code = <28>; + gpios = <&gpio1 29 GPIO_ACTIVE_LOW>; + debounce_interval = <50>; + }; + esc { + label = "GPIO Key ESC"; + linux,code = <1>; + gpios = <&gpio1 16 GPIO_ACTIVE_LOW>; + debounce_interval = <50>; + }; }; }; };