123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- /*
- * Intel Medfield MSIC GPIO driver>
- * Copyright (c) 2011, Intel Corporation.
- *
- * Author: Mathias Nyman <mathias.nyman@linux.intel.com>
- * Based on intel_pmic_gpio.c
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, as published by the Free Software Foundation.
- *
- * This program is distributed in the hope it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
- *
- */
- #include <linux/module.h>
- #include <linux/kernel.h>
- #include <linux/slab.h>
- #include <linux/interrupt.h>
- #include <linux/init.h>
- #include <linux/gpio.h>
- #include <linux/platform_device.h>
- #include <linux/mfd/intel_msic.h>
- /* the offset for the mapping of global gpio pin to irq */
- #define MSIC_GPIO_IRQ_OFFSET 0x100
- #define MSIC_GPIO_DIR_IN 0
- #define MSIC_GPIO_DIR_OUT BIT(5)
- #define MSIC_GPIO_TRIG_FALL BIT(1)
- #define MSIC_GPIO_TRIG_RISE BIT(2)
- /* masks for msic gpio output GPIOxxxxCTLO registers */
- #define MSIC_GPIO_DIR_MASK BIT(5)
- #define MSIC_GPIO_DRV_MASK BIT(4)
- #define MSIC_GPIO_REN_MASK BIT(3)
- #define MSIC_GPIO_RVAL_MASK (BIT(2) | BIT(1))
- #define MSIC_GPIO_DOUT_MASK BIT(0)
- /* masks for msic gpio input GPIOxxxxCTLI registers */
- #define MSIC_GPIO_GLBYP_MASK BIT(5)
- #define MSIC_GPIO_DBNC_MASK (BIT(4) | BIT(3))
- #define MSIC_GPIO_INTCNT_MASK (BIT(2) | BIT(1))
- #define MSIC_GPIO_DIN_MASK BIT(0)
- #define MSIC_NUM_GPIO 24
- struct msic_gpio {
- struct platform_device *pdev;
- struct mutex buslock;
- struct gpio_chip chip;
- int irq;
- unsigned irq_base;
- unsigned long trig_change_mask;
- unsigned trig_type;
- };
- /*
- * MSIC has 24 gpios, 16 low voltage (1.2-1.8v) and 8 high voltage (3v).
- * Both the high and low voltage gpios are divided in two banks.
- * GPIOs are numbered with GPIO0LV0 as gpio_base in the following order:
- * GPIO0LV0..GPIO0LV7: low voltage, bank 0, gpio_base
- * GPIO1LV0..GPIO1LV7: low voltage, bank 1, gpio_base + 8
- * GPIO0HV0..GPIO0HV3: high voltage, bank 0, gpio_base + 16
- * GPIO1HV0..GPIO1HV3: high voltage, bank 1, gpio_base + 20
- */
- static int msic_gpio_to_ireg(unsigned offset)
- {
- if (offset >= MSIC_NUM_GPIO)
- return -EINVAL;
- if (offset < 8)
- return INTEL_MSIC_GPIO0LV0CTLI - offset;
- if (offset < 16)
- return INTEL_MSIC_GPIO1LV0CTLI - offset + 8;
- if (offset < 20)
- return INTEL_MSIC_GPIO0HV0CTLI - offset + 16;
- return INTEL_MSIC_GPIO1HV0CTLI - offset + 20;
- }
- static int msic_gpio_to_oreg(unsigned offset)
- {
- if (offset >= MSIC_NUM_GPIO)
- return -EINVAL;
- if (offset < 8)
- return INTEL_MSIC_GPIO0LV0CTLO - offset;
- if (offset < 16)
- return INTEL_MSIC_GPIO1LV0CTLO - offset + 8;
- if (offset < 20)
- return INTEL_MSIC_GPIO0HV0CTLO - offset + 16;
- return INTEL_MSIC_GPIO1HV0CTLO - offset + 20;
- }
- static int msic_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
- {
- int reg;
- reg = msic_gpio_to_oreg(offset);
- if (reg < 0)
- return reg;
- return intel_msic_reg_update(reg, MSIC_GPIO_DIR_IN, MSIC_GPIO_DIR_MASK);
- }
- static int msic_gpio_direction_output(struct gpio_chip *chip,
- unsigned offset, int value)
- {
- int reg;
- unsigned mask;
- value = (!!value) | MSIC_GPIO_DIR_OUT;
- mask = MSIC_GPIO_DIR_MASK | MSIC_GPIO_DOUT_MASK;
- reg = msic_gpio_to_oreg(offset);
- if (reg < 0)
- return reg;
- return intel_msic_reg_update(reg, value, mask);
- }
- static int msic_gpio_get(struct gpio_chip *chip, unsigned offset)
- {
- u8 r;
- int ret;
- int reg;
- reg = msic_gpio_to_ireg(offset);
- if (reg < 0)
- return reg;
- ret = intel_msic_reg_read(reg, &r);
- if (ret < 0)
- return ret;
- return r & MSIC_GPIO_DIN_MASK;
- }
- static void msic_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
- {
- int reg;
- reg = msic_gpio_to_oreg(offset);
- if (reg < 0)
- return;
- intel_msic_reg_update(reg, !!value , MSIC_GPIO_DOUT_MASK);
- }
- /*
- * This is called from genirq with mg->buslock locked and
- * irq_desc->lock held. We can not access the scu bus here, so we
- * store the change and update in the bus_sync_unlock() function below
- */
- static int msic_irq_type(struct irq_data *data, unsigned type)
- {
- struct msic_gpio *mg = irq_data_get_irq_chip_data(data);
- u32 gpio = data->irq - mg->irq_base;
- if (gpio >= mg->chip.ngpio)
- return -EINVAL;
- /* mark for which gpio the trigger changed, protected by buslock */
- mg->trig_change_mask |= (1 << gpio);
- mg->trig_type = type;
- return 0;
- }
- static int msic_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
- {
- struct msic_gpio *mg = container_of(chip, struct msic_gpio, chip);
- return mg->irq_base + offset;
- }
- static void msic_bus_lock(struct irq_data *data)
- {
- struct msic_gpio *mg = irq_data_get_irq_chip_data(data);
- mutex_lock(&mg->buslock);
- }
- static void msic_bus_sync_unlock(struct irq_data *data)
- {
- struct msic_gpio *mg = irq_data_get_irq_chip_data(data);
- int offset;
- int reg;
- u8 trig = 0;
- /* We can only get one change at a time as the buslock covers the
- entire transaction. The irq_desc->lock is dropped before we are
- called but that is fine */
- if (mg->trig_change_mask) {
- offset = __ffs(mg->trig_change_mask);
- reg = msic_gpio_to_ireg(offset);
- if (reg < 0)
- goto out;
- if (mg->trig_type & IRQ_TYPE_EDGE_RISING)
- trig |= MSIC_GPIO_TRIG_RISE;
- if (mg->trig_type & IRQ_TYPE_EDGE_FALLING)
- trig |= MSIC_GPIO_TRIG_FALL;
- intel_msic_reg_update(reg, trig, MSIC_GPIO_INTCNT_MASK);
- mg->trig_change_mask = 0;
- }
- out:
- mutex_unlock(&mg->buslock);
- }
- /* Firmware does all the masking and unmasking for us, no masking here. */
- static void msic_irq_unmask(struct irq_data *data) { }
- static void msic_irq_mask(struct irq_data *data) { }
- static struct irq_chip msic_irqchip = {
- .name = "MSIC-GPIO",
- .irq_mask = msic_irq_mask,
- .irq_unmask = msic_irq_unmask,
- .irq_set_type = msic_irq_type,
- .irq_bus_lock = msic_bus_lock,
- .irq_bus_sync_unlock = msic_bus_sync_unlock,
- };
- static void msic_gpio_irq_handler(struct irq_desc *desc)
- {
- struct irq_data *data = irq_desc_get_irq_data(desc);
- struct msic_gpio *mg = irq_data_get_irq_handler_data(data);
- struct irq_chip *chip = irq_data_get_irq_chip(data);
- struct intel_msic *msic = pdev_to_intel_msic(mg->pdev);
- int i;
- int bitnr;
- u8 pin;
- unsigned long pending = 0;
- for (i = 0; i < (mg->chip.ngpio / BITS_PER_BYTE); i++) {
- intel_msic_irq_read(msic, INTEL_MSIC_GPIO0LVIRQ + i, &pin);
- pending = pin;
- if (pending) {
- for_each_set_bit(bitnr, &pending, BITS_PER_BYTE)
- generic_handle_irq(mg->irq_base +
- (i * BITS_PER_BYTE) + bitnr);
- }
- }
- chip->irq_eoi(data);
- }
- static int platform_msic_gpio_probe(struct platform_device *pdev)
- {
- struct device *dev = &pdev->dev;
- struct intel_msic_gpio_pdata *pdata = dev_get_platdata(dev);
- struct msic_gpio *mg;
- int irq = platform_get_irq(pdev, 0);
- int retval;
- int i;
- if (irq < 0) {
- dev_err(dev, "no IRQ line: %d\n", irq);
- return irq;
- }
- if (!pdata || !pdata->gpio_base) {
- dev_err(dev, "incorrect or missing platform data\n");
- return -EINVAL;
- }
- mg = kzalloc(sizeof(*mg), GFP_KERNEL);
- if (!mg)
- return -ENOMEM;
- dev_set_drvdata(dev, mg);
- mg->pdev = pdev;
- mg->irq = irq;
- mg->irq_base = pdata->gpio_base + MSIC_GPIO_IRQ_OFFSET;
- mg->chip.label = "msic_gpio";
- mg->chip.direction_input = msic_gpio_direction_input;
- mg->chip.direction_output = msic_gpio_direction_output;
- mg->chip.get = msic_gpio_get;
- mg->chip.set = msic_gpio_set;
- mg->chip.to_irq = msic_gpio_to_irq;
- mg->chip.base = pdata->gpio_base;
- mg->chip.ngpio = MSIC_NUM_GPIO;
- mg->chip.can_sleep = true;
- mg->chip.dev = dev;
- mutex_init(&mg->buslock);
- retval = gpiochip_add(&mg->chip);
- if (retval) {
- dev_err(dev, "Adding MSIC gpio chip failed\n");
- goto err;
- }
- for (i = 0; i < mg->chip.ngpio; i++) {
- irq_set_chip_data(i + mg->irq_base, mg);
- irq_set_chip_and_handler(i + mg->irq_base,
- &msic_irqchip,
- handle_simple_irq);
- }
- irq_set_chained_handler_and_data(mg->irq, msic_gpio_irq_handler, mg);
- return 0;
- err:
- kfree(mg);
- return retval;
- }
- static struct platform_driver platform_msic_gpio_driver = {
- .driver = {
- .name = "msic_gpio",
- },
- .probe = platform_msic_gpio_probe,
- };
- static int __init platform_msic_gpio_init(void)
- {
- return platform_driver_register(&platform_msic_gpio_driver);
- }
- subsys_initcall(platform_msic_gpio_init);
- MODULE_AUTHOR("Mathias Nyman <mathias.nyman@linux.intel.com>");
- MODULE_DESCRIPTION("Intel Medfield MSIC GPIO driver");
- MODULE_LICENSE("GPL v2");
|