Commit 9859eb99 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Linus Walleij

gpio: twl4030: Use only TWL4030_MODULE_LED for LED configuration

Avoid using the TWL4030_MODULE_PWMA/B as module ID. The LEDEN, PWMA ON/OFF
and PWMB ON/OFF registers are in a continuous range starting from LED base.
This is going to be helpful for further cleanup in the twl stack.

No functional changes.
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 195812e4
...@@ -88,11 +88,15 @@ static inline int gpio_twl4030_write(u8 address, u8 data) ...@@ -88,11 +88,15 @@ static inline int gpio_twl4030_write(u8 address, u8 data)
/*----------------------------------------------------------------------*/ /*----------------------------------------------------------------------*/
/* /*
* LED register offsets (use TWL4030_MODULE_{LED,PWMA,PWMB})) * LED register offsets from TWL_MODULE_LED base
* PWMs A and B are dedicated to LEDs A and B, respectively. * PWMs A and B are dedicated to LEDs A and B, respectively.
*/ */
#define TWL4030_LED_LEDEN 0x0 #define TWL4030_LED_LEDEN_REG 0x00
#define TWL4030_PWMAON_REG 0x01
#define TWL4030_PWMAOFF_REG 0x02
#define TWL4030_PWMBON_REG 0x03
#define TWL4030_PWMBOFF_REG 0x04
/* LEDEN bits */ /* LEDEN bits */
#define LEDEN_LEDAON BIT(0) #define LEDEN_LEDAON BIT(0)
...@@ -104,9 +108,6 @@ static inline int gpio_twl4030_write(u8 address, u8 data) ...@@ -104,9 +108,6 @@ static inline int gpio_twl4030_write(u8 address, u8 data)
#define LEDEN_PWM_LENGTHA BIT(6) #define LEDEN_PWM_LENGTHA BIT(6)
#define LEDEN_PWM_LENGTHB BIT(7) #define LEDEN_PWM_LENGTHB BIT(7)
#define TWL4030_PWMx_PWMxON 0x0
#define TWL4030_PWMx_PWMxOFF 0x1
#define PWMxON_LENGTH BIT(7) #define PWMxON_LENGTH BIT(7)
/*----------------------------------------------------------------------*/ /*----------------------------------------------------------------------*/
...@@ -145,7 +146,7 @@ static void twl4030_led_set_value(int led, int value) ...@@ -145,7 +146,7 @@ static void twl4030_led_set_value(int led, int value)
else else
cached_leden |= mask; cached_leden |= mask;
status = twl_i2c_write_u8(TWL4030_MODULE_LED, cached_leden, status = twl_i2c_write_u8(TWL4030_MODULE_LED, cached_leden,
TWL4030_LED_LEDEN); TWL4030_LED_LEDEN_REG);
mutex_unlock(&gpio_lock); mutex_unlock(&gpio_lock);
} }
...@@ -216,33 +217,33 @@ static int twl_request(struct gpio_chip *chip, unsigned offset) ...@@ -216,33 +217,33 @@ static int twl_request(struct gpio_chip *chip, unsigned offset)
if (offset >= TWL4030_GPIO_MAX) { if (offset >= TWL4030_GPIO_MAX) {
u8 ledclr_mask = LEDEN_LEDAON | LEDEN_LEDAEXT u8 ledclr_mask = LEDEN_LEDAON | LEDEN_LEDAEXT
| LEDEN_LEDAPWM | LEDEN_PWM_LENGTHA; | LEDEN_LEDAPWM | LEDEN_PWM_LENGTHA;
u8 module = TWL4030_MODULE_PWMA; u8 reg = TWL4030_PWMAON_REG;
offset -= TWL4030_GPIO_MAX; offset -= TWL4030_GPIO_MAX;
if (offset) { if (offset) {
ledclr_mask <<= 1; ledclr_mask <<= 1;
module = TWL4030_MODULE_PWMB; reg = TWL4030_PWMBON_REG;
} }
/* initialize PWM to always-drive */ /* initialize PWM to always-drive */
status = twl_i2c_write_u8(module, 0x7f, /* Configure PWM OFF register first */
TWL4030_PWMx_PWMxOFF); status = twl_i2c_write_u8(TWL4030_MODULE_LED, 0x7f, reg + 1);
if (status < 0) if (status < 0)
goto done; goto done;
status = twl_i2c_write_u8(module, 0x7f,
TWL4030_PWMx_PWMxON); /* Followed by PWM ON register */
status = twl_i2c_write_u8(TWL4030_MODULE_LED, 0x7f, reg);
if (status < 0) if (status < 0)
goto done; goto done;
/* init LED to not-driven (high) */ /* init LED to not-driven (high) */
module = TWL4030_MODULE_LED; status = twl_i2c_read_u8(TWL4030_MODULE_LED, &cached_leden,
status = twl_i2c_read_u8(module, &cached_leden, TWL4030_LED_LEDEN_REG);
TWL4030_LED_LEDEN);
if (status < 0) if (status < 0)
goto done; goto done;
cached_leden &= ~ledclr_mask; cached_leden &= ~ledclr_mask;
status = twl_i2c_write_u8(module, cached_leden, status = twl_i2c_write_u8(TWL4030_MODULE_LED, cached_leden,
TWL4030_LED_LEDEN); TWL4030_LED_LEDEN_REG);
if (status < 0) if (status < 0)
goto done; goto done;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment