gpiolib: override irq_enable/disable
When using the gpiolib irqchip helpers install irq_enable/disable hooks for the irqchip to ensure that gpiolib knows when the irq is enabled or disabled, allowing drivers to disable the irq and then use it as an output pin, and later switch the direction to input and re-enable the irq. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
4e9439ddac
commit
461c1a7d47
2 changed files with 53 additions and 4 deletions
|
|
@ -144,6 +144,20 @@ struct gpio_irq_chip {
|
|||
* will allocate and map all IRQs during initialization.
|
||||
*/
|
||||
unsigned int first;
|
||||
|
||||
/**
|
||||
* @irq_enable:
|
||||
*
|
||||
* Store old irq_chip irq_enable callback
|
||||
*/
|
||||
void (*irq_enable)(struct irq_data *data);
|
||||
|
||||
/**
|
||||
* @irq_disable:
|
||||
*
|
||||
* Store old irq_chip irq_disable callback
|
||||
*/
|
||||
void (*irq_disable)(struct irq_data *data);
|
||||
};
|
||||
|
||||
static inline struct gpio_irq_chip *to_gpio_irq_chip(struct irq_chip *chip)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue