1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * LED driver for Mediatek MT6323 PMIC
5 * Copyright (C) 2017 Sean Wang <sean.wang@mediatek.com>
7 #include <linux/kernel.h>
8 #include <linux/leds.h>
9 #include <linux/mfd/mt6323/registers.h>
10 #include <linux/mfd/mt6397/core.h>
11 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/regmap.h>
17 * Register field for MT6323_TOP_CKPDN0 to enable
18 * 32K clock common for LED device.
20 #define MT6323_RG_DRV_32K_CK_PDN BIT(11)
21 #define MT6323_RG_DRV_32K_CK_PDN_MASK BIT(11)
24 * Register field for MT6323_TOP_CKPDN2 to enable
25 * individual clock for LED device.
27 #define MT6323_RG_ISINK_CK_PDN(i) BIT(i)
28 #define MT6323_RG_ISINK_CK_PDN_MASK(i) BIT(i)
31 * Register field for MT6323_TOP_CKCON1 to select
34 #define MT6323_RG_ISINK_CK_SEL_MASK(i) (BIT(10) << (i))
37 * Register for MT6323_ISINK_CON0 to setup the
38 * duty cycle of the blink.
40 #define MT6323_ISINK_CON0(i) (MT6323_ISINK0_CON0 + 0x8 * (i))
41 #define MT6323_ISINK_DIM_DUTY_MASK (0x1f << 8)
42 #define MT6323_ISINK_DIM_DUTY(i) (((i) << 8) & \
43 MT6323_ISINK_DIM_DUTY_MASK)
45 /* Register to setup the period of the blink. */
46 #define MT6323_ISINK_CON1(i) (MT6323_ISINK0_CON1 + 0x8 * (i))
47 #define MT6323_ISINK_DIM_FSEL_MASK (0xffff)
48 #define MT6323_ISINK_DIM_FSEL(i) ((i) & MT6323_ISINK_DIM_FSEL_MASK)
50 /* Register to control the brightness. */
51 #define MT6323_ISINK_CON2(i) (MT6323_ISINK0_CON2 + 0x8 * (i))
52 #define MT6323_ISINK_CH_STEP_SHIFT 12
53 #define MT6323_ISINK_CH_STEP_MASK (0x7 << 12)
54 #define MT6323_ISINK_CH_STEP(i) (((i) << 12) & \
55 MT6323_ISINK_CH_STEP_MASK)
56 #define MT6323_ISINK_SFSTR0_TC_MASK (0x3 << 1)
57 #define MT6323_ISINK_SFSTR0_TC(i) (((i) << 1) & \
58 MT6323_ISINK_SFSTR0_TC_MASK)
59 #define MT6323_ISINK_SFSTR0_EN_MASK BIT(0)
60 #define MT6323_ISINK_SFSTR0_EN BIT(0)
62 /* Register to LED channel enablement. */
63 #define MT6323_ISINK_CH_EN_MASK(i) BIT(i)
64 #define MT6323_ISINK_CH_EN(i) BIT(i)
66 #define MT6323_MAX_PERIOD 10000
67 #define MT6323_MAX_LEDS 4
68 #define MT6323_MAX_BRIGHTNESS 6
69 #define MT6323_UNIT_DUTY 3125
70 #define MT6323_CAL_HW_DUTY(o, p) DIV_ROUND_CLOSEST((o) * 100000ul,\
71 (p) * MT6323_UNIT_DUTY)
76 * struct mt6323_led - state container for the LED device
77 * @id: the identifier in MT6323 LED device
78 * @parent: the pointer to MT6323 LED controller
79 * @cdev: LED class device for this LED device
80 * @current_brightness: current state of the LED device
84 struct mt6323_leds *parent;
85 struct led_classdev cdev;
86 enum led_brightness current_brightness;
90 * struct mt6323_leds - state container for holding LED controller
92 * @dev: the device pointer
93 * @hw: the underlying hardware providing shared
94 * bus for the register operations
95 * @lock: the lock among process context
96 * @led: the array that contains the state of individual
101 struct mt6397_chip *hw;
102 /* protect among process context */
104 struct mt6323_led *led[MT6323_MAX_LEDS];
107 static int mt6323_led_hw_brightness(struct led_classdev *cdev,
108 enum led_brightness brightness)
110 struct mt6323_led *led = container_of(cdev, struct mt6323_led, cdev);
111 struct mt6323_leds *leds = led->parent;
112 struct regmap *regmap = leds->hw->regmap;
113 u32 con2_mask = 0, con2_val = 0;
117 * Setup current output for the corresponding
120 con2_mask |= MT6323_ISINK_CH_STEP_MASK |
121 MT6323_ISINK_SFSTR0_TC_MASK |
122 MT6323_ISINK_SFSTR0_EN_MASK;
123 con2_val |= MT6323_ISINK_CH_STEP(brightness - 1) |
124 MT6323_ISINK_SFSTR0_TC(2) |
125 MT6323_ISINK_SFSTR0_EN;
127 ret = regmap_update_bits(regmap, MT6323_ISINK_CON2(led->id),
128 con2_mask, con2_val);
132 static int mt6323_led_hw_off(struct led_classdev *cdev)
134 struct mt6323_led *led = container_of(cdev, struct mt6323_led, cdev);
135 struct mt6323_leds *leds = led->parent;
136 struct regmap *regmap = leds->hw->regmap;
140 status = MT6323_ISINK_CH_EN(led->id);
141 ret = regmap_update_bits(regmap, MT6323_ISINK_EN_CTRL,
142 MT6323_ISINK_CH_EN_MASK(led->id), ~status);
146 usleep_range(100, 300);
147 ret = regmap_update_bits(regmap, MT6323_TOP_CKPDN2,
148 MT6323_RG_ISINK_CK_PDN_MASK(led->id),
149 MT6323_RG_ISINK_CK_PDN(led->id));
156 static enum led_brightness
157 mt6323_get_led_hw_brightness(struct led_classdev *cdev)
159 struct mt6323_led *led = container_of(cdev, struct mt6323_led, cdev);
160 struct mt6323_leds *leds = led->parent;
161 struct regmap *regmap = leds->hw->regmap;
165 ret = regmap_read(regmap, MT6323_TOP_CKPDN2, &status);
169 if (status & MT6323_RG_ISINK_CK_PDN_MASK(led->id))
172 ret = regmap_read(regmap, MT6323_ISINK_EN_CTRL, &status);
176 if (!(status & MT6323_ISINK_CH_EN(led->id)))
179 ret = regmap_read(regmap, MT6323_ISINK_CON2(led->id), &status);
183 return ((status & MT6323_ISINK_CH_STEP_MASK)
184 >> MT6323_ISINK_CH_STEP_SHIFT) + 1;
187 static int mt6323_led_hw_on(struct led_classdev *cdev,
188 enum led_brightness brightness)
190 struct mt6323_led *led = container_of(cdev, struct mt6323_led, cdev);
191 struct mt6323_leds *leds = led->parent;
192 struct regmap *regmap = leds->hw->regmap;
197 * Setup required clock source, enable the corresponding
198 * clock and channel and let work with continuous blink as
201 ret = regmap_update_bits(regmap, MT6323_TOP_CKCON1,
202 MT6323_RG_ISINK_CK_SEL_MASK(led->id), 0);
206 status = MT6323_RG_ISINK_CK_PDN(led->id);
207 ret = regmap_update_bits(regmap, MT6323_TOP_CKPDN2,
208 MT6323_RG_ISINK_CK_PDN_MASK(led->id),
213 usleep_range(100, 300);
215 ret = regmap_update_bits(regmap, MT6323_ISINK_EN_CTRL,
216 MT6323_ISINK_CH_EN_MASK(led->id),
217 MT6323_ISINK_CH_EN(led->id));
221 ret = mt6323_led_hw_brightness(cdev, brightness);
225 ret = regmap_update_bits(regmap, MT6323_ISINK_CON0(led->id),
226 MT6323_ISINK_DIM_DUTY_MASK,
227 MT6323_ISINK_DIM_DUTY(31));
231 ret = regmap_update_bits(regmap, MT6323_ISINK_CON1(led->id),
232 MT6323_ISINK_DIM_FSEL_MASK,
233 MT6323_ISINK_DIM_FSEL(1000));
240 static int mt6323_led_set_blink(struct led_classdev *cdev,
241 unsigned long *delay_on,
242 unsigned long *delay_off)
244 struct mt6323_led *led = container_of(cdev, struct mt6323_led, cdev);
245 struct mt6323_leds *leds = led->parent;
246 struct regmap *regmap = leds->hw->regmap;
247 unsigned long period;
252 * LED subsystem requires a default user
253 * friendly blink pattern for the LED so using
254 * 1Hz duty cycle 50% here if without specific
255 * value delay_on and delay off being assigned.
257 if (!*delay_on && !*delay_off) {
263 * Units are in ms, if over the hardware able
264 * to support, fallback into software blink
266 period = *delay_on + *delay_off;
268 if (period > MT6323_MAX_PERIOD)
272 * Calculate duty_hw based on the percentage of period during
273 * which the led is ON.
275 duty_hw = MT6323_CAL_HW_DUTY(*delay_on, period);
277 /* hardware doesn't support zero duty cycle. */
281 mutex_lock(&leds->lock);
283 * Set max_brightness as the software blink behavior
284 * when no blink brightness.
286 if (!led->current_brightness) {
287 ret = mt6323_led_hw_on(cdev, cdev->max_brightness);
290 led->current_brightness = cdev->max_brightness;
293 ret = regmap_update_bits(regmap, MT6323_ISINK_CON0(led->id),
294 MT6323_ISINK_DIM_DUTY_MASK,
295 MT6323_ISINK_DIM_DUTY(duty_hw - 1));
299 ret = regmap_update_bits(regmap, MT6323_ISINK_CON1(led->id),
300 MT6323_ISINK_DIM_FSEL_MASK,
301 MT6323_ISINK_DIM_FSEL(period - 1));
303 mutex_unlock(&leds->lock);
308 static int mt6323_led_set_brightness(struct led_classdev *cdev,
309 enum led_brightness brightness)
311 struct mt6323_led *led = container_of(cdev, struct mt6323_led, cdev);
312 struct mt6323_leds *leds = led->parent;
315 mutex_lock(&leds->lock);
317 if (!led->current_brightness && brightness) {
318 ret = mt6323_led_hw_on(cdev, brightness);
321 } else if (brightness) {
322 ret = mt6323_led_hw_brightness(cdev, brightness);
326 ret = mt6323_led_hw_off(cdev);
331 led->current_brightness = brightness;
333 mutex_unlock(&leds->lock);
338 static int mt6323_led_set_dt_default(struct led_classdev *cdev,
339 struct device_node *np)
341 struct mt6323_led *led = container_of(cdev, struct mt6323_led, cdev);
345 state = of_get_property(np, "default-state", NULL);
347 if (!strcmp(state, "keep")) {
348 ret = mt6323_get_led_hw_brightness(cdev);
351 led->current_brightness = ret;
353 } else if (!strcmp(state, "on")) {
355 mt6323_led_set_brightness(cdev, cdev->max_brightness);
357 ret = mt6323_led_set_brightness(cdev, LED_OFF);
364 static int mt6323_led_probe(struct platform_device *pdev)
366 struct device *dev = &pdev->dev;
367 struct device_node *np = dev_of_node(dev);
368 struct device_node *child;
369 struct mt6397_chip *hw = dev_get_drvdata(dev->parent);
370 struct mt6323_leds *leds;
371 struct mt6323_led *led;
376 leds = devm_kzalloc(dev, sizeof(*leds), GFP_KERNEL);
380 platform_set_drvdata(pdev, leds);
384 * leds->hw points to the underlying bus for the register
388 mutex_init(&leds->lock);
390 status = MT6323_RG_DRV_32K_CK_PDN;
391 ret = regmap_update_bits(leds->hw->regmap, MT6323_TOP_CKPDN0,
392 MT6323_RG_DRV_32K_CK_PDN_MASK, ~status);
395 "Failed to update MT6323_TOP_CKPDN0 Register\n");
399 for_each_available_child_of_node(np, child) {
400 struct led_init_data init_data = {};
402 ret = of_property_read_u32(child, "reg", ®);
404 dev_err(dev, "Failed to read led 'reg' property\n");
408 if (reg >= MT6323_MAX_LEDS || leds->led[reg]) {
409 dev_err(dev, "Invalid led reg %u\n", reg);
414 led = devm_kzalloc(dev, sizeof(*led), GFP_KERNEL);
420 leds->led[reg] = led;
421 leds->led[reg]->id = reg;
422 leds->led[reg]->cdev.max_brightness = MT6323_MAX_BRIGHTNESS;
423 leds->led[reg]->cdev.brightness_set_blocking =
424 mt6323_led_set_brightness;
425 leds->led[reg]->cdev.blink_set = mt6323_led_set_blink;
426 leds->led[reg]->cdev.brightness_get =
427 mt6323_get_led_hw_brightness;
428 leds->led[reg]->parent = leds;
430 ret = mt6323_led_set_dt_default(&leds->led[reg]->cdev, child);
433 "Failed to LED set default from devicetree\n");
437 init_data.fwnode = of_fwnode_handle(child);
439 ret = devm_led_classdev_register_ext(dev, &leds->led[reg]->cdev,
442 dev_err(dev, "Failed to register LED: %d\n", ret);
454 static int mt6323_led_remove(struct platform_device *pdev)
456 struct mt6323_leds *leds = platform_get_drvdata(pdev);
459 /* Turn the LEDs off on driver removal. */
460 for (i = 0 ; leds->led[i] ; i++)
461 mt6323_led_hw_off(&leds->led[i]->cdev);
463 regmap_update_bits(leds->hw->regmap, MT6323_TOP_CKPDN0,
464 MT6323_RG_DRV_32K_CK_PDN_MASK,
465 MT6323_RG_DRV_32K_CK_PDN);
467 mutex_destroy(&leds->lock);
472 static const struct of_device_id mt6323_led_dt_match[] = {
473 { .compatible = "mediatek,mt6323-led" },
476 MODULE_DEVICE_TABLE(of, mt6323_led_dt_match);
478 static struct platform_driver mt6323_led_driver = {
479 .probe = mt6323_led_probe,
480 .remove = mt6323_led_remove,
482 .name = "mt6323-led",
483 .of_match_table = mt6323_led_dt_match,
487 module_platform_driver(mt6323_led_driver);
489 MODULE_DESCRIPTION("LED driver for Mediatek MT6323 PMIC");
490 MODULE_AUTHOR("Sean Wang <sean.wang@mediatek.com>");
491 MODULE_LICENSE("GPL");