From 741780bd938e39a69d757e82d7474ed004dfe9fc Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Sun, 26 Mar 2023 14:38:41 +0200 Subject: [PATCH] bmips: sercomm,h500-s: add Quantenna gpio switch MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Sercomm H500-s has a Quantenna SoC for external wifi which can be activated or deactivated through GPIO #20. Signed-off-by: Álvaro Fernández Rojas --- .../nand/base-files/etc/board.d/03_gpio_switches | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 target/linux/bmips/nand/base-files/etc/board.d/03_gpio_switches diff --git a/target/linux/bmips/nand/base-files/etc/board.d/03_gpio_switches b/target/linux/bmips/nand/base-files/etc/board.d/03_gpio_switches new file mode 100644 index 0000000000..75ac111b0c --- /dev/null +++ b/target/linux/bmips/nand/base-files/etc/board.d/03_gpio_switches @@ -0,0 +1,16 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +. /lib/functions/uci-defaults.sh + +board_config_update + +case "$(board_name)" in +sercomm,h500-s-lowi |\ +sercomm,h500-s-vfes) + ucidef_add_gpio_switch "qtn_power" "Quantenna Module Power" "480" "1" + ;; +esac + +board_config_flush + +exit 0 -- 2.30.2