blob: 32291fe4151cb1da2950b47035f86578a8bbdd8f [file] [log] [blame]
Rabin Vincentb4ecd322010-05-10 23:39:47 +02001/*
2 * Copyright (C) ST-Ericsson SA 2010
3 *
4 * License Terms: GNU General Public License, version 2
5 * Author: Hanumath Prasad <hanumath.prasad@stericsson.com> for ST-Ericsson
6 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
7 */
8
9#include <linux/module.h>
10#include <linux/interrupt.h>
11#include <linux/irq.h>
12#include <linux/slab.h>
13#include <linux/i2c.h>
14#include <linux/mfd/core.h>
Sundar Iyerc6eda6c2010-12-13 09:33:12 +053015#include <linux/mfd/tc3589x.h>
Rabin Vincentb4ecd322010-05-10 23:39:47 +020016
Sundar Iyer593e9d72010-12-13 09:33:18 +053017#define TC3589x_CLKMODE_MODCTL_SLEEP 0x0
18#define TC3589x_CLKMODE_MODCTL_OPERATION (1 << 0)
19
Rabin Vincentb4ecd322010-05-10 23:39:47 +020020/**
Sundar Iyer20406eb2010-12-13 09:33:14 +053021 * tc3589x_reg_read() - read a single TC3589x register
22 * @tc3589x: Device to read from
Rabin Vincentb4ecd322010-05-10 23:39:47 +020023 * @reg: Register to read
24 */
Sundar Iyer20406eb2010-12-13 09:33:14 +053025int tc3589x_reg_read(struct tc3589x *tc3589x, u8 reg)
Rabin Vincentb4ecd322010-05-10 23:39:47 +020026{
27 int ret;
28
Sundar Iyer20406eb2010-12-13 09:33:14 +053029 ret = i2c_smbus_read_byte_data(tc3589x->i2c, reg);
Rabin Vincentb4ecd322010-05-10 23:39:47 +020030 if (ret < 0)
Sundar Iyer20406eb2010-12-13 09:33:14 +053031 dev_err(tc3589x->dev, "failed to read reg %#x: %d\n",
Rabin Vincentb4ecd322010-05-10 23:39:47 +020032 reg, ret);
33
34 return ret;
35}
Sundar Iyer20406eb2010-12-13 09:33:14 +053036EXPORT_SYMBOL_GPL(tc3589x_reg_read);
Rabin Vincentb4ecd322010-05-10 23:39:47 +020037
38/**
Sundar Iyer20406eb2010-12-13 09:33:14 +053039 * tc3589x_reg_read() - write a single TC3589x register
40 * @tc3589x: Device to write to
Rabin Vincentb4ecd322010-05-10 23:39:47 +020041 * @reg: Register to read
42 * @data: Value to write
43 */
Sundar Iyer20406eb2010-12-13 09:33:14 +053044int tc3589x_reg_write(struct tc3589x *tc3589x, u8 reg, u8 data)
Rabin Vincentb4ecd322010-05-10 23:39:47 +020045{
46 int ret;
47
Sundar Iyer20406eb2010-12-13 09:33:14 +053048 ret = i2c_smbus_write_byte_data(tc3589x->i2c, reg, data);
Rabin Vincentb4ecd322010-05-10 23:39:47 +020049 if (ret < 0)
Sundar Iyer20406eb2010-12-13 09:33:14 +053050 dev_err(tc3589x->dev, "failed to write reg %#x: %d\n",
Rabin Vincentb4ecd322010-05-10 23:39:47 +020051 reg, ret);
52
53 return ret;
54}
Sundar Iyer20406eb2010-12-13 09:33:14 +053055EXPORT_SYMBOL_GPL(tc3589x_reg_write);
Rabin Vincentb4ecd322010-05-10 23:39:47 +020056
57/**
Sundar Iyer20406eb2010-12-13 09:33:14 +053058 * tc3589x_block_read() - read multiple TC3589x registers
59 * @tc3589x: Device to read from
Rabin Vincentb4ecd322010-05-10 23:39:47 +020060 * @reg: First register
61 * @length: Number of registers
62 * @values: Buffer to write to
63 */
Sundar Iyer20406eb2010-12-13 09:33:14 +053064int tc3589x_block_read(struct tc3589x *tc3589x, u8 reg, u8 length, u8 *values)
Rabin Vincentb4ecd322010-05-10 23:39:47 +020065{
66 int ret;
67
Sundar Iyer20406eb2010-12-13 09:33:14 +053068 ret = i2c_smbus_read_i2c_block_data(tc3589x->i2c, reg, length, values);
Rabin Vincentb4ecd322010-05-10 23:39:47 +020069 if (ret < 0)
Sundar Iyer20406eb2010-12-13 09:33:14 +053070 dev_err(tc3589x->dev, "failed to read regs %#x: %d\n",
Rabin Vincentb4ecd322010-05-10 23:39:47 +020071 reg, ret);
72
73 return ret;
74}
Sundar Iyer20406eb2010-12-13 09:33:14 +053075EXPORT_SYMBOL_GPL(tc3589x_block_read);
Rabin Vincentb4ecd322010-05-10 23:39:47 +020076
77/**
Sundar Iyer20406eb2010-12-13 09:33:14 +053078 * tc3589x_block_write() - write multiple TC3589x registers
79 * @tc3589x: Device to write to
Rabin Vincentb4ecd322010-05-10 23:39:47 +020080 * @reg: First register
81 * @length: Number of registers
82 * @values: Values to write
83 */
Sundar Iyer20406eb2010-12-13 09:33:14 +053084int tc3589x_block_write(struct tc3589x *tc3589x, u8 reg, u8 length,
Rabin Vincentb4ecd322010-05-10 23:39:47 +020085 const u8 *values)
86{
87 int ret;
88
Sundar Iyer20406eb2010-12-13 09:33:14 +053089 ret = i2c_smbus_write_i2c_block_data(tc3589x->i2c, reg, length,
Rabin Vincentb4ecd322010-05-10 23:39:47 +020090 values);
91 if (ret < 0)
Sundar Iyer20406eb2010-12-13 09:33:14 +053092 dev_err(tc3589x->dev, "failed to write regs %#x: %d\n",
Rabin Vincentb4ecd322010-05-10 23:39:47 +020093 reg, ret);
94
95 return ret;
96}
Sundar Iyer20406eb2010-12-13 09:33:14 +053097EXPORT_SYMBOL_GPL(tc3589x_block_write);
Rabin Vincentb4ecd322010-05-10 23:39:47 +020098
99/**
Sundar Iyer20406eb2010-12-13 09:33:14 +0530100 * tc3589x_set_bits() - set the value of a bitfield in a TC3589x register
101 * @tc3589x: Device to write to
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200102 * @reg: Register to write
103 * @mask: Mask of bits to set
104 * @values: Value to set
105 */
Sundar Iyer20406eb2010-12-13 09:33:14 +0530106int tc3589x_set_bits(struct tc3589x *tc3589x, u8 reg, u8 mask, u8 val)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200107{
108 int ret;
109
Sundar Iyer20406eb2010-12-13 09:33:14 +0530110 mutex_lock(&tc3589x->lock);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200111
Sundar Iyer20406eb2010-12-13 09:33:14 +0530112 ret = tc3589x_reg_read(tc3589x, reg);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200113 if (ret < 0)
114 goto out;
115
116 ret &= ~mask;
117 ret |= val;
118
Sundar Iyer20406eb2010-12-13 09:33:14 +0530119 ret = tc3589x_reg_write(tc3589x, reg, ret);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200120
121out:
Sundar Iyer20406eb2010-12-13 09:33:14 +0530122 mutex_unlock(&tc3589x->lock);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200123 return ret;
124}
Sundar Iyer20406eb2010-12-13 09:33:14 +0530125EXPORT_SYMBOL_GPL(tc3589x_set_bits);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200126
127static struct resource gpio_resources[] = {
128 {
Sundar Iyer20406eb2010-12-13 09:33:14 +0530129 .start = TC3589x_INT_GPIIRQ,
130 .end = TC3589x_INT_GPIIRQ,
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200131 .flags = IORESOURCE_IRQ,
132 },
133};
134
Sundar Iyer611b7592010-12-13 09:33:15 +0530135static struct mfd_cell tc3589x_dev_gpio[] = {
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200136 {
Sundar Iyer20406eb2010-12-13 09:33:14 +0530137 .name = "tc3589x-gpio",
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200138 .num_resources = ARRAY_SIZE(gpio_resources),
139 .resources = &gpio_resources[0],
140 },
141};
142
Sundar Iyer20406eb2010-12-13 09:33:14 +0530143static irqreturn_t tc3589x_irq(int irq, void *data)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200144{
Sundar Iyer20406eb2010-12-13 09:33:14 +0530145 struct tc3589x *tc3589x = data;
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200146 int status;
147
Sundar Iyerbd77efd2010-12-13 09:33:16 +0530148again:
Sundar Iyer20406eb2010-12-13 09:33:14 +0530149 status = tc3589x_reg_read(tc3589x, TC3589x_IRQST);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200150 if (status < 0)
151 return IRQ_NONE;
152
153 while (status) {
154 int bit = __ffs(status);
155
Sundar Iyer20406eb2010-12-13 09:33:14 +0530156 handle_nested_irq(tc3589x->irq_base + bit);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200157 status &= ~(1 << bit);
158 }
159
160 /*
161 * A dummy read or write (to any register) appears to be necessary to
162 * have the last interrupt clear (for example, GPIO IC write) take
Sundar Iyerbd77efd2010-12-13 09:33:16 +0530163 * effect. In such a case, recheck for any interrupt which is still
164 * pending.
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200165 */
Sundar Iyerbd77efd2010-12-13 09:33:16 +0530166 status = tc3589x_reg_read(tc3589x, TC3589x_IRQST);
167 if (status)
168 goto again;
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200169
170 return IRQ_HANDLED;
171}
172
Sundar Iyer20406eb2010-12-13 09:33:14 +0530173static void tc3589x_irq_dummy(unsigned int irq)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200174{
175 /* No mask/unmask at this level */
176}
177
Sundar Iyer20406eb2010-12-13 09:33:14 +0530178static struct irq_chip tc3589x_irq_chip = {
179 .name = "tc3589x",
180 .mask = tc3589x_irq_dummy,
181 .unmask = tc3589x_irq_dummy,
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200182};
183
Sundar Iyer20406eb2010-12-13 09:33:14 +0530184static int tc3589x_irq_init(struct tc3589x *tc3589x)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200185{
Sundar Iyer20406eb2010-12-13 09:33:14 +0530186 int base = tc3589x->irq_base;
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200187 int irq;
188
Sundar Iyer20406eb2010-12-13 09:33:14 +0530189 for (irq = base; irq < base + TC3589x_NR_INTERNAL_IRQS; irq++) {
190 set_irq_chip_data(irq, tc3589x);
191 set_irq_chip_and_handler(irq, &tc3589x_irq_chip,
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200192 handle_edge_irq);
193 set_irq_nested_thread(irq, 1);
194#ifdef CONFIG_ARM
195 set_irq_flags(irq, IRQF_VALID);
196#else
197 set_irq_noprobe(irq);
198#endif
199 }
200
201 return 0;
202}
203
Sundar Iyer20406eb2010-12-13 09:33:14 +0530204static void tc3589x_irq_remove(struct tc3589x *tc3589x)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200205{
Sundar Iyer20406eb2010-12-13 09:33:14 +0530206 int base = tc3589x->irq_base;
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200207 int irq;
208
Sundar Iyer20406eb2010-12-13 09:33:14 +0530209 for (irq = base; irq < base + TC3589x_NR_INTERNAL_IRQS; irq++) {
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200210#ifdef CONFIG_ARM
211 set_irq_flags(irq, 0);
212#endif
213 set_irq_chip_and_handler(irq, NULL, NULL);
214 set_irq_chip_data(irq, NULL);
215 }
216}
217
Sundar Iyer20406eb2010-12-13 09:33:14 +0530218static int tc3589x_chip_init(struct tc3589x *tc3589x)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200219{
220 int manf, ver, ret;
221
Sundar Iyer20406eb2010-12-13 09:33:14 +0530222 manf = tc3589x_reg_read(tc3589x, TC3589x_MANFCODE);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200223 if (manf < 0)
224 return manf;
225
Sundar Iyer20406eb2010-12-13 09:33:14 +0530226 ver = tc3589x_reg_read(tc3589x, TC3589x_VERSION);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200227 if (ver < 0)
228 return ver;
229
Sundar Iyer20406eb2010-12-13 09:33:14 +0530230 if (manf != TC3589x_MANFCODE_MAGIC) {
231 dev_err(tc3589x->dev, "unknown manufacturer: %#x\n", manf);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200232 return -EINVAL;
233 }
234
Sundar Iyer20406eb2010-12-13 09:33:14 +0530235 dev_info(tc3589x->dev, "manufacturer: %#x, version: %#x\n", manf, ver);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200236
Sundar Iyer523bc382010-12-13 09:33:17 +0530237 /*
238 * Put everything except the IRQ module into reset;
239 * also spare the GPIO module for any pin initialization
240 * done during pre-kernel boot
241 */
Sundar Iyer20406eb2010-12-13 09:33:14 +0530242 ret = tc3589x_reg_write(tc3589x, TC3589x_RSTCTRL,
243 TC3589x_RSTCTRL_TIMRST
244 | TC3589x_RSTCTRL_ROTRST
Sundar Iyer523bc382010-12-13 09:33:17 +0530245 | TC3589x_RSTCTRL_KBDRST);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200246 if (ret < 0)
247 return ret;
248
249 /* Clear the reset interrupt. */
Sundar Iyer20406eb2010-12-13 09:33:14 +0530250 return tc3589x_reg_write(tc3589x, TC3589x_RSTINTCLR, 0x1);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200251}
252
Sundar Iyer611b7592010-12-13 09:33:15 +0530253static int __devinit tc3589x_device_init(struct tc3589x *tc3589x)
254{
255 int ret = 0;
256 unsigned int blocks = tc3589x->pdata->block;
257
258 if (blocks & TC3589x_BLOCK_GPIO) {
259 ret = mfd_add_devices(tc3589x->dev, -1, tc3589x_dev_gpio,
260 ARRAY_SIZE(tc3589x_dev_gpio), NULL,
261 tc3589x->irq_base);
262 if (ret) {
263 dev_err(tc3589x->dev, "failed to add gpio child\n");
264 return ret;
265 }
266 dev_info(tc3589x->dev, "added gpio block\n");
267 }
268
269 return ret;
270
271}
272
Sundar Iyer20406eb2010-12-13 09:33:14 +0530273static int __devinit tc3589x_probe(struct i2c_client *i2c,
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200274 const struct i2c_device_id *id)
275{
Sundar Iyer20406eb2010-12-13 09:33:14 +0530276 struct tc3589x_platform_data *pdata = i2c->dev.platform_data;
277 struct tc3589x *tc3589x;
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200278 int ret;
279
280 if (!i2c_check_functionality(i2c->adapter, I2C_FUNC_SMBUS_BYTE_DATA
281 | I2C_FUNC_SMBUS_I2C_BLOCK))
282 return -EIO;
283
Sundar Iyer20406eb2010-12-13 09:33:14 +0530284 tc3589x = kzalloc(sizeof(struct tc3589x), GFP_KERNEL);
285 if (!tc3589x)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200286 return -ENOMEM;
287
Sundar Iyer20406eb2010-12-13 09:33:14 +0530288 mutex_init(&tc3589x->lock);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200289
Sundar Iyer20406eb2010-12-13 09:33:14 +0530290 tc3589x->dev = &i2c->dev;
291 tc3589x->i2c = i2c;
292 tc3589x->pdata = pdata;
293 tc3589x->irq_base = pdata->irq_base;
294 tc3589x->num_gpio = id->driver_data;
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200295
Sundar Iyer20406eb2010-12-13 09:33:14 +0530296 i2c_set_clientdata(i2c, tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200297
Sundar Iyer20406eb2010-12-13 09:33:14 +0530298 ret = tc3589x_chip_init(tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200299 if (ret)
300 goto out_free;
301
Sundar Iyer20406eb2010-12-13 09:33:14 +0530302 ret = tc3589x_irq_init(tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200303 if (ret)
304 goto out_free;
305
Sundar Iyer20406eb2010-12-13 09:33:14 +0530306 ret = request_threaded_irq(tc3589x->i2c->irq, NULL, tc3589x_irq,
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200307 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
Sundar Iyer20406eb2010-12-13 09:33:14 +0530308 "tc3589x", tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200309 if (ret) {
Sundar Iyer20406eb2010-12-13 09:33:14 +0530310 dev_err(tc3589x->dev, "failed to request IRQ: %d\n", ret);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200311 goto out_removeirq;
312 }
313
Sundar Iyer611b7592010-12-13 09:33:15 +0530314 ret = tc3589x_device_init(tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200315 if (ret) {
Sundar Iyer611b7592010-12-13 09:33:15 +0530316 dev_err(tc3589x->dev, "failed to add child devices\n");
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200317 goto out_freeirq;
318 }
319
320 return 0;
321
322out_freeirq:
Sundar Iyer20406eb2010-12-13 09:33:14 +0530323 free_irq(tc3589x->i2c->irq, tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200324out_removeirq:
Sundar Iyer20406eb2010-12-13 09:33:14 +0530325 tc3589x_irq_remove(tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200326out_free:
Sundar Iyer20406eb2010-12-13 09:33:14 +0530327 kfree(tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200328 return ret;
329}
330
Sundar Iyer20406eb2010-12-13 09:33:14 +0530331static int __devexit tc3589x_remove(struct i2c_client *client)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200332{
Sundar Iyer20406eb2010-12-13 09:33:14 +0530333 struct tc3589x *tc3589x = i2c_get_clientdata(client);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200334
Sundar Iyer20406eb2010-12-13 09:33:14 +0530335 mfd_remove_devices(tc3589x->dev);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200336
Sundar Iyer20406eb2010-12-13 09:33:14 +0530337 free_irq(tc3589x->i2c->irq, tc3589x);
338 tc3589x_irq_remove(tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200339
Sundar Iyer20406eb2010-12-13 09:33:14 +0530340 kfree(tc3589x);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200341
342 return 0;
343}
344
Sundar Iyer593e9d72010-12-13 09:33:18 +0530345static int tc3589x_suspend(struct device *dev)
346{
347 struct tc3589x *tc3589x = dev_get_drvdata(dev);
348 struct i2c_client *client = tc3589x->i2c;
349 int ret = 0;
350
351 /* put the system to sleep mode */
352 if (!device_may_wakeup(&client->dev))
353 ret = tc3589x_reg_write(tc3589x, TC3589x_CLKMODE,
354 TC3589x_CLKMODE_MODCTL_SLEEP);
355
356 return ret;
357}
358
359static int tc3589x_resume(struct device *dev)
360{
361 struct tc3589x *tc3589x = dev_get_drvdata(dev);
362 struct i2c_client *client = tc3589x->i2c;
363 int ret = 0;
364
365 /* enable the system into operation */
366 if (!device_may_wakeup(&client->dev))
367 ret = tc3589x_reg_write(tc3589x, TC3589x_CLKMODE,
368 TC3589x_CLKMODE_MODCTL_OPERATION);
369
370 return ret;
371}
372
373static const SIMPLE_DEV_PM_OPS(tc3589x_dev_pm_ops, tc3589x_suspend,
374 tc3589x_resume);
375
Sundar Iyer20406eb2010-12-13 09:33:14 +0530376static const struct i2c_device_id tc3589x_id[] = {
377 { "tc3589x", 24 },
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200378 { }
379};
Sundar Iyer20406eb2010-12-13 09:33:14 +0530380MODULE_DEVICE_TABLE(i2c, tc3589x_id);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200381
Sundar Iyer20406eb2010-12-13 09:33:14 +0530382static struct i2c_driver tc3589x_driver = {
383 .driver.name = "tc3589x",
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200384 .driver.owner = THIS_MODULE,
Sundar Iyer593e9d72010-12-13 09:33:18 +0530385#ifdef CONFIG_PM
386 .driver.pm = &tc3589x_dev_pm_ops,
387#endif
Sundar Iyer20406eb2010-12-13 09:33:14 +0530388 .probe = tc3589x_probe,
389 .remove = __devexit_p(tc3589x_remove),
390 .id_table = tc3589x_id,
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200391};
392
Sundar Iyer20406eb2010-12-13 09:33:14 +0530393static int __init tc3589x_init(void)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200394{
Sundar Iyer20406eb2010-12-13 09:33:14 +0530395 return i2c_add_driver(&tc3589x_driver);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200396}
Sundar Iyer20406eb2010-12-13 09:33:14 +0530397subsys_initcall(tc3589x_init);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200398
Sundar Iyer20406eb2010-12-13 09:33:14 +0530399static void __exit tc3589x_exit(void)
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200400{
Sundar Iyer20406eb2010-12-13 09:33:14 +0530401 i2c_del_driver(&tc3589x_driver);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200402}
Sundar Iyer20406eb2010-12-13 09:33:14 +0530403module_exit(tc3589x_exit);
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200404
405MODULE_LICENSE("GPL v2");
Sundar Iyer20406eb2010-12-13 09:33:14 +0530406MODULE_DESCRIPTION("TC3589x MFD core driver");
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200407MODULE_AUTHOR("Hanumath Prasad, Rabin Vincent");