blob: 6e65958cdcaff93cc89b26c2644ee6efcc100c50 [file] [log] [blame]
/* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef __LEDS_PM8XXX_H__
#define __LEDS_PM8XXX_H__
#define PM8XXX_LEDS_DEV_NAME "pm8xxx-led"
/**
* enum pm8xxx_leds - PMIC8XXX supported led ids
* @PM8XXX_ID_LED_KB_LIGHT - keyboard backlight led
* @PM8XXX_ID_LED_0 - First low current led
* @PM8XXX_ID_LED_1 - Second low current led
* @PM8XXX_ID_LED_2 - Third low current led
* @PM8XXX_ID_FLASH_LED_0 - First flash led
* @PM8XXX_ID_FLASH_LED_0 - Second flash led
*/
enum pm8xxx_leds {
PM8XXX_ID_LED_KB_LIGHT = 1,
PM8XXX_ID_LED_0,
PM8XXX_ID_LED_1,
PM8XXX_ID_LED_2,
PM8XXX_ID_FLASH_LED_0,
PM8XXX_ID_FLASH_LED_1,
};
/**
* pm8xxx_led_modes - Operating modes of LEDs
*/
enum pm8xxx_led_modes {
PM8XXX_LED_MODE_MANUAL,
PM8XXX_LED_MODE_PWM1,
PM8XXX_LED_MODE_PWM2,
PM8XXX_LED_MODE_PWM3,
PM8XXX_LED_MODE_DTEST1,
PM8XXX_LED_MODE_DTEST2,
PM8XXX_LED_MODE_DTEST3,
PM8XXX_LED_MODE_DTEST4
};
int pm8xxx_led_config(enum pm8xxx_leds led_id,
enum pm8xxx_led_modes led_mode, int max_current);
#endif /* __LEDS_PM8XXX_H__ */