blob: ca87a1b4a0db228896ca19dc410885eaa53eb7f3 [file] [log] [blame]
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +02001/*
Alexander Shiyanae6cdb02013-06-10 09:59:31 -07002 * LEDs driver for Freescale MC13783/MC13892
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +02003 *
4 * Copyright (C) 2010 Philippe Rétornaz
5 *
6 * Based on leds-da903x:
7 * Copyright (C) 2008 Compulab, Ltd.
8 * Mike Rapoport <mike@compulab.co.il>
9 *
10 * Copyright (C) 2006-2008 Marvell International Ltd.
11 * Eric Miao <eric.miao@marvell.com>
12 *
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.
16 */
17
18#include <linux/module.h>
19#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/platform_device.h>
22#include <linux/leds.h>
23#include <linux/workqueue.h>
David Janderf3ca0782011-08-24 15:28:20 +020024#include <linux/mfd/mc13xxx.h>
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020025
Alexander Shiyan9d2638132013-06-10 09:59:30 -070026#define MC13XXX_REG_LED_CONTROL(x) (51 + (x))
27
28struct mc13xxx_led_devtype {
29 int led_min;
30 int led_max;
31 int num_regs;
32};
33
34struct mc13xxx_led {
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020035 struct led_classdev cdev;
36 struct work_struct work;
David Janderf3ca0782011-08-24 15:28:20 +020037 struct mc13xxx *master;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020038 enum led_brightness new_brightness;
39 int id;
40};
41
Alexander Shiyan9d2638132013-06-10 09:59:30 -070042struct mc13xxx_leds {
43 struct mc13xxx_led_devtype *devtype;
44 int num_leds;
45 struct mc13xxx_led led[0];
46};
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020047
Alexander Shiyan9d2638132013-06-10 09:59:30 -070048static void mc13xxx_led_work(struct work_struct *work)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020049{
Alexander Shiyan9d2638132013-06-10 09:59:30 -070050 struct mc13xxx_led *led = container_of(work, struct mc13xxx_led, work);
51 int reg, mask, value, bank, off, shift;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020052
53 switch (led->id) {
54 case MC13783_LED_MD:
Alexander Shiyan9d2638132013-06-10 09:59:30 -070055 reg = MC13XXX_REG_LED_CONTROL(2);
56 shift = 9;
57 mask = 0x0f;
58 value = led->new_brightness >> 4;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020059 break;
60 case MC13783_LED_AD:
Alexander Shiyan9d2638132013-06-10 09:59:30 -070061 reg = MC13XXX_REG_LED_CONTROL(2);
62 shift = 13;
63 mask = 0x0f;
64 value = led->new_brightness >> 4;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020065 break;
66 case MC13783_LED_KP:
Alexander Shiyan9d2638132013-06-10 09:59:30 -070067 reg = MC13XXX_REG_LED_CONTROL(2);
68 shift = 17;
69 mask = 0x0f;
70 value = led->new_brightness >> 4;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020071 break;
72 case MC13783_LED_R1:
73 case MC13783_LED_G1:
74 case MC13783_LED_B1:
75 case MC13783_LED_R2:
76 case MC13783_LED_G2:
77 case MC13783_LED_B2:
78 case MC13783_LED_R3:
79 case MC13783_LED_G3:
80 case MC13783_LED_B3:
81 off = led->id - MC13783_LED_R1;
Alexander Shiyan9d2638132013-06-10 09:59:30 -070082 bank = off / 3;
83 reg = MC13XXX_REG_LED_CONTROL(3) + bank;
84 shift = (off - bank * 3) * 5 + 6;
85 value = led->new_brightness >> 3;
86 mask = 0x1f;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020087 break;
Alexander Shiyanae6cdb02013-06-10 09:59:31 -070088 case MC13892_LED_MD:
89 reg = MC13XXX_REG_LED_CONTROL(0);
90 shift = 3;
91 mask = 0x3f;
92 value = led->new_brightness >> 2;
93 break;
94 case MC13892_LED_AD:
95 reg = MC13XXX_REG_LED_CONTROL(0);
96 shift = 15;
97 mask = 0x3f;
98 value = led->new_brightness >> 2;
99 break;
100 case MC13892_LED_KP:
101 reg = MC13XXX_REG_LED_CONTROL(1);
102 shift = 3;
103 mask = 0x3f;
104 value = led->new_brightness >> 2;
105 break;
106 case MC13892_LED_R:
107 case MC13892_LED_G:
108 case MC13892_LED_B:
109 off = led->id - MC13892_LED_R;
110 bank = off / 2;
111 reg = MC13XXX_REG_LED_CONTROL(2) + bank;
112 shift = (off - bank * 2) * 12 + 3;
113 value = led->new_brightness >> 2;
114 mask = 0x3f;
115 break;
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700116 default:
117 BUG();
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200118 }
119
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700120 mc13xxx_reg_rmw(led->master, reg, mask << shift, value << shift);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200121}
122
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700123static void mc13xxx_led_set(struct led_classdev *led_cdev,
124 enum led_brightness value)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200125{
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700126 struct mc13xxx_led *led =
127 container_of(led_cdev, struct mc13xxx_led, cdev);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200128
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200129 led->new_brightness = value;
130 schedule_work(&led->work);
131}
132
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700133static int __init mc13xxx_led_probe(struct platform_device *pdev)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200134{
Samuel Ortiz52b7ad32011-09-18 19:12:34 +0200135 struct mc13xxx_leds_platform_data *pdata = dev_get_platdata(&pdev->dev);
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700136 struct mc13xxx *mcdev = dev_get_drvdata(pdev->dev.parent);
137 struct mc13xxx_led_devtype *devtype =
138 (struct mc13xxx_led_devtype *)pdev->id_entry->driver_data;
139 struct mc13xxx_leds *leds;
Alexander Shiyancf3b1c22013-07-02 08:17:17 -0700140 int i, id, num_leds, ret = -ENODATA;
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700141 u32 reg, init_led = 0;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200142
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700143 if (!pdata) {
144 dev_err(&pdev->dev, "Missing platform data\n");
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200145 return -ENODEV;
146 }
147
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700148 num_leds = pdata->num_leds;
149
150 if ((num_leds < 1) ||
151 (num_leds > (devtype->led_max - devtype->led_min + 1))) {
152 dev_err(&pdev->dev, "Invalid LED count %d\n", num_leds);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200153 return -EINVAL;
154 }
155
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700156 leds = devm_kzalloc(&pdev->dev, num_leds * sizeof(struct mc13xxx_led) +
157 sizeof(struct mc13xxx_leds), GFP_KERNEL);
158 if (!leds)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200159 return -ENOMEM;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200160
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700161 leds->devtype = devtype;
162 leds->num_leds = num_leds;
163 platform_set_drvdata(pdev, leds);
164
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700165 for (i = 0; i < devtype->num_regs; i++) {
166 reg = pdata->led_control[i];
167 WARN_ON(reg >= (1 << 24));
168 ret = mc13xxx_reg_write(mcdev, MC13XXX_REG_LED_CONTROL(i), reg);
169 if (ret)
Alexander Shiyan3df22c02013-12-06 22:22:19 -0800170 return ret;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200171 }
172
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700173 for (i = 0; i < num_leds; i++) {
174 const char *name, *trig;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200175
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700176 ret = -EINVAL;
177
178 id = pdata->led[i].id;
179 name = pdata->led[i].name;
180 trig = pdata->led[i].default_trigger;
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700181
182 if ((id > devtype->led_max) || (id < devtype->led_min)) {
183 dev_err(&pdev->dev, "Invalid ID %i\n", id);
184 break;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200185 }
186
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700187 if (init_led & (1 << id)) {
188 dev_warn(&pdev->dev,
189 "LED %i already initialized\n", id);
190 break;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200191 }
192
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700193 init_led |= 1 << id;
194 leds->led[i].id = id;
195 leds->led[i].master = mcdev;
196 leds->led[i].cdev.name = name;
197 leds->led[i].cdev.default_trigger = trig;
198 leds->led[i].cdev.brightness_set = mc13xxx_led_set;
199 leds->led[i].cdev.brightness = LED_OFF;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200200
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700201 INIT_WORK(&leds->led[i].work, mc13xxx_led_work);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200202
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700203 ret = led_classdev_register(pdev->dev.parent,
204 &leds->led[i].cdev);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200205 if (ret) {
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700206 dev_err(&pdev->dev, "Failed to register LED %i\n", id);
207 break;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200208 }
209 }
210
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700211 if (ret)
212 while (--i >= 0) {
213 led_classdev_unregister(&leds->led[i].cdev);
214 cancel_work_sync(&leds->led[i].work);
215 }
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200216
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200217 return ret;
218}
219
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700220static int mc13xxx_led_remove(struct platform_device *pdev)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200221{
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700222 struct mc13xxx *mcdev = dev_get_drvdata(pdev->dev.parent);
223 struct mc13xxx_leds *leds = platform_get_drvdata(pdev);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200224 int i;
225
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700226 for (i = 0; i < leds->num_leds; i++) {
227 led_classdev_unregister(&leds->led[i].cdev);
228 cancel_work_sync(&leds->led[i].work);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200229 }
230
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700231 for (i = 0; i < leds->devtype->num_regs; i++)
232 mc13xxx_reg_write(mcdev, MC13XXX_REG_LED_CONTROL(i), 0);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200233
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200234 return 0;
235}
236
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700237static const struct mc13xxx_led_devtype mc13783_led_devtype = {
238 .led_min = MC13783_LED_MD,
239 .led_max = MC13783_LED_B3,
240 .num_regs = 6,
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200241};
242
Alexander Shiyanae6cdb02013-06-10 09:59:31 -0700243static const struct mc13xxx_led_devtype mc13892_led_devtype = {
244 .led_min = MC13892_LED_MD,
245 .led_max = MC13892_LED_B,
246 .num_regs = 4,
247};
248
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700249static const struct platform_device_id mc13xxx_led_id_table[] = {
250 { "mc13783-led", (kernel_ulong_t)&mc13783_led_devtype, },
Alexander Shiyanae6cdb02013-06-10 09:59:31 -0700251 { "mc13892-led", (kernel_ulong_t)&mc13892_led_devtype, },
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700252 { }
253};
254MODULE_DEVICE_TABLE(platform, mc13xxx_led_id_table);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200255
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700256static struct platform_driver mc13xxx_led_driver = {
257 .driver = {
258 .name = "mc13xxx-led",
259 .owner = THIS_MODULE,
260 },
261 .remove = mc13xxx_led_remove,
262 .id_table = mc13xxx_led_id_table,
263};
264module_platform_driver_probe(mc13xxx_led_driver, mc13xxx_led_probe);
265
266MODULE_DESCRIPTION("LEDs driver for Freescale MC13XXX PMIC");
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200267MODULE_AUTHOR("Philippe Retornaz <philippe.retornaz@epfl.ch>");
268MODULE_LICENSE("GPL");