blob: 8473abf9830cddca63ce0fb69ee92b8f094e395c [file] [log] [blame]
Milo(Woogyom) Kimc93d08f2013-02-05 18:01:23 +09001/*
2 * LP55XX Common Driver Header
3 *
4 * Copyright (C) 2012 Texas Instruments
5 *
6 * Author: Milo(Woogyom) Kim <milo.kim@ti.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * Derived from leds-lp5521.c, leds-lp5523.c
13 */
14
15#ifndef _LEDS_LP55XX_COMMON_H
16#define _LEDS_LP55XX_COMMON_H
17
Milo(Woogyom) Kim10c06d12013-02-05 19:17:20 +090018enum lp55xx_engine_index {
19 LP55XX_ENGINE_INVALID,
20 LP55XX_ENGINE_1,
21 LP55XX_ENGINE_2,
22 LP55XX_ENGINE_3,
23};
24
Milo(Woogyom) Kimc93d08f2013-02-05 18:01:23 +090025struct lp55xx_led;
26struct lp55xx_chip;
27
28/*
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +090029 * struct lp55xx_reg
30 * @addr : Register address
31 * @val : Register value
32 */
33struct lp55xx_reg {
34 u8 addr;
35 u8 val;
36};
37
38/*
39 * struct lp55xx_device_config
40 * @reset : Chip specific reset command
Milo(Woogyom) Kime3a700d2013-02-05 18:09:56 +090041 * @enable : Chip specific enable command
Milo(Woogyom) Kim0e202342013-02-05 19:07:34 +090042 * @max_channel : Maximum number of channels
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +090043 * @post_init_device : Chip specific initialization code
Milo(Woogyom) Kim9e9b3db2013-02-05 19:06:27 +090044 * @brightness_work_fn : Brightness work function
45 * @set_led_current : LED current set function
Milo(Woogyom) Kim10c06d12013-02-05 19:17:20 +090046 * @firmware_cb : Call function when the firmware is loaded
47 * @run_engine : Run internal engine for pattern
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +090048 */
49struct lp55xx_device_config {
50 const struct lp55xx_reg reset;
Milo(Woogyom) Kime3a700d2013-02-05 18:09:56 +090051 const struct lp55xx_reg enable;
Milo(Woogyom) Kim0e202342013-02-05 19:07:34 +090052 const int max_channel;
Milo(Woogyom) Kimffbdccd2013-02-05 18:57:36 +090053
54 /* define if the device has specific initialization process */
55 int (*post_init_device) (struct lp55xx_chip *chip);
Milo(Woogyom) Kim9e9b3db2013-02-05 19:06:27 +090056
57 /* access brightness register */
58 void (*brightness_work_fn)(struct work_struct *work);
59
60 /* current setting function */
61 void (*set_led_current) (struct lp55xx_led *led, u8 led_current);
Milo(Woogyom) Kim10c06d12013-02-05 19:17:20 +090062
63 /* access program memory when the firmware is loaded */
64 void (*firmware_cb)(struct lp55xx_chip *chip);
65
66 /* used for running firmware LED patterns */
67 void (*run_engine) (struct lp55xx_chip *chip, bool start);
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +090068};
69
70/*
Milo(Woogyom) Kimc93d08f2013-02-05 18:01:23 +090071 * struct lp55xx_chip
72 * @cl : I2C communication for access registers
73 * @pdata : Platform specific data
74 * @lock : Lock for user-space interface
75 * @num_leds : Number of registered LEDs
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +090076 * @cfg : Device specific configuration data
Milo(Woogyom) Kim10c06d12013-02-05 19:17:20 +090077 * @engine_idx : Selected engine number
78 * @fw : Firmware data for running a LED pattern
Milo(Woogyom) Kimc93d08f2013-02-05 18:01:23 +090079 */
80struct lp55xx_chip {
81 struct i2c_client *cl;
82 struct lp55xx_platform_data *pdata;
83 struct mutex lock; /* lock for user-space interface */
84 int num_leds;
Milo(Woogyom) Kim48068d52013-02-05 18:08:49 +090085 struct lp55xx_device_config *cfg;
Milo(Woogyom) Kim10c06d12013-02-05 19:17:20 +090086 enum lp55xx_engine_index engine_idx;
87 const struct firmware *fw;
Milo(Woogyom) Kimc93d08f2013-02-05 18:01:23 +090088};
89
90/*
91 * struct lp55xx_led
92 * @chan_nr : Channel number
93 * @cdev : LED class device
94 * @led_current : Current setting at each led channel
95 * @max_current : Maximun current at each led channel
96 * @brightness_work : Workqueue for brightness control
97 * @brightness : Brightness value
98 * @chip : The lp55xx chip data
99 */
100struct lp55xx_led {
101 int chan_nr;
102 struct led_classdev cdev;
103 u8 led_current;
104 u8 max_current;
105 struct work_struct brightness_work;
106 u8 brightness;
107 struct lp55xx_chip *chip;
108};
109
110/* register access */
111extern int lp55xx_write(struct lp55xx_chip *chip, u8 reg, u8 val);
112extern int lp55xx_read(struct lp55xx_chip *chip, u8 reg, u8 *val);
113extern int lp55xx_update_bits(struct lp55xx_chip *chip, u8 reg,
114 u8 mask, u8 val);
115
Milo(Woogyom) Kim6ce61762013-02-05 19:03:02 +0900116/* common device init/deinit functions */
Milo(Woogyom) Kima85908d2013-02-05 18:07:20 +0900117extern int lp55xx_init_device(struct lp55xx_chip *chip);
Milo(Woogyom) Kim6ce61762013-02-05 19:03:02 +0900118extern void lp55xx_deinit_device(struct lp55xx_chip *chip);
Milo(Woogyom) Kima85908d2013-02-05 18:07:20 +0900119
Milo(Woogyom) Kim9e9b3db2013-02-05 19:06:27 +0900120/* common LED class device functions */
121extern int lp55xx_register_leds(struct lp55xx_led *led,
122 struct lp55xx_chip *chip);
Milo(Woogyom) Kimc3a68eb2013-02-05 19:11:18 +0900123extern void lp55xx_unregister_leds(struct lp55xx_led *led,
124 struct lp55xx_chip *chip);
Milo(Woogyom) Kimb3b6f812013-02-05 19:15:27 +0900125
126/* common device attributes functions */
127extern int lp55xx_register_sysfs(struct lp55xx_chip *chip);
128
Milo(Woogyom) Kimc93d08f2013-02-05 18:01:23 +0900129#endif /* _LEDS_LP55XX_COMMON_H */