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 * Units are in ms, if over the hardware able
253 * to support, fallback into software blink
255 period
= *delay_on
+ *delay_off
;
257 if (period
> MT6323_MAX_PERIOD
)
261 * LED subsystem requires a default user
262 * friendly blink pattern for the LED so using
263 * 1Hz duty cycle 50% here if without specific
264 * value delay_on and delay off being assigned.
266 if (!*delay_on
&& !*delay_off
) {
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 led
->cdev
.name
= of_get_property(np
, "label", NULL
) ? : np
->name
;
346 led
->cdev
.default_trigger
= of_get_property(np
,
347 "linux,default-trigger",
350 state
= of_get_property(np
, "default-state", NULL
);
352 if (!strcmp(state
, "keep")) {
353 ret
= mt6323_get_led_hw_brightness(cdev
);
356 led
->current_brightness
= ret
;
358 } else if (!strcmp(state
, "on")) {
360 mt6323_led_set_brightness(cdev
, cdev
->max_brightness
);
362 ret
= mt6323_led_set_brightness(cdev
, LED_OFF
);
369 static int mt6323_led_probe(struct platform_device
*pdev
)
371 struct device
*dev
= &pdev
->dev
;
372 struct device_node
*np
= pdev
->dev
.of_node
;
373 struct device_node
*child
;
374 struct mt6397_chip
*hw
= dev_get_drvdata(pdev
->dev
.parent
);
375 struct mt6323_leds
*leds
;
376 struct mt6323_led
*led
;
381 leds
= devm_kzalloc(dev
, sizeof(*leds
), GFP_KERNEL
);
385 platform_set_drvdata(pdev
, leds
);
389 * leds->hw points to the underlying bus for the register
393 mutex_init(&leds
->lock
);
395 status
= MT6323_RG_DRV_32K_CK_PDN
;
396 ret
= regmap_update_bits(leds
->hw
->regmap
, MT6323_TOP_CKPDN0
,
397 MT6323_RG_DRV_32K_CK_PDN_MASK
, ~status
);
400 "Failed to update MT6323_TOP_CKPDN0 Register\n");
404 for_each_available_child_of_node(np
, child
) {
405 ret
= of_property_read_u32(child
, "reg", ®
);
407 dev_err(dev
, "Failed to read led 'reg' property\n");
411 if (reg
>= MT6323_MAX_LEDS
|| leds
->led
[reg
]) {
412 dev_err(dev
, "Invalid led reg %u\n", reg
);
417 led
= devm_kzalloc(dev
, sizeof(*led
), GFP_KERNEL
);
423 leds
->led
[reg
] = led
;
424 leds
->led
[reg
]->id
= reg
;
425 leds
->led
[reg
]->cdev
.max_brightness
= MT6323_MAX_BRIGHTNESS
;
426 leds
->led
[reg
]->cdev
.brightness_set_blocking
=
427 mt6323_led_set_brightness
;
428 leds
->led
[reg
]->cdev
.blink_set
= mt6323_led_set_blink
;
429 leds
->led
[reg
]->cdev
.brightness_get
=
430 mt6323_get_led_hw_brightness
;
431 leds
->led
[reg
]->parent
= leds
;
433 ret
= mt6323_led_set_dt_default(&leds
->led
[reg
]->cdev
, child
);
436 "Failed to LED set default from devicetree\n");
440 ret
= devm_led_classdev_register(dev
, &leds
->led
[reg
]->cdev
);
442 dev_err(&pdev
->dev
, "Failed to register LED: %d\n",
446 leds
->led
[reg
]->cdev
.dev
->of_node
= child
;
456 static int mt6323_led_remove(struct platform_device
*pdev
)
458 struct mt6323_leds
*leds
= platform_get_drvdata(pdev
);
461 /* Turn the LEDs off on driver removal. */
462 for (i
= 0 ; leds
->led
[i
] ; i
++)
463 mt6323_led_hw_off(&leds
->led
[i
]->cdev
);
465 regmap_update_bits(leds
->hw
->regmap
, MT6323_TOP_CKPDN0
,
466 MT6323_RG_DRV_32K_CK_PDN_MASK
,
467 MT6323_RG_DRV_32K_CK_PDN
);
469 mutex_destroy(&leds
->lock
);
474 static const struct of_device_id mt6323_led_dt_match
[] = {
475 { .compatible
= "mediatek,mt6323-led" },
478 MODULE_DEVICE_TABLE(of
, mt6323_led_dt_match
);
480 static struct platform_driver mt6323_led_driver
= {
481 .probe
= mt6323_led_probe
,
482 .remove
= mt6323_led_remove
,
484 .name
= "mt6323-led",
485 .of_match_table
= mt6323_led_dt_match
,
489 module_platform_driver(mt6323_led_driver
);
491 MODULE_DESCRIPTION("LED driver for Mediatek MT6323 PMIC");
492 MODULE_AUTHOR("Sean Wang <sean.wang@mediatek.com>");
493 MODULE_LICENSE("GPL");