diff options
| author | David Bauer | 2024-09-14 17:10:10 +0000 |
|---|---|---|
| committer | David Bauer | 2024-09-20 17:51:57 +0000 |
| commit | b40cc46cc882ff97f2752e7837173ffc9f884eb9 (patch) | |
| tree | 5f29ded56d5cf7b1f66eac9f51f05026e29c6326 | |
| parent | 8d581a8b489126dff64aa69bf7b78d674765df99 (diff) | |
| download | openwrt-b40cc46cc882ff97f2752e7837173ffc9f884eb9.tar.gz | |
ipq40xx: add PoE passthrough GPIO
Add the GPIO pin of the PoE passthrough switch on the Aruba AP-303H.
Power is activated when the pin is low. It enables a PSE chip, so power
is only supplied to downstream devices when they are 802.3af/at
compliant devices.
Ensure you use a sufficient power supply when chaining a consuming
device after the AP.
Signed-off-by: David Bauer <mail@david-bauer.net>
| -rw-r--r-- | target/linux/ipq40xx/base-files/etc/board.d/03_gpio_switches | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/ipq40xx/base-files/etc/board.d/03_gpio_switches b/target/linux/ipq40xx/base-files/etc/board.d/03_gpio_switches index 226785d46c..43ed32fc2b 100644 --- a/target/linux/ipq40xx/base-files/etc/board.d/03_gpio_switches +++ b/target/linux/ipq40xx/base-files/etc/board.d/03_gpio_switches @@ -6,6 +6,9 @@ board_config_update board=$(board_name) case "$board" in +aruba,ap-303h) + ucidef_add_gpio_switch "poe_passtrough" "POE passtrough disable" "546" "1" + ;; cellc,rtl30vw) ucidef_add_gpio_switch "w_disable" "W_DISABLE mPCIE pin" "398" "1" ucidef_add_gpio_switch "pmd_resin_n" "PMD_RESIN_N pin" "399" "1" |