blob: 0c46b7e64b2dcd87334a41688be53db9bc363716 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Philipp Zabel5dc33392008-04-12 13:25:41 +01002/*
3 * Core driver for HTC PASIC3 LED/DS1WM chip.
4 *
5 * Copyright (C) 2006 Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel5dc33392008-04-12 13:25:41 +01006 */
7
8#include <linux/init.h>
9#include <linux/module.h>
10#include <linux/platform_device.h>
11
Philipp Zabel5dc33392008-04-12 13:25:41 +010012#include <linux/gpio.h>
13#include <linux/io.h>
14#include <linux/irq.h>
15#include <linux/interrupt.h>
Philipp Zabel0254a8f2009-02-17 10:06:45 +010016#include <linux/mfd/core.h>
17#include <linux/mfd/ds1wm.h>
Philipp Zabel5dc33392008-04-12 13:25:41 +010018#include <linux/mfd/htc-pasic3.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Philipp Zabel5dc33392008-04-12 13:25:41 +010020
Philipp Zabel5dc33392008-04-12 13:25:41 +010021struct pasic3_data {
22 void __iomem *mapping;
23 unsigned int bus_shift;
Philipp Zabel5dc33392008-04-12 13:25:41 +010024};
25
26#define REG_ADDR 5
27#define REG_DATA 6
Philipp Zabel5dc33392008-04-12 13:25:41 +010028
29#define READ_MODE 0x80
30
31/*
32 * write to a secondary register on the PASIC3
33 */
34void pasic3_write_register(struct device *dev, u32 reg, u8 val)
35{
Greg Kroah-Hartman1902a9e2009-04-30 14:43:31 -070036 struct pasic3_data *asic = dev_get_drvdata(dev);
Philipp Zabel5dc33392008-04-12 13:25:41 +010037 int bus_shift = asic->bus_shift;
38 void __iomem *addr = asic->mapping + (REG_ADDR << bus_shift);
39 void __iomem *data = asic->mapping + (REG_DATA << bus_shift);
40
41 __raw_writeb(~READ_MODE & reg, addr);
42 __raw_writeb(val, data);
43}
44EXPORT_SYMBOL(pasic3_write_register); /* for leds-pasic3 */
45
46/*
47 * read from a secondary register on the PASIC3
48 */
49u8 pasic3_read_register(struct device *dev, u32 reg)
50{
Greg Kroah-Hartman1902a9e2009-04-30 14:43:31 -070051 struct pasic3_data *asic = dev_get_drvdata(dev);
Philipp Zabel5dc33392008-04-12 13:25:41 +010052 int bus_shift = asic->bus_shift;
53 void __iomem *addr = asic->mapping + (REG_ADDR << bus_shift);
54 void __iomem *data = asic->mapping + (REG_DATA << bus_shift);
55
56 __raw_writeb(READ_MODE | reg, addr);
57 return __raw_readb(data);
58}
59EXPORT_SYMBOL(pasic3_read_register); /* for leds-pasic3 */
60
61/*
62 * LEDs
63 */
64
Philipp Zabel0254a8f2009-02-17 10:06:45 +010065static struct mfd_cell led_cell __initdata = {
66 .name = "leds-pasic3",
67};
Philipp Zabel5dc33392008-04-12 13:25:41 +010068
69/*
70 * DS1WM
71 */
72
Philipp Zabel0254a8f2009-02-17 10:06:45 +010073static int ds1wm_enable(struct platform_device *pdev)
Philipp Zabel5dc33392008-04-12 13:25:41 +010074{
75 struct device *dev = pdev->dev.parent;
76 int c;
77
78 c = pasic3_read_register(dev, 0x28);
79 pasic3_write_register(dev, 0x28, c & 0x7f);
80
81 dev_dbg(dev, "DS1WM OWM_EN low (active) %02x\n", c & 0x7f);
Philipp Zabel0254a8f2009-02-17 10:06:45 +010082 return 0;
Philipp Zabel5dc33392008-04-12 13:25:41 +010083}
84
Philipp Zabel0254a8f2009-02-17 10:06:45 +010085static int ds1wm_disable(struct platform_device *pdev)
Philipp Zabel5dc33392008-04-12 13:25:41 +010086{
87 struct device *dev = pdev->dev.parent;
88 int c;
89
90 c = pasic3_read_register(dev, 0x28);
91 pasic3_write_register(dev, 0x28, c | 0x80);
92
93 dev_dbg(dev, "DS1WM OWM_EN high (inactive) %02x\n", c | 0x80);
Philipp Zabel0254a8f2009-02-17 10:06:45 +010094 return 0;
Philipp Zabel5dc33392008-04-12 13:25:41 +010095}
96
Philipp Zabel0254a8f2009-02-17 10:06:45 +010097static struct ds1wm_driver_data ds1wm_pdata = {
98 .active_high = 0,
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -070099 .reset_recover_delay = 1,
Philipp Zabel5dc33392008-04-12 13:25:41 +0100100};
101
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100102static struct resource ds1wm_resources[] __initdata = {
103 [0] = {
104 .start = 0,
105 .flags = IORESOURCE_MEM,
106 },
107 [1] = {
108 .start = 0,
109 .end = 0,
110 .flags = IORESOURCE_IRQ,
111 },
112};
Philipp Zabel5dc33392008-04-12 13:25:41 +0100113
Geert Uytterhoeven5ac98552013-11-18 14:33:06 +0100114static const struct mfd_cell ds1wm_cell __initconst = {
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100115 .name = "ds1wm",
116 .enable = ds1wm_enable,
117 .disable = ds1wm_disable,
Samuel Ortiz121ea572011-04-06 11:41:03 +0200118 .platform_data = &ds1wm_pdata,
119 .pdata_size = sizeof(ds1wm_pdata),
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100120 .num_resources = 2,
121 .resources = ds1wm_resources,
122};
Philipp Zabel5dc33392008-04-12 13:25:41 +0100123
124static int __init pasic3_probe(struct platform_device *pdev)
125{
Jingoo Han334a41ce2013-07-30 17:10:05 +0900126 struct pasic3_platform_data *pdata = dev_get_platdata(&pdev->dev);
Philipp Zabel5dc33392008-04-12 13:25:41 +0100127 struct device *dev = &pdev->dev;
128 struct pasic3_data *asic;
129 struct resource *r;
130 int ret;
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100131 int irq = 0;
132
133 r = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
134 if (r) {
135 ds1wm_resources[1].flags = IORESOURCE_IRQ | (r->flags &
136 (IORESOURCE_IRQ_HIGHEDGE | IORESOURCE_IRQ_LOWEDGE));
137 irq = r->start;
138 }
139
Philipp Zabel5dc33392008-04-12 13:25:41 +0100140 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
141 if (!r)
142 return -ENXIO;
143
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100144 if (!request_mem_region(r->start, resource_size(r), "pasic3"))
Philipp Zabel5dc33392008-04-12 13:25:41 +0100145 return -EBUSY;
146
Lee Jones86928812013-05-23 16:25:14 +0100147 asic = devm_kzalloc(dev, sizeof(struct pasic3_data), GFP_KERNEL);
Philipp Zabel5dc33392008-04-12 13:25:41 +0100148 if (!asic)
149 return -ENOMEM;
150
151 platform_set_drvdata(pdev, asic);
152
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100153 asic->mapping = ioremap(r->start, resource_size(r));
Philipp Zabel5dc33392008-04-12 13:25:41 +0100154 if (!asic->mapping) {
155 dev_err(dev, "couldn't ioremap PASIC3\n");
Philipp Zabel5dc33392008-04-12 13:25:41 +0100156 return -ENOMEM;
157 }
158
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100159 /* calculate bus shift from mem resource */
160 asic->bus_shift = (resource_size(r) - 5) >> 3;
161
Philipp Zabel47c10ed2009-02-17 10:09:44 +0100162 if (pdata && pdata->clock_rate) {
163 ds1wm_pdata.clock_rate = pdata->clock_rate;
164 /* the first 5 PASIC3 registers control the DS1WM */
165 ds1wm_resources[0].end = (5 << asic->bus_shift) - 1;
Philipp Zabel47c10ed2009-02-17 10:09:44 +0100166 ret = mfd_add_devices(&pdev->dev, pdev->id,
Mark Brown0848c942012-09-11 15:16:36 +0800167 &ds1wm_cell, 1, r, irq, NULL);
Philipp Zabel47c10ed2009-02-17 10:09:44 +0100168 if (ret < 0)
169 dev_warn(dev, "failed to register DS1WM\n");
170 }
Philipp Zabel5dc33392008-04-12 13:25:41 +0100171
Philipp Zabel47c10ed2009-02-17 10:09:44 +0100172 if (pdata && pdata->led_pdata) {
Samuel Ortiz8ac93be2011-04-06 11:48:53 +0200173 led_cell.platform_data = pdata->led_pdata;
174 led_cell.pdata_size = sizeof(struct pasic3_leds_machinfo);
Mark Brown0848c942012-09-11 15:16:36 +0800175 ret = mfd_add_devices(&pdev->dev, pdev->id, &led_cell, 1, r,
176 0, NULL);
Philipp Zabel5dc33392008-04-12 13:25:41 +0100177 if (ret < 0)
178 dev_warn(dev, "failed to register LED device\n");
179 }
180
181 return 0;
182}
183
184static int pasic3_remove(struct platform_device *pdev)
185{
186 struct pasic3_data *asic = platform_get_drvdata(pdev);
187 struct resource *r;
188
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100189 mfd_remove_devices(&pdev->dev);
Philipp Zabel5dc33392008-04-12 13:25:41 +0100190
191 iounmap(asic->mapping);
192 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100193 release_mem_region(r->start, resource_size(r));
Philipp Zabel5dc33392008-04-12 13:25:41 +0100194 return 0;
195}
196
Kay Sievers4f46d6e2008-07-25 01:45:47 -0700197MODULE_ALIAS("platform:pasic3");
198
Philipp Zabel5dc33392008-04-12 13:25:41 +0100199static struct platform_driver pasic3_driver = {
200 .driver = {
201 .name = "pasic3",
202 },
203 .remove = pasic3_remove,
204};
205
Jingoo Hane8fe6a82013-03-05 13:47:59 +0900206module_platform_driver_probe(pasic3_driver, pasic3_probe);
Philipp Zabel5dc33392008-04-12 13:25:41 +0100207
208MODULE_AUTHOR("Philipp Zabel <philipp.zabel@gmail.com>");
209MODULE_DESCRIPTION("Core driver for HTC PASIC3");
210MODULE_LICENSE("GPL");