diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2014-01-20 10:22:56 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2014-01-20 10:22:56 +0000 |
commit | 0056ac55afa1a9fe2bd327f5f4ee2140760669f9 (patch) | |
tree | b82a07223387cde290098194ab57065e5e2e0a2f /target/linux/generic/files/include | |
parent | 15d41de1eb68befe2445e5b7f89276648911da62 (diff) | |
download | mtk-20170518-0056ac55afa1a9fe2bd327f5f4ee2140760669f9.zip mtk-20170518-0056ac55afa1a9fe2bd327f5f4ee2140760669f9.tar.gz mtk-20170518-0056ac55afa1a9fe2bd327f5f4ee2140760669f9.tar.bz2 |
generic: ar8216: add custom LED support for the AR8327 switch
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 39338
Diffstat (limited to 'target/linux/generic/files/include')
-rw-r--r-- | target/linux/generic/files/include/linux/ar8216_platform.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/target/linux/generic/files/include/linux/ar8216_platform.h b/target/linux/generic/files/include/linux/ar8216_platform.h index 23cd55b..4935ad3 100644 --- a/target/linux/generic/files/include/linux/ar8216_platform.h +++ b/target/linux/generic/files/include/linux/ar8216_platform.h @@ -76,6 +76,43 @@ struct ar8327_led_cfg { bool open_drain; }; +enum ar8327_led_num { + AR8327_LED_PHY0_0 = 0, + AR8327_LED_PHY0_1, + AR8327_LED_PHY0_2, + AR8327_LED_PHY1_0, + AR8327_LED_PHY1_1, + AR8327_LED_PHY1_2, + AR8327_LED_PHY2_0, + AR8327_LED_PHY2_1, + AR8327_LED_PHY2_2, + AR8327_LED_PHY3_0, + AR8327_LED_PHY3_1, + AR8327_LED_PHY3_2, + AR8327_LED_PHY4_0, + AR8327_LED_PHY4_1, + AR8327_LED_PHY4_2, +}; + +enum ar8327_led_mode { + AR8327_LED_MODE_HW = 0, + AR8327_LED_MODE_SW, +}; + +struct ar8327_led_info { + const char *name; + const char *default_trigger; + bool active_low; + enum ar8327_led_num led_num; + enum ar8327_led_mode mode; +}; + +#define AR8327_LED_INFO(_led, _mode, _name) { \ + .name = (_name), \ + .led_num = AR8327_LED_ ## _led, \ + .mode = AR8327_LED_MODE_ ## _mode \ +} + struct ar8327_platform_data { struct ar8327_pad_cfg *pad0_cfg; struct ar8327_pad_cfg *pad5_cfg; @@ -86,6 +123,9 @@ struct ar8327_platform_data { struct ar8327_led_cfg *led_cfg; int (*get_port_link)(unsigned port); + + unsigned num_leds; + const struct ar8327_led_info *leds; }; #endif /* AR8216_PLATFORM_H */
\ No newline at end of file |