android_kernel_lenovo_1050f/drivers/gpio/gpio-valleyview2.c

926 lines
23 KiB
C

/*
* GPIO driver for Intel Valleyview 2 PCH >
* Copyright (c) 2012-2013, Intel Corporation.
*
* Author: Mathias Nyman <mathias.nyman@linux.intel.com>
* Author: Yang Bin <bin.yang@linux.intel.com>
*
* 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/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/types.h>
#include <linux/bitops.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/gpio.h>
#include <linux/acpi.h>
#include <linux/acpi_gpio.h>
#include <linux/platform_device.h>
#include <linux/seq_file.h>
#include <linux/io.h>
#include <asm/intel_vlv2.h>
#include <linux/pnp.h>
#include "gpiodebug.h"
#define GPIO_PATH_MAX 64
/* memory mapped register offsets */
#define VV_CONF0_REG 0x000
#define VV_CONF1_REG 0x004
#define VV_VAL_REG 0x008
#define VV_DFT_REG 0x00c
#define VV_INT_STAT_REG 0x800
/* VV_CONF0_REG register bits */
#define VV_DIRECT_IRQ BIT(27)
#define VV_TRIG_NEG BIT(26)
#define VV_TRIG_POS BIT(25)
#define VV_TRIG_LVL BIT(24)
#define VV_PIN_MUX 0x07
/* VV_VAL_REG register bits */
#define VV_INPUT_EN BIT(2) /* 0: input enabled (active low)*/
#define VV_OUTPUT_EN BIT(1) /* 0: output enabled (active low)*/
#define VV_LEVEL BIT(0)
#define VV_DIR_MASK (BIT(1) | BIT(2))
#define VV_TRIG_MASK (BIT(26) | BIT(25) | BIT(24))
static DEFINE_SPINLOCK(vlv_reg_access_lock);
/*
* Valleyview gpio controller consist of three separate sub-controllers called
* SCORE, NCORE and SUS. The sub-controllers are identified by their acpi UID.
*
* GPIO numbering is _not_ ordered meaning that gpio # 0 in ACPI namespace does
* _not_ correspond to the first gpio register at controller's gpio base.
* There is no logic or pattern in mapping gpio numbers to registers (pads) so
* each sub-controller needs to have its own mapping table
*/
static unsigned score_gpio_to_pad[VV_NGPIO_SCORE] = {
85, 89, 93, 96, 99, 102, 98, 101, 34, 37,
36, 38, 39, 35, 40, 84, 62, 61, 64, 59,
54, 56, 60, 55, 63, 57, 51, 50, 53, 47,
52, 49, 48, 43, 46, 41, 45, 42, 58, 44,
95, 105, 70, 68, 67, 66, 69, 71, 65, 72,
86, 90, 88, 92, 103, 77, 79, 83, 78, 81,
80, 82, 13, 12, 15, 14, 17, 18, 19, 16,
2, 1, 0, 4, 6, 7, 9, 8, 33, 32,
31, 30, 29, 27, 25, 28, 26, 23, 21, 20,
24, 22, 5, 3, 10, 11, 106, 87, 91, 104,
97, 100,
};
static unsigned ncore_gpio_to_pad[VV_NGPIO_NCORE] = {
19, 18, 17, 20, 21, 22, 24, 25, 23, 16,
14, 15, 12, 26, 27, 1, 4, 8, 11, 0,
3, 6, 10, 13, 2, 5, 9, 7,
};
static unsigned sus_gpio_to_pad[VV_NGPIO_SUS] = {
29, 33, 30, 31, 32, 34, 36, 35, 38, 37,
18, 7, 11, 20, 17, 1, 8, 10, 19, 12,
0, 2, 23, 39, 28, 27, 22, 21, 24, 25,
26, 51, 56, 54, 49, 55, 48, 57, 50, 58,
52, 53, 59, 40,
};
struct gpio_bank_pnp {
char *name;
int gpio_base;
int irq_base;
int ngpio;
unsigned *to_pad;
struct vlv_gpio *vg;
};
static struct gpio_bank_pnp vlv_banks_pnp[] = {
{
.name = "GPO0",
.gpio_base = VV_GPIO_BASE,
.irq_base = VV_GPIO_IRQBASE,
.ngpio = VV_NGPIO_SCORE,
.to_pad = score_gpio_to_pad,
},
{
.name = "GPO1",
.gpio_base = VV_GPIO_BASE + VV_NGPIO_SCORE,
.irq_base = VV_GPIO_IRQBASE + VV_NGPIO_SCORE,
.ngpio = VV_NGPIO_NCORE,
.to_pad = ncore_gpio_to_pad,
},
{
.name = "GPO2",
.gpio_base = VV_GPIO_BASE + VV_NGPIO_SCORE + VV_NGPIO_NCORE,
.irq_base = VV_GPIO_IRQBASE + VV_NGPIO_SCORE + VV_NGPIO_NCORE,
.ngpio = VV_NGPIO_SUS,
.to_pad = sus_gpio_to_pad,
},
};
struct vlv_gpio {
struct gpio_chip chip;
struct pnp_dev *pdev;
spinlock_t lock;
void __iomem *reg_base;
unsigned *gpio_to_pad;
int irq_base;
unsigned *gpio_conf;
struct gpio_debug *debug;
};
static void __iomem *vlv_gpio_reg(struct gpio_chip *chip, unsigned offset,
int reg)
{
struct vlv_gpio *vg = container_of(chip, struct vlv_gpio, chip);
u32 reg_offset;
void __iomem *ptr;
if (reg == VV_INT_STAT_REG)
reg_offset = (offset / 32) * 4;
else
reg_offset = vg->gpio_to_pad[offset] * 16;
ptr = (void __iomem *) (vg->reg_base + reg_offset + reg);
return ptr;
}
static u32 vlv_readl(void __iomem *reg)
{
u32 value;
unsigned long flags;
spin_lock_irqsave(&vlv_reg_access_lock, flags);
value = readl(reg);
spin_unlock_irqrestore(&vlv_reg_access_lock, flags);
return value;
}
static void vlv_writel(u32 value, void __iomem *reg)
{
unsigned long flags;
spin_lock_irqsave(&vlv_reg_access_lock, flags);
writel(value, reg);
/* simple readback to confirm the bus transferring done */
readl(reg);
spin_unlock_irqrestore(&vlv_reg_access_lock, flags);
}
static int vlv_gpio_request(struct gpio_chip *chip, unsigned offset)
{
return 0;
}
static void vlv_gpio_free(struct gpio_chip *chip, unsigned offset)
{
return;
}
void lnw_gpio_set_alt(int gpio, int alt)
{
struct gpio_bank_pnp *bank;
struct vlv_gpio *vg = NULL;
void __iomem *reg;
unsigned long flags;
int value;
u32 offset;
int i;
int nbanks = sizeof(vlv_banks_pnp) / sizeof(struct gpio_bank_pnp);
for (i = 0; i < nbanks; i++) {
bank = vlv_banks_pnp + i;
if (gpio >= bank->gpio_base &&
gpio < (bank->gpio_base + bank->ngpio)) {
vg = bank->vg;
offset = gpio - bank->gpio_base;
break;
}
}
if (!vg) {
pr_info("vlv_gpio: can not find pin %d\n", gpio);
return;
}
reg = vlv_gpio_reg(&vg->chip, offset, VV_CONF0_REG);
spin_lock_irqsave(&vg->lock, flags);
value = vlv_readl(reg) & (~VV_PIN_MUX);
value = value | (alt & VV_PIN_MUX);
vlv_writel(value, reg);
spin_unlock_irqrestore(&vg->lock, flags);
}
EXPORT_SYMBOL_GPL(lnw_gpio_set_alt);
int gpio_get_alt(int gpio)
{
struct gpio_bank_pnp *bank;
struct vlv_gpio *vg = NULL;
void __iomem *reg;
u32 offset;
int value;
int i;
int nbanks = sizeof(vlv_banks_pnp) / sizeof(struct gpio_bank_pnp);
for (i = 0; i < nbanks; i++) {
bank = vlv_banks_pnp + i;
if (gpio >= bank->gpio_base &&
gpio < (bank->gpio_base + bank->ngpio)) {
vg = bank->vg;
offset = gpio - bank->gpio_base;
break;
}
}
if (!vg) {
pr_info("vlv_gpio: can not find pin %d\n", gpio);
return -1;
}
reg = vlv_gpio_reg(&vg->chip, offset, VV_CONF0_REG);
value = vlv_readl(reg) & VV_PIN_MUX;
return value;
}
EXPORT_SYMBOL_GPL(gpio_get_alt);
static void vlv_update_irq_type(struct vlv_gpio *vg, unsigned type, void __iomem *reg)
{
u32 value;
value = vlv_readl(reg);
value &= ~(VV_DIRECT_IRQ | VV_TRIG_POS |
VV_TRIG_NEG | VV_TRIG_LVL);
if (type & IRQ_TYPE_EDGE_BOTH) {
if (type & IRQ_TYPE_EDGE_RISING)
value |= VV_TRIG_POS;
else
value &= ~VV_TRIG_POS;
if (type & IRQ_TYPE_EDGE_FALLING)
value |= VV_TRIG_NEG;
else
value &= ~VV_TRIG_NEG;
}
else if(type & IRQ_TYPE_LEVEL_MASK) {
value |= VV_TRIG_LVL;
if (type & IRQ_TYPE_LEVEL_HIGH)
value |= VV_TRIG_POS;
else
value &= ~VV_TRIG_POS;
if (type & IRQ_TYPE_LEVEL_LOW)
value |= VV_TRIG_NEG;
else
value &= ~VV_TRIG_NEG;
}
vlv_writel(value, reg);
}
static int vlv_irq_type(struct irq_data *d, unsigned type)
{
struct vlv_gpio *vg = irq_data_get_irq_chip_data(d);
u32 offset = d->irq - vg->irq_base;
void __iomem *reg = vlv_gpio_reg(&vg->chip, offset, VV_CONF0_REG);
unsigned long flags;
unsigned *gpio_conf = vg->gpio_conf + offset;
if (offset >= vg->chip.ngpio)
return -EINVAL;
spin_lock_irqsave(&vg->lock, flags);
*gpio_conf = type;
vlv_update_irq_type(vg, type, reg);
if (type & IRQ_TYPE_EDGE_BOTH)
__irq_set_handler_locked(d->irq, handle_edge_irq);
else if (type & IRQ_TYPE_LEVEL_MASK)
__irq_set_handler_locked(d->irq, handle_level_irq);
spin_unlock_irqrestore(&vg->lock, flags);
return 0;
}
static int vlv_gpio_get(struct gpio_chip *chip, unsigned offset)
{
void __iomem *reg = vlv_gpio_reg(chip, offset, VV_VAL_REG);
return vlv_readl(reg) & VV_LEVEL;
}
static void vlv_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
{
struct vlv_gpio *vg = container_of(chip, struct vlv_gpio, chip);
void __iomem *reg = vlv_gpio_reg(chip, offset, VV_VAL_REG);
unsigned long flags;
u32 old_val;
spin_lock_irqsave(&vg->lock, flags);
old_val = vlv_readl(reg);
if (value)
vlv_writel(old_val | VV_LEVEL, reg);
else
vlv_writel(old_val & ~VV_LEVEL, reg);
spin_unlock_irqrestore(&vg->lock, flags);
}
static int vlv_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
{
struct vlv_gpio *vg = container_of(chip, struct vlv_gpio, chip);
void __iomem *reg = vlv_gpio_reg(chip, offset, VV_VAL_REG);
unsigned long flags;
u32 value;
spin_lock_irqsave(&vg->lock, flags);
value = vlv_readl(reg) | VV_DIR_MASK;
value = value & (~VV_INPUT_EN); /* active low */
vlv_writel(value, reg);
spin_unlock_irqrestore(&vg->lock, flags);
return 0;
}
static int vlv_gpio_direction_output(struct gpio_chip *chip,
unsigned gpio, int value)
{
struct vlv_gpio *vg = container_of(chip, struct vlv_gpio, chip);
void __iomem *reg = vlv_gpio_reg(chip, gpio, VV_VAL_REG);
unsigned long flags;
u32 reg_val;
spin_lock_irqsave(&vg->lock, flags);
reg_val = vlv_readl(reg) | (VV_DIR_MASK | !!value);
reg_val &= ~(VV_DIR_MASK | !value);
vlv_writel(reg_val, reg);
spin_unlock_irqrestore(&vg->lock, flags);
return 0;
}
static void vlv_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
{
struct vlv_gpio *vg = container_of(chip, struct vlv_gpio, chip);
int i;
unsigned long flags;
u32 conf0, val, offs;
void __iomem *reg;
u32 base;
u32 pending;
const char *label;
spin_lock_irqsave(&vg->lock, flags);
for (base = 0; base < vg->chip.ngpio; base += 32) {
reg = vlv_gpio_reg(&vg->chip, base, VV_INT_STAT_REG);
pending = vlv_readl(reg);
seq_printf(s, "VV_INT_STAT_REG[%d-%d]: 0x%x\n",
base, base+32, pending);
}
for (i = 0; i < vg->chip.ngpio; i++) {
offs = vg->gpio_to_pad[i] * 16;
conf0 = vlv_readl(vg->reg_base + offs + VV_CONF0_REG);
val = vlv_readl(vg->reg_base + offs + VV_VAL_REG);
label = gpiochip_is_requested(chip, i);
seq_printf(s, " gpio-%-3d %s %s %s pad-%-3d offset:0x%03x "
"mux:%d %s %s %s label:%s\n",
i,
val & VV_INPUT_EN ? " " : "in",
val & VV_OUTPUT_EN ? " " : "out",
val & VV_LEVEL ? "hi" : "lo",
vg->gpio_to_pad[i], offs,
conf0 & 0x7,
conf0 & VV_TRIG_NEG ? "fall" : " ",
conf0 & VV_TRIG_POS ? "rise" : " ",
conf0 & VV_TRIG_LVL ? "lvl" : " ",
label ? label : " ");
}
spin_unlock_irqrestore(&vg->lock, flags);
}
static int vlv_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
{
struct vlv_gpio *vg = container_of(chip, struct vlv_gpio, chip);
return vg->irq_base + offset;
}
static void vlv_gpio_irq_dispatch(struct vlv_gpio *vg)
{
u32 base, pin, mask;
void __iomem *reg;
u32 pending;
struct gpio_debug *debug = vg->debug;
for (base = 0; base < vg->chip.ngpio; base += 32) {
reg = vlv_gpio_reg(&vg->chip, base, VV_INT_STAT_REG);
pending = vlv_readl(reg);
while (pending) {
pin = __ffs(pending);
DEFINE_DEBUG_IRQ_CONUNT_INCREASE(vg->chip.base +
base + pin);
mask = BIT(pin);
vlv_writel(mask, reg);
generic_handle_irq(vg->irq_base + base + pin);
pending = vlv_readl(reg);
}
}
}
static void vlv_gpio_irq_handler(unsigned irq, struct irq_desc *desc)
{
struct irq_data *data = irq_desc_get_irq_data(desc);
struct vlv_gpio *vg = irq_data_get_irq_handler_data(data);
struct irq_chip *chip = irq_data_get_irq_chip(data);
vlv_gpio_irq_dispatch(vg);
chip->irq_eoi(data);
}
static void vlv_irq_unmask(struct irq_data *d)
{
struct vlv_gpio *vg = irq_data_get_irq_chip_data(d);
u32 offset = d->irq - vg->irq_base;
void __iomem *reg = vlv_gpio_reg(&vg->chip, offset, VV_CONF0_REG);
unsigned long flags;
unsigned type, *gpio_conf = vg->gpio_conf;
if (offset >= vg->chip.ngpio)
return;
spin_lock_irqsave(&vg->lock, flags);
type = gpio_conf[offset];
vlv_update_irq_type(vg, type, reg);
spin_unlock_irqrestore(&vg->lock, flags);
}
static void vlv_irq_mask(struct irq_data *d)
{
struct vlv_gpio *vg = irq_data_get_irq_chip_data(d);
u32 offset = d->irq - vg->irq_base;
u32 value;
unsigned long flags;
void __iomem *reg = vlv_gpio_reg(&vg->chip, offset, VV_CONF0_REG);
if (offset >= vg->chip.ngpio)
return;
spin_lock_irqsave(&vg->lock, flags);
value = vlv_readl(reg);
value &= ~(VV_DIRECT_IRQ | VV_TRIG_POS |
VV_TRIG_NEG | VV_TRIG_LVL);
vlv_writel(value, reg);
spin_unlock_irqrestore(&vg->lock, flags);
}
static int vlv_irq_wake(struct irq_data *d, unsigned on)
{
return 0;
}
static void vlv_irq_ack(struct irq_data *d)
{
}
static void vlv_irq_shutdown(struct irq_data *d)
{
vlv_irq_mask(d);
}
static struct irq_chip vlv_irqchip = {
.name = "VLV-GPIO",
.irq_mask = vlv_irq_mask,
.irq_unmask = vlv_irq_unmask,
.irq_set_type = vlv_irq_type,
.irq_set_wake = vlv_irq_wake,
.irq_ack = vlv_irq_ack,
.irq_shutdown = vlv_irq_shutdown,
};
static void vlv_gpio_irq_init_hw(struct vlv_gpio *vg)
{
void __iomem *reg;
u32 base;
for (base = 0; base < vg->chip.ngpio; base += 32) {
reg = vlv_gpio_reg(&vg->chip, base, VV_INT_STAT_REG);
vlv_writel(0xffffffff, reg);
}
}
static char conf_reg_msg[] =
"\nGPIO configuration register:\n"
"\t[ 2: 0]\tpinmux\n"
"\t[ 4: 4]\tidynwk2ken\n"
"\t[ 8: 7]\tpullmode\n"
"\t[10: 9]\tpullstrength\n"
"\t[11:11]\tbypass_flop\n"
"\t[14:13]\tHysteresis control\n"
"\t[15:15]\tHysteresis enable, active low\n"
"\t[16:16]\tfast_clkgate\n"
"\t[17:17]\tslow_clkgate\n"
"\t[18:18]\tfilter_show\n"
"\t[19:19]\tglitch filter enable\n"
"\t[20:20]\tdebounce enable\n"
"\t[23:23]\tstrap val\n"
"\t[24:24]\tset level irq, not edge irq\n"
"\t[25:25]\trising edge, or high level irq\n"
"\t[26:26]\tfalling edge, or low level irq\n"
"\t[27:27]\tdirect_irq_en\n"
"\t[28:28]\t25 ohm compensation of hflvt buffers\n"
"\t[29:29]\tdisable second mask\n"
"\t[30:30]\tconfigure logic 1 when use 1.5v IO, logic 0 when use 3.3v IO\n"
"\t[31:31]\tOpen Drain enable\n";
static char *pinvalue[] = {"low", "high"};
static char *pindirection[] = {"both", "in", "out", "disable"};
static char *irqtype[] = {"irq_none", "edge_rising", "edge_falling",
"edge_both", "level_high", "level_low"};
static char *pinmux[] = {"mux0", "mux1", "mux2", "mux3", "mux4", "mux5",
"mux6", "mux7"};
static char *pullmode[] = {"nopull", "pullup", "pulldown"};
static char *pullstrength[] = {"2k", "10k", "20k", "40k"};
static char *enable[] = {"disable", "enable"};
static int vlv_get_normal(struct gpio_control *control, void *private_data,
unsigned gpio)
{
struct vlv_gpio *vg = private_data;
void __iomem *reg;
u32 offset = gpio - vg->chip.base;
u32 value;
u32 shift = control->shift;
u32 mask = control->mask;
int num;
reg = vlv_gpio_reg(&vg->chip, offset, control->reg);
value = vlv_readl(reg);
num = (value & (mask << shift)) >> shift;
if (num < control->num)
return num;
return -1;
}
static int vlv_set_normal(struct gpio_control *control, void *private_data,
unsigned gpio, unsigned int num)
{
struct vlv_gpio *vg = private_data;
void __iomem *reg;
unsigned long flags;
u32 offset = gpio - vg->chip.base;
u32 value;
u32 shift = control->shift;
u32 mask = control->mask;
reg = vlv_gpio_reg(&vg->chip, offset, control->reg);
spin_lock_irqsave(&vg->lock, flags);
value = vlv_readl(reg);
value &= ~(mask << shift);
value |= (num & mask) << shift;
vlv_writel(value, reg);
spin_unlock_irqrestore(&vg->lock, flags);
return 0;
}
static int vlv_get_irqtype(struct gpio_control *control, void *private_data,
unsigned gpio)
{
struct vlv_gpio *vg = private_data;
void __iomem *reg;
u32 offset = gpio - vg->chip.base;
u32 value;
u32 shift = control->shift;
u32 mask = control->mask;
int num;
reg = vlv_gpio_reg(&vg->chip, offset, control->reg);
value = vlv_readl(reg);
if (value & (1<<control->rshift)) { /* level irq */
value = (value & (mask << shift)) >> shift;
if (value == 0x01)
num = 4;
else if (value == 0x10)
num = 5;
else
num = 0;
} else { /* edge irq or no irqtype */
num = (value & (mask << shift)) >> shift;
}
if (num < control->num)
return num;
return -1;
}
#define VLV_NORMAL_CONTROL(xtype, xinfo, xnum, xreg, xshift, xmask) \
{ .type = xtype, .pininfo = xinfo, .num = xnum, .reg = xreg, \
.shift = xshift, .mask = xmask, .get = vlv_get_normal, \
.set = vlv_set_normal}
#define VLV_IRQTYPE_CONTROL(xtype, xinfo, xnum, xreg, xshift, xmask, xrshift) \
{ .type = xtype, .pininfo = xinfo, .num = xnum, .reg = xreg, \
.shift = xshift, .mask = xmask, .rshift = xrshift, \
.get = vlv_get_irqtype, .set = NULL}
static struct gpio_control vlv_gpio_controls[] = {
VLV_NORMAL_CONTROL(TYPE_PIN_VALUE, pinvalue, 2, VV_VAL_REG, 0, 0x1),
VLV_NORMAL_CONTROL(TYPE_DIRECTION, pindirection, 4, VV_VAL_REG, 1, 0x3),
VLV_IRQTYPE_CONTROL(TYPE_IRQ_TYPE, irqtype, 6, VV_CONF0_REG, 25, 0x3, 24),
VLV_NORMAL_CONTROL(TYPE_PINMUX, pinmux, 8, VV_CONF0_REG, 0, 0x7),
VLV_NORMAL_CONTROL(TYPE_PULLMODE, pullmode, 3, VV_CONF0_REG, 7, 0x3),
VLV_NORMAL_CONTROL(TYPE_PULLSTRENGTH, pullstrength, 4, VV_CONF0_REG, 9, 0x3),
VLV_NORMAL_CONTROL(TYPE_OPEN_DRAIN, enable, 2, VV_CONF0_REG, 31, 0x1),
VLV_NORMAL_CONTROL(TYPE_DEBOUNCE, enable, 2, VV_CONF0_REG, 20, 0x1),
};
static unsigned int vlv_get_conf_reg(struct gpio_debug *debug, unsigned gpio)
{
struct vlv_gpio *vg = debug->private_data;
void __iomem *reg;
u32 offset = gpio - vg->chip.base;
u32 value;
reg = vlv_gpio_reg(&vg->chip, offset, VV_CONF0_REG);
value = vlv_readl(reg);
return value;
}
static void vlv_set_conf_reg(struct gpio_debug *debug, unsigned gpio,
unsigned int value)
{
struct vlv_gpio *vg = debug->private_data;
void __iomem *reg;
u32 offset = gpio - vg->chip.base;
unsigned long flags;
reg = vlv_gpio_reg(&vg->chip, offset, VV_CONF0_REG);
spin_lock_irqsave(&vg->lock, flags);
vlv_writel(value, reg);
spin_unlock_irqrestore(&vg->lock, flags);
}
static char **vlv_get_avl_pininfo(struct gpio_debug *debug, unsigned gpio,
unsigned int type, unsigned *num)
{
struct gpio_control *control;
control = find_gpio_control(vlv_gpio_controls,
ARRAY_SIZE(vlv_gpio_controls), type);
if (control == NULL)
return NULL;
*num = control->num;
return control->pininfo;
}
static char *vlv_get_cul_pininfo(struct gpio_debug *debug, unsigned gpio,
unsigned int type)
{
struct vlv_gpio *vg = debug->private_data;
struct gpio_control *control;
int num;
control = find_gpio_control(vlv_gpio_controls,
ARRAY_SIZE(vlv_gpio_controls), type);
if (control == NULL)
return NULL;
num = control->get(control, vg, gpio);
if (num == -1)
return NULL;
return *(control->pininfo + num);
}
static void vlv_set_pininfo(struct gpio_debug *debug, unsigned gpio,
unsigned int type, const char *info)
{
struct vlv_gpio *vg = debug->private_data;
struct gpio_control *control;
int num;
control = find_gpio_control(vlv_gpio_controls,
ARRAY_SIZE(vlv_gpio_controls), type);
if (control == NULL)
return;
num = find_pininfo_num(control, info);
if (num == -1)
return;
if (control->set)
control->set(control, vg, gpio, num);
}
static int vlv_get_register_msg(char **buf, unsigned long *size)
{
*buf = conf_reg_msg;
*size = strlen(conf_reg_msg);
return 0;
}
static struct gpio_debug_ops vlv_gpio_debug_ops = {
.get_conf_reg = vlv_get_conf_reg,
.set_conf_reg = vlv_set_conf_reg,
.get_avl_pininfo = vlv_get_avl_pininfo,
.get_cul_pininfo = vlv_get_cul_pininfo,
.set_pininfo = vlv_set_pininfo,
.get_register_msg = vlv_get_register_msg,
};
static int
vlv_gpio_pnp_probe(struct pnp_dev *pdev, const struct pnp_device_id *id)
{
int i;
struct vlv_gpio *vg;
struct gpio_chip *gc;
struct resource *mem_rc, *irq_rc;
struct device *dev = &pdev->dev;
struct gpio_bank_pnp *bank;
int ret = 0;
int gpio_base, irq_base;
char path[GPIO_PATH_MAX];
int nbanks = sizeof(vlv_banks_pnp) / sizeof(struct gpio_bank_pnp);
struct gpio_debug *debug;
vg = devm_kzalloc(dev, sizeof(struct vlv_gpio), GFP_KERNEL);
if (!vg) {
dev_err(&pdev->dev, "can't allocate vlv_gpio chip data\n");
return -ENOMEM;
}
vg->pdev = pdev;
for (i = 0; i < nbanks; i++) {
bank = vlv_banks_pnp + i;
if (!strcmp(pdev->name, bank->name)) {
vg->chip.ngpio = bank->ngpio;
vg->gpio_to_pad = bank->to_pad;
bank->vg = vg;
vg->gpio_conf = kzalloc(sizeof(unsigned)*vg->chip.ngpio, GFP_KERNEL);
if (vg->gpio_conf == NULL) {
dev_err(&pdev->dev, "can't allocate gpio_conf data");
kfree(vg);
return -ENOMEM;
}
break;
}
}
if (!bank) {
dev_err(&pdev->dev, "can't find %s\n", pdev->name);
ret = -ENODEV;
goto err;
}
mem_rc = pnp_get_resource(pdev, IORESOURCE_MEM, 0);
if (!mem_rc) {
dev_err(&pdev->dev, "missing MEM resource\n");
ret = -EINVAL;
goto err;
}
irq_rc = pnp_get_resource(pdev, IORESOURCE_IRQ, 0);
if (!irq_rc) {
dev_err(&pdev->dev, "missing IRQ resource\n");
ret = -EINVAL;
goto err;
}
vg->reg_base = devm_request_and_ioremap(dev, mem_rc);
if (vg->reg_base == NULL) {
dev_err(&pdev->dev, "error mapping resource\n");
ret = -EINVAL;
goto err;
}
spin_lock_init(&vg->lock);
gc = &vg->chip;
gc->label = dev_name(&pdev->dev);
gc->owner = THIS_MODULE;
gc->request = vlv_gpio_request;
gc->free = vlv_gpio_free;
gc->direction_input = vlv_gpio_direction_input;
gc->direction_output = vlv_gpio_direction_output;
gc->set_pinmux = lnw_gpio_set_alt;
gc->get_pinmux = gpio_get_alt;
gc->get = vlv_gpio_get;
gc->set = vlv_gpio_set;
gc->dbg_show = vlv_gpio_dbg_show;
gc->base = bank->gpio_base;
gc->can_sleep = 0;
gc->dev = dev;
ret = gpiochip_add(gc);
if (ret) {
dev_err(&pdev->dev, "failed adding vlv-gpio chip\n");
goto err;
}
debug = gpio_debug_alloc();
if (debug) {
debug->chip = gc;
debug->ops = &vlv_gpio_debug_ops;
debug->private_data = vg;
vg->debug = debug;
ret = gpio_debug_register(debug);
if (ret) {
dev_err(&pdev->dev, "gpio_add_debug_debugfs error %d\n",
ret);
gpio_debug_remove(debug);
}
}
vlv_gpio_irq_init_hw(vg);
vg->irq_base = bank->irq_base;
if (irq_rc && irq_rc->start) {
gc->to_irq = vlv_gpio_to_irq;
irq_base = irq_alloc_descs(vg->irq_base, 0, gc->ngpio, 0);
if (vg->irq_base != irq_base)
panic("gpio base irq fail, needs %d, return %d\n",
vg->irq_base, irq_base);
for (i = 0; i < gc->ngpio; i++) {
irq_set_chip_and_handler_name(i + vg->irq_base,
&vlv_irqchip, handle_edge_irq, "gpio");
ret = irq_set_chip_data(i + vg->irq_base, vg);
}
irq_set_handler_data(irq_rc->start, vg);
irq_set_chained_handler(irq_rc->start, vlv_gpio_irq_handler);
}
snprintf(path, sizeof(path), "\\_SB.%s", bank->name);
gpio_base = acpi_get_gpio(path, 0);
if (gpio_base < 0) {
dev_err(&pdev->dev, "Cannot find ACPI GPIO chip %s", path);
gpio_base = bank->gpio_base;
}
dev_info(&pdev->dev, "%s: gpio base %d\n", path, gpio_base);
return 0;
err:
return ret;
}
static const struct pnp_device_id vlv_gpio_pnp_match[] = {
{ "INT33B2", 0 },
{ "INT33FC", 0 },
{ }
};
MODULE_DEVICE_TABLE(pnp, vlv_gpio_pnp_match);
static struct pnp_driver vlv_gpio_pnp_driver = {
.name = "vlv_gpio",
.id_table = vlv_gpio_pnp_match,
.probe = vlv_gpio_pnp_probe,
};
static int __init vlv_gpio_init(void)
{
return pnp_register_driver(&vlv_gpio_pnp_driver);
}
fs_initcall(vlv_gpio_init);