1 // SPDX-License-Identifier: GPL-2.0-only
3 * LED Flash class driver for the AAT1290
4 * 1.5A Step-Up Current Regulator for Flash LEDs
6 * Copyright (C) 2015, Samsung Electronics Co., Ltd.
7 * Author: Jacek Anaszewski <j.anaszewski@samsung.com>
10 #include <linux/delay.h>
11 #include <linux/gpio/consumer.h>
12 #include <linux/led-class-flash.h>
13 #include <linux/leds.h>
14 #include <linux/module.h>
15 #include <linux/mutex.h>
17 #include <linux/pinctrl/consumer.h>
18 #include <linux/platform_device.h>
19 #include <linux/slab.h>
20 #include <media/v4l2-flash-led-class.h>
22 #define AAT1290_MOVIE_MODE_CURRENT_ADDR 17
23 #define AAT1290_MAX_MM_CURR_PERCENT_0 16
24 #define AAT1290_MAX_MM_CURR_PERCENT_100 1
26 #define AAT1290_FLASH_SAFETY_TIMER_ADDR 18
28 #define AAT1290_MOVIE_MODE_CONFIG_ADDR 19
29 #define AAT1290_MOVIE_MODE_OFF 1
30 #define AAT1290_MOVIE_MODE_ON 3
32 #define AAT1290_MM_CURRENT_RATIO_ADDR 20
33 #define AAT1290_MM_TO_FL_1_92 1
35 #define AAT1290_MM_TO_FL_RATIO 1000 / 1920
36 #define AAT1290_MAX_MM_CURRENT(fl_max) (fl_max * AAT1290_MM_TO_FL_RATIO)
38 #define AAT1290_LATCH_TIME_MIN_US 500
39 #define AAT1290_LATCH_TIME_MAX_US 1000
40 #define AAT1290_EN_SET_TICK_TIME_US 1
41 #define AAT1290_FLEN_OFF_DELAY_TIME_US 10
42 #define AAT1290_FLASH_TM_NUM_LEVELS 16
43 #define AAT1290_MM_CURRENT_SCALE_SIZE 15
46 struct aat1290_led_config_data
{
47 /* maximum LED current in movie mode */
49 /* maximum LED current in flash mode */
50 u32 max_flash_current
;
51 /* maximum flash timeout */
53 /* external strobe capability */
54 bool has_external_strobe
;
55 /* max LED brightness level */
56 enum led_brightness max_brightness
;
60 /* platform device data */
61 struct platform_device
*pdev
;
62 /* secures access to the device */
65 /* corresponding LED Flash class device */
66 struct led_classdev_flash fled_cdev
;
67 /* V4L2 Flash device */
68 struct v4l2_flash
*v4l2_flash
;
71 struct gpio_desc
*gpio_fl_en
;
73 struct gpio_desc
*gpio_en_set
;
74 /* movie mode current scale */
75 int *mm_current_scale
;
79 /* brightness cache */
80 unsigned int torch_brightness
;
83 static struct aat1290_led
*fled_cdev_to_led(
84 struct led_classdev_flash
*fled_cdev
)
86 return container_of(fled_cdev
, struct aat1290_led
, fled_cdev
);
89 static struct led_classdev_flash
*led_cdev_to_fled_cdev(
90 struct led_classdev
*led_cdev
)
92 return container_of(led_cdev
, struct led_classdev_flash
, led_cdev
);
95 static void aat1290_as2cwire_write(struct aat1290_led
*led
, int addr
, int value
)
99 gpiod_direction_output(led
->gpio_fl_en
, 0);
100 gpiod_direction_output(led
->gpio_en_set
, 0);
102 udelay(AAT1290_FLEN_OFF_DELAY_TIME_US
);
105 for (i
= 0; i
< addr
; ++i
) {
106 udelay(AAT1290_EN_SET_TICK_TIME_US
);
107 gpiod_direction_output(led
->gpio_en_set
, 0);
108 udelay(AAT1290_EN_SET_TICK_TIME_US
);
109 gpiod_direction_output(led
->gpio_en_set
, 1);
112 usleep_range(AAT1290_LATCH_TIME_MIN_US
, AAT1290_LATCH_TIME_MAX_US
);
115 for (i
= 0; i
< value
; ++i
) {
116 udelay(AAT1290_EN_SET_TICK_TIME_US
);
117 gpiod_direction_output(led
->gpio_en_set
, 0);
118 udelay(AAT1290_EN_SET_TICK_TIME_US
);
119 gpiod_direction_output(led
->gpio_en_set
, 1);
122 usleep_range(AAT1290_LATCH_TIME_MIN_US
, AAT1290_LATCH_TIME_MAX_US
);
125 static void aat1290_set_flash_safety_timer(struct aat1290_led
*led
,
126 unsigned int micro_sec
)
128 struct led_classdev_flash
*fled_cdev
= &led
->fled_cdev
;
129 struct led_flash_setting
*flash_tm
= &fled_cdev
->timeout
;
130 int flash_tm_reg
= AAT1290_FLASH_TM_NUM_LEVELS
-
131 (micro_sec
/ flash_tm
->step
) + 1;
133 aat1290_as2cwire_write(led
, AAT1290_FLASH_SAFETY_TIMER_ADDR
,
137 /* LED subsystem callbacks */
139 static int aat1290_led_brightness_set(struct led_classdev
*led_cdev
,
140 enum led_brightness brightness
)
142 struct led_classdev_flash
*fled_cdev
= led_cdev_to_fled_cdev(led_cdev
);
143 struct aat1290_led
*led
= fled_cdev_to_led(fled_cdev
);
145 mutex_lock(&led
->lock
);
147 if (brightness
== 0) {
148 gpiod_direction_output(led
->gpio_fl_en
, 0);
149 gpiod_direction_output(led
->gpio_en_set
, 0);
150 led
->movie_mode
= false;
152 if (!led
->movie_mode
) {
153 aat1290_as2cwire_write(led
,
154 AAT1290_MM_CURRENT_RATIO_ADDR
,
155 AAT1290_MM_TO_FL_1_92
);
156 led
->movie_mode
= true;
159 aat1290_as2cwire_write(led
, AAT1290_MOVIE_MODE_CURRENT_ADDR
,
160 AAT1290_MAX_MM_CURR_PERCENT_0
- brightness
);
161 aat1290_as2cwire_write(led
, AAT1290_MOVIE_MODE_CONFIG_ADDR
,
162 AAT1290_MOVIE_MODE_ON
);
165 mutex_unlock(&led
->lock
);
170 static int aat1290_led_flash_strobe_set(struct led_classdev_flash
*fled_cdev
,
174 struct aat1290_led
*led
= fled_cdev_to_led(fled_cdev
);
175 struct led_classdev
*led_cdev
= &fled_cdev
->led_cdev
;
176 struct led_flash_setting
*timeout
= &fled_cdev
->timeout
;
178 mutex_lock(&led
->lock
);
181 aat1290_set_flash_safety_timer(led
, timeout
->val
);
182 gpiod_direction_output(led
->gpio_fl_en
, 1);
184 gpiod_direction_output(led
->gpio_fl_en
, 0);
185 gpiod_direction_output(led
->gpio_en_set
, 0);
189 * To reenter movie mode after a flash event the part must be cycled
190 * off and back on to reset the movie mode and reprogrammed via the
191 * AS2Cwire. Therefore the brightness and movie_mode properties needs
192 * to be updated here to reflect the actual state.
194 led_cdev
->brightness
= 0;
195 led
->movie_mode
= false;
197 mutex_unlock(&led
->lock
);
202 static int aat1290_led_flash_timeout_set(struct led_classdev_flash
*fled_cdev
,
206 * Don't do anything - flash timeout is cached in the led-class-flash
207 * core and will be applied in the strobe_set op, as writing the
208 * safety timer register spuriously turns the torch mode on.
214 static int aat1290_led_parse_dt(struct aat1290_led
*led
,
215 struct aat1290_led_config_data
*cfg
,
216 struct device_node
**sub_node
)
218 struct led_classdev
*led_cdev
= &led
->fled_cdev
.led_cdev
;
219 struct device
*dev
= &led
->pdev
->dev
;
220 struct device_node
*child_node
;
221 #if IS_ENABLED(CONFIG_V4L2_FLASH_LED_CLASS)
222 struct pinctrl
*pinctrl
;
226 led
->gpio_fl_en
= devm_gpiod_get(dev
, "flen", GPIOD_ASIS
);
227 if (IS_ERR(led
->gpio_fl_en
)) {
228 ret
= PTR_ERR(led
->gpio_fl_en
);
229 dev_err(dev
, "Unable to claim gpio \"flen\".\n");
233 led
->gpio_en_set
= devm_gpiod_get(dev
, "enset", GPIOD_ASIS
);
234 if (IS_ERR(led
->gpio_en_set
)) {
235 ret
= PTR_ERR(led
->gpio_en_set
);
236 dev_err(dev
, "Unable to claim gpio \"enset\".\n");
240 #if IS_ENABLED(CONFIG_V4L2_FLASH_LED_CLASS)
241 pinctrl
= devm_pinctrl_get_select_default(&led
->pdev
->dev
);
242 if (IS_ERR(pinctrl
)) {
243 cfg
->has_external_strobe
= false;
245 "No support for external strobe detected.\n");
247 cfg
->has_external_strobe
= true;
251 child_node
= of_get_next_available_child(dev
->of_node
, NULL
);
253 dev_err(dev
, "No DT child node found for connected LED.\n");
257 led_cdev
->name
= of_get_property(child_node
, "label", NULL
) ? :
260 ret
= of_property_read_u32(child_node
, "led-max-microamp",
261 &cfg
->max_mm_current
);
263 * led-max-microamp will default to 1/20 of flash-max-microamp
264 * in case it is missing.
268 "led-max-microamp DT property missing\n");
270 ret
= of_property_read_u32(child_node
, "flash-max-microamp",
271 &cfg
->max_flash_current
);
274 "flash-max-microamp DT property missing\n");
278 ret
= of_property_read_u32(child_node
, "flash-max-timeout-us",
282 "flash-max-timeout-us DT property missing\n");
286 *sub_node
= child_node
;
289 of_node_put(child_node
);
294 static void aat1290_led_validate_mm_current(struct aat1290_led
*led
,
295 struct aat1290_led_config_data
*cfg
)
297 int i
, b
= 0, e
= AAT1290_MM_CURRENT_SCALE_SIZE
;
301 if (cfg
->max_mm_current
< led
->mm_current_scale
[i
])
307 cfg
->max_mm_current
= led
->mm_current_scale
[b
];
308 cfg
->max_brightness
= b
+ 1;
311 static int init_mm_current_scale(struct aat1290_led
*led
,
312 struct aat1290_led_config_data
*cfg
)
314 static const int max_mm_current_percent
[] = {
315 20, 22, 25, 28, 32, 36, 40, 45, 50, 56,
318 int i
, max_mm_current
=
319 AAT1290_MAX_MM_CURRENT(cfg
->max_flash_current
);
321 led
->mm_current_scale
= devm_kzalloc(&led
->pdev
->dev
,
322 sizeof(max_mm_current_percent
),
324 if (!led
->mm_current_scale
)
327 for (i
= 0; i
< AAT1290_MM_CURRENT_SCALE_SIZE
; ++i
)
328 led
->mm_current_scale
[i
] = max_mm_current
*
329 max_mm_current_percent
[i
] / 100;
334 static int aat1290_led_get_configuration(struct aat1290_led
*led
,
335 struct aat1290_led_config_data
*cfg
,
336 struct device_node
**sub_node
)
340 ret
= aat1290_led_parse_dt(led
, cfg
, sub_node
);
344 * Init non-linear movie mode current scale basing
345 * on the max flash current from led configuration.
347 ret
= init_mm_current_scale(led
, cfg
);
351 aat1290_led_validate_mm_current(led
, cfg
);
353 #if IS_ENABLED(CONFIG_V4L2_FLASH_LED_CLASS)
355 devm_kfree(&led
->pdev
->dev
, led
->mm_current_scale
);
361 static void aat1290_init_flash_timeout(struct aat1290_led
*led
,
362 struct aat1290_led_config_data
*cfg
)
364 struct led_classdev_flash
*fled_cdev
= &led
->fled_cdev
;
365 struct led_flash_setting
*setting
;
367 /* Init flash timeout setting */
368 setting
= &fled_cdev
->timeout
;
369 setting
->min
= cfg
->max_flash_tm
/ AAT1290_FLASH_TM_NUM_LEVELS
;
370 setting
->max
= cfg
->max_flash_tm
;
371 setting
->step
= setting
->min
;
372 setting
->val
= setting
->max
;
375 #if IS_ENABLED(CONFIG_V4L2_FLASH_LED_CLASS)
376 static enum led_brightness
aat1290_intensity_to_brightness(
377 struct v4l2_flash
*v4l2_flash
,
380 struct led_classdev_flash
*fled_cdev
= v4l2_flash
->fled_cdev
;
381 struct aat1290_led
*led
= fled_cdev_to_led(fled_cdev
);
384 for (i
= AAT1290_MM_CURRENT_SCALE_SIZE
- 1; i
>= 0; --i
)
385 if (intensity
>= led
->mm_current_scale
[i
])
391 static s32
aat1290_brightness_to_intensity(struct v4l2_flash
*v4l2_flash
,
392 enum led_brightness brightness
)
394 struct led_classdev_flash
*fled_cdev
= v4l2_flash
->fled_cdev
;
395 struct aat1290_led
*led
= fled_cdev_to_led(fled_cdev
);
397 return led
->mm_current_scale
[brightness
- 1];
400 static int aat1290_led_external_strobe_set(struct v4l2_flash
*v4l2_flash
,
403 struct aat1290_led
*led
= fled_cdev_to_led(v4l2_flash
->fled_cdev
);
404 struct led_classdev_flash
*fled_cdev
= v4l2_flash
->fled_cdev
;
405 struct led_classdev
*led_cdev
= &fled_cdev
->led_cdev
;
406 struct pinctrl
*pinctrl
;
408 gpiod_direction_output(led
->gpio_fl_en
, 0);
409 gpiod_direction_output(led
->gpio_en_set
, 0);
411 led
->movie_mode
= false;
412 led_cdev
->brightness
= 0;
414 pinctrl
= devm_pinctrl_get_select(&led
->pdev
->dev
,
415 enable
? "isp" : "host");
416 if (IS_ERR(pinctrl
)) {
417 dev_warn(&led
->pdev
->dev
, "Unable to switch strobe source.\n");
418 return PTR_ERR(pinctrl
);
424 static void aat1290_init_v4l2_flash_config(struct aat1290_led
*led
,
425 struct aat1290_led_config_data
*led_cfg
,
426 struct v4l2_flash_config
*v4l2_sd_cfg
)
428 struct led_classdev
*led_cdev
= &led
->fled_cdev
.led_cdev
;
429 struct led_flash_setting
*s
;
431 strlcpy(v4l2_sd_cfg
->dev_name
, led_cdev
->name
,
432 sizeof(v4l2_sd_cfg
->dev_name
));
434 s
= &v4l2_sd_cfg
->intensity
;
435 s
->min
= led
->mm_current_scale
[0];
436 s
->max
= led_cfg
->max_mm_current
;
440 v4l2_sd_cfg
->has_external_strobe
= led_cfg
->has_external_strobe
;
443 static const struct v4l2_flash_ops v4l2_flash_ops
= {
444 .external_strobe_set
= aat1290_led_external_strobe_set
,
445 .intensity_to_led_brightness
= aat1290_intensity_to_brightness
,
446 .led_brightness_to_intensity
= aat1290_brightness_to_intensity
,
449 static inline void aat1290_init_v4l2_flash_config(struct aat1290_led
*led
,
450 struct aat1290_led_config_data
*led_cfg
,
451 struct v4l2_flash_config
*v4l2_sd_cfg
)
454 static const struct v4l2_flash_ops v4l2_flash_ops
;
457 static const struct led_flash_ops flash_ops
= {
458 .strobe_set
= aat1290_led_flash_strobe_set
,
459 .timeout_set
= aat1290_led_flash_timeout_set
,
462 static int aat1290_led_probe(struct platform_device
*pdev
)
464 struct device
*dev
= &pdev
->dev
;
465 struct device_node
*sub_node
= NULL
;
466 struct aat1290_led
*led
;
467 struct led_classdev
*led_cdev
;
468 struct led_classdev_flash
*fled_cdev
;
469 struct aat1290_led_config_data led_cfg
= {};
470 struct v4l2_flash_config v4l2_sd_cfg
= {};
473 led
= devm_kzalloc(dev
, sizeof(*led
), GFP_KERNEL
);
478 platform_set_drvdata(pdev
, led
);
480 fled_cdev
= &led
->fled_cdev
;
481 fled_cdev
->ops
= &flash_ops
;
482 led_cdev
= &fled_cdev
->led_cdev
;
484 ret
= aat1290_led_get_configuration(led
, &led_cfg
, &sub_node
);
488 mutex_init(&led
->lock
);
490 /* Initialize LED Flash class device */
491 led_cdev
->brightness_set_blocking
= aat1290_led_brightness_set
;
492 led_cdev
->max_brightness
= led_cfg
.max_brightness
;
493 led_cdev
->flags
|= LED_DEV_CAP_FLASH
;
495 aat1290_init_flash_timeout(led
, &led_cfg
);
497 /* Register LED Flash class device */
498 ret
= led_classdev_flash_register(&pdev
->dev
, fled_cdev
);
500 goto err_flash_register
;
502 aat1290_init_v4l2_flash_config(led
, &led_cfg
, &v4l2_sd_cfg
);
504 /* Create V4L2 Flash subdev. */
505 led
->v4l2_flash
= v4l2_flash_init(dev
, of_fwnode_handle(sub_node
),
506 fled_cdev
, &v4l2_flash_ops
,
508 if (IS_ERR(led
->v4l2_flash
)) {
509 ret
= PTR_ERR(led
->v4l2_flash
);
510 goto error_v4l2_flash_init
;
515 error_v4l2_flash_init
:
516 led_classdev_flash_unregister(fled_cdev
);
518 mutex_destroy(&led
->lock
);
523 static int aat1290_led_remove(struct platform_device
*pdev
)
525 struct aat1290_led
*led
= platform_get_drvdata(pdev
);
527 v4l2_flash_release(led
->v4l2_flash
);
528 led_classdev_flash_unregister(&led
->fled_cdev
);
530 mutex_destroy(&led
->lock
);
535 static const struct of_device_id aat1290_led_dt_match
[] = {
536 { .compatible
= "skyworks,aat1290" },
539 MODULE_DEVICE_TABLE(of
, aat1290_led_dt_match
);
541 static struct platform_driver aat1290_led_driver
= {
542 .probe
= aat1290_led_probe
,
543 .remove
= aat1290_led_remove
,
546 .of_match_table
= aat1290_led_dt_match
,
550 module_platform_driver(aat1290_led_driver
);
552 MODULE_AUTHOR("Jacek Anaszewski <j.anaszewski@samsung.com>");
553 MODULE_DESCRIPTION("Skyworks Current Regulator for Flash LEDs");
554 MODULE_LICENSE("GPL v2");