mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-26 16:23:57 +00:00
pinctrl: sirf: atlas7: make use of raw_spinlock variants
The sirf atlas7 pinctrl drivers currently implement an irq_chip for handling interrupts; due to how irq_chip handling is done, it's necessary for the irq_chip methods to be invoked from hardirq context, even on a a real-time kernel. Because the spinlock_t type becomes a "sleeping" spinlock w/ RT kernels, it is not suitable to be used with irq_chips. A quick audit of the operations under the lock reveal that they do only minimal, bounded work, and are therefore safe to do under a raw spinlock. Signed-off-by: Julia Cartwright <julia@ni.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
229710fecd
commit
82e529c1c7
1 changed files with 22 additions and 22 deletions
|
@ -352,7 +352,7 @@ struct atlas7_gpio_chip {
|
||||||
void __iomem *reg;
|
void __iomem *reg;
|
||||||
struct clk *clk;
|
struct clk *clk;
|
||||||
int nbank;
|
int nbank;
|
||||||
spinlock_t lock;
|
raw_spinlock_t lock;
|
||||||
struct gpio_chip chip;
|
struct gpio_chip chip;
|
||||||
struct atlas7_gpio_bank banks[0];
|
struct atlas7_gpio_bank banks[0];
|
||||||
};
|
};
|
||||||
|
@ -5650,13 +5650,13 @@ static void atlas7_gpio_irq_ack(struct irq_data *d)
|
||||||
pin_in_bank = d->hwirq - bank->gpio_offset;
|
pin_in_bank = d->hwirq - bank->gpio_offset;
|
||||||
ctrl_reg = ATLAS7_GPIO_CTRL(bank, pin_in_bank);
|
ctrl_reg = ATLAS7_GPIO_CTRL(bank, pin_in_bank);
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
val = readl(ctrl_reg);
|
val = readl(ctrl_reg);
|
||||||
/* clear interrupt status */
|
/* clear interrupt status */
|
||||||
writel(val, ctrl_reg);
|
writel(val, ctrl_reg);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __atlas7_gpio_irq_mask(struct atlas7_gpio_chip *a7gc, int idx)
|
static void __atlas7_gpio_irq_mask(struct atlas7_gpio_chip *a7gc, int idx)
|
||||||
|
@ -5681,11 +5681,11 @@ static void atlas7_gpio_irq_mask(struct irq_data *d)
|
||||||
struct atlas7_gpio_chip *a7gc = gpiochip_get_data(gc);
|
struct atlas7_gpio_chip *a7gc = gpiochip_get_data(gc);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
__atlas7_gpio_irq_mask(a7gc, d->hwirq);
|
__atlas7_gpio_irq_mask(a7gc, d->hwirq);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void atlas7_gpio_irq_unmask(struct irq_data *d)
|
static void atlas7_gpio_irq_unmask(struct irq_data *d)
|
||||||
|
@ -5701,14 +5701,14 @@ static void atlas7_gpio_irq_unmask(struct irq_data *d)
|
||||||
pin_in_bank = d->hwirq - bank->gpio_offset;
|
pin_in_bank = d->hwirq - bank->gpio_offset;
|
||||||
ctrl_reg = ATLAS7_GPIO_CTRL(bank, pin_in_bank);
|
ctrl_reg = ATLAS7_GPIO_CTRL(bank, pin_in_bank);
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
val = readl(ctrl_reg);
|
val = readl(ctrl_reg);
|
||||||
val &= ~ATLAS7_GPIO_CTL_INTR_STATUS_MASK;
|
val &= ~ATLAS7_GPIO_CTL_INTR_STATUS_MASK;
|
||||||
val |= ATLAS7_GPIO_CTL_INTR_EN_MASK;
|
val |= ATLAS7_GPIO_CTL_INTR_EN_MASK;
|
||||||
writel(val, ctrl_reg);
|
writel(val, ctrl_reg);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int atlas7_gpio_irq_type(struct irq_data *d,
|
static int atlas7_gpio_irq_type(struct irq_data *d,
|
||||||
|
@ -5725,7 +5725,7 @@ static int atlas7_gpio_irq_type(struct irq_data *d,
|
||||||
pin_in_bank = d->hwirq - bank->gpio_offset;
|
pin_in_bank = d->hwirq - bank->gpio_offset;
|
||||||
ctrl_reg = ATLAS7_GPIO_CTRL(bank, pin_in_bank);
|
ctrl_reg = ATLAS7_GPIO_CTRL(bank, pin_in_bank);
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
val = readl(ctrl_reg);
|
val = readl(ctrl_reg);
|
||||||
val &= ~(ATLAS7_GPIO_CTL_INTR_STATUS_MASK |
|
val &= ~(ATLAS7_GPIO_CTL_INTR_STATUS_MASK |
|
||||||
|
@ -5768,7 +5768,7 @@ static int atlas7_gpio_irq_type(struct irq_data *d,
|
||||||
|
|
||||||
writel(val, ctrl_reg);
|
writel(val, ctrl_reg);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -5863,7 +5863,7 @@ static int atlas7_gpio_request(struct gpio_chip *chip,
|
||||||
if (pinctrl_request_gpio(chip->base + gpio))
|
if (pinctrl_request_gpio(chip->base + gpio))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* default status:
|
* default status:
|
||||||
|
@ -5872,7 +5872,7 @@ static int atlas7_gpio_request(struct gpio_chip *chip,
|
||||||
__atlas7_gpio_set_input(a7gc, gpio);
|
__atlas7_gpio_set_input(a7gc, gpio);
|
||||||
__atlas7_gpio_irq_mask(a7gc, gpio);
|
__atlas7_gpio_irq_mask(a7gc, gpio);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -5883,12 +5883,12 @@ static void atlas7_gpio_free(struct gpio_chip *chip,
|
||||||
struct atlas7_gpio_chip *a7gc = gpiochip_get_data(chip);
|
struct atlas7_gpio_chip *a7gc = gpiochip_get_data(chip);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
__atlas7_gpio_irq_mask(a7gc, gpio);
|
__atlas7_gpio_irq_mask(a7gc, gpio);
|
||||||
__atlas7_gpio_set_input(a7gc, gpio);
|
__atlas7_gpio_set_input(a7gc, gpio);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
|
|
||||||
pinctrl_free_gpio(chip->base + gpio);
|
pinctrl_free_gpio(chip->base + gpio);
|
||||||
}
|
}
|
||||||
|
@ -5899,11 +5899,11 @@ static int atlas7_gpio_direction_input(struct gpio_chip *chip,
|
||||||
struct atlas7_gpio_chip *a7gc = gpiochip_get_data(chip);
|
struct atlas7_gpio_chip *a7gc = gpiochip_get_data(chip);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
__atlas7_gpio_set_input(a7gc, gpio);
|
__atlas7_gpio_set_input(a7gc, gpio);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -5936,11 +5936,11 @@ static int atlas7_gpio_direction_output(struct gpio_chip *chip,
|
||||||
struct atlas7_gpio_chip *a7gc = gpiochip_get_data(chip);
|
struct atlas7_gpio_chip *a7gc = gpiochip_get_data(chip);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
__atlas7_gpio_set_output(a7gc, gpio, value);
|
__atlas7_gpio_set_output(a7gc, gpio, value);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -5956,11 +5956,11 @@ static int atlas7_gpio_get_value(struct gpio_chip *chip,
|
||||||
bank = atlas7_gpio_to_bank(a7gc, gpio);
|
bank = atlas7_gpio_to_bank(a7gc, gpio);
|
||||||
pin_in_bank = gpio - bank->gpio_offset;
|
pin_in_bank = gpio - bank->gpio_offset;
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
val = readl(ATLAS7_GPIO_CTRL(bank, pin_in_bank));
|
val = readl(ATLAS7_GPIO_CTRL(bank, pin_in_bank));
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
|
|
||||||
return !!(val & ATLAS7_GPIO_CTL_DATAIN_MASK);
|
return !!(val & ATLAS7_GPIO_CTL_DATAIN_MASK);
|
||||||
}
|
}
|
||||||
|
@ -5978,7 +5978,7 @@ static void atlas7_gpio_set_value(struct gpio_chip *chip,
|
||||||
pin_in_bank = gpio - bank->gpio_offset;
|
pin_in_bank = gpio - bank->gpio_offset;
|
||||||
ctrl_reg = ATLAS7_GPIO_CTRL(bank, pin_in_bank);
|
ctrl_reg = ATLAS7_GPIO_CTRL(bank, pin_in_bank);
|
||||||
|
|
||||||
spin_lock_irqsave(&a7gc->lock, flags);
|
raw_spin_lock_irqsave(&a7gc->lock, flags);
|
||||||
|
|
||||||
ctrl = readl(ctrl_reg);
|
ctrl = readl(ctrl_reg);
|
||||||
if (value)
|
if (value)
|
||||||
|
@ -5987,7 +5987,7 @@ static void atlas7_gpio_set_value(struct gpio_chip *chip,
|
||||||
ctrl &= ~ATLAS7_GPIO_CTL_DATAOUT_MASK;
|
ctrl &= ~ATLAS7_GPIO_CTL_DATAOUT_MASK;
|
||||||
writel(ctrl, ctrl_reg);
|
writel(ctrl, ctrl_reg);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&a7gc->lock, flags);
|
raw_spin_unlock_irqrestore(&a7gc->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct of_device_id atlas7_gpio_ids[] = {
|
static const struct of_device_id atlas7_gpio_ids[] = {
|
||||||
|
@ -6036,7 +6036,7 @@ static int atlas7_gpio_probe(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
a7gc->nbank = nbank;
|
a7gc->nbank = nbank;
|
||||||
spin_lock_init(&a7gc->lock);
|
raw_spin_lock_init(&a7gc->lock);
|
||||||
|
|
||||||
/* Setup GPIO Chip */
|
/* Setup GPIO Chip */
|
||||||
chip = &a7gc->chip;
|
chip = &a7gc->chip;
|
||||||
|
|
Loading…
Add table
Reference in a new issue