Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
lp855x.h
Go to the documentation of this file.
1 /*
2  * LP855x Backlight Driver
3  *
4  * Copyright (C) 2011 Texas Instruments
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  */
11 
12 #ifndef _LP855X_H
13 #define _LP855X_H
14 
15 #define BL_CTL_SHFT (0)
16 #define BRT_MODE_SHFT (1)
17 #define BRT_MODE_MASK (0x06)
18 
19 /* Enable backlight. Only valid when BRT_MODE=10(I2C only) */
20 #define ENABLE_BL (1)
21 #define DISABLE_BL (0)
22 
23 #define I2C_CONFIG(id) id ## _I2C_CONFIG
24 #define PWM_CONFIG(id) id ## _PWM_CONFIG
25 
26 /* DEVICE CONTROL register - LP8550 */
27 #define LP8550_PWM_CONFIG (LP8550_PWM_ONLY << BRT_MODE_SHFT)
28 #define LP8550_I2C_CONFIG ((ENABLE_BL << BL_CTL_SHFT) | \
29  (LP8550_I2C_ONLY << BRT_MODE_SHFT))
30 
31 /* DEVICE CONTROL register - LP8551 */
32 #define LP8551_PWM_CONFIG LP8550_PWM_CONFIG
33 #define LP8551_I2C_CONFIG LP8550_I2C_CONFIG
34 
35 /* DEVICE CONTROL register - LP8552 */
36 #define LP8552_PWM_CONFIG LP8550_PWM_CONFIG
37 #define LP8552_I2C_CONFIG LP8550_I2C_CONFIG
38 
39 /* DEVICE CONTROL register - LP8553 */
40 #define LP8553_PWM_CONFIG LP8550_PWM_CONFIG
41 #define LP8553_I2C_CONFIG LP8550_I2C_CONFIG
42 
43 /* DEVICE CONTROL register - LP8556 */
44 #define LP8556_PWM_CONFIG (LP8556_PWM_ONLY << BRT_MODE_SHFT)
45 #define LP8556_COMB1_CONFIG (LP8556_COMBINED1 << BRT_MODE_SHFT)
46 #define LP8556_I2C_CONFIG ((ENABLE_BL << BL_CTL_SHFT) | \
47  (LP8556_I2C_ONLY << BRT_MODE_SHFT))
48 #define LP8556_COMB2_CONFIG (LP8556_COMBINED2 << BRT_MODE_SHFT)
49 #define LP8556_FAST_CONFIG BIT(7) /* use it if EPROMs should be maintained
50  when exiting the low power mode */
51 
57  LP8556,
58 };
59 
61  PWM_BASED = 1,
63 };
64 
67  LP8550_I2C_ONLY = 2,
68 };
69 
73 };
74 
78 };
79 
83 };
84 
87  LP8556_COMBINED1, /* pwm + i2c before the shaper block */
89  LP8556_COMBINED2, /* pwm + i2c after the shaper block */
90 };
91 
93  void (*pwm_set_intensity) (int brightness, int max_brightness);
94  int (*pwm_get_intensity) (int max_brightness);
95 };
96 
99  u8 val;
100 };
101 
117  char *name;
124  struct lp855x_rom_data *rom_data;
125 };
126 
127 #endif