summaryrefslogtreecommitdiff
path: root/io-module/mtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'io-module/mtp.c')
-rw-r--r--io-module/mtp.c69
1 files changed, 10 insertions, 59 deletions
diff --git a/io-module/mtp.c b/io-module/mtp.c
index 3d536a4..9726b86 100644
--- a/io-module/mtp.c
+++ b/io-module/mtp.c
@@ -8,7 +8,6 @@ static struct gpio_pin gpio_pins_mtp_0_0[] = {
.flags = GPIOF_OUT_INIT_HIGH,
.label = "eth-enabled",
},
- .active_low = 0,
},
{
.name = "RADIO_POWER_MONITOR",
@@ -44,39 +43,30 @@ static struct gpio_pin gpio_pins_mtp_0_0[] = {
.active_low = 1,
},
{
- .name = "USER_PUSHBUTTON",
- .pin = {
- .gpio = AT91_PIN_PA5, // User Pushbutton
- .flags = GPIOF_IN,
- .label = "button",
- },
- .active_low = 1,
- },
- {
.name = "LORA_RESET",
.pin = {
.gpio = AT91_PIN_PA8, // LORA_RST
- .flags = GPIOF_OUT_INIT_HIGH,
+ .flags = GPIOF_OUT_INIT_LOW,
.label = "lora-reset",
},
},
/* LEDs */
{
- .name = "LED2", // LED2 is for LoRa status
+ .name = "STATUS_LED", // DEV_LED_GN
.pin = {
- .gpio = AT91_PIN_PC15,
- .flags = GPIOF_OUT_INIT_HIGH,
- .label = "led-lora",
+ .gpio = AT91_PIN_PC25,
+ .flags = GPIOF_OUT_INIT_LOW,
+ .label = "led-status",
},
.active_low = 1,
},
{
- .name = "LED2",
+ .name = "LED2", // LED2 is for LoRa status
.pin = {
.gpio = AT91_PIN_PC15,
.flags = GPIOF_OUT_INIT_HIGH,
- .label = "led-a",
+ .label = "led-lora",
},
.active_low = 1,
},
@@ -90,15 +80,6 @@ static struct gpio_pin gpio_pins_mtp_0_0[] = {
.active_low = 1,
},
{
- .name = "LED3",
- .pin = {
- .gpio = AT91_PIN_PC16,
- .flags = GPIOF_OUT_INIT_HIGH,
- .label = "led-b",
- },
- .active_low = 1,
- },
- {
.name = "LED4", // LED4 is for WiFi status
.pin = {
.gpio = AT91_PIN_PC20,
@@ -107,33 +88,6 @@ static struct gpio_pin gpio_pins_mtp_0_0[] = {
},
.active_low = 1,
},
- {
- .name = "LED4",
- .pin = {
- .gpio = AT91_PIN_PC20,
- .flags = GPIOF_OUT_INIT_HIGH,
- .label = "led-c",
- },
- .active_low = 1,
- },
- {
- .name = "LED5", // DEV_LED_GN
- .pin = {
- .gpio = AT91_PIN_PC25,
- .flags = GPIOF_OUT_INIT_HIGH,
- .label = "led-dev",
- },
- .active_low = 1,
- },
- {
- .name = "LED5",
- .pin = {
- .gpio = AT91_PIN_PC25,
- .flags = GPIOF_OUT_INIT_HIGH,
- .label = "led-d",
- },
- .active_low = 1,
- },
{ },
};
@@ -371,7 +325,7 @@ static DEVICE_ATTR_MTS(dev_attr_eth_enabled_mtp, "eth-enabled",
static DEVICE_ATTR_MTS(dev_attr_led_lora_gpio_mtp, "led-lora",
mts_attr_show_gpio_pin, mts_attr_store_gpio_pin);
-static DEVICE_ATTR_MTS(dev_attr_led_dev_gpio_mtp, "led-dev",
+static DEVICE_ATTR_MTS(dev_attr_led_wifi_gpio_mtp, "led-wifi",
mts_attr_show_gpio_pin, mts_attr_store_gpio_pin);
static struct attribute *mtp_0_0_platform_attributes[] = {
@@ -400,14 +354,11 @@ static struct attribute *mtp_0_0_platform_attributes[] = {
&dev_attr_radio_reset_backoff_index.attr,
&dev_attr_radio_reset_backoff_seconds.attr,
+ &dev_attr_led_status.attr,
&dev_attr_led_cd_gpio.attr,
&dev_attr_led_lora_gpio_mtp.attr,
- &dev_attr_led_dev_gpio_mtp.attr,
+ &dev_attr_led_wifi_gpio_mtp.attr,
- &dev_attr_led_a_gpio.attr,
- &dev_attr_led_b_gpio.attr,
- &dev_attr_led_c_gpio.attr,
- &dev_attr_led_d_gpio.attr,
&dev_attr_lora_reset_mtp.attr,
NULL,