10fbee1dfSLinus Walleij===================== 20fbee1dfSLinus WalleijGPIO Driver Interface 30fbee1dfSLinus Walleij===================== 4778ea833SJonathan Neuschäfer 50fbee1dfSLinus WalleijThis document serves as a guide for writers of GPIO chip drivers. 6778ea833SJonathan Neuschäfer 7778ea833SJonathan NeuschäferEach GPIO controller driver needs to include the following header, which defines 84e29b70dSDaniel W. S. Almeidathe structures used to define a GPIO driver:: 9778ea833SJonathan Neuschäfer 10778ea833SJonathan Neuschäfer #include <linux/gpio/driver.h> 11778ea833SJonathan Neuschäfer 12778ea833SJonathan Neuschäfer 13778ea833SJonathan NeuschäferInternal Representation of GPIOs 14778ea833SJonathan Neuschäfer================================ 15778ea833SJonathan Neuschäfer 160fbee1dfSLinus WalleijA GPIO chip handles one or more GPIO lines. To be considered a GPIO chip, the 170fbee1dfSLinus Walleijlines must conform to the definition: General Purpose Input/Output. If the 180fbee1dfSLinus Walleijline is not general purpose, it is not GPIO and should not be handled by a 190fbee1dfSLinus WalleijGPIO chip. The use case is the indicative: certain lines in a system may be 200fbee1dfSLinus Walleijcalled GPIO but serve a very particular purpose thus not meeting the criteria 210fbee1dfSLinus Walleijof a general purpose I/O. On the other hand a LED driver line may be used as a 220fbee1dfSLinus WalleijGPIO and should therefore still be handled by a GPIO chip driver. 23778ea833SJonathan Neuschäfer 240fbee1dfSLinus WalleijInside a GPIO driver, individual GPIO lines are identified by their hardware 250fbee1dfSLinus Walleijnumber, sometime also referred to as ``offset``, which is a unique number 260fbee1dfSLinus Walleijbetween 0 and n-1, n being the number of GPIOs managed by the chip. 270fbee1dfSLinus Walleij 280fbee1dfSLinus WalleijThe hardware GPIO number should be something intuitive to the hardware, for 290fbee1dfSLinus Walleijexample if a system uses a memory-mapped set of I/O-registers where 32 GPIO 300fbee1dfSLinus Walleijlines are handled by one bit per line in a 32-bit register, it makes sense to 310fbee1dfSLinus Walleijuse hardware offsets 0..31 for these, corresponding to bits 0..31 in the 320fbee1dfSLinus Walleijregister. 330fbee1dfSLinus Walleij 340fbee1dfSLinus WalleijThis number is purely internal: the hardware number of a particular GPIO 350fbee1dfSLinus Walleijline is never made visible outside of the driver. 360fbee1dfSLinus Walleij 370fbee1dfSLinus WalleijOn top of this internal number, each GPIO line also needs to have a global 380fbee1dfSLinus Walleijnumber in the integer GPIO namespace so that it can be used with the legacy GPIO 39778ea833SJonathan Neuschäferinterface. Each chip must thus have a "base" number (which can be automatically 400fbee1dfSLinus Walleijassigned), and for each GPIO line the global number will be (base + hardware 410fbee1dfSLinus Walleijnumber). Although the integer representation is considered deprecated, it still 420fbee1dfSLinus Walleijhas many users and thus needs to be maintained. 43778ea833SJonathan Neuschäfer 440fbee1dfSLinus WalleijSo for example one platform could use global numbers 32-159 for GPIOs, with a 45778ea833SJonathan Neuschäfercontroller defining 128 GPIOs at a "base" of 32 ; while another platform uses 460fbee1dfSLinus Walleijglobal numbers 0..63 with one set of GPIO controllers, 64-79 with another type 470fbee1dfSLinus Walleijof GPIO controller, and on one particular board 80-95 with an FPGA. The legacy 480fbee1dfSLinus Walleijnumbers need not be contiguous; either of those platforms could also use numbers 490fbee1dfSLinus Walleij2000-2063 to identify GPIO lines in a bank of I2C GPIO expanders. 50778ea833SJonathan Neuschäfer 51778ea833SJonathan Neuschäfer 52778ea833SJonathan NeuschäferController Drivers: gpio_chip 53778ea833SJonathan Neuschäfer============================= 54778ea833SJonathan Neuschäfer 55778ea833SJonathan NeuschäferIn the gpiolib framework each GPIO controller is packaged as a "struct 560fbee1dfSLinus Walleijgpio_chip" (see <linux/gpio/driver.h> for its complete definition) with members 570fbee1dfSLinus Walleijcommon to each controller of that type, these should be assigned by the 580fbee1dfSLinus Walleijdriver code: 59778ea833SJonathan Neuschäfer 60778ea833SJonathan Neuschäfer - methods to establish GPIO line direction 61778ea833SJonathan Neuschäfer - methods used to access GPIO line values 62cd495767SJonathan Neuschäfer - method to set electrical configuration for a given GPIO line 63778ea833SJonathan Neuschäfer - method to return the IRQ number associated to a given GPIO line 64778ea833SJonathan Neuschäfer - flag saying whether calls to its methods may sleep 65778ea833SJonathan Neuschäfer - optional line names array to identify lines 660fbee1dfSLinus Walleij - optional debugfs dump method (showing extra state information) 67778ea833SJonathan Neuschäfer - optional base number (will be automatically assigned if omitted) 68778ea833SJonathan Neuschäfer - optional label for diagnostics and GPIO chip mapping using platform data 69778ea833SJonathan Neuschäfer 70778ea833SJonathan NeuschäferThe code implementing a gpio_chip should support multiple instances of the 710fbee1dfSLinus Walleijcontroller, preferably using the driver model. That code will configure each 72d9e5ebacSJeremy Clinegpio_chip and issue gpiochip_add(), gpiochip_add_data(), or 73d9e5ebacSJeremy Clinedevm_gpiochip_add_data(). Removing a GPIO controller should be rare; use 74d9e5ebacSJeremy Clinegpiochip_remove() when it is unavoidable. 75778ea833SJonathan Neuschäfer 76778ea833SJonathan NeuschäferOften a gpio_chip is part of an instance-specific structure with states not 77778ea833SJonathan Neuschäferexposed by the GPIO interfaces, such as addressing, power management, and more. 78778ea833SJonathan NeuschäferChips such as audio codecs will have complex non-GPIO states. 79778ea833SJonathan Neuschäfer 800fbee1dfSLinus WalleijAny debugfs dump method should normally ignore lines which haven't been 810fbee1dfSLinus Walleijrequested. They can use gpiochip_is_requested(), which returns either 820fbee1dfSLinus WalleijNULL or the label associated with that GPIO line when it was requested. 83778ea833SJonathan Neuschäfer 840fbee1dfSLinus WalleijRealtime considerations: the GPIO driver should not use spinlock_t or any 850fbee1dfSLinus Walleijsleepable APIs (like PM runtime) in its gpio_chip implementation (.get/.set 860fbee1dfSLinus Walleijand direction control callbacks) if it is expected to call GPIO APIs from 870fbee1dfSLinus Walleijatomic context on realtime kernels (inside hard IRQ handlers and similar 880fbee1dfSLinus Walleijcontexts). Normally this should not be required. 89778ea833SJonathan Neuschäfer 90778ea833SJonathan Neuschäfer 91778ea833SJonathan NeuschäferGPIO electrical configuration 92778ea833SJonathan Neuschäfer----------------------------- 93778ea833SJonathan Neuschäfer 940fbee1dfSLinus WalleijGPIO lines can be configured for several electrical modes of operation by using 950fbee1dfSLinus Walleijthe .set_config() callback. Currently this API supports setting: 960fbee1dfSLinus Walleij 970fbee1dfSLinus Walleij- Debouncing 980fbee1dfSLinus Walleij- Single-ended modes (open drain/open source) 990fbee1dfSLinus Walleij- Pull up and pull down resistor enablement 1000fbee1dfSLinus Walleij 1010fbee1dfSLinus WalleijThese settings are described below. 102778ea833SJonathan Neuschäfer 103778ea833SJonathan NeuschäferThe .set_config() callback uses the same enumerators and configuration 104778ea833SJonathan Neuschäfersemantics as the generic pin control drivers. This is not a coincidence: it is 105778ea833SJonathan Neuschäferpossible to assign the .set_config() to the function gpiochip_generic_config() 106778ea833SJonathan Neuschäferwhich will result in pinctrl_gpio_set_config() being called and eventually 107778ea833SJonathan Neuschäferending up in the pin control back-end "behind" the GPIO controller, usually 108778ea833SJonathan Neuschäfercloser to the actual pins. This way the pin controller can manage the below 109778ea833SJonathan Neuschäferlisted GPIO configurations. 110778ea833SJonathan Neuschäfer 111778ea833SJonathan NeuschäferIf a pin controller back-end is used, the GPIO controller or hardware 112778ea833SJonathan Neuschäferdescription needs to provide "GPIO ranges" mapping the GPIO line offsets to pin 113778ea833SJonathan Neuschäfernumbers on the pin controller so they can properly cross-reference each other. 114778ea833SJonathan Neuschäfer 115778ea833SJonathan Neuschäfer 1160fbee1dfSLinus WalleijGPIO lines with debounce support 1170fbee1dfSLinus Walleij-------------------------------- 118778ea833SJonathan Neuschäfer 119778ea833SJonathan NeuschäferDebouncing is a configuration set to a pin indicating that it is connected to 120778ea833SJonathan Neuschäfera mechanical switch or button, or similar that may bounce. Bouncing means the 121778ea833SJonathan Neuschäferline is pulled high/low quickly at very short intervals for mechanical 122f9b21cd0STom Schwindlreasons. This can result in the value being unstable or irqs firing repeatedly 123778ea833SJonathan Neuschäferunless the line is debounced. 124778ea833SJonathan Neuschäfer 125778ea833SJonathan NeuschäferDebouncing in practice involves setting up a timer when something happens on 126778ea833SJonathan Neuschäferthe line, wait a little while and then sample the line again, so see if it 127778ea833SJonathan Neuschäferstill has the same value (low or high). This could also be repeated by a clever 128778ea833SJonathan Neuschäferstate machine, waiting for a line to become stable. In either case, it sets 129778ea833SJonathan Neuschäfera certain number of milliseconds for debouncing, or just "on/off" if that time 130778ea833SJonathan Neuschäferis not configurable. 131778ea833SJonathan Neuschäfer 132778ea833SJonathan Neuschäfer 1330fbee1dfSLinus WalleijGPIO lines with open drain/source support 1340fbee1dfSLinus Walleij----------------------------------------- 135778ea833SJonathan Neuschäfer 136778ea833SJonathan NeuschäferOpen drain (CMOS) or open collector (TTL) means the line is not actively driven 137778ea833SJonathan Neuschäferhigh: instead you provide the drain/collector as output, so when the transistor 138778ea833SJonathan Neuschäferis not open, it will present a high-impedance (tristate) to the external rail:: 139778ea833SJonathan Neuschäfer 140778ea833SJonathan Neuschäfer 141778ea833SJonathan Neuschäfer CMOS CONFIGURATION TTL CONFIGURATION 142778ea833SJonathan Neuschäfer 143778ea833SJonathan Neuschäfer ||--- out +--- out 144778ea833SJonathan Neuschäfer in ----|| |/ 145778ea833SJonathan Neuschäfer ||--+ in ----| 146778ea833SJonathan Neuschäfer | |\ 147778ea833SJonathan Neuschäfer GND GND 148778ea833SJonathan Neuschäfer 149778ea833SJonathan NeuschäferThis configuration is normally used as a way to achieve one of two things: 150778ea833SJonathan Neuschäfer 151778ea833SJonathan Neuschäfer- Level-shifting: to reach a logical level higher than that of the silicon 152778ea833SJonathan Neuschäfer where the output resides. 153778ea833SJonathan Neuschäfer 1540fbee1dfSLinus Walleij- Inverse wire-OR on an I/O line, for example a GPIO line, making it possible 155778ea833SJonathan Neuschäfer for any driving stage on the line to drive it low even if any other output 156778ea833SJonathan Neuschäfer to the same line is simultaneously driving it high. A special case of this 157f3463daaSWolfram Sang is driving the SCL and SDA lines of an I2C bus, which is by definition a 158778ea833SJonathan Neuschäfer wire-OR bus. 159778ea833SJonathan Neuschäfer 160778ea833SJonathan NeuschäferBoth use cases require that the line be equipped with a pull-up resistor. This 161778ea833SJonathan Neuschäferresistor will make the line tend to high level unless one of the transistors on 162778ea833SJonathan Neuschäferthe rail actively pulls it down. 163778ea833SJonathan Neuschäfer 164778ea833SJonathan NeuschäferThe level on the line will go as high as the VDD on the pull-up resistor, which 165cd495767SJonathan Neuschäfermay be higher than the level supported by the transistor, achieving a 166778ea833SJonathan Neuschäferlevel-shift to the higher VDD. 167778ea833SJonathan Neuschäfer 168778ea833SJonathan NeuschäferIntegrated electronics often have an output driver stage in the form of a CMOS 169778ea833SJonathan Neuschäfer"totem-pole" with one N-MOS and one P-MOS transistor where one of them drives 170778ea833SJonathan Neuschäferthe line high and one of them drives the line low. This is called a push-pull 171778ea833SJonathan Neuschäferoutput. The "totem-pole" looks like so:: 172778ea833SJonathan Neuschäfer 173778ea833SJonathan Neuschäfer VDD 174778ea833SJonathan Neuschäfer | 175778ea833SJonathan Neuschäfer OD ||--+ 176778ea833SJonathan Neuschäfer +--/ ---o|| P-MOS-FET 177778ea833SJonathan Neuschäfer | ||--+ 178778ea833SJonathan Neuschäfer IN --+ +----- out 179778ea833SJonathan Neuschäfer | ||--+ 180778ea833SJonathan Neuschäfer +--/ ----|| N-MOS-FET 181778ea833SJonathan Neuschäfer OS ||--+ 182778ea833SJonathan Neuschäfer | 183778ea833SJonathan Neuschäfer GND 184778ea833SJonathan Neuschäfer 185778ea833SJonathan NeuschäferThe desired output signal (e.g. coming directly from some GPIO output register) 186778ea833SJonathan Neuschäferarrives at IN. The switches named "OD" and "OS" are normally closed, creating 187778ea833SJonathan Neuschäfera push-pull circuit. 188778ea833SJonathan Neuschäfer 189778ea833SJonathan NeuschäferConsider the little "switches" named "OD" and "OS" that enable/disable the 190778ea833SJonathan NeuschäferP-MOS or N-MOS transistor right after the split of the input. As you can see, 191778ea833SJonathan Neuschäfereither transistor will go totally numb if this switch is open. The totem-pole 192778ea833SJonathan Neuschäferis then halved and give high impedance instead of actively driving the line 193778ea833SJonathan Neuschäferhigh or low respectively. That is usually how software-controlled open 194778ea833SJonathan Neuschäferdrain/source works. 195778ea833SJonathan Neuschäfer 196778ea833SJonathan NeuschäferSome GPIO hardware come in open drain / open source configuration. Some are 197778ea833SJonathan Neuschäferhard-wired lines that will only support open drain or open source no matter 198778ea833SJonathan Neuschäferwhat: there is only one transistor there. Some are software-configurable: 199778ea833SJonathan Neuschäferby flipping a bit in a register the output can be configured as open drain 200778ea833SJonathan Neuschäferor open source, in practice by flicking open the switches labeled "OD" and "OS" 201778ea833SJonathan Neuschäferin the drawing above. 202778ea833SJonathan Neuschäfer 203778ea833SJonathan NeuschäferBy disabling the P-MOS transistor, the output can be driven between GND and 204778ea833SJonathan Neuschäferhigh impedance (open drain), and by disabling the N-MOS transistor, the output 205778ea833SJonathan Neuschäfercan be driven between VDD and high impedance (open source). In the first case, 206778ea833SJonathan Neuschäfera pull-up resistor is needed on the outgoing rail to complete the circuit, and 207778ea833SJonathan Neuschäferin the second case, a pull-down resistor is needed on the rail. 208778ea833SJonathan Neuschäfer 209778ea833SJonathan NeuschäferHardware that supports open drain or open source or both, can implement a 210778ea833SJonathan Neuschäferspecial callback in the gpio_chip: .set_config() that takes a generic 211778ea833SJonathan Neuschäferpinconf packed value telling whether to configure the line as open drain, 212778ea833SJonathan Neuschäferopen source or push-pull. This will happen in response to the 213778ea833SJonathan NeuschäferGPIO_OPEN_DRAIN or GPIO_OPEN_SOURCE flag set in the machine file, or coming 214778ea833SJonathan Neuschäferfrom other hardware descriptions. 215778ea833SJonathan Neuschäfer 216778ea833SJonathan NeuschäferIf this state can not be configured in hardware, i.e. if the GPIO hardware does 217778ea833SJonathan Neuschäfernot support open drain/open source in hardware, the GPIO library will instead 218778ea833SJonathan Neuschäferuse a trick: when a line is set as output, if the line is flagged as open 219778ea833SJonathan Neuschäferdrain, and the IN output value is low, it will be driven low as usual. But 220778ea833SJonathan Neuschäferif the IN output value is set to high, it will instead *NOT* be driven high, 221*5b3b3e35SAndy Shevchenkoinstead it will be switched to input, as input mode is an equivalent to 222*5b3b3e35SAndy Shevchenkohigh impedance, thus achieving an "open drain emulation" of sorts: electrically 223*5b3b3e35SAndy Shevchenkothe behaviour will be identical, with the exception of possible hardware glitches 224*5b3b3e35SAndy Shevchenkowhen switching the mode of the line. 225778ea833SJonathan Neuschäfer 226778ea833SJonathan NeuschäferFor open source configuration the same principle is used, just that instead 227778ea833SJonathan Neuschäferof actively driving the line low, it is set to input. 228778ea833SJonathan Neuschäfer 229778ea833SJonathan Neuschäfer 2300fbee1dfSLinus WalleijGPIO lines with pull up/down resistor support 2310fbee1dfSLinus Walleij--------------------------------------------- 2320fbee1dfSLinus Walleij 2330fbee1dfSLinus WalleijA GPIO line can support pull-up/down using the .set_config() callback. This 2340fbee1dfSLinus Walleijmeans that a pull up or pull-down resistor is available on the output of the 2350fbee1dfSLinus WalleijGPIO line, and this resistor is software controlled. 2360fbee1dfSLinus Walleij 2370fbee1dfSLinus WalleijIn discrete designs, a pull-up or pull-down resistor is simply soldered on 2384b3d5006SLinus Walleijthe circuit board. This is not something we deal with or model in software. The 2390fbee1dfSLinus Walleijmost you will think about these lines is that they will very likely be 2400fbee1dfSLinus Walleijconfigured as open drain or open source (see the section above). 2410fbee1dfSLinus Walleij 2420fbee1dfSLinus WalleijThe .set_config() callback can only turn pull up or down on and off, and will 2430fbee1dfSLinus Walleijno have any semantic knowledge about the resistance used. It will only say 2440fbee1dfSLinus Walleijswitch a bit in a register enabling or disabling pull-up or pull-down. 2450fbee1dfSLinus Walleij 2460fbee1dfSLinus WalleijIf the GPIO line supports shunting in different resistance values for the 2470fbee1dfSLinus Walleijpull-up or pull-down resistor, the GPIO chip callback .set_config() will not 2480fbee1dfSLinus Walleijsuffice. For these complex use cases, a combined GPIO chip and pin controller 2490fbee1dfSLinus Walleijneed to be implemented, as the pin config interface of a pin controller 2500fbee1dfSLinus Walleijsupports more versatile control over electrical properties and can handle 2510fbee1dfSLinus Walleijdifferent pull-up or pull-down resistance values. 2520fbee1dfSLinus Walleij 2530fbee1dfSLinus Walleij 254778ea833SJonathan NeuschäferGPIO drivers providing IRQs 2550fbee1dfSLinus Walleij=========================== 2560fbee1dfSLinus Walleij 257778ea833SJonathan NeuschäferIt is custom that GPIO drivers (GPIO chips) are also providing interrupts, 258778ea833SJonathan Neuschäfermost often cascaded off a parent interrupt controller, and in some special 259778ea833SJonathan Neuschäfercases the GPIO logic is melded with a SoC's primary interrupt controller. 260778ea833SJonathan Neuschäfer 2610fbee1dfSLinus WalleijThe IRQ portions of the GPIO block are implemented using an irq_chip, using 262fdd61a01SLinus Walleijthe header <linux/irq.h>. So this combined driver is utilizing two sub- 263778ea833SJonathan Neuschäfersystems simultaneously: gpio and irq. 264778ea833SJonathan Neuschäfer 2650fbee1dfSLinus WalleijIt is legal for any IRQ consumer to request an IRQ from any irqchip even if it 2660fbee1dfSLinus Walleijis a combined GPIO+IRQ driver. The basic premise is that gpio_chip and 2670fbee1dfSLinus Walleijirq_chip are orthogonal, and offering their services independent of each 2680fbee1dfSLinus Walleijother. 269778ea833SJonathan Neuschäfer 2700fbee1dfSLinus Walleijgpiod_to_irq() is just a convenience function to figure out the IRQ for a 2710fbee1dfSLinus Walleijcertain GPIO line and should not be relied upon to have been called before 2720fbee1dfSLinus Walleijthe IRQ is used. 2730fbee1dfSLinus Walleij 2740fbee1dfSLinus WalleijAlways prepare the hardware and make it ready for action in respective 2750fbee1dfSLinus Walleijcallbacks from the GPIO and irq_chip APIs. Do not rely on gpiod_to_irq() having 2760fbee1dfSLinus Walleijbeen called first. 2770fbee1dfSLinus Walleij 2780fbee1dfSLinus WalleijWe can divide GPIO irqchips in two broad categories: 2790fbee1dfSLinus Walleij 2800fbee1dfSLinus Walleij- CASCADED INTERRUPT CHIPS: this means that the GPIO chip has one common 2810fbee1dfSLinus Walleij interrupt output line, which is triggered by any enabled GPIO line on that 2820fbee1dfSLinus Walleij chip. The interrupt output line will then be routed to an parent interrupt 2830fbee1dfSLinus Walleij controller one level up, in the most simple case the systems primary 2840fbee1dfSLinus Walleij interrupt controller. This is modeled by an irqchip that will inspect bits 2850fbee1dfSLinus Walleij inside the GPIO controller to figure out which line fired it. The irqchip 2860fbee1dfSLinus Walleij part of the driver needs to inspect registers to figure this out and it 2870fbee1dfSLinus Walleij will likely also need to acknowledge that it is handling the interrupt 2880fbee1dfSLinus Walleij by clearing some bit (sometime implicitly, by just reading a status 2890fbee1dfSLinus Walleij register) and it will often need to set up the configuration such as 2900fbee1dfSLinus Walleij edge sensitivity (rising or falling edge, or high/low level interrupt for 2910fbee1dfSLinus Walleij example). 2920fbee1dfSLinus Walleij 2930fbee1dfSLinus Walleij- HIERARCHICAL INTERRUPT CHIPS: this means that each GPIO line has a dedicated 2940fbee1dfSLinus Walleij irq line to a parent interrupt controller one level up. There is no need 2954b3d5006SLinus Walleij to inquire the GPIO hardware to figure out which line has fired, but it 2964b3d5006SLinus Walleij may still be necessary to acknowledge the interrupt and set up configuration 2974b3d5006SLinus Walleij such as edge sensitivity. 2980fbee1dfSLinus Walleij 2990fbee1dfSLinus WalleijRealtime considerations: a realtime compliant GPIO driver should not use 3000fbee1dfSLinus Walleijspinlock_t or any sleepable APIs (like PM runtime) as part of its irqchip 3010fbee1dfSLinus Walleijimplementation. 3020fbee1dfSLinus Walleij 3034b3d5006SLinus Walleij- spinlock_t should be replaced with raw_spinlock_t.[1] 3040fbee1dfSLinus Walleij- If sleepable APIs have to be used, these can be done from the .irq_bus_lock() 305778ea833SJonathan Neuschäfer and .irq_bus_unlock() callbacks, as these are the only slowpath callbacks 3064b3d5006SLinus Walleij on an irqchip. Create the callbacks if needed.[2] 307778ea833SJonathan Neuschäfer 308778ea833SJonathan Neuschäfer 3090fbee1dfSLinus WalleijCascaded GPIO irqchips 3100fbee1dfSLinus Walleij---------------------- 3110fbee1dfSLinus Walleij 3120fbee1dfSLinus WalleijCascaded GPIO irqchips usually fall in one of three categories: 3130fbee1dfSLinus Walleij 3140fbee1dfSLinus Walleij- CHAINED CASCADED GPIO IRQCHIPS: these are usually the type that is embedded on 315778ea833SJonathan Neuschäfer an SoC. This means that there is a fast IRQ flow handler for the GPIOs that 316778ea833SJonathan Neuschäfer gets called in a chain from the parent IRQ handler, most typically the 317778ea833SJonathan Neuschäfer system interrupt controller. This means that the GPIO irqchip handler will 318778ea833SJonathan Neuschäfer be called immediately from the parent irqchip, while holding the IRQs 319778ea833SJonathan Neuschäfer disabled. The GPIO irqchip will then end up calling something like this 320778ea833SJonathan Neuschäfer sequence in its interrupt handler:: 321778ea833SJonathan Neuschäfer 322778ea833SJonathan Neuschäfer static irqreturn_t foo_gpio_irq(int irq, void *data) 323778ea833SJonathan Neuschäfer chained_irq_enter(...); 324778ea833SJonathan Neuschäfer generic_handle_irq(...); 325778ea833SJonathan Neuschäfer chained_irq_exit(...); 326778ea833SJonathan Neuschäfer 327778ea833SJonathan Neuschäfer Chained GPIO irqchips typically can NOT set the .can_sleep flag on 328778ea833SJonathan Neuschäfer struct gpio_chip, as everything happens directly in the callbacks: no 329778ea833SJonathan Neuschäfer slow bus traffic like I2C can be used. 330778ea833SJonathan Neuschäfer 3310fbee1dfSLinus Walleij Realtime considerations: Note that chained IRQ handlers will not be forced 3320fbee1dfSLinus Walleij threaded on -RT. As a result, spinlock_t or any sleepable APIs (like PM 3330fbee1dfSLinus Walleij runtime) can't be used in a chained IRQ handler. 3340fbee1dfSLinus Walleij 3350fbee1dfSLinus Walleij If required (and if it can't be converted to the nested threaded GPIO irqchip, 3360fbee1dfSLinus Walleij see below) a chained IRQ handler can be converted to generic irq handler and 3370fbee1dfSLinus Walleij this way it will become a threaded IRQ handler on -RT and a hard IRQ handler 3380fbee1dfSLinus Walleij on non-RT (for example, see [3]). 3390fbee1dfSLinus Walleij 3400fbee1dfSLinus Walleij The generic_handle_irq() is expected to be called with IRQ disabled, 341778ea833SJonathan Neuschäfer so the IRQ core will complain if it is called from an IRQ handler which is 3420fbee1dfSLinus Walleij forced to a thread. The "fake?" raw lock can be used to work around this 3430fbee1dfSLinus Walleij problem:: 344778ea833SJonathan Neuschäfer 345778ea833SJonathan Neuschäfer raw_spinlock_t wa_lock; 346778ea833SJonathan Neuschäfer static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank) 347778ea833SJonathan Neuschäfer unsigned long wa_lock_flags; 348778ea833SJonathan Neuschäfer raw_spin_lock_irqsave(&bank->wa_lock, wa_lock_flags); 349778ea833SJonathan Neuschäfer generic_handle_irq(irq_find_mapping(bank->chip.irq.domain, bit)); 350778ea833SJonathan Neuschäfer raw_spin_unlock_irqrestore(&bank->wa_lock, wa_lock_flags); 351778ea833SJonathan Neuschäfer 3520fbee1dfSLinus Walleij- GENERIC CHAINED GPIO IRQCHIPS: these are the same as "CHAINED GPIO irqchips", 353778ea833SJonathan Neuschäfer but chained IRQ handlers are not used. Instead GPIO IRQs dispatching is 354778ea833SJonathan Neuschäfer performed by generic IRQ handler which is configured using request_irq(). 355778ea833SJonathan Neuschäfer The GPIO irqchip will then end up calling something like this sequence in 356778ea833SJonathan Neuschäfer its interrupt handler:: 357778ea833SJonathan Neuschäfer 358778ea833SJonathan Neuschäfer static irqreturn_t gpio_rcar_irq_handler(int irq, void *dev_id) 359778ea833SJonathan Neuschäfer for each detected GPIO IRQ 360778ea833SJonathan Neuschäfer generic_handle_irq(...); 361778ea833SJonathan Neuschäfer 3620fbee1dfSLinus Walleij Realtime considerations: this kind of handlers will be forced threaded on -RT, 3630fbee1dfSLinus Walleij and as result the IRQ core will complain that generic_handle_irq() is called 3644b3d5006SLinus Walleij with IRQ enabled and the same work-around as for "CHAINED GPIO irqchips" can 3650fbee1dfSLinus Walleij be applied. 366778ea833SJonathan Neuschäfer 3670fbee1dfSLinus Walleij- NESTED THREADED GPIO IRQCHIPS: these are off-chip GPIO expanders and any 3680fbee1dfSLinus Walleij other GPIO irqchip residing on the other side of a sleeping bus such as I2C 3690fbee1dfSLinus Walleij or SPI. 3700fbee1dfSLinus Walleij 3710fbee1dfSLinus Walleij Of course such drivers that need slow bus traffic to read out IRQ status and 3720fbee1dfSLinus Walleij similar, traffic which may in turn incur other IRQs to happen, cannot be 3730fbee1dfSLinus Walleij handled in a quick IRQ handler with IRQs disabled. Instead they need to spawn 3740fbee1dfSLinus Walleij a thread and then mask the parent IRQ line until the interrupt is handled 375778ea833SJonathan Neuschäfer by the driver. The hallmark of this driver is to call something like 376778ea833SJonathan Neuschäfer this in its interrupt handler:: 377778ea833SJonathan Neuschäfer 378778ea833SJonathan Neuschäfer static irqreturn_t foo_gpio_irq(int irq, void *data) 379778ea833SJonathan Neuschäfer ... 380778ea833SJonathan Neuschäfer handle_nested_irq(irq); 381778ea833SJonathan Neuschäfer 382778ea833SJonathan Neuschäfer The hallmark of threaded GPIO irqchips is that they set the .can_sleep 383778ea833SJonathan Neuschäfer flag on struct gpio_chip to true, indicating that this chip may sleep 384778ea833SJonathan Neuschäfer when accessing the GPIOs. 385778ea833SJonathan Neuschäfer 3860fbee1dfSLinus Walleij These kinds of irqchips are inherently realtime tolerant as they are 3870fbee1dfSLinus Walleij already set up to handle sleeping contexts. 3880fbee1dfSLinus Walleij 3890fbee1dfSLinus Walleij 3900fbee1dfSLinus WalleijInfrastructure helpers for GPIO irqchips 3910fbee1dfSLinus Walleij---------------------------------------- 3920fbee1dfSLinus Walleij 393778ea833SJonathan NeuschäferTo help out in handling the set-up and management of GPIO irqchips and the 394fdd61a01SLinus Walleijassociated irqdomain and resource allocation callbacks. These are activated 395fdd61a01SLinus Walleijby selecting the Kconfig symbol GPIOLIB_IRQCHIP. If the symbol 396fdd61a01SLinus WalleijIRQ_DOMAIN_HIERARCHY is also selected, hierarchical helpers will also be 397fdd61a01SLinus Walleijprovided. A big portion of overhead code will be managed by gpiolib, 398fdd61a01SLinus Walleijunder the assumption that your interrupts are 1-to-1-mapped to the 399fdd61a01SLinus WalleijGPIO line index: 400778ea833SJonathan Neuschäfer 4014e29b70dSDaniel W. S. Almeida.. csv-table:: 4024e29b70dSDaniel W. S. Almeida :header: GPIO line offset, Hardware IRQ 4034e29b70dSDaniel W. S. Almeida 4044e29b70dSDaniel W. S. Almeida 0,0 4054e29b70dSDaniel W. S. Almeida 1,1 4064e29b70dSDaniel W. S. Almeida 2,2 4074e29b70dSDaniel W. S. Almeida ...,... 4084e29b70dSDaniel W. S. Almeida ngpio-1, ngpio-1 4094e29b70dSDaniel W. S. Almeida 410fdd61a01SLinus Walleij 411fdd61a01SLinus WalleijIf some GPIO lines do not have corresponding IRQs, the bitmask valid_mask 412fdd61a01SLinus Walleijand the flag need_valid_mask in gpio_irq_chip can be used to mask off some 413fdd61a01SLinus Walleijlines as invalid for associating with IRQs. 414fdd61a01SLinus Walleij 415fdd61a01SLinus WalleijThe preferred way to set up the helpers is to fill in the 416fdd61a01SLinus Walleijstruct gpio_irq_chip inside struct gpio_chip before adding the gpio_chip. 417fdd61a01SLinus WalleijIf you do this, the additional irq_chip will be set up by gpiolib at the 418fdd61a01SLinus Walleijsame time as setting up the rest of the GPIO functionality. The following 419f1f37abbSLinus Walleijis a typical example of a chained cascaded interrupt handler using 4205644b66aSMarc Zyngierthe gpio_irq_chip. Note how the mask/unmask (or disable/enable) functions 4215644b66aSMarc Zyngiercall into the core gpiolib code: 422fdd61a01SLinus Walleij 42335c3ba91SJonathan Neuschäfer.. code-block:: c 42435c3ba91SJonathan Neuschäfer 4255644b66aSMarc Zyngier /* Typical state container */ 426fdd61a01SLinus Walleij struct my_gpio { 427fdd61a01SLinus Walleij struct gpio_chip gc; 4285644b66aSMarc Zyngier }; 4295644b66aSMarc Zyngier 4305644b66aSMarc Zyngier static void my_gpio_mask_irq(struct irq_data *d) 4315644b66aSMarc Zyngier { 432bdb6528eSAndy Shevchenko struct gpio_chip *gc = irq_data_get_irq_chip_data(d); 433e9fdcc2dSAndy Shevchenko irq_hw_number_t hwirq = irqd_to_hwirq(d); 4345644b66aSMarc Zyngier 4355644b66aSMarc Zyngier /* 4365644b66aSMarc Zyngier * Perform any necessary action to mask the interrupt, 4375644b66aSMarc Zyngier * and then call into the core code to synchronise the 4385644b66aSMarc Zyngier * state. 4395644b66aSMarc Zyngier */ 4405644b66aSMarc Zyngier 441e9fdcc2dSAndy Shevchenko gpiochip_disable_irq(gc, hwirq); 4425644b66aSMarc Zyngier } 4435644b66aSMarc Zyngier 4445644b66aSMarc Zyngier static void my_gpio_unmask_irq(struct irq_data *d) 4455644b66aSMarc Zyngier { 446bdb6528eSAndy Shevchenko struct gpio_chip *gc = irq_data_get_irq_chip_data(d); 447e9fdcc2dSAndy Shevchenko irq_hw_number_t hwirq = irqd_to_hwirq(d); 4485644b66aSMarc Zyngier 449e9fdcc2dSAndy Shevchenko gpiochip_enable_irq(gc, hwirq); 4505644b66aSMarc Zyngier 4515644b66aSMarc Zyngier /* 4525644b66aSMarc Zyngier * Perform any necessary action to unmask the interrupt, 4535644b66aSMarc Zyngier * after having called into the core code to synchronise 4545644b66aSMarc Zyngier * the state. 4555644b66aSMarc Zyngier */ 4565644b66aSMarc Zyngier } 4575644b66aSMarc Zyngier 4585644b66aSMarc Zyngier /* 4595644b66aSMarc Zyngier * Statically populate the irqchip. Note that it is made const 4605644b66aSMarc Zyngier * (further indicated by the IRQCHIP_IMMUTABLE flag), and that 4615644b66aSMarc Zyngier * the GPIOCHIP_IRQ_RESOURCE_HELPER macro adds some extra 4625644b66aSMarc Zyngier * callbacks to the structure. 4635644b66aSMarc Zyngier */ 4645644b66aSMarc Zyngier static const struct irq_chip my_gpio_irq_chip = { 4655644b66aSMarc Zyngier .name = "my_gpio_irq", 4665644b66aSMarc Zyngier .irq_ack = my_gpio_ack_irq, 4675644b66aSMarc Zyngier .irq_mask = my_gpio_mask_irq, 4685644b66aSMarc Zyngier .irq_unmask = my_gpio_unmask_irq, 4695644b66aSMarc Zyngier .irq_set_type = my_gpio_set_irq_type, 4705644b66aSMarc Zyngier .flags = IRQCHIP_IMMUTABLE, 4715644b66aSMarc Zyngier /* Provide the gpio resource callbacks */ 4725644b66aSMarc Zyngier GPIOCHIP_IRQ_RESOURCE_HELPERS, 473fdd61a01SLinus Walleij }; 474fdd61a01SLinus Walleij 475fdd61a01SLinus Walleij int irq; /* from platform etc */ 476fdd61a01SLinus Walleij struct my_gpio *g; 477fdd61a01SLinus Walleij struct gpio_irq_chip *girq; 478fdd61a01SLinus Walleij 479fdd61a01SLinus Walleij /* Get a pointer to the gpio_irq_chip */ 480fdd61a01SLinus Walleij girq = &g->gc.irq; 4815644b66aSMarc Zyngier gpio_irq_chip_set_chip(girq, &my_gpio_irq_chip); 482fdd61a01SLinus Walleij girq->parent_handler = ftgpio_gpio_irq_handler; 483fdd61a01SLinus Walleij girq->num_parents = 1; 484fdd61a01SLinus Walleij girq->parents = devm_kcalloc(dev, 1, sizeof(*girq->parents), 485fdd61a01SLinus Walleij GFP_KERNEL); 486fdd61a01SLinus Walleij if (!girq->parents) 487fdd61a01SLinus Walleij return -ENOMEM; 488fdd61a01SLinus Walleij girq->default_type = IRQ_TYPE_NONE; 489fdd61a01SLinus Walleij girq->handler = handle_bad_irq; 490fdd61a01SLinus Walleij girq->parents[0] = irq; 491fdd61a01SLinus Walleij 492fdd61a01SLinus Walleij return devm_gpiochip_add_data(dev, &g->gc, g); 493fdd61a01SLinus Walleij 494f1f37abbSLinus WalleijThe helper supports using threaded interrupts as well. Then you just request 495f1f37abbSLinus Walleijthe interrupt separately and go with it: 496f1f37abbSLinus Walleij 497f1f37abbSLinus Walleij.. code-block:: c 498f1f37abbSLinus Walleij 4995644b66aSMarc Zyngier /* Typical state container */ 500f1f37abbSLinus Walleij struct my_gpio { 501f1f37abbSLinus Walleij struct gpio_chip gc; 5025644b66aSMarc Zyngier }; 5035644b66aSMarc Zyngier 5045644b66aSMarc Zyngier static void my_gpio_mask_irq(struct irq_data *d) 5055644b66aSMarc Zyngier { 506bdb6528eSAndy Shevchenko struct gpio_chip *gc = irq_data_get_irq_chip_data(d); 507e9fdcc2dSAndy Shevchenko irq_hw_number_t hwirq = irqd_to_hwirq(d); 5085644b66aSMarc Zyngier 5095644b66aSMarc Zyngier /* 5105644b66aSMarc Zyngier * Perform any necessary action to mask the interrupt, 5115644b66aSMarc Zyngier * and then call into the core code to synchronise the 5125644b66aSMarc Zyngier * state. 5135644b66aSMarc Zyngier */ 5145644b66aSMarc Zyngier 515e9fdcc2dSAndy Shevchenko gpiochip_disable_irq(gc, hwirq); 5165644b66aSMarc Zyngier } 5175644b66aSMarc Zyngier 5185644b66aSMarc Zyngier static void my_gpio_unmask_irq(struct irq_data *d) 5195644b66aSMarc Zyngier { 520bdb6528eSAndy Shevchenko struct gpio_chip *gc = irq_data_get_irq_chip_data(d); 521e9fdcc2dSAndy Shevchenko irq_hw_number_t hwirq = irqd_to_hwirq(d); 5225644b66aSMarc Zyngier 523e9fdcc2dSAndy Shevchenko gpiochip_enable_irq(gc, hwirq); 5245644b66aSMarc Zyngier 5255644b66aSMarc Zyngier /* 5265644b66aSMarc Zyngier * Perform any necessary action to unmask the interrupt, 5275644b66aSMarc Zyngier * after having called into the core code to synchronise 5285644b66aSMarc Zyngier * the state. 5295644b66aSMarc Zyngier */ 5305644b66aSMarc Zyngier } 5315644b66aSMarc Zyngier 5325644b66aSMarc Zyngier /* 5335644b66aSMarc Zyngier * Statically populate the irqchip. Note that it is made const 5345644b66aSMarc Zyngier * (further indicated by the IRQCHIP_IMMUTABLE flag), and that 5355644b66aSMarc Zyngier * the GPIOCHIP_IRQ_RESOURCE_HELPER macro adds some extra 5365644b66aSMarc Zyngier * callbacks to the structure. 5375644b66aSMarc Zyngier */ 5385644b66aSMarc Zyngier static const struct irq_chip my_gpio_irq_chip = { 5395644b66aSMarc Zyngier .name = "my_gpio_irq", 5405644b66aSMarc Zyngier .irq_ack = my_gpio_ack_irq, 5415644b66aSMarc Zyngier .irq_mask = my_gpio_mask_irq, 5425644b66aSMarc Zyngier .irq_unmask = my_gpio_unmask_irq, 5435644b66aSMarc Zyngier .irq_set_type = my_gpio_set_irq_type, 5445644b66aSMarc Zyngier .flags = IRQCHIP_IMMUTABLE, 5455644b66aSMarc Zyngier /* Provide the gpio resource callbacks */ 5465644b66aSMarc Zyngier GPIOCHIP_IRQ_RESOURCE_HELPERS, 547f1f37abbSLinus Walleij }; 548f1f37abbSLinus Walleij 549f1f37abbSLinus Walleij int irq; /* from platform etc */ 550f1f37abbSLinus Walleij struct my_gpio *g; 551f1f37abbSLinus Walleij struct gpio_irq_chip *girq; 552f1f37abbSLinus Walleij 553f1f37abbSLinus Walleij ret = devm_request_threaded_irq(dev, irq, NULL, 554f1f37abbSLinus Walleij irq_thread_fn, IRQF_ONESHOT, "my-chip", g); 555f1f37abbSLinus Walleij if (ret < 0) 556f1f37abbSLinus Walleij return ret; 557f1f37abbSLinus Walleij 558f1f37abbSLinus Walleij /* Get a pointer to the gpio_irq_chip */ 559f1f37abbSLinus Walleij girq = &g->gc.irq; 5605644b66aSMarc Zyngier gpio_irq_chip_set_chip(girq, &my_gpio_irq_chip); 561f1f37abbSLinus Walleij /* This will let us handle the parent IRQ in the driver */ 562f1f37abbSLinus Walleij girq->parent_handler = NULL; 563f1f37abbSLinus Walleij girq->num_parents = 0; 564f1f37abbSLinus Walleij girq->parents = NULL; 565f1f37abbSLinus Walleij girq->default_type = IRQ_TYPE_NONE; 566f1f37abbSLinus Walleij girq->handler = handle_bad_irq; 567f1f37abbSLinus Walleij 568f1f37abbSLinus Walleij return devm_gpiochip_add_data(dev, &g->gc, g); 569f1f37abbSLinus Walleij 570f1f37abbSLinus WalleijThe helper supports using hierarchical interrupt controllers as well. 571f8c3cea8SMauro Carvalho ChehabIn this case the typical set-up will look like this: 572fdd61a01SLinus Walleij 57335c3ba91SJonathan Neuschäfer.. code-block:: c 57435c3ba91SJonathan Neuschäfer 575fdd61a01SLinus Walleij /* Typical state container with dynamic irqchip */ 576fdd61a01SLinus Walleij struct my_gpio { 577fdd61a01SLinus Walleij struct gpio_chip gc; 578fdd61a01SLinus Walleij struct fwnode_handle *fwnode; 579fdd61a01SLinus Walleij }; 580fdd61a01SLinus Walleij 5815644b66aSMarc Zyngier static void my_gpio_mask_irq(struct irq_data *d) 5825644b66aSMarc Zyngier { 583bdb6528eSAndy Shevchenko struct gpio_chip *gc = irq_data_get_irq_chip_data(d); 584e9fdcc2dSAndy Shevchenko irq_hw_number_t hwirq = irqd_to_hwirq(d); 5855644b66aSMarc Zyngier 5865644b66aSMarc Zyngier /* 5875644b66aSMarc Zyngier * Perform any necessary action to mask the interrupt, 5885644b66aSMarc Zyngier * and then call into the core code to synchronise the 5895644b66aSMarc Zyngier * state. 5905644b66aSMarc Zyngier */ 5915644b66aSMarc Zyngier 592e9fdcc2dSAndy Shevchenko gpiochip_disable_irq(gc, hwirq); 5935644b66aSMarc Zyngier irq_mask_mask_parent(d); 5945644b66aSMarc Zyngier } 5955644b66aSMarc Zyngier 5965644b66aSMarc Zyngier static void my_gpio_unmask_irq(struct irq_data *d) 5975644b66aSMarc Zyngier { 598bdb6528eSAndy Shevchenko struct gpio_chip *gc = irq_data_get_irq_chip_data(d); 599e9fdcc2dSAndy Shevchenko irq_hw_number_t hwirq = irqd_to_hwirq(d); 6005644b66aSMarc Zyngier 601e9fdcc2dSAndy Shevchenko gpiochip_enable_irq(gc, hwirq); 6025644b66aSMarc Zyngier 6035644b66aSMarc Zyngier /* 6045644b66aSMarc Zyngier * Perform any necessary action to unmask the interrupt, 6055644b66aSMarc Zyngier * after having called into the core code to synchronise 6065644b66aSMarc Zyngier * the state. 6075644b66aSMarc Zyngier */ 6085644b66aSMarc Zyngier 6095644b66aSMarc Zyngier irq_mask_unmask_parent(d); 6105644b66aSMarc Zyngier } 6115644b66aSMarc Zyngier 6125644b66aSMarc Zyngier /* 6135644b66aSMarc Zyngier * Statically populate the irqchip. Note that it is made const 6145644b66aSMarc Zyngier * (further indicated by the IRQCHIP_IMMUTABLE flag), and that 6155644b66aSMarc Zyngier * the GPIOCHIP_IRQ_RESOURCE_HELPER macro adds some extra 6165644b66aSMarc Zyngier * callbacks to the structure. 6175644b66aSMarc Zyngier */ 6185644b66aSMarc Zyngier static const struct irq_chip my_gpio_irq_chip = { 6195644b66aSMarc Zyngier .name = "my_gpio_irq", 6205644b66aSMarc Zyngier .irq_ack = my_gpio_ack_irq, 6215644b66aSMarc Zyngier .irq_mask = my_gpio_mask_irq, 6225644b66aSMarc Zyngier .irq_unmask = my_gpio_unmask_irq, 6235644b66aSMarc Zyngier .irq_set_type = my_gpio_set_irq_type, 6245644b66aSMarc Zyngier .flags = IRQCHIP_IMMUTABLE, 6255644b66aSMarc Zyngier /* Provide the gpio resource callbacks */ 6265644b66aSMarc Zyngier GPIOCHIP_IRQ_RESOURCE_HELPERS, 6275644b66aSMarc Zyngier }; 6285644b66aSMarc Zyngier 629fdd61a01SLinus Walleij struct my_gpio *g; 630fdd61a01SLinus Walleij struct gpio_irq_chip *girq; 631fdd61a01SLinus Walleij 632fdd61a01SLinus Walleij /* Get a pointer to the gpio_irq_chip */ 633fdd61a01SLinus Walleij girq = &g->gc.irq; 6345644b66aSMarc Zyngier gpio_irq_chip_set_chip(girq, &my_gpio_irq_chip); 635fdd61a01SLinus Walleij girq->default_type = IRQ_TYPE_NONE; 636fdd61a01SLinus Walleij girq->handler = handle_bad_irq; 637fdd61a01SLinus Walleij girq->fwnode = g->fwnode; 638fdd61a01SLinus Walleij girq->parent_domain = parent; 639fdd61a01SLinus Walleij girq->child_to_parent_hwirq = my_gpio_child_to_parent_hwirq; 640fdd61a01SLinus Walleij 641fdd61a01SLinus Walleij return devm_gpiochip_add_data(dev, &g->gc, g); 642fdd61a01SLinus Walleij 643fdd61a01SLinus WalleijAs you can see pretty similar, but you do not supply a parent handler for 644fdd61a01SLinus Walleijthe IRQ, instead a parent irqdomain, an fwnode for the hardware and 645f9b21cd0STom Schwindla function .child_to_parent_hwirq() that has the purpose of looking up 646fdd61a01SLinus Walleijthe parent hardware irq from a child (i.e. this gpio chip) hardware irq. 647fdd61a01SLinus WalleijAs always it is good to look at examples in the kernel tree for advice 648fdd61a01SLinus Walleijon how to find the required pieces. 649fdd61a01SLinus Walleij 6500fbee1dfSLinus WalleijIf there is a need to exclude certain GPIO lines from the IRQ domain handled by 6510fbee1dfSLinus Walleijthese helpers, we can set .irq.need_valid_mask of the gpiochip before 652d9e5ebacSJeremy Clinedevm_gpiochip_add_data() or gpiochip_add_data() is called. This allocates an 653d9e5ebacSJeremy Cline.irq.valid_mask with as many bits set as there are GPIO lines in the chip, each 654d9e5ebacSJeremy Clinebit representing line 0..n-1. Drivers can exclude GPIO lines by clearing bits 6558aa16335SLinus Walleijfrom this mask. The mask can be filled in the init_valid_mask() callback 6568aa16335SLinus Walleijthat is part of the struct gpio_irq_chip. 657778ea833SJonathan Neuschäfer 658778ea833SJonathan NeuschäferTo use the helpers please keep the following in mind: 659778ea833SJonathan Neuschäfer 660778ea833SJonathan Neuschäfer- Make sure to assign all relevant members of the struct gpio_chip so that 661778ea833SJonathan Neuschäfer the irqchip can initialize. E.g. .dev and .can_sleep shall be set up 662778ea833SJonathan Neuschäfer properly. 663778ea833SJonathan Neuschäfer 66417ce60b2SVincent Pelletier- Nominally set gpio_irq_chip.handler to handle_bad_irq. Then, if your irqchip 66517ce60b2SVincent Pelletier is cascaded, set the handler to handle_level_irq() and/or handle_edge_irq() 66617ce60b2SVincent Pelletier in the irqchip .set_type() callback depending on what your controller 66717ce60b2SVincent Pelletier supports and what is requested by the consumer. 668778ea833SJonathan Neuschäfer 669778ea833SJonathan Neuschäfer 670778ea833SJonathan NeuschäferLocking IRQ usage 671778ea833SJonathan Neuschäfer----------------- 6720fbee1dfSLinus Walleij 6730fbee1dfSLinus WalleijSince GPIO and irq_chip are orthogonal, we can get conflicts between different 6740fbee1dfSLinus Walleijuse cases. For example a GPIO line used for IRQs should be an input line, 6750fbee1dfSLinus Walleijit does not make sense to fire interrupts on an output GPIO. 6760fbee1dfSLinus Walleij 6770fbee1dfSLinus WalleijIf there is competition inside the subsystem which side is using the 6780fbee1dfSLinus Walleijresource (a certain GPIO line and register for example) it needs to deny 6790fbee1dfSLinus Walleijcertain operations and keep track of usage inside of the gpiolib subsystem. 6800fbee1dfSLinus Walleij 681778ea833SJonathan NeuschäferInput GPIOs can be used as IRQ signals. When this happens, a driver is requested 682778ea833SJonathan Neuschäferto mark the GPIO as being used as an IRQ:: 683778ea833SJonathan Neuschäfer 684778ea833SJonathan Neuschäfer int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset) 685778ea833SJonathan Neuschäfer 686778ea833SJonathan NeuschäferThis will prevent the use of non-irq related GPIO APIs until the GPIO IRQ lock 687778ea833SJonathan Neuschäferis released:: 688778ea833SJonathan Neuschäfer 689778ea833SJonathan Neuschäfer void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset) 690778ea833SJonathan Neuschäfer 691778ea833SJonathan NeuschäferWhen implementing an irqchip inside a GPIO driver, these two functions should 692778ea833SJonathan Neuschäfertypically be called in the .startup() and .shutdown() callbacks from the 693778ea833SJonathan Neuschäferirqchip. 694778ea833SJonathan Neuschäfer 6954f8183aeSHans VerkuilWhen using the gpiolib irqchip helpers, these callbacks are automatically 6964f8183aeSHans Verkuilassigned. 6974f8183aeSHans Verkuil 6984f8183aeSHans Verkuil 6994f8183aeSHans VerkuilDisabling and enabling IRQs 7004f8183aeSHans Verkuil--------------------------- 7010fbee1dfSLinus Walleij 7020fbee1dfSLinus WalleijIn some (fringe) use cases, a driver may be using a GPIO line as input for IRQs, 7030fbee1dfSLinus Walleijbut occasionally switch that line over to drive output and then back to being 7040fbee1dfSLinus Walleijan input with interrupts again. This happens on things like CEC (Consumer 7050fbee1dfSLinus WalleijElectronics Control). 7060fbee1dfSLinus Walleij 7074f8183aeSHans VerkuilWhen a GPIO is used as an IRQ signal, then gpiolib also needs to know if 7084f8183aeSHans Verkuilthe IRQ is enabled or disabled. In order to inform gpiolib about this, 7090fbee1dfSLinus Walleijthe irqchip driver should call:: 7104f8183aeSHans Verkuil 7114f8183aeSHans Verkuil void gpiochip_disable_irq(struct gpio_chip *chip, unsigned int offset) 7124f8183aeSHans Verkuil 7134f8183aeSHans VerkuilThis allows drivers to drive the GPIO as an output while the IRQ is 7144f8183aeSHans Verkuildisabled. When the IRQ is enabled again, a driver should call:: 7154f8183aeSHans Verkuil 7164f8183aeSHans Verkuil void gpiochip_enable_irq(struct gpio_chip *chip, unsigned int offset) 7174f8183aeSHans Verkuil 7184f8183aeSHans VerkuilWhen implementing an irqchip inside a GPIO driver, these two functions should 7194f8183aeSHans Verkuiltypically be called in the .irq_disable() and .irq_enable() callbacks from the 7204f8183aeSHans Verkuilirqchip. 7214f8183aeSHans Verkuil 7225644b66aSMarc ZyngierWhen IRQCHIP_IMMUTABLE is not advertised by the irqchip, these callbacks 7235644b66aSMarc Zyngierare automatically assigned. This behaviour is deprecated and on its way 7245644b66aSMarc Zyngierto be removed from the kernel. 725778ea833SJonathan Neuschäfer 7260fbee1dfSLinus Walleij 727778ea833SJonathan NeuschäferReal-Time compliance for GPIO IRQ chips 728778ea833SJonathan Neuschäfer--------------------------------------- 729778ea833SJonathan Neuschäfer 7300fbee1dfSLinus WalleijAny provider of irqchips needs to be carefully tailored to support Real-Time 731778ea833SJonathan Neuschäferpreemption. It is desirable that all irqchips in the GPIO subsystem keep this 732cd495767SJonathan Neuschäferin mind and do the proper testing to assure they are real time-enabled. 733778ea833SJonathan Neuschäfer 7340fbee1dfSLinus WalleijSo, pay attention on above realtime considerations in the documentation. 7350fbee1dfSLinus Walleij 7360fbee1dfSLinus WalleijThe following is a checklist to follow when preparing a driver for real-time 7370fbee1dfSLinus Walleijcompliance: 7380fbee1dfSLinus Walleij 7390fbee1dfSLinus Walleij- ensure spinlock_t is not used as part irq_chip implementation 7400fbee1dfSLinus Walleij- ensure that sleepable APIs are not used as part irq_chip implementation 741778ea833SJonathan Neuschäfer If sleepable APIs have to be used, these can be done from the .irq_bus_lock() 7420fbee1dfSLinus Walleij and .irq_bus_unlock() callbacks 743778ea833SJonathan Neuschäfer- Chained GPIO irqchips: ensure spinlock_t or any sleepable APIs are not used 7440fbee1dfSLinus Walleij from the chained IRQ handler 745778ea833SJonathan Neuschäfer- Generic chained GPIO irqchips: take care about generic_handle_irq() calls and 7460fbee1dfSLinus Walleij apply corresponding work-around 7470fbee1dfSLinus Walleij- Chained GPIO irqchips: get rid of the chained IRQ handler and use generic irq 7480fbee1dfSLinus Walleij handler if possible 7490fbee1dfSLinus Walleij- regmap_mmio: it is possible to disable internal locking in regmap by setting 7500fbee1dfSLinus Walleij .disable_locking and handling the locking in the GPIO driver 7510fbee1dfSLinus Walleij- Test your driver with the appropriate in-kernel real-time test cases for both 7520fbee1dfSLinus Walleij level and edge IRQs 7530fbee1dfSLinus Walleij 7540fbee1dfSLinus Walleij* [1] http://www.spinics.net/lists/linux-omap/msg120425.html 75505a5f51cSJoe Perches* [2] https://lore.kernel.org/r/1443209283-20781-2-git-send-email-grygorii.strashko@ti.com 75605a5f51cSJoe Perches* [3] https://lore.kernel.org/r/1443209283-20781-3-git-send-email-grygorii.strashko@ti.com 757778ea833SJonathan Neuschäfer 758778ea833SJonathan Neuschäfer 759778ea833SJonathan NeuschäferRequesting self-owned GPIO pins 7600fbee1dfSLinus Walleij=============================== 761778ea833SJonathan Neuschäfer 762778ea833SJonathan NeuschäferSometimes it is useful to allow a GPIO chip driver to request its own GPIO 7630fbee1dfSLinus Walleijdescriptors through the gpiolib API. A GPIO driver can use the following 7640fbee1dfSLinus Walleijfunctions to request and free descriptors:: 765778ea833SJonathan Neuschäfer 766778ea833SJonathan Neuschäfer struct gpio_desc *gpiochip_request_own_desc(struct gpio_desc *desc, 76721abf103SLinus Walleij u16 hwnum, 76821abf103SLinus Walleij const char *label, 76921abf103SLinus Walleij enum gpiod_flags flags) 770778ea833SJonathan Neuschäfer 771778ea833SJonathan Neuschäfer void gpiochip_free_own_desc(struct gpio_desc *desc) 772778ea833SJonathan Neuschäfer 773778ea833SJonathan NeuschäferDescriptors requested with gpiochip_request_own_desc() must be released with 774778ea833SJonathan Neuschäfergpiochip_free_own_desc(). 775778ea833SJonathan Neuschäfer 776778ea833SJonathan NeuschäferThese functions must be used with care since they do not affect module use 777778ea833SJonathan Neuschäfercount. Do not use the functions to request gpio descriptors not owned by the 778778ea833SJonathan Neuschäfercalling driver. 779