cregit-Linux how code gets into the kernel

Release 4.7 drivers/gpio/gpio-crystalcove.c

Directory: drivers/gpio
/*
 * gpio-crystalcove.c - Intel Crystal Cove GPIO Driver
 *
 * Copyright (C) 2012, 2014 Intel Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that 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.
 *
 * Author: Yang, Bin <bin.yang@intel.com>
 */

#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/gpio.h>
#include <linux/seq_file.h>
#include <linux/bitops.h>
#include <linux/regmap.h>
#include <linux/mfd/intel_soc_pmic.h>


#define CRYSTALCOVE_GPIO_NUM	16

#define CRYSTALCOVE_VGPIO_NUM	95


#define UPDATE_IRQ_TYPE		BIT(0)

#define UPDATE_IRQ_MASK		BIT(1)


#define GPIO0IRQ		0x0b

#define GPIO1IRQ		0x0c

#define MGPIO0IRQS0		0x19

#define MGPIO1IRQS0		0x1a

#define MGPIO0IRQSX		0x1b

#define MGPIO1IRQSX		0x1c

#define GPIO0P0CTLO		0x2b

#define GPIO0P0CTLI		0x33

#define GPIO1P0CTLO		0x3b

#define GPIO1P0CTLI		0x43

#define GPIOPANELCTL		0x52


#define CTLI_INTCNT_DIS		(0)

#define CTLI_INTCNT_NE		(1 << 1)

#define CTLI_INTCNT_PE		(2 << 1)

#define CTLI_INTCNT_BE		(3 << 1)


#define CTLO_DIR_IN		(0)

#define CTLO_DIR_OUT		(1 << 5)


#define CTLO_DRV_CMOS		(0)

#define CTLO_DRV_OD		(1 << 4)


#define CTLO_DRV_REN		(1 << 3)


#define CTLO_RVAL_2KDW		(0)

#define CTLO_RVAL_2KUP		(1 << 1)

#define CTLO_RVAL_50KDW		(2 << 1)

#define CTLO_RVAL_50KUP		(3 << 1)


#define CTLO_INPUT_SET	(CTLO_DRV_CMOS | CTLO_DRV_REN | CTLO_RVAL_2KUP)

#define CTLO_OUTPUT_SET	(CTLO_DIR_OUT | CTLO_INPUT_SET)


enum ctrl_register {
	
CTRL_IN,
	
CTRL_OUT,
};

/**
 * struct crystalcove_gpio - Crystal Cove GPIO controller
 * @buslock: for bus lock/sync and unlock.
 * @chip: the abstract gpio_chip structure.
 * @regmap: the regmap from the parent device.
 * @update: pending IRQ setting update, to be written to the chip upon unlock.
 * @intcnt_value: the Interrupt Detect value to be written.
 * @set_irq_mask: true if the IRQ mask needs to be set, false to clear.
 */

struct crystalcove_gpio {
	
struct mutex buslock; /* irq_bus_lock */
	
struct gpio_chip chip;
	
struct regmap *regmap;
	
int update;
	
int intcnt_value;
	
bool set_irq_mask;
};


static inline int to_reg(int gpio, enum ctrl_register reg_type) { int reg; if (gpio == 94) return GPIOPANELCTL; if (reg_type == CTRL_IN) { if (gpio < 8) reg = GPIO0P0CTLI; else reg = GPIO1P0CTLI; } else { if (gpio < 8) reg = GPIO0P0CTLO; else reg = GPIO1P0CTLO; } return reg + gpio % 8; }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu6587.84%150.00%
shobhit kumarshobhit kumar912.16%150.00%
Total74100.00%2100.00%


static void crystalcove_update_irq_mask(struct crystalcove_gpio *cg, int gpio) { u8 mirqs0 = gpio < 8 ? MGPIO0IRQS0 : MGPIO1IRQS0; int mask = BIT(gpio % 8); if (cg->set_irq_mask) regmap_update_bits(cg->regmap, mirqs0, mask, mask); else regmap_update_bits(cg->regmap, mirqs0, mask, 0); }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu68100.00%1100.00%
Total68100.00%1100.00%


static void crystalcove_update_irq_ctrl(struct crystalcove_gpio *cg, int gpio) { int reg = to_reg(gpio, CTRL_IN); regmap_update_bits(cg->regmap, reg, CTLI_INTCNT_BE, cg->intcnt_value); }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu39100.00%1100.00%
Total39100.00%1100.00%


static int crystalcove_gpio_dir_in(struct gpio_chip *chip, unsigned gpio) { struct crystalcove_gpio *cg = gpiochip_get_data(chip); if (gpio > CRYSTALCOVE_VGPIO_NUM) return 0; return regmap_write(cg->regmap, to_reg(gpio, CTRL_OUT), CTLO_INPUT_SET); }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu4080.00%133.33%
aaron luaaron lu918.00%133.33%
linus walleijlinus walleij12.00%133.33%
Total50100.00%3100.00%


static int crystalcove_gpio_dir_out(struct gpio_chip *chip, unsigned gpio, int value) { struct crystalcove_gpio *cg = gpiochip_get_data(chip); if (gpio > CRYSTALCOVE_VGPIO_NUM) return 0; return regmap_write(cg->regmap, to_reg(gpio, CTRL_OUT), CTLO_OUTPUT_SET | value); }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu4581.82%133.33%
aaron luaaron lu916.36%133.33%
linus walleijlinus walleij11.82%133.33%
Total55100.00%3100.00%


static int crystalcove_gpio_get(struct gpio_chip *chip, unsigned gpio) { struct crystalcove_gpio *cg = gpiochip_get_data(chip); int ret; unsigned int val; if (gpio > CRYSTALCOVE_VGPIO_NUM) return 0; ret = regmap_read(cg->regmap, to_reg(gpio, CTRL_IN), &val); if (ret) return ret; return val & 0x1; }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu6185.92%133.33%
aaron luaaron lu912.68%133.33%
linus walleijlinus walleij11.41%133.33%
Total71100.00%3100.00%


static void crystalcove_gpio_set(struct gpio_chip *chip, unsigned gpio, int value) { struct crystalcove_gpio *cg = gpiochip_get_data(chip); if (gpio > CRYSTALCOVE_VGPIO_NUM) return; if (value) regmap_update_bits(cg->regmap, to_reg(gpio, CTRL_OUT), 1, 1); else regmap_update_bits(cg->regmap, to_reg(gpio, CTRL_OUT), 1, 0); }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu6789.33%133.33%
aaron luaaron lu79.33%133.33%
linus walleijlinus walleij11.33%133.33%
Total75100.00%3100.00%


static int crystalcove_irq_type(struct irq_data *data, unsigned type) { struct crystalcove_gpio *cg = gpiochip_get_data(irq_data_get_irq_chip_data(data)); switch (type) { case IRQ_TYPE_NONE: cg->intcnt_value = CTLI_INTCNT_DIS; break; case IRQ_TYPE_EDGE_BOTH: cg->intcnt_value = CTLI_INTCNT_BE; break; case IRQ_TYPE_EDGE_RISING: cg->intcnt_value = CTLI_INTCNT_PE; break; case IRQ_TYPE_EDGE_FALLING: cg->intcnt_value = CTLI_INTCNT_NE; break; default: return -EINVAL; } cg->update |= UPDATE_IRQ_TYPE; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu8698.85%150.00%
linus walleijlinus walleij11.15%150.00%
Total87100.00%2100.00%


static void crystalcove_bus_lock(struct irq_data *data) { struct crystalcove_gpio *cg = gpiochip_get_data(irq_data_get_irq_chip_data(data)); mutex_lock(&cg->buslock); }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu3196.88%150.00%
linus walleijlinus walleij13.12%150.00%
Total32100.00%2100.00%


static void crystalcove_bus_sync_unlock(struct irq_data *data) { struct crystalcove_gpio *cg = gpiochip_get_data(irq_data_get_irq_chip_data(data)); int gpio = data->hwirq; if (cg->update & UPDATE_IRQ_TYPE) crystalcove_update_irq_ctrl(cg, gpio); if (cg->update & UPDATE_IRQ_MASK) crystalcove_update_irq_mask(cg, gpio); cg->update = 0; mutex_unlock(&cg->buslock); }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu7498.67%150.00%
linus walleijlinus walleij11.33%150.00%
Total75100.00%2100.00%


static void crystalcove_irq_unmask(struct irq_data *data) { struct crystalcove_gpio *cg = gpiochip_get_data(irq_data_get_irq_chip_data(data)); cg->set_irq_mask = false; cg->update |= UPDATE_IRQ_MASK; }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu3597.22%150.00%
linus walleijlinus walleij12.78%150.00%
Total36100.00%2100.00%


static void crystalcove_irq_mask(struct irq_data *data) { struct crystalcove_gpio *cg = gpiochip_get_data(irq_data_get_irq_chip_data(data)); cg->set_irq_mask = true; cg->update |= UPDATE_IRQ_MASK; }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu3597.22%150.00%
linus walleijlinus walleij12.78%150.00%
Total36100.00%2100.00%

static struct irq_chip crystalcove_irqchip = { .name = "Crystal Cove", .irq_mask = crystalcove_irq_mask, .irq_unmask = crystalcove_irq_unmask, .irq_set_type = crystalcove_irq_type, .irq_bus_lock = crystalcove_bus_lock, .irq_bus_sync_unlock = crystalcove_bus_sync_unlock, .flags = IRQCHIP_SKIP_SET_WAKE, };
static irqreturn_t crystalcove_gpio_irq_handler(int irq, void *data) { struct crystalcove_gpio *cg = data; unsigned int p0, p1; int pending; int gpio; unsigned int virq; if (regmap_read(cg->regmap, GPIO0IRQ, &p0) || regmap_read(cg->regmap, GPIO1IRQ, &p1)) return IRQ_NONE; regmap_write(cg->regmap, GPIO0IRQ, p0); regmap_write(cg->regmap, GPIO1IRQ, p1); pending = p0 | p1 << 8; for (gpio = 0; gpio < CRYSTALCOVE_GPIO_NUM; gpio++) { if (pending & BIT(gpio)) { virq = irq_find_mapping(cg->chip.irqdomain, gpio); handle_nested_irq(virq); } } return IRQ_HANDLED; }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu14098.59%133.33%
aaron luaaron lu21.41%266.67%
Total142100.00%3100.00%


static void crystalcove_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip) { struct crystalcove_gpio *cg = gpiochip_get_data(chip); int gpio, offset; unsigned int ctlo, ctli, mirqs0, mirqsx, irq; for (gpio = 0; gpio < CRYSTALCOVE_GPIO_NUM; gpio++) { regmap_read(cg->regmap, to_reg(gpio, CTRL_OUT), &ctlo); regmap_read(cg->regmap, to_reg(gpio, CTRL_IN), &ctli); regmap_read(cg->regmap, gpio < 8 ? MGPIO0IRQS0 : MGPIO1IRQS0, &mirqs0); regmap_read(cg->regmap, gpio < 8 ? MGPIO0IRQSX : MGPIO1IRQSX, &mirqsx); regmap_read(cg->regmap, gpio < 8 ? GPIO0IRQ : GPIO1IRQ, &irq); offset = gpio % 8; seq_printf(s, " gpio-%-2d %s %s %s %s ctlo=%2x,%s %s %s\n", gpio, ctlo & CTLO_DIR_OUT ? "out" : "in ", ctli & 0x1 ? "hi" : "lo", ctli & CTLI_INTCNT_NE ? "fall" : " ", ctli & CTLI_INTCNT_PE ? "rise" : " ", ctlo, mirqs0 & BIT(offset) ? "s0 mask " : "s0 unmask", mirqsx & BIT(offset) ? "sx mask " : "sx unmask", irq & BIT(offset) ? "pending" : " "); } }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu22699.12%133.33%
aaron luaaron lu10.44%133.33%
linus walleijlinus walleij10.44%133.33%
Total228100.00%3100.00%


static int crystalcove_gpio_probe(struct platform_device *pdev) { int irq = platform_get_irq(pdev, 0); struct crystalcove_gpio *cg; int retval; struct device *dev = pdev->dev.parent; struct intel_soc_pmic *pmic = dev_get_drvdata(dev); if (irq < 0) return irq; cg = devm_kzalloc(&pdev->dev, sizeof(*cg), GFP_KERNEL); if (!cg) return -ENOMEM; platform_set_drvdata(pdev, cg); mutex_init(&cg->buslock); cg->chip.label = KBUILD_MODNAME; cg->chip.direction_input = crystalcove_gpio_dir_in; cg->chip.direction_output = crystalcove_gpio_dir_out; cg->chip.get = crystalcove_gpio_get; cg->chip.set = crystalcove_gpio_set; cg->chip.base = -1; cg->chip.ngpio = CRYSTALCOVE_VGPIO_NUM; cg->chip.can_sleep = true; cg->chip.parent = dev; cg->chip.dbg_show = crystalcove_gpio_dbg_show; cg->regmap = pmic->regmap; retval = devm_gpiochip_add_data(&pdev->dev, &cg->chip, cg); if (retval) { dev_warn(&pdev->dev, "add gpio chip error: %d\n", retval); return retval; } gpiochip_irqchip_add(&cg->chip, &crystalcove_irqchip, 0, handle_simple_irq, IRQ_TYPE_NONE); retval = request_threaded_irq(irq, NULL, crystalcove_gpio_irq_handler, IRQF_ONESHOT, KBUILD_MODNAME, cg); if (retval) { dev_warn(&pdev->dev, "request irq failed: %d\n", retval); return retval; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu27395.45%120.00%
laxman dewanganlaxman dewangan93.15%120.00%
linus walleijlinus walleij31.05%240.00%
aaron luaaron lu10.35%120.00%
Total286100.00%5100.00%


static int crystalcove_gpio_remove(struct platform_device *pdev) { struct crystalcove_gpio *cg = platform_get_drvdata(pdev); int irq = platform_get_irq(pdev, 0); if (irq >= 0) free_irq(irq, cg); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu4697.87%150.00%
linus walleijlinus walleij12.13%150.00%
Total47100.00%2100.00%

static struct platform_driver crystalcove_gpio_driver = { .probe = crystalcove_gpio_probe, .remove = crystalcove_gpio_remove, .driver = { .name = "crystal_cove_gpio", }, }; module_platform_driver(crystalcove_gpio_driver); MODULE_AUTHOR("Yang, Bin <bin.yang@intel.com>"); MODULE_DESCRIPTION("Intel Crystal Cove GPIO Driver"); MODULE_LICENSE("GPL v2");

Overall Contributors

PersonTokensPropCommitsCommitProp
lejun zhulejun zhu158394.68%19.09%
aaron luaaron lu462.75%327.27%
linus walleijlinus walleij140.84%327.27%
shobhit kumarshobhit kumar140.84%19.09%
laxman dewanganlaxman dewangan90.54%19.09%
lee joneslee jones30.18%19.09%
paul gortmakerpaul gortmaker30.18%19.09%
Total1672100.00%11100.00%
Directory: drivers/gpio
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}