Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250972
b: refs/heads/master
c: 3c1ab50
h: refs/heads/master
v: v3
  • Loading branch information
Joachim Eastwood authored and Linus Torvalds committed May 25, 2011
1 parent 46874cc commit 9c89edd
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fff26f8141145e01eae8f4d6e642ac8a0d500158
refs/heads/master: 3c1ab50d0a31b27bb4e55168f4901dd91e6e5ea4
10 changes: 10 additions & 0 deletions trunk/drivers/leds/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,16 @@ config LEDS_PCA9532
LED controller. It is generally only useful
as a platform driver

config LEDS_PCA9532_GPIO
bool "Enable GPIO support for PCA9532"
depends on LEDS_PCA9532
depends on GPIOLIB
help
Allow unused pins on PCA9532 to be used as gpio.

To use a pin as gpio pca9532_type in pca9532_platform data needs to
set to PCA9532_TYPE_GPIO.

config LEDS_GPIO
tristate "LED Support for GPIO connected LEDs"
depends on LEDS_CLASS
Expand Down
113 changes: 110 additions & 3 deletions trunk/drivers/leds/leds-pca9532.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
#include <linux/mutex.h>
#include <linux/workqueue.h>
#include <linux/leds-pca9532.h>
#include <linux/gpio.h>

#define PCA9532_REG_INPUT(i) ((i)/8)
#define PCA9532_REG_PSC(i) (0x2+(i)*2)
#define PCA9532_REG_PWM(i) (0x3+(i)*2)
#define PCA9532_REG_LS0 0x6
Expand All @@ -34,6 +36,9 @@ struct pca9532_data {
struct mutex update_lock;
struct input_dev *idev;
struct work_struct work;
#ifdef CONFIG_LEDS_PCA9532_GPIO
struct gpio_chip gpio;
#endif
u8 pwm[2];
u8 psc[2];
};
Expand Down Expand Up @@ -200,16 +205,68 @@ static void pca9532_led_work(struct work_struct *work)
pca9532_setled(led);
}

static void pca9532_destroy_devices(struct pca9532_data *data, int n_devs)
#ifdef CONFIG_LEDS_PCA9532_GPIO
static int pca9532_gpio_request_pin(struct gpio_chip *gc, unsigned offset)
{
struct pca9532_data *data = container_of(gc, struct pca9532_data, gpio);
struct pca9532_led *led = &data->leds[offset];

if (led->type == PCA9532_TYPE_GPIO)
return 0;

return -EBUSY;
}

static void pca9532_gpio_set_value(struct gpio_chip *gc, unsigned offset, int val)
{
struct pca9532_data *data = container_of(gc, struct pca9532_data, gpio);
struct pca9532_led *led = &data->leds[offset];

if (val)
led->state = PCA9532_ON;
else
led->state = PCA9532_OFF;

pca9532_setled(led);
}

static int pca9532_gpio_get_value(struct gpio_chip *gc, unsigned offset)
{
struct pca9532_data *data = container_of(gc, struct pca9532_data, gpio);
unsigned char reg;

reg = i2c_smbus_read_byte_data(data->client, PCA9532_REG_INPUT(offset));

return !!(reg & (1 << (offset % 8)));
}

static int pca9532_gpio_direction_input(struct gpio_chip *gc, unsigned offset)
{
/* To use as input ensure pin is not driven */
pca9532_gpio_set_value(gc, offset, 0);

return 0;
}

static int pca9532_gpio_direction_output(struct gpio_chip *gc, unsigned offset, int val)
{
pca9532_gpio_set_value(gc, offset, val);

return 0;
}
#endif /* CONFIG_LEDS_PCA9532_GPIO */

static int pca9532_destroy_devices(struct pca9532_data *data, int n_devs)
{
int i = n_devs;

if (!data)
return;
return -EINVAL;

while (--i >= 0) {
switch (data->leds[i].type) {
case PCA9532_TYPE_NONE:
case PCA9532_TYPE_GPIO:
break;
case PCA9532_TYPE_LED:
led_classdev_unregister(&data->leds[i].ldev);
Expand All @@ -224,12 +281,26 @@ static void pca9532_destroy_devices(struct pca9532_data *data, int n_devs)
break;
}
}

#ifdef CONFIG_LEDS_PCA9532_GPIO
if (data->gpio.dev) {
int err = gpiochip_remove(&data->gpio);
if (err) {
dev_err(&data->client->dev, "%s failed, %d\n",
"gpiochip_remove()", err);
return err;
}
}
#endif

return 0;
}

static int pca9532_configure(struct i2c_client *client,
struct pca9532_data *data, struct pca9532_platform_data *pdata)
{
int i, err = 0;
int gpios = 0;

for (i = 0; i < 2; i++) {
data->pwm[i] = pdata->pwm[i];
Expand All @@ -249,6 +320,9 @@ static int pca9532_configure(struct i2c_client *client,
switch (led->type) {
case PCA9532_TYPE_NONE:
break;
case PCA9532_TYPE_GPIO:
gpios++;
break;
case PCA9532_TYPE_LED:
led->state = pled->state;
led->name = pled->name;
Expand Down Expand Up @@ -297,6 +371,34 @@ static int pca9532_configure(struct i2c_client *client,
break;
}
}

#ifdef CONFIG_LEDS_PCA9532_GPIO
if (gpios) {
data->gpio.label = "gpio-pca9532";
data->gpio.direction_input = pca9532_gpio_direction_input;
data->gpio.direction_output = pca9532_gpio_direction_output;
data->gpio.set = pca9532_gpio_set_value;
data->gpio.get = pca9532_gpio_get_value;
data->gpio.request = pca9532_gpio_request_pin;
data->gpio.can_sleep = 1;
data->gpio.base = pdata->gpio_base;
data->gpio.ngpio = 16;
data->gpio.dev = &client->dev;
data->gpio.owner = THIS_MODULE;

err = gpiochip_add(&data->gpio);
if (err) {
/* Use data->gpio.dev as a flag for freeing gpiochip */
data->gpio.dev = NULL;
dev_warn(&client->dev, "could not add gpiochip\n");
} else {
dev_info(&client->dev, "gpios %i...%i\n",
data->gpio.base, data->gpio.base +
data->gpio.ngpio - 1);
}
}
#endif

return 0;

exit:
Expand Down Expand Up @@ -337,7 +439,12 @@ static int pca9532_probe(struct i2c_client *client,
static int pca9532_remove(struct i2c_client *client)
{
struct pca9532_data *data = i2c_get_clientdata(client);
pca9532_destroy_devices(data, 16);
int err;

err = pca9532_destroy_devices(data, 16);
if (err)
return err;

kfree(data);
return 0;
}
Expand Down
3 changes: 2 additions & 1 deletion trunk/include/linux/leds-pca9532.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ enum pca9532_state {
};

enum pca9532_type { PCA9532_TYPE_NONE, PCA9532_TYPE_LED,
PCA9532_TYPE_N2100_BEEP };
PCA9532_TYPE_N2100_BEEP, PCA9532_TYPE_GPIO };

struct pca9532_led {
u8 id;
Expand All @@ -41,6 +41,7 @@ struct pca9532_platform_data {
struct pca9532_led leds[16];
u8 pwm[2];
u8 psc[2];
int gpio_base;
};

#endif /* __LINUX_PCA9532_H */
Expand Down

0 comments on commit 9c89edd

Please sign in to comment.