1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Chip driver for an unknown CPLD chip found on omap850 HTC devices like
5 * the HTC Wizard and HTC Herald.
6 * The cpld is located on the i2c bus and acts as an input/output GPIO
9 * Copyright (C) 2009 Cory Maccarrone <darkstar6262@gmail.com>
11 * Based on work done in the linwizard project
12 * Copyright (C) 2008-2009 Angelo Arrifano <miknix@gmail.com>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
18 #include <linux/platform_device.h>
19 #include <linux/i2c.h>
20 #include <linux/irq.h>
21 #include <linux/spinlock.h>
22 #include <linux/htcpld.h>
23 #include <linux/gpio.h>
24 #include <linux/slab.h>
33 struct i2c_client *client;
37 struct gpio_chip chip_out;
41 struct gpio_chip chip_in;
47 unsigned int flow_type;
49 * Work structure to allow for setting values outside of any
50 * possible interrupt context
52 struct work_struct set_val_work;
61 unsigned int int_reset_gpio_hi;
62 unsigned int int_reset_gpio_lo;
65 struct htcpld_chip *chip;
69 /* There does not appear to be a way to proactively mask interrupts
70 * on the htcpld chip itself. So, we simply ignore interrupts that
72 static void htcpld_mask(struct irq_data *data)
74 struct htcpld_chip *chip = irq_data_get_irq_chip_data(data);
75 chip->irqs_enabled &= ~(1 << (data->irq - chip->irq_start));
76 pr_debug("HTCPLD mask %d %04x\n", data->irq, chip->irqs_enabled);
78 static void htcpld_unmask(struct irq_data *data)
80 struct htcpld_chip *chip = irq_data_get_irq_chip_data(data);
81 chip->irqs_enabled |= 1 << (data->irq - chip->irq_start);
82 pr_debug("HTCPLD unmask %d %04x\n", data->irq, chip->irqs_enabled);
85 static int htcpld_set_type(struct irq_data *data, unsigned int flags)
87 struct htcpld_chip *chip = irq_data_get_irq_chip_data(data);
89 if (flags & ~IRQ_TYPE_SENSE_MASK)
92 /* We only allow edge triggering */
93 if (flags & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH))
96 chip->flow_type = flags;
100 static struct irq_chip htcpld_muxed_chip = {
102 .irq_mask = htcpld_mask,
103 .irq_unmask = htcpld_unmask,
104 .irq_set_type = htcpld_set_type,
107 /* To properly dispatch IRQ events, we need to read from the
108 * chip. This is an I2C action that could possibly sleep
109 * (which is bad in interrupt context) -- so we use a threaded
110 * interrupt handler to get around that.
112 static irqreturn_t htcpld_handler(int irq, void *dev)
114 struct htcpld_data *htcpld = dev;
120 pr_debug("htcpld is null in ISR\n");
125 * For each chip, do a read of the chip and trigger any interrupts
126 * desired. The interrupts will be triggered from LSB to MSB (i.e.
127 * bit 0 first, then bit 1, etc.)
129 * For chips that have no interrupt range specified, just skip 'em.
131 for (i = 0; i < htcpld->nchips; i++) {
132 struct htcpld_chip *chip = &htcpld->chip[i];
133 struct i2c_client *client;
135 unsigned long uval, old_val;
138 pr_debug("chip %d is null in ISR\n", i);
142 if (chip->nirqs == 0)
145 client = chip->client;
147 pr_debug("client %d is null in ISR\n", i);
152 val = i2c_smbus_read_byte_data(client, chip->cache_out);
154 /* Throw a warning and skip this chip */
155 dev_warn(chip->dev, "Unable to read from chip: %d\n",
160 uval = (unsigned long)val;
162 spin_lock_irqsave(&chip->lock, flags);
164 /* Save away the old value so we can compare it */
165 old_val = chip->cache_in;
167 /* Write the new value */
168 chip->cache_in = uval;
170 spin_unlock_irqrestore(&chip->lock, flags);
173 * For each bit in the data (starting at bit 0), trigger
174 * associated interrupts.
176 for (irqpin = 0; irqpin < chip->nirqs; irqpin++) {
177 unsigned oldb, newb, type = chip->flow_type;
179 irq = chip->irq_start + irqpin;
181 /* Run the IRQ handler, but only if the bit value
182 * changed, and the proper flags are set */
183 oldb = (old_val >> irqpin) & 1;
184 newb = (uval >> irqpin) & 1;
186 if ((!oldb && newb && (type & IRQ_TYPE_EDGE_RISING)) ||
187 (oldb && !newb && (type & IRQ_TYPE_EDGE_FALLING))) {
188 pr_debug("fire IRQ %d\n", irqpin);
189 generic_handle_irq(irq);
195 * In order to continue receiving interrupts, the int_reset_gpio must
198 if (htcpld->int_reset_gpio_hi)
199 gpio_set_value(htcpld->int_reset_gpio_hi, 1);
200 if (htcpld->int_reset_gpio_lo)
201 gpio_set_value(htcpld->int_reset_gpio_lo, 0);
207 * The GPIO set routines can be called from interrupt context, especially if,
208 * for example they're attached to the led-gpio framework and a trigger is
209 * enabled. As such, we declared work above in the htcpld_chip structure,
210 * and that work is scheduled in the set routine. The kernel can then run
211 * the I2C functions, which will sleep, in process context.
213 static void htcpld_chip_set(struct gpio_chip *chip, unsigned offset, int val)
215 struct i2c_client *client;
216 struct htcpld_chip *chip_data = gpiochip_get_data(chip);
219 client = chip_data->client;
223 spin_lock_irqsave(&chip_data->lock, flags);
225 chip_data->cache_out |= (1 << offset);
227 chip_data->cache_out &= ~(1 << offset);
228 spin_unlock_irqrestore(&chip_data->lock, flags);
230 schedule_work(&(chip_data->set_val_work));
233 static void htcpld_chip_set_ni(struct work_struct *work)
235 struct htcpld_chip *chip_data;
236 struct i2c_client *client;
238 chip_data = container_of(work, struct htcpld_chip, set_val_work);
239 client = chip_data->client;
240 i2c_smbus_read_byte_data(client, chip_data->cache_out);
243 static int htcpld_chip_get(struct gpio_chip *chip, unsigned offset)
245 struct htcpld_chip *chip_data = gpiochip_get_data(chip);
248 if (!strncmp(chip->label, "htcpld-out", 10)) {
249 cache = chip_data->cache_out;
250 } else if (!strncmp(chip->label, "htcpld-in", 9)) {
251 cache = chip_data->cache_in;
255 return (cache >> offset) & 1;
258 static int htcpld_direction_output(struct gpio_chip *chip,
259 unsigned offset, int value)
261 htcpld_chip_set(chip, offset, value);
265 static int htcpld_direction_input(struct gpio_chip *chip,
269 * No-op: this function can only be called on the input chip.
270 * We do however make sure the offset is within range.
272 return (offset < chip->ngpio) ? 0 : -EINVAL;
275 static int htcpld_chip_to_irq(struct gpio_chip *chip, unsigned offset)
277 struct htcpld_chip *chip_data = gpiochip_get_data(chip);
279 if (offset < chip_data->nirqs)
280 return chip_data->irq_start + offset;
285 static void htcpld_chip_reset(struct i2c_client *client)
287 struct htcpld_chip *chip_data = i2c_get_clientdata(client);
291 i2c_smbus_read_byte_data(
292 client, (chip_data->cache_out = chip_data->reset));
295 static int htcpld_setup_chip_irq(
296 struct platform_device *pdev,
299 struct htcpld_data *htcpld;
300 struct htcpld_chip *chip;
301 unsigned int irq, irq_end;
303 /* Get the platform and driver data */
304 htcpld = platform_get_drvdata(pdev);
305 chip = &htcpld->chip[chip_index];
307 /* Setup irq handlers */
308 irq_end = chip->irq_start + chip->nirqs;
309 for (irq = chip->irq_start; irq < irq_end; irq++) {
310 irq_set_chip_and_handler(irq, &htcpld_muxed_chip,
312 irq_set_chip_data(irq, chip);
313 irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
319 static int htcpld_register_chip_i2c(
320 struct platform_device *pdev,
323 struct htcpld_data *htcpld;
324 struct device *dev = &pdev->dev;
325 struct htcpld_core_platform_data *pdata;
326 struct htcpld_chip *chip;
327 struct htcpld_chip_platform_data *plat_chip_data;
328 struct i2c_adapter *adapter;
329 struct i2c_client *client;
330 struct i2c_board_info info;
332 /* Get the platform and driver data */
333 pdata = dev_get_platdata(dev);
334 htcpld = platform_get_drvdata(pdev);
335 chip = &htcpld->chip[chip_index];
336 plat_chip_data = &pdata->chip[chip_index];
338 adapter = i2c_get_adapter(pdata->i2c_adapter_id);
340 /* Eek, no such I2C adapter! Bail out. */
341 dev_warn(dev, "Chip at i2c address 0x%x: Invalid i2c adapter %d\n",
342 plat_chip_data->addr, pdata->i2c_adapter_id);
346 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_READ_BYTE_DATA)) {
347 dev_warn(dev, "i2c adapter %d non-functional\n",
348 pdata->i2c_adapter_id);
349 i2c_put_adapter(adapter);
353 memset(&info, 0, sizeof(struct i2c_board_info));
354 info.addr = plat_chip_data->addr;
355 strlcpy(info.type, "htcpld-chip", I2C_NAME_SIZE);
356 info.platform_data = chip;
358 /* Add the I2C device. This calls the probe() function. */
359 client = i2c_new_client_device(adapter, &info);
360 if (IS_ERR(client)) {
361 /* I2C device registration failed, contineu with the next */
362 dev_warn(dev, "Unable to add I2C device for 0x%x\n",
363 plat_chip_data->addr);
364 i2c_put_adapter(adapter);
365 return PTR_ERR(client);
368 i2c_set_clientdata(client, chip);
369 snprintf(client->name, I2C_NAME_SIZE, "Chip_0x%x", client->addr);
370 chip->client = client;
373 htcpld_chip_reset(client);
374 chip->cache_in = i2c_smbus_read_byte_data(client, chip->cache_out);
379 static void htcpld_unregister_chip_i2c(
380 struct platform_device *pdev,
383 struct htcpld_data *htcpld;
384 struct htcpld_chip *chip;
386 /* Get the platform and driver data */
387 htcpld = platform_get_drvdata(pdev);
388 chip = &htcpld->chip[chip_index];
390 i2c_unregister_device(chip->client);
393 static int htcpld_register_chip_gpio(
394 struct platform_device *pdev,
397 struct htcpld_data *htcpld;
398 struct device *dev = &pdev->dev;
399 struct htcpld_core_platform_data *pdata;
400 struct htcpld_chip *chip;
401 struct htcpld_chip_platform_data *plat_chip_data;
402 struct gpio_chip *gpio_chip;
405 /* Get the platform and driver data */
406 pdata = dev_get_platdata(dev);
407 htcpld = platform_get_drvdata(pdev);
408 chip = &htcpld->chip[chip_index];
409 plat_chip_data = &pdata->chip[chip_index];
411 /* Setup the GPIO chips */
412 gpio_chip = &(chip->chip_out);
413 gpio_chip->label = "htcpld-out";
414 gpio_chip->parent = dev;
415 gpio_chip->owner = THIS_MODULE;
416 gpio_chip->get = htcpld_chip_get;
417 gpio_chip->set = htcpld_chip_set;
418 gpio_chip->direction_input = NULL;
419 gpio_chip->direction_output = htcpld_direction_output;
420 gpio_chip->base = plat_chip_data->gpio_out_base;
421 gpio_chip->ngpio = plat_chip_data->num_gpios;
423 gpio_chip = &(chip->chip_in);
424 gpio_chip->label = "htcpld-in";
425 gpio_chip->parent = dev;
426 gpio_chip->owner = THIS_MODULE;
427 gpio_chip->get = htcpld_chip_get;
428 gpio_chip->set = NULL;
429 gpio_chip->direction_input = htcpld_direction_input;
430 gpio_chip->direction_output = NULL;
431 gpio_chip->to_irq = htcpld_chip_to_irq;
432 gpio_chip->base = plat_chip_data->gpio_in_base;
433 gpio_chip->ngpio = plat_chip_data->num_gpios;
435 /* Add the GPIO chips */
436 ret = gpiochip_add_data(&(chip->chip_out), chip);
438 dev_warn(dev, "Unable to register output GPIOs for 0x%x: %d\n",
439 plat_chip_data->addr, ret);
443 ret = gpiochip_add_data(&(chip->chip_in), chip);
445 dev_warn(dev, "Unable to register input GPIOs for 0x%x: %d\n",
446 plat_chip_data->addr, ret);
447 gpiochip_remove(&(chip->chip_out));
454 static int htcpld_setup_chips(struct platform_device *pdev)
456 struct htcpld_data *htcpld;
457 struct device *dev = &pdev->dev;
458 struct htcpld_core_platform_data *pdata;
461 /* Get the platform and driver data */
462 pdata = dev_get_platdata(dev);
463 htcpld = platform_get_drvdata(pdev);
465 /* Setup each chip's output GPIOs */
466 htcpld->nchips = pdata->num_chip;
467 htcpld->chip = devm_kcalloc(dev,
469 sizeof(struct htcpld_chip),
474 /* Add the chips as best we can */
475 for (i = 0; i < htcpld->nchips; i++) {
478 /* Setup the HTCPLD chips */
479 htcpld->chip[i].reset = pdata->chip[i].reset;
480 htcpld->chip[i].cache_out = pdata->chip[i].reset;
481 htcpld->chip[i].cache_in = 0;
482 htcpld->chip[i].dev = dev;
483 htcpld->chip[i].irq_start = pdata->chip[i].irq_base;
484 htcpld->chip[i].nirqs = pdata->chip[i].num_irqs;
486 INIT_WORK(&(htcpld->chip[i].set_val_work), &htcpld_chip_set_ni);
487 spin_lock_init(&(htcpld->chip[i].lock));
489 /* Setup the interrupts for the chip */
490 if (htcpld->chained_irq) {
491 ret = htcpld_setup_chip_irq(pdev, i);
496 /* Register the chip with I2C */
497 ret = htcpld_register_chip_i2c(pdev, i);
502 /* Register the chips with the GPIO subsystem */
503 ret = htcpld_register_chip_gpio(pdev, i);
505 /* Unregister the chip from i2c and continue */
506 htcpld_unregister_chip_i2c(pdev, i);
510 dev_info(dev, "Registered chip at 0x%x\n", pdata->chip[i].addr);
516 static int htcpld_core_probe(struct platform_device *pdev)
518 struct htcpld_data *htcpld;
519 struct device *dev = &pdev->dev;
520 struct htcpld_core_platform_data *pdata;
521 struct resource *res;
527 pdata = dev_get_platdata(dev);
529 dev_warn(dev, "Platform data not found for htcpld core!\n");
533 htcpld = devm_kzalloc(dev, sizeof(struct htcpld_data), GFP_KERNEL);
537 /* Find chained irq */
538 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
541 htcpld->chained_irq = res->start;
543 /* Setup the chained interrupt handler */
544 flags = IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING |
546 ret = request_threaded_irq(htcpld->chained_irq,
547 NULL, htcpld_handler,
548 flags, pdev->name, htcpld);
550 dev_warn(dev, "Unable to setup chained irq handler: %d\n", ret);
553 device_init_wakeup(dev, 0);
556 /* Set the driver data */
557 platform_set_drvdata(pdev, htcpld);
559 /* Setup the htcpld chips */
560 ret = htcpld_setup_chips(pdev);
564 /* Request the GPIO(s) for the int reset and set them up */
565 if (pdata->int_reset_gpio_hi) {
566 ret = gpio_request(pdata->int_reset_gpio_hi, "htcpld-core");
569 * If it failed, that sucks, but we can probably
570 * continue on without it.
572 dev_warn(dev, "Unable to request int_reset_gpio_hi -- interrupts may not work\n");
573 htcpld->int_reset_gpio_hi = 0;
575 htcpld->int_reset_gpio_hi = pdata->int_reset_gpio_hi;
576 gpio_set_value(htcpld->int_reset_gpio_hi, 1);
580 if (pdata->int_reset_gpio_lo) {
581 ret = gpio_request(pdata->int_reset_gpio_lo, "htcpld-core");
584 * If it failed, that sucks, but we can probably
585 * continue on without it.
587 dev_warn(dev, "Unable to request int_reset_gpio_lo -- interrupts may not work\n");
588 htcpld->int_reset_gpio_lo = 0;
590 htcpld->int_reset_gpio_lo = pdata->int_reset_gpio_lo;
591 gpio_set_value(htcpld->int_reset_gpio_lo, 0);
595 dev_info(dev, "Initialized successfully\n");
599 /* The I2C Driver -- used internally */
600 static const struct i2c_device_id htcpld_chip_id[] = {
601 { "htcpld-chip", 0 },
605 static struct i2c_driver htcpld_chip_driver = {
607 .name = "htcpld-chip",
609 .id_table = htcpld_chip_id,
612 /* The Core Driver */
613 static struct platform_driver htcpld_core_driver = {
615 .name = "i2c-htcpld",
619 static int __init htcpld_core_init(void)
623 /* Register the I2C Chip driver */
624 ret = i2c_add_driver(&htcpld_chip_driver);
628 /* Probe for our chips */
629 return platform_driver_probe(&htcpld_core_driver, htcpld_core_probe);
631 device_initcall(htcpld_core_init);