mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

LP5562 can drive up to 4 channels, RGB and White. LEDs can be controlled directly via the led class control interface. LP55xx common driver LP5562 is one of LP55xx family device, so LP55xx common code are used. On the other hand, chip specific configuration is defined in the structure 'lp55xx_device_config' LED pattern data LP5562 has also internal program memory which is used for running various LED patterns. LP5562 driver supports the firmware interface and the predefined pattern data as well. LP5562 device attributes: 'led_pattern' and 'engine_mux' A 'led_pattern' is an index code which runs the predefined pattern data. And 'engine_mux' is updated with the firmware interface is activated. Detailed description has been updated in the documentation files, 'leds-lp55xx.txt' and 'leds-lp5562.txt'. Changes on the header file LP5562 configurable definitions are added. Pattern RGB data is fixed as constant value. (No side effect on other devices, LP5521 or LP5523.) (cooloney@gmail.com: remove redundant mutex_unlock(). Reported by Dan Carpenter <dan.carpenter@oracle.com>) Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com> Signed-off-by: Bryan Wu <cooloney@gmail.com>
95 lines
2.8 KiB
C
95 lines
2.8 KiB
C
/*
|
|
* LP55XX Platform Data Header
|
|
*
|
|
* Copyright (C) 2012 Texas Instruments
|
|
*
|
|
* Author: Milo(Woogyom) Kim <milo.kim@ti.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* version 2 as published by the Free Software Foundation.
|
|
*
|
|
* Derived from leds-lp5521.h, leds-lp5523.h
|
|
*/
|
|
|
|
#ifndef _LEDS_LP55XX_H
|
|
#define _LEDS_LP55XX_H
|
|
|
|
/* Clock configuration */
|
|
#define LP55XX_CLOCK_AUTO 0
|
|
#define LP55XX_CLOCK_INT 1
|
|
#define LP55XX_CLOCK_EXT 2
|
|
|
|
/* Bits in LP5521 CONFIG register. 'update_config' in lp55xx_platform_data */
|
|
#define LP5521_PWM_HF 0x40 /* PWM: 0 = 256Hz, 1 = 558Hz */
|
|
#define LP5521_PWRSAVE_EN 0x20 /* 1 = Power save mode */
|
|
#define LP5521_CP_MODE_OFF 0 /* Charge pump (CP) off */
|
|
#define LP5521_CP_MODE_BYPASS 8 /* CP forced to bypass mode */
|
|
#define LP5521_CP_MODE_1X5 0x10 /* CP forced to 1.5x mode */
|
|
#define LP5521_CP_MODE_AUTO 0x18 /* Automatic mode selection */
|
|
#define LP5521_R_TO_BATT 4 /* R out: 0 = CP, 1 = Vbat */
|
|
#define LP5521_CLK_SRC_EXT 0 /* Ext-clk source (CLK_32K) */
|
|
#define LP5521_CLK_INT 1 /* Internal clock */
|
|
#define LP5521_CLK_AUTO 2 /* Automatic clock selection */
|
|
|
|
/* Bits in LP5562 CONFIG register */
|
|
#define LP5562_PWM_HF LP5521_PWM_HF
|
|
#define LP5562_PWRSAVE_EN LP5521_PWRSAVE_EN
|
|
#define LP5562_CLK_SRC_EXT LP5521_CLK_SRC_EXT
|
|
#define LP5562_CLK_INT LP5521_CLK_INT
|
|
#define LP5562_CLK_AUTO LP5521_CLK_AUTO
|
|
|
|
struct lp55xx_led_config {
|
|
const char *name;
|
|
u8 chan_nr;
|
|
u8 led_current; /* mA x10, 0 if led is not connected */
|
|
u8 max_current;
|
|
};
|
|
|
|
struct lp55xx_predef_pattern {
|
|
const u8 *r;
|
|
const u8 *g;
|
|
const u8 *b;
|
|
u8 size_r;
|
|
u8 size_g;
|
|
u8 size_b;
|
|
};
|
|
|
|
/*
|
|
* struct lp55xx_platform_data
|
|
* @led_config : Configurable led class device
|
|
* @num_channels : Number of LED channels
|
|
* @label : Used for naming LEDs
|
|
* @clock_mode : Input clock mode. LP55XX_CLOCK_AUTO or _INT or _EXT
|
|
* @setup_resources : Platform specific function before enabling the chip
|
|
* @release_resources : Platform specific function after disabling the chip
|
|
* @enable : EN pin control by platform side
|
|
* @patterns : Predefined pattern data for RGB channels
|
|
* @num_patterns : Number of patterns
|
|
* @update_config : Value of CONFIG register
|
|
*/
|
|
struct lp55xx_platform_data {
|
|
|
|
/* LED channel configuration */
|
|
struct lp55xx_led_config *led_config;
|
|
u8 num_channels;
|
|
const char *label;
|
|
|
|
/* Clock configuration */
|
|
u8 clock_mode;
|
|
|
|
/* Platform specific functions */
|
|
int (*setup_resources)(void);
|
|
void (*release_resources)(void);
|
|
void (*enable)(bool state);
|
|
|
|
/* Predefined pattern data */
|
|
struct lp55xx_predef_pattern *patterns;
|
|
unsigned int num_patterns;
|
|
|
|
/* _CONFIG register */
|
|
u8 update_config;
|
|
};
|
|
|
|
#endif /* _LEDS_LP55XX_H */
|