blob: 15fa5e86abcf0366bc111f184c646f5251d937d6 [file] [log] [blame]
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +02001/*
Alexander Shiyana59ce652014-01-31 22:36:28 -08002 * LEDs driver for Freescale MC13783/MC13892/MC34708
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 -070026struct mc13xxx_led_devtype {
27 int led_min;
28 int led_max;
29 int num_regs;
Alexander Shiyana59ce652014-01-31 22:36:28 -080030 u32 ledctrl_base;
Alexander Shiyan9d2638132013-06-10 09:59:30 -070031};
32
33struct mc13xxx_led {
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020034 struct led_classdev cdev;
35 struct work_struct work;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020036 enum led_brightness new_brightness;
37 int id;
Alexander Shiyana59ce652014-01-31 22:36:28 -080038 struct mc13xxx_leds *leds;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020039};
40
Alexander Shiyan9d2638132013-06-10 09:59:30 -070041struct mc13xxx_leds {
Alexander Shiyana59ce652014-01-31 22:36:28 -080042 struct mc13xxx *master;
Alexander Shiyan9d2638132013-06-10 09:59:30 -070043 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 Shiyan677d13f2014-01-31 22:36:30 -080048static unsigned int mc13xxx_max_brightness(int id)
49{
50 if (id >= MC13783_LED_MD && id <= MC13783_LED_KP)
51 return 0x0f;
52 else if (id >= MC13783_LED_R1 && id <= MC13783_LED_B3)
53 return 0x1f;
54
55 return 0x3f;
56}
57
Alexander Shiyan9d2638132013-06-10 09:59:30 -070058static void mc13xxx_led_work(struct work_struct *work)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020059{
Alexander Shiyan9d2638132013-06-10 09:59:30 -070060 struct mc13xxx_led *led = container_of(work, struct mc13xxx_led, work);
Alexander Shiyana59ce652014-01-31 22:36:28 -080061 struct mc13xxx_leds *leds = led->leds;
Alexander Shiyan677d13f2014-01-31 22:36:30 -080062 unsigned int reg, bank, off, shift;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020063
64 switch (led->id) {
65 case MC13783_LED_MD:
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020066 case MC13783_LED_AD:
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020067 case MC13783_LED_KP:
Alexander Shiyana59ce652014-01-31 22:36:28 -080068 reg = 2;
69 shift = 9 + (led->id - MC13783_LED_MD) * 4;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020070 break;
71 case MC13783_LED_R1:
72 case MC13783_LED_G1:
73 case MC13783_LED_B1:
74 case MC13783_LED_R2:
75 case MC13783_LED_G2:
76 case MC13783_LED_B2:
77 case MC13783_LED_R3:
78 case MC13783_LED_G3:
79 case MC13783_LED_B3:
80 off = led->id - MC13783_LED_R1;
Alexander Shiyan9d2638132013-06-10 09:59:30 -070081 bank = off / 3;
Alexander Shiyana59ce652014-01-31 22:36:28 -080082 reg = 3 + bank;
Alexander Shiyan9d2638132013-06-10 09:59:30 -070083 shift = (off - bank * 3) * 5 + 6;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +020084 break;
Alexander Shiyanae6cdb02013-06-10 09:59:31 -070085 case MC13892_LED_MD:
Alexander Shiyanae6cdb02013-06-10 09:59:31 -070086 case MC13892_LED_AD:
Alexander Shiyanae6cdb02013-06-10 09:59:31 -070087 case MC13892_LED_KP:
Alexander Shiyana59ce652014-01-31 22:36:28 -080088 reg = (led->id - MC13892_LED_MD) / 2;
89 shift = 3 + (led->id - MC13892_LED_MD) * 12;
Alexander Shiyanae6cdb02013-06-10 09:59:31 -070090 break;
91 case MC13892_LED_R:
92 case MC13892_LED_G:
93 case MC13892_LED_B:
94 off = led->id - MC13892_LED_R;
95 bank = off / 2;
Alexander Shiyana59ce652014-01-31 22:36:28 -080096 reg = 2 + bank;
Alexander Shiyanae6cdb02013-06-10 09:59:31 -070097 shift = (off - bank * 2) * 12 + 3;
Alexander Shiyanae6cdb02013-06-10 09:59:31 -070098 break;
Alexander Shiyana59ce652014-01-31 22:36:28 -080099 case MC34708_LED_R:
100 case MC34708_LED_G:
101 reg = 0;
102 shift = 3 + (led->id - MC34708_LED_R) * 12;
Alexander Shiyana59ce652014-01-31 22:36:28 -0800103 break;
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700104 default:
105 BUG();
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200106 }
107
Alexander Shiyana59ce652014-01-31 22:36:28 -0800108 mc13xxx_reg_rmw(leds->master, leds->devtype->ledctrl_base + reg,
Alexander Shiyan677d13f2014-01-31 22:36:30 -0800109 mc13xxx_max_brightness(led->id) << shift,
110 led->new_brightness << shift);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200111}
112
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700113static void mc13xxx_led_set(struct led_classdev *led_cdev,
114 enum led_brightness value)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200115{
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700116 struct mc13xxx_led *led =
117 container_of(led_cdev, struct mc13xxx_led, cdev);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200118
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200119 led->new_brightness = value;
120 schedule_work(&led->work);
121}
122
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700123static int __init mc13xxx_led_probe(struct platform_device *pdev)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200124{
Alexander Shiyana59ce652014-01-31 22:36:28 -0800125 struct device *dev = &pdev->dev;
126 struct mc13xxx_leds_platform_data *pdata = dev_get_platdata(dev);
127 struct mc13xxx *mcdev = dev_get_drvdata(dev->parent);
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700128 struct mc13xxx_led_devtype *devtype =
129 (struct mc13xxx_led_devtype *)pdev->id_entry->driver_data;
130 struct mc13xxx_leds *leds;
Alexander Shiyancf3b1c22013-07-02 08:17:17 -0700131 int i, id, num_leds, ret = -ENODATA;
Alexander Shiyana59ce652014-01-31 22:36:28 -0800132 u32 init_led = 0;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200133
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700134 if (!pdata) {
Alexander Shiyana59ce652014-01-31 22:36:28 -0800135 dev_err(dev, "Missing platform data\n");
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200136 return -ENODEV;
137 }
138
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700139 num_leds = pdata->num_leds;
140
141 if ((num_leds < 1) ||
142 (num_leds > (devtype->led_max - devtype->led_min + 1))) {
Alexander Shiyana59ce652014-01-31 22:36:28 -0800143 dev_err(dev, "Invalid LED count %d\n", num_leds);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200144 return -EINVAL;
145 }
146
Alexander Shiyana59ce652014-01-31 22:36:28 -0800147 leds = devm_kzalloc(dev, num_leds * sizeof(struct mc13xxx_led) +
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700148 sizeof(struct mc13xxx_leds), GFP_KERNEL);
149 if (!leds)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200150 return -ENOMEM;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200151
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700152 leds->devtype = devtype;
153 leds->num_leds = num_leds;
Alexander Shiyana59ce652014-01-31 22:36:28 -0800154 leds->master = mcdev;
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700155 platform_set_drvdata(pdev, leds);
156
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700157 for (i = 0; i < devtype->num_regs; i++) {
Alexander Shiyana59ce652014-01-31 22:36:28 -0800158 ret = mc13xxx_reg_write(mcdev, leds->devtype->ledctrl_base + i,
159 pdata->led_control[i]);
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700160 if (ret)
Alexander Shiyan3df22c02013-12-06 22:22:19 -0800161 return ret;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200162 }
163
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700164 for (i = 0; i < num_leds; i++) {
165 const char *name, *trig;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200166
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700167 ret = -EINVAL;
168
169 id = pdata->led[i].id;
170 name = pdata->led[i].name;
171 trig = pdata->led[i].default_trigger;
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700172
173 if ((id > devtype->led_max) || (id < devtype->led_min)) {
Alexander Shiyana59ce652014-01-31 22:36:28 -0800174 dev_err(dev, "Invalid ID %i\n", id);
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700175 break;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200176 }
177
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700178 if (init_led & (1 << id)) {
Alexander Shiyana59ce652014-01-31 22:36:28 -0800179 dev_warn(dev, "LED %i already initialized\n", id);
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700180 break;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200181 }
182
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700183 init_led |= 1 << id;
184 leds->led[i].id = id;
Alexander Shiyana59ce652014-01-31 22:36:28 -0800185 leds->led[i].leds = leds;
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700186 leds->led[i].cdev.name = name;
187 leds->led[i].cdev.default_trigger = trig;
Alexander Shiyan02e9e112014-01-31 22:36:29 -0800188 leds->led[i].cdev.flags = LED_CORE_SUSPENDRESUME;
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700189 leds->led[i].cdev.brightness_set = mc13xxx_led_set;
Alexander Shiyan677d13f2014-01-31 22:36:30 -0800190 leds->led[i].cdev.max_brightness = mc13xxx_max_brightness(id);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200191
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700192 INIT_WORK(&leds->led[i].work, mc13xxx_led_work);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200193
Alexander Shiyana59ce652014-01-31 22:36:28 -0800194 ret = led_classdev_register(dev->parent, &leds->led[i].cdev);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200195 if (ret) {
Alexander Shiyana59ce652014-01-31 22:36:28 -0800196 dev_err(dev, "Failed to register LED %i\n", id);
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700197 break;
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200198 }
199 }
200
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700201 if (ret)
202 while (--i >= 0) {
203 led_classdev_unregister(&leds->led[i].cdev);
204 cancel_work_sync(&leds->led[i].work);
205 }
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200206
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200207 return ret;
208}
209
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700210static int mc13xxx_led_remove(struct platform_device *pdev)
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200211{
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700212 struct mc13xxx_leds *leds = platform_get_drvdata(pdev);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200213 int i;
214
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700215 for (i = 0; i < leds->num_leds; i++) {
216 led_classdev_unregister(&leds->led[i].cdev);
217 cancel_work_sync(&leds->led[i].work);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200218 }
219
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200220 return 0;
221}
222
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700223static const struct mc13xxx_led_devtype mc13783_led_devtype = {
224 .led_min = MC13783_LED_MD,
225 .led_max = MC13783_LED_B3,
226 .num_regs = 6,
Alexander Shiyana59ce652014-01-31 22:36:28 -0800227 .ledctrl_base = 51,
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200228};
229
Alexander Shiyanae6cdb02013-06-10 09:59:31 -0700230static const struct mc13xxx_led_devtype mc13892_led_devtype = {
231 .led_min = MC13892_LED_MD,
232 .led_max = MC13892_LED_B,
233 .num_regs = 4,
Alexander Shiyana59ce652014-01-31 22:36:28 -0800234 .ledctrl_base = 51,
235};
236
237static const struct mc13xxx_led_devtype mc34708_led_devtype = {
238 .led_min = MC34708_LED_R,
239 .led_max = MC34708_LED_G,
240 .num_regs = 1,
241 .ledctrl_base = 54,
Alexander Shiyanae6cdb02013-06-10 09:59:31 -0700242};
243
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700244static const struct platform_device_id mc13xxx_led_id_table[] = {
245 { "mc13783-led", (kernel_ulong_t)&mc13783_led_devtype, },
Alexander Shiyanae6cdb02013-06-10 09:59:31 -0700246 { "mc13892-led", (kernel_ulong_t)&mc13892_led_devtype, },
Alexander Shiyana59ce652014-01-31 22:36:28 -0800247 { "mc34708-led", (kernel_ulong_t)&mc34708_led_devtype, },
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700248 { }
249};
250MODULE_DEVICE_TABLE(platform, mc13xxx_led_id_table);
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200251
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700252static struct platform_driver mc13xxx_led_driver = {
253 .driver = {
254 .name = "mc13xxx-led",
255 .owner = THIS_MODULE,
256 },
257 .remove = mc13xxx_led_remove,
258 .id_table = mc13xxx_led_id_table,
259};
260module_platform_driver_probe(mc13xxx_led_driver, mc13xxx_led_probe);
261
262MODULE_DESCRIPTION("LEDs driver for Freescale MC13XXX PMIC");
Philippe Rétornaz7fdcef82010-05-19 09:24:31 +0200263MODULE_AUTHOR("Philippe Retornaz <philippe.retornaz@epfl.ch>");
264MODULE_LICENSE("GPL");