2 * LEDs driver for Freescale MC13783/MC13892/MC34708
4 * Copyright (C) 2010 Philippe Rétornaz
6 * Based on leds-da903x:
7 * Copyright (C) 2008 Compulab, Ltd.
8 * Mike Rapoport <mike@compulab.co.il>
10 * Copyright (C) 2006-2008 Marvell International Ltd.
11 * Eric Miao <eric.miao@marvell.com>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/platform_device.h>
21 #include <linux/leds.h>
23 #include <linux/mfd/mc13xxx.h>
25 struct mc13xxx_led_devtype
{
33 struct led_classdev cdev
;
35 struct mc13xxx_leds
*leds
;
39 struct mc13xxx
*master
;
40 struct mc13xxx_led_devtype
*devtype
;
42 struct mc13xxx_led
*led
;
45 static unsigned int mc13xxx_max_brightness(int id
)
47 if (id
>= MC13783_LED_MD
&& id
<= MC13783_LED_KP
)
49 else if (id
>= MC13783_LED_R1
&& id
<= MC13783_LED_B3
)
55 static int mc13xxx_led_set(struct led_classdev
*led_cdev
,
56 enum led_brightness value
)
58 struct mc13xxx_led
*led
=
59 container_of(led_cdev
, struct mc13xxx_led
, cdev
);
60 struct mc13xxx_leds
*leds
= led
->leds
;
61 unsigned int reg
, bank
, off
, shift
;
68 shift
= 9 + (led
->id
- MC13783_LED_MD
) * 4;
79 off
= led
->id
- MC13783_LED_R1
;
82 shift
= (off
- bank
* 3) * 5 + 6;
87 off
= led
->id
- MC13892_LED_MD
;
89 shift
= 3 + (off
- reg
* 2) * 12;
94 off
= led
->id
- MC13892_LED_R
;
97 shift
= (off
- bank
* 2) * 12 + 3;
102 shift
= 3 + (led
->id
- MC34708_LED_R
) * 12;
108 return mc13xxx_reg_rmw(leds
->master
, leds
->devtype
->ledctrl_base
+ reg
,
109 mc13xxx_max_brightness(led
->id
) << shift
,
114 static struct mc13xxx_leds_platform_data __init
*mc13xxx_led_probe_dt(
115 struct platform_device
*pdev
)
117 struct mc13xxx_leds
*leds
= platform_get_drvdata(pdev
);
118 struct mc13xxx_leds_platform_data
*pdata
;
119 struct device_node
*parent
, *child
;
120 struct device
*dev
= &pdev
->dev
;
121 int i
= 0, ret
= -ENODATA
;
123 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
125 return ERR_PTR(-ENOMEM
);
127 parent
= of_get_child_by_name(dev
->parent
->of_node
, "leds");
131 ret
= of_property_read_u32_array(parent
, "led-control",
133 leds
->devtype
->num_regs
);
137 pdata
->num_leds
= of_get_child_count(parent
);
139 pdata
->led
= devm_kcalloc(dev
, pdata
->num_leds
, sizeof(*pdata
->led
),
146 for_each_child_of_node(parent
, child
) {
150 if (of_property_read_u32(child
, "reg", &tmp
))
152 pdata
->led
[i
].id
= leds
->devtype
->led_min
+ tmp
;
154 if (!of_property_read_string(child
, "label", &str
))
155 pdata
->led
[i
].name
= str
;
156 if (!of_property_read_string(child
, "linux,default-trigger",
158 pdata
->led
[i
].default_trigger
= str
;
164 ret
= i
> 0 ? 0 : -ENODATA
;
169 return ret
? ERR_PTR(ret
) : pdata
;
172 static inline struct mc13xxx_leds_platform_data __init
*mc13xxx_led_probe_dt(
173 struct platform_device
*pdev
)
175 return ERR_PTR(-ENOSYS
);
179 static int __init
mc13xxx_led_probe(struct platform_device
*pdev
)
181 struct device
*dev
= &pdev
->dev
;
182 struct mc13xxx_leds_platform_data
*pdata
= dev_get_platdata(dev
);
183 struct mc13xxx
*mcdev
= dev_get_drvdata(dev
->parent
);
184 struct mc13xxx_led_devtype
*devtype
=
185 (struct mc13xxx_led_devtype
*)pdev
->id_entry
->driver_data
;
186 struct mc13xxx_leds
*leds
;
187 int i
, id
, ret
= -ENODATA
;
190 leds
= devm_kzalloc(dev
, sizeof(*leds
), GFP_KERNEL
);
194 leds
->devtype
= devtype
;
195 leds
->master
= mcdev
;
196 platform_set_drvdata(pdev
, leds
);
198 if (dev
->parent
->of_node
) {
199 pdata
= mc13xxx_led_probe_dt(pdev
);
201 return PTR_ERR(pdata
);
205 leds
->num_leds
= pdata
->num_leds
;
207 if ((leds
->num_leds
< 1) ||
208 (leds
->num_leds
> (devtype
->led_max
- devtype
->led_min
+ 1))) {
209 dev_err(dev
, "Invalid LED count %d\n", leds
->num_leds
);
213 leds
->led
= devm_kcalloc(dev
, leds
->num_leds
, sizeof(*leds
->led
),
218 for (i
= 0; i
< devtype
->num_regs
; i
++) {
219 ret
= mc13xxx_reg_write(mcdev
, leds
->devtype
->ledctrl_base
+ i
,
220 pdata
->led_control
[i
]);
225 for (i
= 0; i
< leds
->num_leds
; i
++) {
226 const char *name
, *trig
;
230 id
= pdata
->led
[i
].id
;
231 name
= pdata
->led
[i
].name
;
232 trig
= pdata
->led
[i
].default_trigger
;
234 if ((id
> devtype
->led_max
) || (id
< devtype
->led_min
)) {
235 dev_err(dev
, "Invalid ID %i\n", id
);
239 if (init_led
& (1 << id
)) {
240 dev_warn(dev
, "LED %i already initialized\n", id
);
245 leds
->led
[i
].id
= id
;
246 leds
->led
[i
].leds
= leds
;
247 leds
->led
[i
].cdev
.name
= name
;
248 leds
->led
[i
].cdev
.default_trigger
= trig
;
249 leds
->led
[i
].cdev
.flags
= LED_CORE_SUSPENDRESUME
;
250 leds
->led
[i
].cdev
.brightness_set_blocking
= mc13xxx_led_set
;
251 leds
->led
[i
].cdev
.max_brightness
= mc13xxx_max_brightness(id
);
253 ret
= led_classdev_register(dev
->parent
, &leds
->led
[i
].cdev
);
255 dev_err(dev
, "Failed to register LED %i\n", id
);
262 led_classdev_unregister(&leds
->led
[i
].cdev
);
267 static int mc13xxx_led_remove(struct platform_device
*pdev
)
269 struct mc13xxx_leds
*leds
= platform_get_drvdata(pdev
);
272 for (i
= 0; i
< leds
->num_leds
; i
++)
273 led_classdev_unregister(&leds
->led
[i
].cdev
);
278 static const struct mc13xxx_led_devtype mc13783_led_devtype
= {
279 .led_min
= MC13783_LED_MD
,
280 .led_max
= MC13783_LED_B3
,
285 static const struct mc13xxx_led_devtype mc13892_led_devtype
= {
286 .led_min
= MC13892_LED_MD
,
287 .led_max
= MC13892_LED_B
,
292 static const struct mc13xxx_led_devtype mc34708_led_devtype
= {
293 .led_min
= MC34708_LED_R
,
294 .led_max
= MC34708_LED_G
,
299 static const struct platform_device_id mc13xxx_led_id_table
[] = {
300 { "mc13783-led", (kernel_ulong_t
)&mc13783_led_devtype
, },
301 { "mc13892-led", (kernel_ulong_t
)&mc13892_led_devtype
, },
302 { "mc34708-led", (kernel_ulong_t
)&mc34708_led_devtype
, },
305 MODULE_DEVICE_TABLE(platform
, mc13xxx_led_id_table
);
307 static struct platform_driver mc13xxx_led_driver
= {
309 .name
= "mc13xxx-led",
311 .remove
= mc13xxx_led_remove
,
312 .id_table
= mc13xxx_led_id_table
,
314 module_platform_driver_probe(mc13xxx_led_driver
, mc13xxx_led_probe
);
316 MODULE_DESCRIPTION("LEDs driver for Freescale MC13XXX PMIC");
317 MODULE_AUTHOR("Philippe Retornaz <philippe.retornaz@epfl.ch>");
318 MODULE_LICENSE("GPL");