10ba19cfcSBin Gao /* 20ba19cfcSBin Gao * Intel Whiskey Cove PMIC GPIO Driver 30ba19cfcSBin Gao * 40ba19cfcSBin Gao * This driver is written based on gpio-crystalcove.c 50ba19cfcSBin Gao * 60ba19cfcSBin Gao * Copyright (C) 2016 Intel Corporation. All rights reserved. 70ba19cfcSBin Gao * 80ba19cfcSBin Gao * This program is free software; you can redistribute it and/or 90ba19cfcSBin Gao * modify it under the terms of the GNU General Public License version 100ba19cfcSBin Gao * 2 as published by the Free Software Foundation. 110ba19cfcSBin Gao * 120ba19cfcSBin Gao * This program is distributed in the hope that it will be useful, 130ba19cfcSBin Gao * but WITHOUT ANY WARRANTY; without even the implied warranty of 140ba19cfcSBin Gao * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 150ba19cfcSBin Gao * GNU General Public License for more details. 160ba19cfcSBin Gao */ 170ba19cfcSBin Gao 180ba19cfcSBin Gao #include <linux/bitops.h> 190ba19cfcSBin Gao #include <linux/gpio/driver.h> 2039684807SAndy Shevchenko #include <linux/interrupt.h> 210ba19cfcSBin Gao #include <linux/mfd/intel_soc_pmic.h> 2239684807SAndy Shevchenko #include <linux/module.h> 230ba19cfcSBin Gao #include <linux/platform_device.h> 240ba19cfcSBin Gao #include <linux/regmap.h> 250ba19cfcSBin Gao #include <linux/seq_file.h> 260ba19cfcSBin Gao 270ba19cfcSBin Gao /* 280ba19cfcSBin Gao * Whiskey Cove PMIC has 13 physical GPIO pins divided into 3 banks: 290ba19cfcSBin Gao * Bank 0: Pin 0 - 6 300ba19cfcSBin Gao * Bank 1: Pin 7 - 10 310ba19cfcSBin Gao * Bank 2: Pin 11 - 12 320ba19cfcSBin Gao * Each pin has one output control register and one input control register. 330ba19cfcSBin Gao */ 340ba19cfcSBin Gao #define BANK0_NR_PINS 7 350ba19cfcSBin Gao #define BANK1_NR_PINS 4 360ba19cfcSBin Gao #define BANK2_NR_PINS 2 370ba19cfcSBin Gao #define WCOVE_GPIO_NUM (BANK0_NR_PINS + BANK1_NR_PINS + BANK2_NR_PINS) 380ba19cfcSBin Gao #define WCOVE_VGPIO_NUM 94 390ba19cfcSBin Gao /* GPIO output control registers (one per pin): 0x4e44 - 0x4e50 */ 400ba19cfcSBin Gao #define GPIO_OUT_CTRL_BASE 0x4e44 410ba19cfcSBin Gao /* GPIO input control registers (one per pin): 0x4e51 - 0x4e5d */ 420ba19cfcSBin Gao #define GPIO_IN_CTRL_BASE 0x4e51 430ba19cfcSBin Gao 440ba19cfcSBin Gao /* 450ba19cfcSBin Gao * GPIO interrupts are organized in two groups: 460ba19cfcSBin Gao * Group 0: Bank 0 pins (Pin 0 - 6) 470ba19cfcSBin Gao * Group 1: Bank 1 and Bank 2 pins (Pin 7 - 12) 480ba19cfcSBin Gao * Each group has two registers (one bit per pin): status and mask. 490ba19cfcSBin Gao */ 500ba19cfcSBin Gao #define GROUP0_NR_IRQS 7 510ba19cfcSBin Gao #define GROUP1_NR_IRQS 6 520ba19cfcSBin Gao #define IRQ_MASK_BASE 0x4e19 530ba19cfcSBin Gao #define IRQ_STATUS_BASE 0x4e0b 54881ebd22SKuppuswamy Sathyanarayanan #define GPIO_IRQ0_MASK GENMASK(6, 0) 55881ebd22SKuppuswamy Sathyanarayanan #define GPIO_IRQ1_MASK GENMASK(5, 0) 560ba19cfcSBin Gao #define UPDATE_IRQ_TYPE BIT(0) 570ba19cfcSBin Gao #define UPDATE_IRQ_MASK BIT(1) 580ba19cfcSBin Gao 590ba19cfcSBin Gao #define CTLI_INTCNT_DIS (0 << 1) 600ba19cfcSBin Gao #define CTLI_INTCNT_NE (1 << 1) 610ba19cfcSBin Gao #define CTLI_INTCNT_PE (2 << 1) 620ba19cfcSBin Gao #define CTLI_INTCNT_BE (3 << 1) 630ba19cfcSBin Gao 640ba19cfcSBin Gao #define CTLO_DIR_IN (0 << 5) 650ba19cfcSBin Gao #define CTLO_DIR_OUT (1 << 5) 660ba19cfcSBin Gao 670ba19cfcSBin Gao #define CTLO_DRV_MASK (1 << 4) 680ba19cfcSBin Gao #define CTLO_DRV_OD (0 << 4) 690ba19cfcSBin Gao #define CTLO_DRV_CMOS (1 << 4) 700ba19cfcSBin Gao 710ba19cfcSBin Gao #define CTLO_DRV_REN (1 << 3) 720ba19cfcSBin Gao 730ba19cfcSBin Gao #define CTLO_RVAL_2KDOWN (0 << 1) 740ba19cfcSBin Gao #define CTLO_RVAL_2KUP (1 << 1) 750ba19cfcSBin Gao #define CTLO_RVAL_50KDOWN (2 << 1) 760ba19cfcSBin Gao #define CTLO_RVAL_50KUP (3 << 1) 770ba19cfcSBin Gao 780ba19cfcSBin Gao #define CTLO_INPUT_SET (CTLO_DRV_CMOS | CTLO_DRV_REN | CTLO_RVAL_2KUP) 790ba19cfcSBin Gao #define CTLO_OUTPUT_SET (CTLO_DIR_OUT | CTLO_INPUT_SET) 800ba19cfcSBin Gao 810ba19cfcSBin Gao enum ctrl_register { 820ba19cfcSBin Gao CTRL_IN, 830ba19cfcSBin Gao CTRL_OUT, 840ba19cfcSBin Gao }; 850ba19cfcSBin Gao 860ba19cfcSBin Gao /* 870ba19cfcSBin Gao * struct wcove_gpio - Whiskey Cove GPIO controller 880ba19cfcSBin Gao * @buslock: for bus lock/sync and unlock. 890ba19cfcSBin Gao * @chip: the abstract gpio_chip structure. 900ba19cfcSBin Gao * @dev: the gpio device 910ba19cfcSBin Gao * @regmap: the regmap from the parent device. 920ba19cfcSBin Gao * @regmap_irq_chip: the regmap of the gpio irq chip. 930ba19cfcSBin Gao * @update: pending IRQ setting update, to be written to the chip upon unlock. 940ba19cfcSBin Gao * @intcnt: the Interrupt Detect value to be written. 950ba19cfcSBin Gao * @set_irq_mask: true if the IRQ mask needs to be set, false to clear. 960ba19cfcSBin Gao */ 970ba19cfcSBin Gao struct wcove_gpio { 980ba19cfcSBin Gao struct mutex buslock; 990ba19cfcSBin Gao struct gpio_chip chip; 1000ba19cfcSBin Gao struct device *dev; 1010ba19cfcSBin Gao struct regmap *regmap; 1020ba19cfcSBin Gao struct regmap_irq_chip_data *regmap_irq_chip; 1030ba19cfcSBin Gao int update; 1040ba19cfcSBin Gao int intcnt; 1050ba19cfcSBin Gao bool set_irq_mask; 1060ba19cfcSBin Gao }; 1070ba19cfcSBin Gao 108282db906SAndy Shevchenko static inline int to_reg(int gpio, enum ctrl_register reg_type) 1090ba19cfcSBin Gao { 1100ba19cfcSBin Gao unsigned int reg; 1110ba19cfcSBin Gao 1123a02dc97SKuppuswamy Sathyanarayanan if (gpio >= WCOVE_GPIO_NUM) 1133a02dc97SKuppuswamy Sathyanarayanan return -EOPNOTSUPP; 1140ba19cfcSBin Gao 1150ba19cfcSBin Gao if (reg_type == CTRL_IN) 1163a02dc97SKuppuswamy Sathyanarayanan reg = GPIO_IN_CTRL_BASE + gpio; 1170ba19cfcSBin Gao else 1183a02dc97SKuppuswamy Sathyanarayanan reg = GPIO_OUT_CTRL_BASE + gpio; 1190ba19cfcSBin Gao 1200ba19cfcSBin Gao return reg; 1210ba19cfcSBin Gao } 1220ba19cfcSBin Gao 1230ba19cfcSBin Gao static void wcove_update_irq_mask(struct wcove_gpio *wg, int gpio) 1240ba19cfcSBin Gao { 1250ba19cfcSBin Gao unsigned int reg, mask; 1260ba19cfcSBin Gao 1270ba19cfcSBin Gao if (gpio < GROUP0_NR_IRQS) { 1280ba19cfcSBin Gao reg = IRQ_MASK_BASE; 1290ba19cfcSBin Gao mask = BIT(gpio % GROUP0_NR_IRQS); 1300ba19cfcSBin Gao } else { 1310ba19cfcSBin Gao reg = IRQ_MASK_BASE + 1; 1320ba19cfcSBin Gao mask = BIT((gpio - GROUP0_NR_IRQS) % GROUP1_NR_IRQS); 1330ba19cfcSBin Gao } 1340ba19cfcSBin Gao 1350ba19cfcSBin Gao if (wg->set_irq_mask) 1360ba19cfcSBin Gao regmap_update_bits(wg->regmap, reg, mask, mask); 1370ba19cfcSBin Gao else 1380ba19cfcSBin Gao regmap_update_bits(wg->regmap, reg, mask, 0); 1390ba19cfcSBin Gao } 1400ba19cfcSBin Gao 1410ba19cfcSBin Gao static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio) 1420ba19cfcSBin Gao { 1433a02dc97SKuppuswamy Sathyanarayanan int reg = to_reg(gpio, CTRL_IN); 1443a02dc97SKuppuswamy Sathyanarayanan 1453a02dc97SKuppuswamy Sathyanarayanan if (reg < 0) 1463a02dc97SKuppuswamy Sathyanarayanan return; 1470ba19cfcSBin Gao 1480ba19cfcSBin Gao regmap_update_bits(wg->regmap, reg, CTLI_INTCNT_BE, wg->intcnt); 1490ba19cfcSBin Gao } 1500ba19cfcSBin Gao 1510ba19cfcSBin Gao static int wcove_gpio_dir_in(struct gpio_chip *chip, unsigned int gpio) 1520ba19cfcSBin Gao { 1530ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 1543a02dc97SKuppuswamy Sathyanarayanan int reg = to_reg(gpio, CTRL_OUT); 1550ba19cfcSBin Gao 1563a02dc97SKuppuswamy Sathyanarayanan if (reg < 0) 1573a02dc97SKuppuswamy Sathyanarayanan return 0; 1583a02dc97SKuppuswamy Sathyanarayanan 1593a02dc97SKuppuswamy Sathyanarayanan return regmap_write(wg->regmap, reg, CTLO_INPUT_SET); 1600ba19cfcSBin Gao } 1610ba19cfcSBin Gao 1620ba19cfcSBin Gao static int wcove_gpio_dir_out(struct gpio_chip *chip, unsigned int gpio, 1630ba19cfcSBin Gao int value) 1640ba19cfcSBin Gao { 1650ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 1663a02dc97SKuppuswamy Sathyanarayanan int reg = to_reg(gpio, CTRL_OUT); 1670ba19cfcSBin Gao 1683a02dc97SKuppuswamy Sathyanarayanan if (reg < 0) 1693a02dc97SKuppuswamy Sathyanarayanan return 0; 1703a02dc97SKuppuswamy Sathyanarayanan 1713a02dc97SKuppuswamy Sathyanarayanan return regmap_write(wg->regmap, reg, CTLO_OUTPUT_SET | value); 1720ba19cfcSBin Gao } 1730ba19cfcSBin Gao 1747d9e59ceSBin Gao static int wcove_gpio_get_direction(struct gpio_chip *chip, unsigned int gpio) 1757d9e59ceSBin Gao { 1767d9e59ceSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 1777d9e59ceSBin Gao unsigned int val; 1783a02dc97SKuppuswamy Sathyanarayanan int ret, reg = to_reg(gpio, CTRL_OUT); 1797d9e59ceSBin Gao 1803a02dc97SKuppuswamy Sathyanarayanan if (reg < 0) 1813a02dc97SKuppuswamy Sathyanarayanan return 0; 1823a02dc97SKuppuswamy Sathyanarayanan 1833a02dc97SKuppuswamy Sathyanarayanan ret = regmap_read(wg->regmap, reg, &val); 1847d9e59ceSBin Gao if (ret) 1857d9e59ceSBin Gao return ret; 1867d9e59ceSBin Gao 1877d9e59ceSBin Gao return !(val & CTLO_DIR_OUT); 1887d9e59ceSBin Gao } 1897d9e59ceSBin Gao 1900ba19cfcSBin Gao static int wcove_gpio_get(struct gpio_chip *chip, unsigned int gpio) 1910ba19cfcSBin Gao { 1920ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 1930ba19cfcSBin Gao unsigned int val; 1943a02dc97SKuppuswamy Sathyanarayanan int ret, reg = to_reg(gpio, CTRL_IN); 1950ba19cfcSBin Gao 1963a02dc97SKuppuswamy Sathyanarayanan if (reg < 0) 1973a02dc97SKuppuswamy Sathyanarayanan return 0; 1983a02dc97SKuppuswamy Sathyanarayanan 1993a02dc97SKuppuswamy Sathyanarayanan ret = regmap_read(wg->regmap, reg, &val); 2000ba19cfcSBin Gao if (ret) 2010ba19cfcSBin Gao return ret; 2020ba19cfcSBin Gao 2030ba19cfcSBin Gao return val & 0x1; 2040ba19cfcSBin Gao } 2050ba19cfcSBin Gao 206*cb19c7f3SAndy Shevchenko static void wcove_gpio_set(struct gpio_chip *chip, unsigned int gpio, int value) 2070ba19cfcSBin Gao { 2080ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 2093a02dc97SKuppuswamy Sathyanarayanan int reg = to_reg(gpio, CTRL_OUT); 2103a02dc97SKuppuswamy Sathyanarayanan 2113a02dc97SKuppuswamy Sathyanarayanan if (reg < 0) 2123a02dc97SKuppuswamy Sathyanarayanan return; 2130ba19cfcSBin Gao 2140ba19cfcSBin Gao if (value) 2153a02dc97SKuppuswamy Sathyanarayanan regmap_update_bits(wg->regmap, reg, 1, 1); 2160ba19cfcSBin Gao else 2173a02dc97SKuppuswamy Sathyanarayanan regmap_update_bits(wg->regmap, reg, 1, 0); 2180ba19cfcSBin Gao } 2190ba19cfcSBin Gao 2202956b5d9SMika Westerberg static int wcove_gpio_set_config(struct gpio_chip *chip, unsigned int gpio, 2212956b5d9SMika Westerberg unsigned long config) 2220ba19cfcSBin Gao { 2230ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 2243a02dc97SKuppuswamy Sathyanarayanan int reg = to_reg(gpio, CTRL_OUT); 2253a02dc97SKuppuswamy Sathyanarayanan 2263a02dc97SKuppuswamy Sathyanarayanan if (reg < 0) 2273a02dc97SKuppuswamy Sathyanarayanan return 0; 2280ba19cfcSBin Gao 2292956b5d9SMika Westerberg switch (pinconf_to_config_param(config)) { 2302956b5d9SMika Westerberg case PIN_CONFIG_DRIVE_OPEN_DRAIN: 2313a02dc97SKuppuswamy Sathyanarayanan return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK, 2323a02dc97SKuppuswamy Sathyanarayanan CTLO_DRV_OD); 2332956b5d9SMika Westerberg case PIN_CONFIG_DRIVE_PUSH_PULL: 2343a02dc97SKuppuswamy Sathyanarayanan return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK, 2353a02dc97SKuppuswamy Sathyanarayanan CTLO_DRV_CMOS); 2360ba19cfcSBin Gao default: 2370ba19cfcSBin Gao break; 2380ba19cfcSBin Gao } 2390ba19cfcSBin Gao 2400ba19cfcSBin Gao return -ENOTSUPP; 2410ba19cfcSBin Gao } 2420ba19cfcSBin Gao 2430ba19cfcSBin Gao static int wcove_irq_type(struct irq_data *data, unsigned int type) 2440ba19cfcSBin Gao { 2450ba19cfcSBin Gao struct gpio_chip *chip = irq_data_get_irq_chip_data(data); 2460ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 2470ba19cfcSBin Gao 2483a02dc97SKuppuswamy Sathyanarayanan if (data->hwirq >= WCOVE_GPIO_NUM) 2493a02dc97SKuppuswamy Sathyanarayanan return 0; 2503a02dc97SKuppuswamy Sathyanarayanan 2510ba19cfcSBin Gao switch (type) { 2520ba19cfcSBin Gao case IRQ_TYPE_NONE: 2530ba19cfcSBin Gao wg->intcnt = CTLI_INTCNT_DIS; 2540ba19cfcSBin Gao break; 2550ba19cfcSBin Gao case IRQ_TYPE_EDGE_BOTH: 2560ba19cfcSBin Gao wg->intcnt = CTLI_INTCNT_BE; 2570ba19cfcSBin Gao break; 2580ba19cfcSBin Gao case IRQ_TYPE_EDGE_RISING: 2590ba19cfcSBin Gao wg->intcnt = CTLI_INTCNT_PE; 2600ba19cfcSBin Gao break; 2610ba19cfcSBin Gao case IRQ_TYPE_EDGE_FALLING: 2620ba19cfcSBin Gao wg->intcnt = CTLI_INTCNT_NE; 2630ba19cfcSBin Gao break; 2640ba19cfcSBin Gao default: 2650ba19cfcSBin Gao return -EINVAL; 2660ba19cfcSBin Gao } 2670ba19cfcSBin Gao 2680ba19cfcSBin Gao wg->update |= UPDATE_IRQ_TYPE; 2690ba19cfcSBin Gao 2700ba19cfcSBin Gao return 0; 2710ba19cfcSBin Gao } 2720ba19cfcSBin Gao 2730ba19cfcSBin Gao static void wcove_bus_lock(struct irq_data *data) 2740ba19cfcSBin Gao { 2750ba19cfcSBin Gao struct gpio_chip *chip = irq_data_get_irq_chip_data(data); 2760ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 2770ba19cfcSBin Gao 2780ba19cfcSBin Gao mutex_lock(&wg->buslock); 2790ba19cfcSBin Gao } 2800ba19cfcSBin Gao 2810ba19cfcSBin Gao static void wcove_bus_sync_unlock(struct irq_data *data) 2820ba19cfcSBin Gao { 2830ba19cfcSBin Gao struct gpio_chip *chip = irq_data_get_irq_chip_data(data); 2840ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 2850ba19cfcSBin Gao int gpio = data->hwirq; 2860ba19cfcSBin Gao 2870ba19cfcSBin Gao if (wg->update & UPDATE_IRQ_TYPE) 2880ba19cfcSBin Gao wcove_update_irq_ctrl(wg, gpio); 2890ba19cfcSBin Gao if (wg->update & UPDATE_IRQ_MASK) 2900ba19cfcSBin Gao wcove_update_irq_mask(wg, gpio); 2910ba19cfcSBin Gao wg->update = 0; 2920ba19cfcSBin Gao 2930ba19cfcSBin Gao mutex_unlock(&wg->buslock); 2940ba19cfcSBin Gao } 2950ba19cfcSBin Gao 2960ba19cfcSBin Gao static void wcove_irq_unmask(struct irq_data *data) 2970ba19cfcSBin Gao { 2980ba19cfcSBin Gao struct gpio_chip *chip = irq_data_get_irq_chip_data(data); 2990ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 3000ba19cfcSBin Gao 3013a02dc97SKuppuswamy Sathyanarayanan if (data->hwirq >= WCOVE_GPIO_NUM) 3023a02dc97SKuppuswamy Sathyanarayanan return; 3033a02dc97SKuppuswamy Sathyanarayanan 3040ba19cfcSBin Gao wg->set_irq_mask = false; 3050ba19cfcSBin Gao wg->update |= UPDATE_IRQ_MASK; 3060ba19cfcSBin Gao } 3070ba19cfcSBin Gao 3080ba19cfcSBin Gao static void wcove_irq_mask(struct irq_data *data) 3090ba19cfcSBin Gao { 3100ba19cfcSBin Gao struct gpio_chip *chip = irq_data_get_irq_chip_data(data); 3110ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 3120ba19cfcSBin Gao 3133a02dc97SKuppuswamy Sathyanarayanan if (data->hwirq >= WCOVE_GPIO_NUM) 3143a02dc97SKuppuswamy Sathyanarayanan return; 3153a02dc97SKuppuswamy Sathyanarayanan 3160ba19cfcSBin Gao wg->set_irq_mask = true; 3170ba19cfcSBin Gao wg->update |= UPDATE_IRQ_MASK; 3180ba19cfcSBin Gao } 3190ba19cfcSBin Gao 3200ba19cfcSBin Gao static struct irq_chip wcove_irqchip = { 3210ba19cfcSBin Gao .name = "Whiskey Cove", 3220ba19cfcSBin Gao .irq_mask = wcove_irq_mask, 3230ba19cfcSBin Gao .irq_unmask = wcove_irq_unmask, 3240ba19cfcSBin Gao .irq_set_type = wcove_irq_type, 3250ba19cfcSBin Gao .irq_bus_lock = wcove_bus_lock, 3260ba19cfcSBin Gao .irq_bus_sync_unlock = wcove_bus_sync_unlock, 3270ba19cfcSBin Gao }; 3280ba19cfcSBin Gao 3290ba19cfcSBin Gao static irqreturn_t wcove_gpio_irq_handler(int irq, void *data) 3300ba19cfcSBin Gao { 3310ba19cfcSBin Gao struct wcove_gpio *wg = (struct wcove_gpio *)data; 3320ba19cfcSBin Gao unsigned int pending, virq, gpio, mask, offset; 3330ba19cfcSBin Gao u8 p[2]; 3340ba19cfcSBin Gao 3350ba19cfcSBin Gao if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) { 3360ba19cfcSBin Gao dev_err(wg->dev, "Failed to read irq status register\n"); 3370ba19cfcSBin Gao return IRQ_NONE; 3380ba19cfcSBin Gao } 3390ba19cfcSBin Gao 340881ebd22SKuppuswamy Sathyanarayanan pending = (p[0] & GPIO_IRQ0_MASK) | ((p[1] & GPIO_IRQ1_MASK) << 7); 3410ba19cfcSBin Gao if (!pending) 3420ba19cfcSBin Gao return IRQ_NONE; 3430ba19cfcSBin Gao 3440ba19cfcSBin Gao /* Iterate until no interrupt is pending */ 3450ba19cfcSBin Gao while (pending) { 3460ba19cfcSBin Gao /* One iteration is for all pending bits */ 3470ba19cfcSBin Gao for_each_set_bit(gpio, (const unsigned long *)&pending, 3487c2d176fSKuppuswamy Sathyanarayanan WCOVE_GPIO_NUM) { 3490ba19cfcSBin Gao offset = (gpio > GROUP0_NR_IRQS) ? 1 : 0; 3500ba19cfcSBin Gao mask = (offset == 1) ? BIT(gpio - GROUP0_NR_IRQS) : 3510ba19cfcSBin Gao BIT(gpio); 352f0fbe7bcSThierry Reding virq = irq_find_mapping(wg->chip.irq.domain, gpio); 3530ba19cfcSBin Gao handle_nested_irq(virq); 3540ba19cfcSBin Gao regmap_update_bits(wg->regmap, IRQ_STATUS_BASE + offset, 3550ba19cfcSBin Gao mask, mask); 3560ba19cfcSBin Gao } 3570ba19cfcSBin Gao 3580ba19cfcSBin Gao /* Next iteration */ 3590ba19cfcSBin Gao if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) { 3600ba19cfcSBin Gao dev_err(wg->dev, "Failed to read irq status\n"); 3610ba19cfcSBin Gao break; 3620ba19cfcSBin Gao } 3630ba19cfcSBin Gao 364881ebd22SKuppuswamy Sathyanarayanan pending = (p[0] & GPIO_IRQ0_MASK) | ((p[1] & GPIO_IRQ1_MASK) << 7); 3650ba19cfcSBin Gao } 3660ba19cfcSBin Gao 3670ba19cfcSBin Gao return IRQ_HANDLED; 3680ba19cfcSBin Gao } 3690ba19cfcSBin Gao 3700ba19cfcSBin Gao static void wcove_gpio_dbg_show(struct seq_file *s, 3710ba19cfcSBin Gao struct gpio_chip *chip) 3720ba19cfcSBin Gao { 3730ba19cfcSBin Gao unsigned int ctlo, ctli, irq_mask, irq_status; 3740ba19cfcSBin Gao struct wcove_gpio *wg = gpiochip_get_data(chip); 3750ba19cfcSBin Gao int gpio, offset, group, ret = 0; 3760ba19cfcSBin Gao 3770ba19cfcSBin Gao for (gpio = 0; gpio < WCOVE_GPIO_NUM; gpio++) { 3780ba19cfcSBin Gao group = gpio < GROUP0_NR_IRQS ? 0 : 1; 3790ba19cfcSBin Gao ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &ctlo); 3800ba19cfcSBin Gao ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &ctli); 3810ba19cfcSBin Gao ret += regmap_read(wg->regmap, IRQ_MASK_BASE + group, 3820ba19cfcSBin Gao &irq_mask); 3830ba19cfcSBin Gao ret += regmap_read(wg->regmap, IRQ_STATUS_BASE + group, 3840ba19cfcSBin Gao &irq_status); 3850ba19cfcSBin Gao if (ret) { 3860ba19cfcSBin Gao pr_err("Failed to read registers: ctrl out/in or irq status/mask\n"); 3870ba19cfcSBin Gao break; 3880ba19cfcSBin Gao } 3890ba19cfcSBin Gao 3900ba19cfcSBin Gao offset = gpio % 8; 3910ba19cfcSBin Gao seq_printf(s, " gpio-%-2d %s %s %s %s ctlo=%2x,%s %s\n", 3920ba19cfcSBin Gao gpio, ctlo & CTLO_DIR_OUT ? "out" : "in ", 3930ba19cfcSBin Gao ctli & 0x1 ? "hi" : "lo", 3940ba19cfcSBin Gao ctli & CTLI_INTCNT_NE ? "fall" : " ", 3950ba19cfcSBin Gao ctli & CTLI_INTCNT_PE ? "rise" : " ", 3960ba19cfcSBin Gao ctlo, 3970ba19cfcSBin Gao irq_mask & BIT(offset) ? "mask " : "unmask", 3980ba19cfcSBin Gao irq_status & BIT(offset) ? "pending" : " "); 3990ba19cfcSBin Gao } 4000ba19cfcSBin Gao } 4010ba19cfcSBin Gao 4020ba19cfcSBin Gao static int wcove_gpio_probe(struct platform_device *pdev) 4030ba19cfcSBin Gao { 4040ba19cfcSBin Gao struct intel_soc_pmic *pmic; 4050ba19cfcSBin Gao struct wcove_gpio *wg; 4060ba19cfcSBin Gao int virq, ret, irq; 4070ba19cfcSBin Gao struct device *dev; 4080ba19cfcSBin Gao 4090ba19cfcSBin Gao /* 4100ba19cfcSBin Gao * This gpio platform device is created by a mfd device (see 4110ba19cfcSBin Gao * drivers/mfd/intel_soc_pmic_bxtwc.c for details). Information 4120ba19cfcSBin Gao * shared by all sub-devices created by the mfd device, the regmap 4130ba19cfcSBin Gao * pointer for instance, is stored as driver data of the mfd device 4140ba19cfcSBin Gao * driver. 4150ba19cfcSBin Gao */ 4160ba19cfcSBin Gao pmic = dev_get_drvdata(pdev->dev.parent); 4170ba19cfcSBin Gao if (!pmic) 4180ba19cfcSBin Gao return -ENODEV; 4190ba19cfcSBin Gao 4200ba19cfcSBin Gao irq = platform_get_irq(pdev, 0); 4210ba19cfcSBin Gao if (irq < 0) 4220ba19cfcSBin Gao return irq; 4230ba19cfcSBin Gao 4240ba19cfcSBin Gao dev = &pdev->dev; 4250ba19cfcSBin Gao 4260ba19cfcSBin Gao wg = devm_kzalloc(dev, sizeof(*wg), GFP_KERNEL); 4270ba19cfcSBin Gao if (!wg) 4280ba19cfcSBin Gao return -ENOMEM; 4290ba19cfcSBin Gao 430a1d28c59SKuppuswamy Sathyanarayanan wg->regmap_irq_chip = pmic->irq_chip_data; 4310ba19cfcSBin Gao 4320ba19cfcSBin Gao platform_set_drvdata(pdev, wg); 4330ba19cfcSBin Gao 4340ba19cfcSBin Gao mutex_init(&wg->buslock); 4350ba19cfcSBin Gao wg->chip.label = KBUILD_MODNAME; 4360ba19cfcSBin Gao wg->chip.direction_input = wcove_gpio_dir_in; 4370ba19cfcSBin Gao wg->chip.direction_output = wcove_gpio_dir_out; 4387d9e59ceSBin Gao wg->chip.get_direction = wcove_gpio_get_direction; 4390ba19cfcSBin Gao wg->chip.get = wcove_gpio_get; 4400ba19cfcSBin Gao wg->chip.set = wcove_gpio_set; 4412956b5d9SMika Westerberg wg->chip.set_config = wcove_gpio_set_config, 4420ba19cfcSBin Gao wg->chip.base = -1; 4430ba19cfcSBin Gao wg->chip.ngpio = WCOVE_VGPIO_NUM; 4440ba19cfcSBin Gao wg->chip.can_sleep = true; 4450ba19cfcSBin Gao wg->chip.parent = pdev->dev.parent; 4460ba19cfcSBin Gao wg->chip.dbg_show = wcove_gpio_dbg_show; 4470ba19cfcSBin Gao wg->dev = dev; 4480ba19cfcSBin Gao wg->regmap = pmic->regmap; 4490ba19cfcSBin Gao 4500ba19cfcSBin Gao ret = devm_gpiochip_add_data(dev, &wg->chip, wg); 4510ba19cfcSBin Gao if (ret) { 4520ba19cfcSBin Gao dev_err(dev, "Failed to add gpiochip: %d\n", ret); 4530ba19cfcSBin Gao return ret; 4540ba19cfcSBin Gao } 4550ba19cfcSBin Gao 456d245b3f9SLinus Walleij ret = gpiochip_irqchip_add_nested(&wg->chip, &wcove_irqchip, 0, 4570ba19cfcSBin Gao handle_simple_irq, IRQ_TYPE_NONE); 4580ba19cfcSBin Gao if (ret) { 4590ba19cfcSBin Gao dev_err(dev, "Failed to add irqchip: %d\n", ret); 4600ba19cfcSBin Gao return ret; 4610ba19cfcSBin Gao } 4620ba19cfcSBin Gao 4630ba19cfcSBin Gao virq = regmap_irq_get_virq(wg->regmap_irq_chip, irq); 4640ba19cfcSBin Gao if (virq < 0) { 4650ba19cfcSBin Gao dev_err(dev, "Failed to get virq by irq %d\n", irq); 4660ba19cfcSBin Gao return virq; 4670ba19cfcSBin Gao } 4680ba19cfcSBin Gao 4690ba19cfcSBin Gao ret = devm_request_threaded_irq(dev, virq, NULL, 4700ba19cfcSBin Gao wcove_gpio_irq_handler, IRQF_ONESHOT, pdev->name, wg); 4710ba19cfcSBin Gao if (ret) { 4720ba19cfcSBin Gao dev_err(dev, "Failed to request irq %d\n", virq); 4730ba19cfcSBin Gao return ret; 4740ba19cfcSBin Gao } 4750ba19cfcSBin Gao 47635ca3f61SLinus Walleij gpiochip_set_nested_irqchip(&wg->chip, &wcove_irqchip, virq); 47735ca3f61SLinus Walleij 478a1d28c59SKuppuswamy Sathyanarayanan /* Enable GPIO0 interrupts */ 479a1d28c59SKuppuswamy Sathyanarayanan ret = regmap_update_bits(wg->regmap, IRQ_MASK_BASE, GPIO_IRQ0_MASK, 480a1d28c59SKuppuswamy Sathyanarayanan 0x00); 481a1d28c59SKuppuswamy Sathyanarayanan if (ret) 482a1d28c59SKuppuswamy Sathyanarayanan return ret; 483a1d28c59SKuppuswamy Sathyanarayanan 484a1d28c59SKuppuswamy Sathyanarayanan /* Enable GPIO1 interrupts */ 485a1d28c59SKuppuswamy Sathyanarayanan ret = regmap_update_bits(wg->regmap, IRQ_MASK_BASE + 1, GPIO_IRQ1_MASK, 486a1d28c59SKuppuswamy Sathyanarayanan 0x00); 487a1d28c59SKuppuswamy Sathyanarayanan if (ret) 488a1d28c59SKuppuswamy Sathyanarayanan return ret; 489a1d28c59SKuppuswamy Sathyanarayanan 4900ba19cfcSBin Gao return 0; 4910ba19cfcSBin Gao } 4920ba19cfcSBin Gao 4930ba19cfcSBin Gao /* 4940ba19cfcSBin Gao * Whiskey Cove PMIC itself is a analog device(but with digital control 4950ba19cfcSBin Gao * interface) providing power management support for other devices in 4960ba19cfcSBin Gao * the accompanied SoC, so we have no .pm for Whiskey Cove GPIO driver. 4970ba19cfcSBin Gao */ 4980ba19cfcSBin Gao static struct platform_driver wcove_gpio_driver = { 4990ba19cfcSBin Gao .driver = { 5000ba19cfcSBin Gao .name = "bxt_wcove_gpio", 5010ba19cfcSBin Gao }, 5020ba19cfcSBin Gao .probe = wcove_gpio_probe, 5030ba19cfcSBin Gao }; 5040ba19cfcSBin Gao 5050ba19cfcSBin Gao module_platform_driver(wcove_gpio_driver); 5060ba19cfcSBin Gao 5070ba19cfcSBin Gao MODULE_AUTHOR("Ajay Thomas <ajay.thomas.david.rajamanickam@intel.com>"); 5080ba19cfcSBin Gao MODULE_AUTHOR("Bin Gao <bin.gao@intel.com>"); 5090ba19cfcSBin Gao MODULE_DESCRIPTION("Intel Whiskey Cove GPIO Driver"); 5100ba19cfcSBin Gao MODULE_LICENSE("GPL v2"); 5110ba19cfcSBin Gao MODULE_ALIAS("platform:bxt_wcove_gpio"); 512