]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/leds/leds-lp55xx-common.h
Merge branch 'for-5.6' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[mirror_ubuntu-jammy-kernel.git] / drivers / leds / leds-lp55xx-common.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
c93d08fa
MWK
2/*
3 * LP55XX Common Driver Header
4 *
5 * Copyright (C) 2012 Texas Instruments
6 *
7 * Author: Milo(Woogyom) Kim <milo.kim@ti.com>
8 *
c93d08fa
MWK
9 * Derived from leds-lp5521.c, leds-lp5523.c
10 */
11
12#ifndef _LEDS_LP55XX_COMMON_H
13#define _LEDS_LP55XX_COMMON_H
14
10c06d17
MWK
15enum lp55xx_engine_index {
16 LP55XX_ENGINE_INVALID,
17 LP55XX_ENGINE_1,
18 LP55XX_ENGINE_2,
19 LP55XX_ENGINE_3,
6841a91d
MK
20 LP55XX_ENGINE_MAX = LP55XX_ENGINE_3,
21};
22
23enum lp55xx_engine_mode {
24 LP55XX_ENGINE_DISABLED,
25 LP55XX_ENGINE_LOAD,
26 LP55XX_ENGINE_RUN,
10c06d17
MWK
27};
28
36030978
MK
29#define LP55XX_DEV_ATTR_RW(name, show, store) \
30 DEVICE_ATTR(name, S_IRUGO | S_IWUSR, show, store)
31#define LP55XX_DEV_ATTR_RO(name, show) \
32 DEVICE_ATTR(name, S_IRUGO, show, NULL)
33#define LP55XX_DEV_ATTR_WO(name, store) \
34 DEVICE_ATTR(name, S_IWUSR, NULL, store)
35
36#define show_mode(nr) \
37static ssize_t show_engine##nr##_mode(struct device *dev, \
38 struct device_attribute *attr, \
39 char *buf) \
40{ \
41 return show_engine_mode(dev, attr, buf, nr); \
42}
43
44#define store_mode(nr) \
45static ssize_t store_engine##nr##_mode(struct device *dev, \
46 struct device_attribute *attr, \
47 const char *buf, size_t len) \
48{ \
49 return store_engine_mode(dev, attr, buf, len, nr); \
50}
51
52#define show_leds(nr) \
53static ssize_t show_engine##nr##_leds(struct device *dev, \
54 struct device_attribute *attr, \
55 char *buf) \
56{ \
57 return show_engine_leds(dev, attr, buf, nr); \
58}
59
60#define store_leds(nr) \
61static ssize_t store_engine##nr##_leds(struct device *dev, \
62 struct device_attribute *attr, \
63 const char *buf, size_t len) \
64{ \
65 return store_engine_leds(dev, attr, buf, len, nr); \
66}
67
68#define store_load(nr) \
69static ssize_t store_engine##nr##_load(struct device *dev, \
70 struct device_attribute *attr, \
71 const char *buf, size_t len) \
72{ \
73 return store_engine_load(dev, attr, buf, len, nr); \
74}
75
c93d08fa
MWK
76struct lp55xx_led;
77struct lp55xx_chip;
78
48068d5d
MWK
79/*
80 * struct lp55xx_reg
81 * @addr : Register address
82 * @val : Register value
83 */
84struct lp55xx_reg {
85 u8 addr;
86 u8 val;
87};
88
89/*
90 * struct lp55xx_device_config
91 * @reset : Chip specific reset command
e3a700d8 92 * @enable : Chip specific enable command
0e202346 93 * @max_channel : Maximum number of channels
ffbdccdb 94 * @post_init_device : Chip specific initialization code
95b2af63 95 * @brightness_fn : Brightness function
9e9b3db1 96 * @set_led_current : LED current set function
10c06d17
MWK
97 * @firmware_cb : Call function when the firmware is loaded
98 * @run_engine : Run internal engine for pattern
240085e2 99 * @dev_attr_group : Device specific attributes
48068d5d
MWK
100 */
101struct lp55xx_device_config {
102 const struct lp55xx_reg reset;
e3a700d8 103 const struct lp55xx_reg enable;
0e202346 104 const int max_channel;
ffbdccdb
MWK
105
106 /* define if the device has specific initialization process */
107 int (*post_init_device) (struct lp55xx_chip *chip);
9e9b3db1
MWK
108
109 /* access brightness register */
95b2af63 110 int (*brightness_fn)(struct lp55xx_led *led);
9e9b3db1
MWK
111
112 /* current setting function */
113 void (*set_led_current) (struct lp55xx_led *led, u8 led_current);
10c06d17
MWK
114
115 /* access program memory when the firmware is loaded */
116 void (*firmware_cb)(struct lp55xx_chip *chip);
117
118 /* used for running firmware LED patterns */
119 void (*run_engine) (struct lp55xx_chip *chip, bool start);
240085e2
MWK
120
121 /* additional device specific attributes */
122 const struct attribute_group *dev_attr_group;
48068d5d
MWK
123};
124
6841a91d
MK
125/*
126 * struct lp55xx_engine
127 * @mode : Engine mode
128 * @led_mux : Mux bits for LED selection. Only used in LP5523
129 */
130struct lp55xx_engine {
131 enum lp55xx_engine_mode mode;
132 u16 led_mux;
133};
134
c93d08fa
MWK
135/*
136 * struct lp55xx_chip
137 * @cl : I2C communication for access registers
138 * @pdata : Platform specific data
139 * @lock : Lock for user-space interface
140 * @num_leds : Number of registered LEDs
48068d5d 141 * @cfg : Device specific configuration data
10c06d17 142 * @engine_idx : Selected engine number
6841a91d 143 * @engines : Engine structure for the device attribute R/W interface
10c06d17 144 * @fw : Firmware data for running a LED pattern
c93d08fa
MWK
145 */
146struct lp55xx_chip {
147 struct i2c_client *cl;
53b41922 148 struct clk *clk;
c93d08fa
MWK
149 struct lp55xx_platform_data *pdata;
150 struct mutex lock; /* lock for user-space interface */
151 int num_leds;
48068d5d 152 struct lp55xx_device_config *cfg;
10c06d17 153 enum lp55xx_engine_index engine_idx;
6841a91d 154 struct lp55xx_engine engines[LP55XX_ENGINE_MAX];
10c06d17 155 const struct firmware *fw;
c93d08fa
MWK
156};
157
158/*
159 * struct lp55xx_led
160 * @chan_nr : Channel number
161 * @cdev : LED class device
162 * @led_current : Current setting at each led channel
163 * @max_current : Maximun current at each led channel
c93d08fa
MWK
164 * @brightness : Brightness value
165 * @chip : The lp55xx chip data
166 */
167struct lp55xx_led {
168 int chan_nr;
169 struct led_classdev cdev;
170 u8 led_current;
171 u8 max_current;
c93d08fa
MWK
172 u8 brightness;
173 struct lp55xx_chip *chip;
174};
175
176/* register access */
177extern int lp55xx_write(struct lp55xx_chip *chip, u8 reg, u8 val);
178extern int lp55xx_read(struct lp55xx_chip *chip, u8 reg, u8 *val);
179extern int lp55xx_update_bits(struct lp55xx_chip *chip, u8 reg,
180 u8 mask, u8 val);
181
53b41922
KM
182/* external clock detection */
183extern bool lp55xx_is_extclk_used(struct lp55xx_chip *chip);
184
6ce61762 185/* common device init/deinit functions */
a85908dd 186extern int lp55xx_init_device(struct lp55xx_chip *chip);
6ce61762 187extern void lp55xx_deinit_device(struct lp55xx_chip *chip);
a85908dd 188
9e9b3db1
MWK
189/* common LED class device functions */
190extern int lp55xx_register_leds(struct lp55xx_led *led,
191 struct lp55xx_chip *chip);
c3a68ebf
MWK
192extern void lp55xx_unregister_leds(struct lp55xx_led *led,
193 struct lp55xx_chip *chip);
b3b6f811
MWK
194
195/* common device attributes functions */
196extern int lp55xx_register_sysfs(struct lp55xx_chip *chip);
ba6fa846 197extern void lp55xx_unregister_sysfs(struct lp55xx_chip *chip);
b3b6f811 198
7542a04b 199/* common device tree population function */
ed133352
MK
200extern struct lp55xx_platform_data
201*lp55xx_of_populate_pdata(struct device *dev, struct device_node *np);
7542a04b 202
c93d08fa 203#endif /* _LEDS_LP55XX_COMMON_H */