mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-12 23:22:21 +00:00
gpio: pl061: use gpiochip data pointer
This makes the driver use the data pointer added to the gpio_chip to store a pointer to the state container instead of relying on container_of(). Cc: Haojian Zhuang <haojian.zhuang@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
510f487137
commit
d81b37fcad
@ -61,7 +61,7 @@ struct pl061_gpio {
|
|||||||
|
|
||||||
static int pl061_direction_input(struct gpio_chip *gc, unsigned offset)
|
static int pl061_direction_input(struct gpio_chip *gc, unsigned offset)
|
||||||
{
|
{
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
unsigned char gpiodir;
|
unsigned char gpiodir;
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ static int pl061_direction_input(struct gpio_chip *gc, unsigned offset)
|
|||||||
static int pl061_direction_output(struct gpio_chip *gc, unsigned offset,
|
static int pl061_direction_output(struct gpio_chip *gc, unsigned offset,
|
||||||
int value)
|
int value)
|
||||||
{
|
{
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
unsigned char gpiodir;
|
unsigned char gpiodir;
|
||||||
|
|
||||||
@ -105,14 +105,14 @@ static int pl061_direction_output(struct gpio_chip *gc, unsigned offset,
|
|||||||
|
|
||||||
static int pl061_get_value(struct gpio_chip *gc, unsigned offset)
|
static int pl061_get_value(struct gpio_chip *gc, unsigned offset)
|
||||||
{
|
{
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
|
|
||||||
return !!readb(chip->base + (BIT(offset + 2)));
|
return !!readb(chip->base + (BIT(offset + 2)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pl061_set_value(struct gpio_chip *gc, unsigned offset, int value)
|
static void pl061_set_value(struct gpio_chip *gc, unsigned offset, int value)
|
||||||
{
|
{
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
|
|
||||||
writeb(!!value << offset, chip->base + (BIT(offset + 2)));
|
writeb(!!value << offset, chip->base + (BIT(offset + 2)));
|
||||||
}
|
}
|
||||||
@ -120,7 +120,7 @@ static void pl061_set_value(struct gpio_chip *gc, unsigned offset, int value)
|
|||||||
static int pl061_irq_type(struct irq_data *d, unsigned trigger)
|
static int pl061_irq_type(struct irq_data *d, unsigned trigger)
|
||||||
{
|
{
|
||||||
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
int offset = irqd_to_hwirq(d);
|
int offset = irqd_to_hwirq(d);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
u8 gpiois, gpioibe, gpioiev;
|
u8 gpiois, gpioibe, gpioiev;
|
||||||
@ -210,7 +210,7 @@ static void pl061_irq_handler(struct irq_desc *desc)
|
|||||||
unsigned long pending;
|
unsigned long pending;
|
||||||
int offset;
|
int offset;
|
||||||
struct gpio_chip *gc = irq_desc_get_handler_data(desc);
|
struct gpio_chip *gc = irq_desc_get_handler_data(desc);
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
struct irq_chip *irqchip = irq_desc_get_chip(desc);
|
struct irq_chip *irqchip = irq_desc_get_chip(desc);
|
||||||
|
|
||||||
chained_irq_enter(irqchip, desc);
|
chained_irq_enter(irqchip, desc);
|
||||||
@ -228,7 +228,7 @@ static void pl061_irq_handler(struct irq_desc *desc)
|
|||||||
static void pl061_irq_mask(struct irq_data *d)
|
static void pl061_irq_mask(struct irq_data *d)
|
||||||
{
|
{
|
||||||
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
|
u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
|
||||||
u8 gpioie;
|
u8 gpioie;
|
||||||
|
|
||||||
@ -241,7 +241,7 @@ static void pl061_irq_mask(struct irq_data *d)
|
|||||||
static void pl061_irq_unmask(struct irq_data *d)
|
static void pl061_irq_unmask(struct irq_data *d)
|
||||||
{
|
{
|
||||||
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
|
u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
|
||||||
u8 gpioie;
|
u8 gpioie;
|
||||||
|
|
||||||
@ -262,7 +262,7 @@ static void pl061_irq_unmask(struct irq_data *d)
|
|||||||
static void pl061_irq_ack(struct irq_data *d)
|
static void pl061_irq_ack(struct irq_data *d)
|
||||||
{
|
{
|
||||||
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
|
||||||
struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
|
struct pl061_gpio *chip = gpiochip_get_data(gc);
|
||||||
u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
|
u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
|
||||||
|
|
||||||
spin_lock(&chip->lock);
|
spin_lock(&chip->lock);
|
||||||
@ -328,7 +328,7 @@ static int pl061_probe(struct amba_device *adev, const struct amba_id *id)
|
|||||||
chip->gc.parent = dev;
|
chip->gc.parent = dev;
|
||||||
chip->gc.owner = THIS_MODULE;
|
chip->gc.owner = THIS_MODULE;
|
||||||
|
|
||||||
ret = gpiochip_add(&chip->gc);
|
ret = gpiochip_add_data(&chip->gc, chip);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user