mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
3c1ab50d0a
Allow unused leds on pca9532 to be used as gpio. The board I am working on now has no less than 6 pca9532 chips. One chips is used for only leds, one has 14 leds and 2 gpio and the rest of the chips are gpio only. There is also one board in mainline which could use this capabilty; arch/arm/mach-iop32x/n2100.c 232 { .type = PCA9532_TYPE_NONE }, /* power OFF gpio */ 233 { .type = PCA9532_TYPE_NONE }, /* reset gpio */ This patch defines a new pin type, PCA9532_TYPE_GPIO, and registers a gpiochip if any pin has this type set. The gpio will registers all chip pins but will filter on gpio_request. [randy.dunlap@oracle.com: fix build when GPIOLIB is not enabled] Signed-off-by: Joachim Eastwood <joachim.eastwood@jotron.com> Reviewed-by: Wolfram Sang <w.sang@pengutronix.de> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Richard Purdie <rpurdie@rpsys.net> Cc: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: Jan Weitzel <j.weitzel@phytec.de> Cc: Juergen Kilb <j.kilb@phytec.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
48 lines
1 KiB
C
48 lines
1 KiB
C
/*
|
|
* pca9532.h - platform data structure for pca9532 led controller
|
|
*
|
|
* Copyright (C) 2008 Riku Voipio <riku.voipio@movial.fi>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* Datasheet: http://www.nxp.com/acrobat/datasheets/PCA9532_3.pdf
|
|
*
|
|
*/
|
|
|
|
#ifndef __LINUX_PCA9532_H
|
|
#define __LINUX_PCA9532_H
|
|
|
|
#include <linux/leds.h>
|
|
#include <linux/workqueue.h>
|
|
|
|
enum pca9532_state {
|
|
PCA9532_OFF = 0x0,
|
|
PCA9532_ON = 0x1,
|
|
PCA9532_PWM0 = 0x2,
|
|
PCA9532_PWM1 = 0x3
|
|
};
|
|
|
|
enum pca9532_type { PCA9532_TYPE_NONE, PCA9532_TYPE_LED,
|
|
PCA9532_TYPE_N2100_BEEP, PCA9532_TYPE_GPIO };
|
|
|
|
struct pca9532_led {
|
|
u8 id;
|
|
struct i2c_client *client;
|
|
char *name;
|
|
struct led_classdev ldev;
|
|
struct work_struct work;
|
|
enum pca9532_type type;
|
|
enum pca9532_state state;
|
|
};
|
|
|
|
struct pca9532_platform_data {
|
|
struct pca9532_led leds[16];
|
|
u8 pwm[2];
|
|
u8 psc[2];
|
|
int gpio_base;
|
|
};
|
|
|
|
#endif /* __LINUX_PCA9532_H */
|
|
|