blob: 99b362e4332985697d80bdd366b5175915d49cd6 [file] [log] [blame]
Cory Maccarrone6048a3d2010-01-19 11:22:45 +01001/*
2 * htc-i2cpld.c
3 * Chip driver for an unknown CPLD chip found on omap850 HTC devices like
4 * the HTC Wizard and HTC Herald.
5 * The cpld is located on the i2c bus and acts as an input/output GPIO
6 * extender.
7 *
8 * Copyright (C) 2009 Cory Maccarrone <darkstar6262@gmail.com>
9 *
10 * Based on work done in the linwizard project
11 * Copyright (C) 2008-2009 Angelo Arrifano <miknix@gmail.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 as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <linux/kernel.h>
29#include <linux/init.h>
30#include <linux/module.h>
31#include <linux/interrupt.h>
32#include <linux/platform_device.h>
33#include <linux/i2c.h>
34#include <linux/irq.h>
35#include <linux/spinlock.h>
36#include <linux/htcpld.h>
37#include <linux/gpio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Cory Maccarrone6048a3d2010-01-19 11:22:45 +010039
40struct htcpld_chip {
41 spinlock_t lock;
42
43 /* chip info */
44 u8 reset;
45 u8 addr;
46 struct device *dev;
47 struct i2c_client *client;
48
49 /* Output details */
50 u8 cache_out;
51 struct gpio_chip chip_out;
52
53 /* Input details */
54 u8 cache_in;
55 struct gpio_chip chip_in;
56
57 u16 irqs_enabled;
58 uint irq_start;
59 int nirqs;
60
Thomas Gleixner9eaee992011-03-25 11:12:29 +000061 unsigned int flow_type;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +010062 /*
63 * Work structure to allow for setting values outside of any
64 * possible interrupt context
65 */
66 struct work_struct set_val_work;
67};
68
69struct htcpld_data {
70 /* irq info */
71 u16 irqs_enabled;
72 uint irq_start;
73 int nirqs;
74 uint chained_irq;
75 unsigned int int_reset_gpio_hi;
76 unsigned int int_reset_gpio_lo;
77
78 /* htcpld info */
79 struct htcpld_chip *chip;
80 unsigned int nchips;
81};
82
83/* There does not appear to be a way to proactively mask interrupts
84 * on the htcpld chip itself. So, we simply ignore interrupts that
85 * aren't desired. */
Mark Browne6a4c4a2010-12-11 16:44:11 +000086static void htcpld_mask(struct irq_data *data)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +010087{
Mark Browne6a4c4a2010-12-11 16:44:11 +000088 struct htcpld_chip *chip = irq_data_get_irq_chip_data(data);
89 chip->irqs_enabled &= ~(1 << (data->irq - chip->irq_start));
90 pr_debug("HTCPLD mask %d %04x\n", data->irq, chip->irqs_enabled);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +010091}
Mark Browne6a4c4a2010-12-11 16:44:11 +000092static void htcpld_unmask(struct irq_data *data)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +010093{
Mark Browne6a4c4a2010-12-11 16:44:11 +000094 struct htcpld_chip *chip = irq_data_get_irq_chip_data(data);
95 chip->irqs_enabled |= 1 << (data->irq - chip->irq_start);
96 pr_debug("HTCPLD unmask %d %04x\n", data->irq, chip->irqs_enabled);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +010097}
98
Mark Browne6a4c4a2010-12-11 16:44:11 +000099static int htcpld_set_type(struct irq_data *data, unsigned int flags)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100100{
Thomas Gleixner9eaee992011-03-25 11:12:29 +0000101 struct htcpld_chip *chip = irq_data_get_irq_chip_data(data);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100102
103 if (flags & ~IRQ_TYPE_SENSE_MASK)
104 return -EINVAL;
105
106 /* We only allow edge triggering */
107 if (flags & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH))
108 return -EINVAL;
109
Thomas Gleixner9eaee992011-03-25 11:12:29 +0000110 chip->flow_type = flags;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100111 return 0;
112}
113
114static struct irq_chip htcpld_muxed_chip = {
Mark Browne6a4c4a2010-12-11 16:44:11 +0000115 .name = "htcpld",
116 .irq_mask = htcpld_mask,
117 .irq_unmask = htcpld_unmask,
118 .irq_set_type = htcpld_set_type,
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100119};
120
121/* To properly dispatch IRQ events, we need to read from the
122 * chip. This is an I2C action that could possibly sleep
123 * (which is bad in interrupt context) -- so we use a threaded
124 * interrupt handler to get around that.
125 */
126static irqreturn_t htcpld_handler(int irq, void *dev)
127{
128 struct htcpld_data *htcpld = dev;
129 unsigned int i;
130 unsigned long flags;
131 int irqpin;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100132
133 if (!htcpld) {
134 pr_debug("htcpld is null in ISR\n");
135 return IRQ_HANDLED;
136 }
137
138 /*
139 * For each chip, do a read of the chip and trigger any interrupts
140 * desired. The interrupts will be triggered from LSB to MSB (i.e.
141 * bit 0 first, then bit 1, etc.)
142 *
143 * For chips that have no interrupt range specified, just skip 'em.
144 */
145 for (i = 0; i < htcpld->nchips; i++) {
146 struct htcpld_chip *chip = &htcpld->chip[i];
147 struct i2c_client *client;
148 int val;
149 unsigned long uval, old_val;
150
151 if (!chip) {
152 pr_debug("chip %d is null in ISR\n", i);
153 continue;
154 }
155
156 if (chip->nirqs == 0)
157 continue;
158
159 client = chip->client;
160 if (!client) {
161 pr_debug("client %d is null in ISR\n", i);
162 continue;
163 }
164
165 /* Scan the chip */
166 val = i2c_smbus_read_byte_data(client, chip->cache_out);
167 if (val < 0) {
168 /* Throw a warning and skip this chip */
169 dev_warn(chip->dev, "Unable to read from chip: %d\n",
170 val);
171 continue;
172 }
173
174 uval = (unsigned long)val;
175
176 spin_lock_irqsave(&chip->lock, flags);
177
178 /* Save away the old value so we can compare it */
179 old_val = chip->cache_in;
180
181 /* Write the new value */
182 chip->cache_in = uval;
183
184 spin_unlock_irqrestore(&chip->lock, flags);
185
186 /*
187 * For each bit in the data (starting at bit 0), trigger
188 * associated interrupts.
189 */
190 for (irqpin = 0; irqpin < chip->nirqs; irqpin++) {
Thomas Gleixner9eaee992011-03-25 11:12:29 +0000191 unsigned oldb, newb, type = chip->flow_type;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100192
193 irq = chip->irq_start + irqpin;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100194
195 /* Run the IRQ handler, but only if the bit value
196 * changed, and the proper flags are set */
197 oldb = (old_val >> irqpin) & 1;
198 newb = (uval >> irqpin) & 1;
199
Thomas Gleixner9eaee992011-03-25 11:12:29 +0000200 if ((!oldb && newb && (type & IRQ_TYPE_EDGE_RISING)) ||
201 (oldb && !newb && (type & IRQ_TYPE_EDGE_FALLING))) {
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100202 pr_debug("fire IRQ %d\n", irqpin);
Thomas Gleixner9eaee992011-03-25 11:12:29 +0000203 generic_handle_irq(irq);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100204 }
205 }
206 }
207
208 /*
209 * In order to continue receiving interrupts, the int_reset_gpio must
210 * be asserted.
211 */
212 if (htcpld->int_reset_gpio_hi)
213 gpio_set_value(htcpld->int_reset_gpio_hi, 1);
214 if (htcpld->int_reset_gpio_lo)
215 gpio_set_value(htcpld->int_reset_gpio_lo, 0);
216
217 return IRQ_HANDLED;
218}
219
220/*
221 * The GPIO set routines can be called from interrupt context, especially if,
222 * for example they're attached to the led-gpio framework and a trigger is
223 * enabled. As such, we declared work above in the htcpld_chip structure,
224 * and that work is scheduled in the set routine. The kernel can then run
225 * the I2C functions, which will sleep, in process context.
226 */
Mark Brown8d2d3a32010-12-11 16:44:49 +0000227static void htcpld_chip_set(struct gpio_chip *chip, unsigned offset, int val)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100228{
229 struct i2c_client *client;
Lee Jonesfe4b7ea2014-08-13 13:48:27 +0100230 struct htcpld_chip *chip_data =
231 container_of(chip, struct htcpld_chip, chip_out);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100232 unsigned long flags;
233
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100234 client = chip_data->client;
Lee Jones41cc08e2014-08-13 13:52:27 +0100235 if (!client)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100236 return;
237
238 spin_lock_irqsave(&chip_data->lock, flags);
239 if (val)
240 chip_data->cache_out |= (1 << offset);
241 else
242 chip_data->cache_out &= ~(1 << offset);
243 spin_unlock_irqrestore(&chip_data->lock, flags);
244
245 schedule_work(&(chip_data->set_val_work));
246}
247
Mark Brown8d2d3a32010-12-11 16:44:49 +0000248static void htcpld_chip_set_ni(struct work_struct *work)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100249{
250 struct htcpld_chip *chip_data;
251 struct i2c_client *client;
252
253 chip_data = container_of(work, struct htcpld_chip, set_val_work);
254 client = chip_data->client;
255 i2c_smbus_read_byte_data(client, chip_data->cache_out);
256}
257
Mark Brown8d2d3a32010-12-11 16:44:49 +0000258static int htcpld_chip_get(struct gpio_chip *chip, unsigned offset)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100259{
260 struct htcpld_chip *chip_data;
Lee Jones9b6a5ad2014-08-18 13:10:20 +0100261 u8 cache;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100262
Lee Jones9b6a5ad2014-08-18 13:10:20 +0100263 if (!strncmp(chip->label, "htcpld-out", 10)) {
264 chip_data = container_of(chip, struct htcpld_chip, chip_out);
265 cache = chip_data->cache_out;
266 } else if (!strncmp(chip->label, "htcpld-in", 9)) {
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100267 chip_data = container_of(chip, struct htcpld_chip, chip_in);
Lee Jones9b6a5ad2014-08-18 13:10:20 +0100268 cache = chip_data->cache_in;
269 } else
270 return -EINVAL;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100271
Lee Jones9b6a5ad2014-08-18 13:10:20 +0100272 return (cache >> offset) & 1;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100273}
274
275static int htcpld_direction_output(struct gpio_chip *chip,
276 unsigned offset, int value)
277{
278 htcpld_chip_set(chip, offset, value);
279 return 0;
280}
281
282static int htcpld_direction_input(struct gpio_chip *chip,
283 unsigned offset)
284{
285 /*
286 * No-op: this function can only be called on the input chip.
287 * We do however make sure the offset is within range.
288 */
289 return (offset < chip->ngpio) ? 0 : -EINVAL;
290}
291
Mark Brown8d2d3a32010-12-11 16:44:49 +0000292static int htcpld_chip_to_irq(struct gpio_chip *chip, unsigned offset)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100293{
294 struct htcpld_chip *chip_data;
295
296 chip_data = container_of(chip, struct htcpld_chip, chip_in);
297
298 if (offset < chip_data->nirqs)
299 return chip_data->irq_start + offset;
300 else
301 return -EINVAL;
302}
303
Mark Brown8d2d3a32010-12-11 16:44:49 +0000304static void htcpld_chip_reset(struct i2c_client *client)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100305{
306 struct htcpld_chip *chip_data = i2c_get_clientdata(client);
307 if (!chip_data)
308 return;
309
310 i2c_smbus_read_byte_data(
311 client, (chip_data->cache_out = chip_data->reset));
312}
313
Bill Pembertonf791be42012-11-19 13:23:04 -0500314static int htcpld_setup_chip_irq(
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100315 struct platform_device *pdev,
316 int chip_index)
317{
318 struct htcpld_data *htcpld;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100319 struct htcpld_chip *chip;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100320 unsigned int irq, irq_end;
321 int ret = 0;
322
323 /* Get the platform and driver data */
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100324 htcpld = platform_get_drvdata(pdev);
325 chip = &htcpld->chip[chip_index];
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100326
327 /* Setup irq handlers */
328 irq_end = chip->irq_start + chip->nirqs;
329 for (irq = chip->irq_start; irq < irq_end; irq++) {
Thomas Gleixnerd6f7ce9f2011-03-25 11:12:35 +0000330 irq_set_chip_and_handler(irq, &htcpld_muxed_chip,
331 handle_simple_irq);
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000332 irq_set_chip_data(irq, chip);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100333#ifdef CONFIG_ARM
334 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
335#else
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000336 irq_set_probe(irq);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100337#endif
338 }
339
340 return ret;
341}
342
Bill Pembertonf791be42012-11-19 13:23:04 -0500343static int htcpld_register_chip_i2c(
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100344 struct platform_device *pdev,
345 int chip_index)
346{
347 struct htcpld_data *htcpld;
348 struct device *dev = &pdev->dev;
349 struct htcpld_core_platform_data *pdata;
350 struct htcpld_chip *chip;
351 struct htcpld_chip_platform_data *plat_chip_data;
352 struct i2c_adapter *adapter;
353 struct i2c_client *client;
354 struct i2c_board_info info;
355
356 /* Get the platform and driver data */
Jingoo Han334a41ce2013-07-30 17:10:05 +0900357 pdata = dev_get_platdata(dev);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100358 htcpld = platform_get_drvdata(pdev);
359 chip = &htcpld->chip[chip_index];
360 plat_chip_data = &pdata->chip[chip_index];
361
362 adapter = i2c_get_adapter(pdata->i2c_adapter_id);
Lee Jones41cc08e2014-08-13 13:52:27 +0100363 if (!adapter) {
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100364 /* Eek, no such I2C adapter! Bail out. */
365 dev_warn(dev, "Chip at i2c address 0x%x: Invalid i2c adapter %d\n",
366 plat_chip_data->addr, pdata->i2c_adapter_id);
367 return -ENODEV;
368 }
369
370 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_READ_BYTE_DATA)) {
371 dev_warn(dev, "i2c adapter %d non-functional\n",
372 pdata->i2c_adapter_id);
373 return -EINVAL;
374 }
375
376 memset(&info, 0, sizeof(struct i2c_board_info));
377 info.addr = plat_chip_data->addr;
378 strlcpy(info.type, "htcpld-chip", I2C_NAME_SIZE);
379 info.platform_data = chip;
380
381 /* Add the I2C device. This calls the probe() function. */
382 client = i2c_new_device(adapter, &info);
383 if (!client) {
384 /* I2C device registration failed, contineu with the next */
385 dev_warn(dev, "Unable to add I2C device for 0x%x\n",
386 plat_chip_data->addr);
387 return -ENODEV;
388 }
389
390 i2c_set_clientdata(client, chip);
391 snprintf(client->name, I2C_NAME_SIZE, "Chip_0x%d", client->addr);
392 chip->client = client;
393
394 /* Reset the chip */
395 htcpld_chip_reset(client);
396 chip->cache_in = i2c_smbus_read_byte_data(client, chip->cache_out);
397
398 return 0;
399}
400
Bill Pembertonf791be42012-11-19 13:23:04 -0500401static void htcpld_unregister_chip_i2c(
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100402 struct platform_device *pdev,
403 int chip_index)
404{
405 struct htcpld_data *htcpld;
406 struct htcpld_chip *chip;
407
408 /* Get the platform and driver data */
409 htcpld = platform_get_drvdata(pdev);
410 chip = &htcpld->chip[chip_index];
411
412 if (chip->client)
413 i2c_unregister_device(chip->client);
414}
415
Bill Pembertonf791be42012-11-19 13:23:04 -0500416static int htcpld_register_chip_gpio(
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100417 struct platform_device *pdev,
418 int chip_index)
419{
420 struct htcpld_data *htcpld;
421 struct device *dev = &pdev->dev;
422 struct htcpld_core_platform_data *pdata;
423 struct htcpld_chip *chip;
424 struct htcpld_chip_platform_data *plat_chip_data;
425 struct gpio_chip *gpio_chip;
426 int ret = 0;
427
428 /* Get the platform and driver data */
Jingoo Han334a41ce2013-07-30 17:10:05 +0900429 pdata = dev_get_platdata(dev);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100430 htcpld = platform_get_drvdata(pdev);
431 chip = &htcpld->chip[chip_index];
432 plat_chip_data = &pdata->chip[chip_index];
433
434 /* Setup the GPIO chips */
435 gpio_chip = &(chip->chip_out);
436 gpio_chip->label = "htcpld-out";
437 gpio_chip->dev = dev;
438 gpio_chip->owner = THIS_MODULE;
439 gpio_chip->get = htcpld_chip_get;
440 gpio_chip->set = htcpld_chip_set;
441 gpio_chip->direction_input = NULL;
442 gpio_chip->direction_output = htcpld_direction_output;
443 gpio_chip->base = plat_chip_data->gpio_out_base;
444 gpio_chip->ngpio = plat_chip_data->num_gpios;
445
446 gpio_chip = &(chip->chip_in);
447 gpio_chip->label = "htcpld-in";
448 gpio_chip->dev = dev;
449 gpio_chip->owner = THIS_MODULE;
450 gpio_chip->get = htcpld_chip_get;
451 gpio_chip->set = NULL;
452 gpio_chip->direction_input = htcpld_direction_input;
453 gpio_chip->direction_output = NULL;
454 gpio_chip->to_irq = htcpld_chip_to_irq;
455 gpio_chip->base = plat_chip_data->gpio_in_base;
456 gpio_chip->ngpio = plat_chip_data->num_gpios;
457
458 /* Add the GPIO chips */
459 ret = gpiochip_add(&(chip->chip_out));
460 if (ret) {
461 dev_warn(dev, "Unable to register output GPIOs for 0x%x: %d\n",
462 plat_chip_data->addr, ret);
463 return ret;
464 }
465
466 ret = gpiochip_add(&(chip->chip_in));
467 if (ret) {
468 int error;
469
470 dev_warn(dev, "Unable to register input GPIOs for 0x%x: %d\n",
471 plat_chip_data->addr, ret);
472
473 error = gpiochip_remove(&(chip->chip_out));
474 if (error)
475 dev_warn(dev, "Error while trying to unregister gpio chip: %d\n", error);
476
477 return ret;
478 }
479
480 return 0;
481}
482
Bill Pembertonf791be42012-11-19 13:23:04 -0500483static int htcpld_setup_chips(struct platform_device *pdev)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100484{
485 struct htcpld_data *htcpld;
486 struct device *dev = &pdev->dev;
487 struct htcpld_core_platform_data *pdata;
488 int i;
489
490 /* Get the platform and driver data */
Jingoo Han334a41ce2013-07-30 17:10:05 +0900491 pdata = dev_get_platdata(dev);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100492 htcpld = platform_get_drvdata(pdev);
493
494 /* Setup each chip's output GPIOs */
495 htcpld->nchips = pdata->num_chip;
Lee Jones2b0b5e22013-05-23 16:25:13 +0100496 htcpld->chip = devm_kzalloc(dev, sizeof(struct htcpld_chip) * htcpld->nchips,
497 GFP_KERNEL);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100498 if (!htcpld->chip) {
499 dev_warn(dev, "Unable to allocate memory for chips\n");
500 return -ENOMEM;
501 }
502
503 /* Add the chips as best we can */
504 for (i = 0; i < htcpld->nchips; i++) {
505 int ret;
506
507 /* Setup the HTCPLD chips */
508 htcpld->chip[i].reset = pdata->chip[i].reset;
509 htcpld->chip[i].cache_out = pdata->chip[i].reset;
510 htcpld->chip[i].cache_in = 0;
511 htcpld->chip[i].dev = dev;
512 htcpld->chip[i].irq_start = pdata->chip[i].irq_base;
513 htcpld->chip[i].nirqs = pdata->chip[i].num_irqs;
514
515 INIT_WORK(&(htcpld->chip[i].set_val_work), &htcpld_chip_set_ni);
516 spin_lock_init(&(htcpld->chip[i].lock));
517
518 /* Setup the interrupts for the chip */
519 if (htcpld->chained_irq) {
520 ret = htcpld_setup_chip_irq(pdev, i);
521 if (ret)
522 continue;
523 }
524
525 /* Register the chip with I2C */
526 ret = htcpld_register_chip_i2c(pdev, i);
527 if (ret)
528 continue;
529
530
531 /* Register the chips with the GPIO subsystem */
532 ret = htcpld_register_chip_gpio(pdev, i);
533 if (ret) {
534 /* Unregister the chip from i2c and continue */
535 htcpld_unregister_chip_i2c(pdev, i);
536 continue;
537 }
538
539 dev_info(dev, "Registered chip at 0x%x\n", pdata->chip[i].addr);
540 }
541
542 return 0;
543}
544
Bill Pembertonf791be42012-11-19 13:23:04 -0500545static int htcpld_core_probe(struct platform_device *pdev)
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100546{
547 struct htcpld_data *htcpld;
548 struct device *dev = &pdev->dev;
549 struct htcpld_core_platform_data *pdata;
550 struct resource *res;
551 int ret = 0;
552
553 if (!dev)
554 return -ENODEV;
555
Jingoo Han334a41ce2013-07-30 17:10:05 +0900556 pdata = dev_get_platdata(dev);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100557 if (!pdata) {
558 dev_warn(dev, "Platform data not found for htcpld core!\n");
559 return -ENXIO;
560 }
561
Lee Jones2b0b5e22013-05-23 16:25:13 +0100562 htcpld = devm_kzalloc(dev, sizeof(struct htcpld_data), GFP_KERNEL);
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100563 if (!htcpld)
564 return -ENOMEM;
565
566 /* Find chained irq */
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100567 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
568 if (res) {
569 int flags;
570 htcpld->chained_irq = res->start;
571
572 /* Setup the chained interrupt handler */
573 flags = IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING;
574 ret = request_threaded_irq(htcpld->chained_irq,
575 NULL, htcpld_handler,
576 flags, pdev->name, htcpld);
577 if (ret) {
578 dev_warn(dev, "Unable to setup chained irq handler: %d\n", ret);
Lee Jones2b0b5e22013-05-23 16:25:13 +0100579 return ret;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100580 } else
581 device_init_wakeup(dev, 0);
582 }
583
584 /* Set the driver data */
585 platform_set_drvdata(pdev, htcpld);
586
587 /* Setup the htcpld chips */
588 ret = htcpld_setup_chips(pdev);
589 if (ret)
Lee Jones2b0b5e22013-05-23 16:25:13 +0100590 return ret;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100591
592 /* Request the GPIO(s) for the int reset and set them up */
593 if (pdata->int_reset_gpio_hi) {
594 ret = gpio_request(pdata->int_reset_gpio_hi, "htcpld-core");
595 if (ret) {
596 /*
597 * If it failed, that sucks, but we can probably
598 * continue on without it.
599 */
600 dev_warn(dev, "Unable to request int_reset_gpio_hi -- interrupts may not work\n");
601 htcpld->int_reset_gpio_hi = 0;
602 } else {
603 htcpld->int_reset_gpio_hi = pdata->int_reset_gpio_hi;
604 gpio_set_value(htcpld->int_reset_gpio_hi, 1);
605 }
606 }
607
608 if (pdata->int_reset_gpio_lo) {
609 ret = gpio_request(pdata->int_reset_gpio_lo, "htcpld-core");
610 if (ret) {
611 /*
612 * If it failed, that sucks, but we can probably
613 * continue on without it.
614 */
615 dev_warn(dev, "Unable to request int_reset_gpio_lo -- interrupts may not work\n");
616 htcpld->int_reset_gpio_lo = 0;
617 } else {
618 htcpld->int_reset_gpio_lo = pdata->int_reset_gpio_lo;
619 gpio_set_value(htcpld->int_reset_gpio_lo, 0);
620 }
621 }
622
623 dev_info(dev, "Initialized successfully\n");
624 return 0;
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100625}
626
627/* The I2C Driver -- used internally */
628static const struct i2c_device_id htcpld_chip_id[] = {
629 { "htcpld-chip", 0 },
630 { }
631};
632MODULE_DEVICE_TABLE(i2c, htcpld_chip_id);
633
634
635static struct i2c_driver htcpld_chip_driver = {
636 .driver = {
637 .name = "htcpld-chip",
638 },
639 .id_table = htcpld_chip_id,
640};
641
642/* The Core Driver */
643static struct platform_driver htcpld_core_driver = {
644 .driver = {
645 .name = "i2c-htcpld",
646 },
647};
648
649static int __init htcpld_core_init(void)
650{
651 int ret;
652
653 /* Register the I2C Chip driver */
654 ret = i2c_add_driver(&htcpld_chip_driver);
655 if (ret)
656 return ret;
657
658 /* Probe for our chips */
659 return platform_driver_probe(&htcpld_core_driver, htcpld_core_probe);
660}
661
662static void __exit htcpld_core_exit(void)
663{
664 i2c_del_driver(&htcpld_chip_driver);
665 platform_driver_unregister(&htcpld_core_driver);
666}
667
668module_init(htcpld_core_init);
669module_exit(htcpld_core_exit);
670
671MODULE_AUTHOR("Cory Maccarrone <darkstar6262@gmail.com>");
672MODULE_DESCRIPTION("I2C HTC PLD Driver");
673MODULE_LICENSE("GPL");
674