mirror of https://gitee.com/openkylin/linux.git
Pin control fixes for v4.12, take three:
- Make the AMD driver use a regular interrupt rather than a chained one, so the system does not lock up. - Fix a function call error deep inside the STM32 driver. -----BEGIN PGP SIGNATURE----- iQIcBAABAgAGBQJZSQshAAoJEEEQszewGV1zyOMP/iNDNNnLbR3GhrZRA9UwBBqL aBYB6zyg4KOWf5Zey93H4MnXe1S0oI7l2W4aTTHTb+F3z4zjYA65AOGPfL5UcPjl 46xCCgP+tPT3atMV5HdznuP+9dCgbUUjHBtzy0XzhfaRQkJ1XxNU+u82gyuB4JGS ZZLxISFcYHDoIb6bKGFssTr6aPe+A5WgxVbV/GntJT9AUEo9kKOo1s2GdS3yNjPl MHV4f6cxLMrRqxDsrFPG+uFd0YEsIKe4iBMgE4qBy+ZELWr4D8i2owY6EPLtY17q auzlXtFepMGAOMm0EYyQOn2YgKXZyR57sep6cIbeE0f//mgqlvszDT+j9/I7ZPLx cFBEI0C1vjw1M2P3/TKgWBMalgZ5mmIwMTKF9qeuVzbTT/leJtUYO5PuAaFj7E62 bGzx1NEaGqMRoQgxm5kGTgws3TPYzusSq+m+nfY9UQnHdjgkbFh4FBsn54c/PwHM 5woz+ToAAdCp+eA4DuklBUloiZXjSsLwK8tZBSIlEcKdOJYF2R9vjjhijpUVAZIp 8TeQWABxcE3NmxCctBV+UGx1geMPyqXvwiyEvc1QOm2iK0Md97YRE0gWDDXE7ne/ GdEcRCkzGVVl15EtL2u4OgsxejmUdIptelm105eE57k/giGZckUoI9cNpFO5B9/2 mfIJD46IwgtWYwVJwHqk =2zx1 -----END PGP SIGNATURE----- Merge tag 'pinctrl-v4.12-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl Pull more pin control fixes from Linus Walleij: "Some late arriving fixes. I should have sent earlier, just swamped with work as usual. Thomas patch makes AMD systems usable despite firmware bugs so it is fairly important. - Make the AMD driver use a regular interrupt rather than a chained one, so the system does not lock up. - Fix a function call error deep inside the STM32 driver" * tag 'pinctrl-v4.12-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl: pinctrl: stm32: Fix bad function call pinctrl/amd: Use regular interrupt instead of chained
This commit is contained in:
commit
ce879b64a7
|
@ -495,64 +495,54 @@ static struct irq_chip amd_gpio_irqchip = {
|
|||
.flags = IRQCHIP_SKIP_SET_WAKE,
|
||||
};
|
||||
|
||||
static void amd_gpio_irq_handler(struct irq_desc *desc)
|
||||
#define PIN_IRQ_PENDING (BIT(INTERRUPT_STS_OFF) | BIT(WAKE_STS_OFF))
|
||||
|
||||
static irqreturn_t amd_gpio_irq_handler(int irq, void *dev_id)
|
||||
{
|
||||
u32 i;
|
||||
u32 off;
|
||||
u32 reg;
|
||||
u32 pin_reg;
|
||||
u64 reg64;
|
||||
int handled = 0;
|
||||
unsigned int irq;
|
||||
struct amd_gpio *gpio_dev = dev_id;
|
||||
struct gpio_chip *gc = &gpio_dev->gc;
|
||||
irqreturn_t ret = IRQ_NONE;
|
||||
unsigned int i, irqnr;
|
||||
unsigned long flags;
|
||||
struct irq_chip *chip = irq_desc_get_chip(desc);
|
||||
struct gpio_chip *gc = irq_desc_get_handler_data(desc);
|
||||
struct amd_gpio *gpio_dev = gpiochip_get_data(gc);
|
||||
u32 *regs, regval;
|
||||
u64 status, mask;
|
||||
|
||||
chained_irq_enter(chip, desc);
|
||||
/*enable GPIO interrupt again*/
|
||||
/* Read the wake status */
|
||||
raw_spin_lock_irqsave(&gpio_dev->lock, flags);
|
||||
reg = readl(gpio_dev->base + WAKE_INT_STATUS_REG1);
|
||||
reg64 = reg;
|
||||
reg64 = reg64 << 32;
|
||||
|
||||
reg = readl(gpio_dev->base + WAKE_INT_STATUS_REG0);
|
||||
reg64 |= reg;
|
||||
status = readl(gpio_dev->base + WAKE_INT_STATUS_REG1);
|
||||
status <<= 32;
|
||||
status |= readl(gpio_dev->base + WAKE_INT_STATUS_REG0);
|
||||
raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
|
||||
|
||||
/*
|
||||
* first 46 bits indicates interrupt status.
|
||||
* one bit represents four interrupt sources.
|
||||
*/
|
||||
for (off = 0; off < 46 ; off++) {
|
||||
if (reg64 & BIT(off)) {
|
||||
for (i = 0; i < 4; i++) {
|
||||
pin_reg = readl(gpio_dev->base +
|
||||
(off * 4 + i) * 4);
|
||||
if ((pin_reg & BIT(INTERRUPT_STS_OFF)) ||
|
||||
(pin_reg & BIT(WAKE_STS_OFF))) {
|
||||
irq = irq_find_mapping(gc->irqdomain,
|
||||
off * 4 + i);
|
||||
generic_handle_irq(irq);
|
||||
writel(pin_reg,
|
||||
gpio_dev->base
|
||||
+ (off * 4 + i) * 4);
|
||||
handled++;
|
||||
}
|
||||
}
|
||||
/* Bit 0-45 contain the relevant status bits */
|
||||
status &= (1ULL << 46) - 1;
|
||||
regs = gpio_dev->base;
|
||||
for (mask = 1, irqnr = 0; status; mask <<= 1, regs += 4, irqnr += 4) {
|
||||
if (!(status & mask))
|
||||
continue;
|
||||
status &= ~mask;
|
||||
|
||||
/* Each status bit covers four pins */
|
||||
for (i = 0; i < 4; i++) {
|
||||
regval = readl(regs + i);
|
||||
if (!(regval & PIN_IRQ_PENDING))
|
||||
continue;
|
||||
irq = irq_find_mapping(gc->irqdomain, irqnr + i);
|
||||
generic_handle_irq(irq);
|
||||
/* Clear interrupt */
|
||||
writel(regval, regs + i);
|
||||
ret = IRQ_HANDLED;
|
||||
}
|
||||
}
|
||||
|
||||
if (handled == 0)
|
||||
handle_bad_irq(desc);
|
||||
|
||||
/* Signal EOI to the GPIO unit */
|
||||
raw_spin_lock_irqsave(&gpio_dev->lock, flags);
|
||||
reg = readl(gpio_dev->base + WAKE_INT_MASTER_REG);
|
||||
reg |= EOI_MASK;
|
||||
writel(reg, gpio_dev->base + WAKE_INT_MASTER_REG);
|
||||
regval = readl(gpio_dev->base + WAKE_INT_MASTER_REG);
|
||||
regval |= EOI_MASK;
|
||||
writel(regval, gpio_dev->base + WAKE_INT_MASTER_REG);
|
||||
raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
|
||||
|
||||
chained_irq_exit(chip, desc);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int amd_get_groups_count(struct pinctrl_dev *pctldev)
|
||||
|
@ -821,10 +811,11 @@ static int amd_gpio_probe(struct platform_device *pdev)
|
|||
goto out2;
|
||||
}
|
||||
|
||||
gpiochip_set_chained_irqchip(&gpio_dev->gc,
|
||||
&amd_gpio_irqchip,
|
||||
irq_base,
|
||||
amd_gpio_irq_handler);
|
||||
ret = devm_request_irq(&pdev->dev, irq_base, amd_gpio_irq_handler, 0,
|
||||
KBUILD_MODNAME, gpio_dev);
|
||||
if (ret)
|
||||
goto out2;
|
||||
|
||||
platform_set_drvdata(pdev, gpio_dev);
|
||||
|
||||
dev_dbg(&pdev->dev, "amd gpio driver loaded\n");
|
||||
|
|
|
@ -798,7 +798,7 @@ static int stm32_pconf_parse_conf(struct pinctrl_dev *pctldev,
|
|||
break;
|
||||
case PIN_CONFIG_OUTPUT:
|
||||
__stm32_gpio_set(bank, offset, arg);
|
||||
ret = stm32_pmx_gpio_set_direction(pctldev, NULL, pin, false);
|
||||
ret = stm32_pmx_gpio_set_direction(pctldev, range, pin, false);
|
||||
break;
|
||||
default:
|
||||
ret = -EINVAL;
|
||||
|
|
Loading…
Reference in New Issue