blob: cf9efe421c2be0674ddc2db79a0059811b5df859 [file] [log] [blame]
Paul Parsons7d9e7e92011-05-13 18:52:56 +00001/*
2 * Copyright (C) 2011 Paul Parsons <lost.distance@yahoo.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/kernel.h>
10#include <linux/init.h>
11#include <linux/platform_device.h>
12#include <linux/leds.h>
13#include <linux/slab.h>
14
15#include <linux/mfd/asic3.h>
16#include <linux/mfd/core.h>
Paul Gortmaker54f4ded2011-07-03 13:56:03 -040017#include <linux/module.h>
Paul Parsons7d9e7e92011-05-13 18:52:56 +000018
19/*
20 * The HTC ASIC3 LED GPIOs are inputs, not outputs.
21 * Hence we turn the LEDs on/off via the TimeBase register.
22 */
23
24/*
25 * When TimeBase is 4 the clock resolution is about 32Hz.
26 * This driver supports hardware blinking with an on+off
27 * period from 62ms (2 clocks) to 125s (4000 clocks).
28 */
29#define MS_TO_CLK(ms) DIV_ROUND_CLOSEST(((ms)*1024), 32000)
30#define CLK_TO_MS(clk) (((clk)*32000)/1024)
31#define MAX_CLK 4000 /* Fits into 12-bit Time registers */
32#define MAX_MS CLK_TO_MS(MAX_CLK)
33
34static const unsigned int led_n_base[ASIC3_NUM_LEDS] = {
35 [0] = ASIC3_LED_0_Base,
36 [1] = ASIC3_LED_1_Base,
37 [2] = ASIC3_LED_2_Base,
38};
39
40static void brightness_set(struct led_classdev *cdev,
41 enum led_brightness value)
42{
43 struct platform_device *pdev = to_platform_device(cdev->dev->parent);
44 const struct mfd_cell *cell = mfd_get_cell(pdev);
45 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
46 u32 timebase;
47 unsigned int base;
48
49 timebase = (value == LED_OFF) ? 0 : (LED_EN|0x4);
50
51 base = led_n_base[cell->id];
52 asic3_write_register(asic, (base + ASIC3_LED_PeriodTime), 32);
53 asic3_write_register(asic, (base + ASIC3_LED_DutyTime), 32);
54 asic3_write_register(asic, (base + ASIC3_LED_AutoStopCount), 0);
55 asic3_write_register(asic, (base + ASIC3_LED_TimeBase), timebase);
56}
57
58static int blink_set(struct led_classdev *cdev,
59 unsigned long *delay_on,
60 unsigned long *delay_off)
61{
62 struct platform_device *pdev = to_platform_device(cdev->dev->parent);
63 const struct mfd_cell *cell = mfd_get_cell(pdev);
64 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
65 u32 on;
66 u32 off;
67 unsigned int base;
68
69 if (*delay_on > MAX_MS || *delay_off > MAX_MS)
70 return -EINVAL;
71
72 if (*delay_on == 0 && *delay_off == 0) {
73 /* If both are zero then a sensible default should be chosen */
74 on = MS_TO_CLK(500);
75 off = MS_TO_CLK(500);
76 } else {
77 on = MS_TO_CLK(*delay_on);
78 off = MS_TO_CLK(*delay_off);
79 if ((on + off) > MAX_CLK)
80 return -EINVAL;
81 }
82
83 base = led_n_base[cell->id];
84 asic3_write_register(asic, (base + ASIC3_LED_PeriodTime), (on + off));
85 asic3_write_register(asic, (base + ASIC3_LED_DutyTime), on);
86 asic3_write_register(asic, (base + ASIC3_LED_AutoStopCount), 0);
87 asic3_write_register(asic, (base + ASIC3_LED_TimeBase), (LED_EN|0x4));
88
89 *delay_on = CLK_TO_MS(on);
90 *delay_off = CLK_TO_MS(off);
91
92 return 0;
93}
94
Bill Pemberton98ea1ea2012-11-19 13:23:02 -050095static int asic3_led_probe(struct platform_device *pdev)
Paul Parsons7d9e7e92011-05-13 18:52:56 +000096{
97 struct asic3_led *led = pdev->dev.platform_data;
98 int ret;
99
100 ret = mfd_cell_enable(pdev);
101 if (ret < 0)
Bryan Wu60a0aad2012-07-03 12:47:16 +0800102 return ret;
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000103
Bryan Wu60a0aad2012-07-03 12:47:16 +0800104 led->cdev = devm_kzalloc(&pdev->dev, sizeof(struct led_classdev),
105 GFP_KERNEL);
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000106 if (!led->cdev) {
107 ret = -ENOMEM;
Bryan Wu60a0aad2012-07-03 12:47:16 +0800108 goto out;
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000109 }
110
111 led->cdev->name = led->name;
Paul Parsonse0b13b52011-08-09 16:27:33 +0000112 led->cdev->flags = LED_CORE_SUSPENDRESUME;
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000113 led->cdev->brightness_set = brightness_set;
114 led->cdev->blink_set = blink_set;
Paul Parsonse0b13b52011-08-09 16:27:33 +0000115 led->cdev->default_trigger = led->default_trigger;
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000116
117 ret = led_classdev_register(&pdev->dev, led->cdev);
118 if (ret < 0)
Bryan Wu60a0aad2012-07-03 12:47:16 +0800119 goto out;
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000120
121 return 0;
122
Bryan Wu60a0aad2012-07-03 12:47:16 +0800123out:
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000124 (void) mfd_cell_disable(pdev);
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000125 return ret;
126}
127
Bill Pemberton678e8a62012-11-19 13:26:00 -0500128static int asic3_led_remove(struct platform_device *pdev)
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000129{
130 struct asic3_led *led = pdev->dev.platform_data;
131
132 led_classdev_unregister(led->cdev);
133
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000134 return mfd_cell_disable(pdev);
135}
136
Jingoo Handf92d5f2013-03-25 23:47:19 -0700137#ifdef CONFIG_PM_SLEEP
Paul Parsonse0b13b52011-08-09 16:27:33 +0000138static int asic3_led_suspend(struct device *dev)
139{
140 struct platform_device *pdev = to_platform_device(dev);
141 const struct mfd_cell *cell = mfd_get_cell(pdev);
142 int ret;
143
144 ret = 0;
145 if (cell->suspend)
146 ret = (*cell->suspend)(pdev);
147
148 return ret;
149}
150
151static int asic3_led_resume(struct device *dev)
152{
153 struct platform_device *pdev = to_platform_device(dev);
154 const struct mfd_cell *cell = mfd_get_cell(pdev);
155 int ret;
156
157 ret = 0;
158 if (cell->resume)
159 ret = (*cell->resume)(pdev);
160
161 return ret;
162}
Jingoo Handf92d5f2013-03-25 23:47:19 -0700163#endif
Paul Parsonse0b13b52011-08-09 16:27:33 +0000164
Jingoo Handf92d5f2013-03-25 23:47:19 -0700165static SIMPLE_DEV_PM_OPS(asic3_led_pm_ops, asic3_led_suspend, asic3_led_resume);
Paul Parsonse0b13b52011-08-09 16:27:33 +0000166
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000167static struct platform_driver asic3_led_driver = {
168 .probe = asic3_led_probe,
Bill Pembertondf07cf82012-11-19 13:20:20 -0500169 .remove = asic3_led_remove,
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000170 .driver = {
171 .name = "leds-asic3",
172 .owner = THIS_MODULE,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000173 .pm = &asic3_led_pm_ops,
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000174 },
175};
176
Axel Lin892a8842012-01-10 15:09:24 -0800177module_platform_driver(asic3_led_driver);
Paul Parsons7d9e7e92011-05-13 18:52:56 +0000178
179MODULE_AUTHOR("Paul Parsons <lost.distance@yahoo.com>");
180MODULE_DESCRIPTION("HTC ASIC3 LED driver");
181MODULE_LICENSE("GPL");
Axel Lin892a8842012-01-10 15:09:24 -0800182MODULE_ALIAS("platform:leds-asic3");