]> granicus.if.org Git - esp-idf/blob - components/driver/include/driver/gpio.h
Merge branch 'bugfix/spi_native_pins' into 'master'
[esp-idf] / components / driver / include / driver / gpio.h
1 // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #ifndef _DRIVER_GPIO_H_
16 #define _DRIVER_GPIO_H_
17 #include "esp_err.h"
18 #include <esp_types.h>
19 #include "soc/gpio_reg.h"
20 #include "soc/gpio_struct.h"
21 #include "soc/rtc_io_reg.h"
22 #include "soc/io_mux_reg.h"
23 #include "soc/gpio_sig_map.h"
24 #include "rom/gpio.h"
25 #include "esp_attr.h"
26 #include "esp_intr_alloc.h"
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 #define GPIO_SEL_0              (BIT(0))                         /*!< Pin 0 selected */
33 #define GPIO_SEL_1              (BIT(1))                         /*!< Pin 1 selected */
34 #define GPIO_SEL_2              (BIT(2))                         /*!< Pin 2 selected
35                                                                       @note There are more macros
36                                                                       like that up to pin 39,
37                                                                       excluding pins 20, 24 and 28..31.
38                                                                       They are not shown here
39                                                                       to reduce redundant information. */
40 /** @cond */
41 #define GPIO_SEL_3              (BIT(3))                         /*!< Pin 3 selected */
42 #define GPIO_SEL_4              (BIT(4))                         /*!< Pin 4 selected */
43 #define GPIO_SEL_5              (BIT(5))                         /*!< Pin 5 selected */
44 #define GPIO_SEL_6              (BIT(6))                         /*!< Pin 6 selected */
45 #define GPIO_SEL_7              (BIT(7))                         /*!< Pin 7 selected */
46 #define GPIO_SEL_8              (BIT(8))                         /*!< Pin 8 selected */
47 #define GPIO_SEL_9              (BIT(9))                         /*!< Pin 9 selected */
48 #define GPIO_SEL_10             (BIT(10))                        /*!< Pin 10 selected */
49 #define GPIO_SEL_11             (BIT(11))                        /*!< Pin 11 selected */
50 #define GPIO_SEL_12             (BIT(12))                        /*!< Pin 12 selected */
51 #define GPIO_SEL_13             (BIT(13))                        /*!< Pin 13 selected */
52 #define GPIO_SEL_14             (BIT(14))                        /*!< Pin 14 selected */
53 #define GPIO_SEL_15             (BIT(15))                        /*!< Pin 15 selected */
54 #define GPIO_SEL_16             (BIT(16))                        /*!< Pin 16 selected */
55 #define GPIO_SEL_17             (BIT(17))                        /*!< Pin 17 selected */
56 #define GPIO_SEL_18             (BIT(18))                        /*!< Pin 18 selected */
57 #define GPIO_SEL_19             (BIT(19))                        /*!< Pin 19 selected */
58
59 #define GPIO_SEL_21             (BIT(21))                        /*!< Pin 21 selected */
60 #define GPIO_SEL_22             (BIT(22))                        /*!< Pin 22 selected */
61 #define GPIO_SEL_23             (BIT(23))                        /*!< Pin 23 selected */
62
63 #define GPIO_SEL_25             (BIT(25))                        /*!< Pin 25 selected */
64 #define GPIO_SEL_26             (BIT(26))                        /*!< Pin 26 selected */
65 #define GPIO_SEL_27             (BIT(27))                        /*!< Pin 27 selected */
66
67 #define GPIO_SEL_32             ((uint64_t)(((uint64_t)1)<<32))  /*!< Pin 32 selected */
68 #define GPIO_SEL_33             ((uint64_t)(((uint64_t)1)<<33))  /*!< Pin 33 selected */
69 #define GPIO_SEL_34             ((uint64_t)(((uint64_t)1)<<34))  /*!< Pin 34 selected */
70 #define GPIO_SEL_35             ((uint64_t)(((uint64_t)1)<<35))  /*!< Pin 35 selected */
71 #define GPIO_SEL_36             ((uint64_t)(((uint64_t)1)<<36))  /*!< Pin 36 selected */
72 #define GPIO_SEL_37             ((uint64_t)(((uint64_t)1)<<37))  /*!< Pin 37 selected */
73 #define GPIO_SEL_38             ((uint64_t)(((uint64_t)1)<<38))  /*!< Pin 38 selected */
74 #define GPIO_SEL_39             ((uint64_t)(((uint64_t)1)<<39))  /*!< Pin 39 selected */
75
76 #define GPIO_PIN_REG_0          IO_MUX_GPIO0_REG
77 #define GPIO_PIN_REG_1          IO_MUX_GPIO1_REG
78 #define GPIO_PIN_REG_2          IO_MUX_GPIO2_REG
79 #define GPIO_PIN_REG_3          IO_MUX_GPIO3_REG
80 #define GPIO_PIN_REG_4          IO_MUX_GPIO4_REG
81 #define GPIO_PIN_REG_5          IO_MUX_GPIO5_REG
82 #define GPIO_PIN_REG_6          IO_MUX_GPIO6_REG
83 #define GPIO_PIN_REG_7          IO_MUX_GPIO7_REG
84 #define GPIO_PIN_REG_8          IO_MUX_GPIO8_REG
85 #define GPIO_PIN_REG_9          IO_MUX_GPIO9_REG
86 #define GPIO_PIN_REG_10         IO_MUX_GPIO10_REG
87 #define GPIO_PIN_REG_11         IO_MUX_GPIO11_REG
88 #define GPIO_PIN_REG_12         IO_MUX_GPIO12_REG
89 #define GPIO_PIN_REG_13         IO_MUX_GPIO13_REG
90 #define GPIO_PIN_REG_14         IO_MUX_GPIO14_REG
91 #define GPIO_PIN_REG_15         IO_MUX_GPIO15_REG
92 #define GPIO_PIN_REG_16         IO_MUX_GPIO16_REG
93 #define GPIO_PIN_REG_17         IO_MUX_GPIO17_REG
94 #define GPIO_PIN_REG_18         IO_MUX_GPIO18_REG
95 #define GPIO_PIN_REG_19         IO_MUX_GPIO19_REG
96 #define GPIO_PIN_REG_20         IO_MUX_GPIO20_REG
97 #define GPIO_PIN_REG_21         IO_MUX_GPIO21_REG
98 #define GPIO_PIN_REG_22         IO_MUX_GPIO22_REG
99 #define GPIO_PIN_REG_23         IO_MUX_GPIO23_REG
100 #define GPIO_PIN_REG_25         IO_MUX_GPIO25_REG
101 #define GPIO_PIN_REG_26         IO_MUX_GPIO26_REG
102 #define GPIO_PIN_REG_27         IO_MUX_GPIO27_REG
103 #define GPIO_PIN_REG_32         IO_MUX_GPIO32_REG
104 #define GPIO_PIN_REG_33         IO_MUX_GPIO33_REG
105 #define GPIO_PIN_REG_34         IO_MUX_GPIO34_REG
106 #define GPIO_PIN_REG_35         IO_MUX_GPIO35_REG
107 #define GPIO_PIN_REG_36         IO_MUX_GPIO36_REG
108 #define GPIO_PIN_REG_37         IO_MUX_GPIO37_REG
109 #define GPIO_PIN_REG_38         IO_MUX_GPIO38_REG
110 #define GPIO_PIN_REG_39         IO_MUX_GPIO39_REG
111
112 #define GPIO_APP_CPU_INTR_ENA      (BIT(0))
113 #define GPIO_APP_CPU_NMI_INTR_ENA  (BIT(1))
114 #define GPIO_PRO_CPU_INTR_ENA      (BIT(2))
115 #define GPIO_PRO_CPU_NMI_INTR_ENA  (BIT(3))
116 #define GPIO_SDIO_EXT_INTR_ENA     (BIT(4))
117
118 #define GPIO_MODE_DEF_DISABLE         (0)
119 #define GPIO_MODE_DEF_INPUT           (BIT0)
120 #define GPIO_MODE_DEF_OUTPUT          (BIT1)
121 #define GPIO_MODE_DEF_OD              (BIT2)
122
123
124 #define GPIO_PIN_COUNT              40
125 /** @endcond */
126
127 extern const uint32_t GPIO_PIN_MUX_REG[GPIO_PIN_COUNT];
128 #define GPIO_IS_VALID_GPIO(gpio_num)      ((gpio_num < GPIO_PIN_COUNT && GPIO_PIN_MUX_REG[gpio_num] != 0))   /*!< Check whether it is a valid GPIO number */
129 #define GPIO_IS_VALID_OUTPUT_GPIO(gpio_num)      ((GPIO_IS_VALID_GPIO(gpio_num)) && (gpio_num < 34))         /*!< Check whether it can be a valid GPIO number of output mode */
130
131 typedef enum {
132     GPIO_NUM_0 = 0,     /*!< GPIO0, input and output */
133     GPIO_NUM_1 = 1,     /*!< GPIO1, input and output */
134     GPIO_NUM_2 = 2,     /*!< GPIO2, input and output
135                              @note There are more enumerations like that
136                              up to GPIO39, excluding GPIO20, GPIO24 and GPIO28..31.
137                              They are not shown here to reduce redundant information.
138                              @note GPIO34..39 are input mode only. */
139 /** @cond */
140     GPIO_NUM_3 = 3,     /*!< GPIO3, input and output */
141     GPIO_NUM_4 = 4,     /*!< GPIO4, input and output */
142     GPIO_NUM_5 = 5,     /*!< GPIO5, input and output */
143     GPIO_NUM_6 = 6,     /*!< GPIO6, input and output */
144     GPIO_NUM_7 = 7,     /*!< GPIO7, input and output */
145     GPIO_NUM_8 = 8,     /*!< GPIO8, input and output */
146     GPIO_NUM_9 = 9,     /*!< GPIO9, input and output */
147     GPIO_NUM_10 = 10,   /*!< GPIO10, input and output */
148     GPIO_NUM_11 = 11,   /*!< GPIO11, input and output */
149     GPIO_NUM_12 = 12,   /*!< GPIO12, input and output */
150     GPIO_NUM_13 = 13,   /*!< GPIO13, input and output */
151     GPIO_NUM_14 = 14,   /*!< GPIO14, input and output */
152     GPIO_NUM_15 = 15,   /*!< GPIO15, input and output */
153     GPIO_NUM_16 = 16,   /*!< GPIO16, input and output */
154     GPIO_NUM_17 = 17,   /*!< GPIO17, input and output */
155     GPIO_NUM_18 = 18,   /*!< GPIO18, input and output */
156     GPIO_NUM_19 = 19,   /*!< GPIO19, input and output */
157
158     GPIO_NUM_21 = 21,   /*!< GPIO21, input and output */
159     GPIO_NUM_22 = 22,   /*!< GPIO22, input and output */
160     GPIO_NUM_23 = 23,   /*!< GPIO23, input and output */
161
162     GPIO_NUM_25 = 25,   /*!< GPIO25, input and output */
163     GPIO_NUM_26 = 26,   /*!< GPIO26, input and output */
164     GPIO_NUM_27 = 27,   /*!< GPIO27, input and output */
165
166     GPIO_NUM_32 = 32,   /*!< GPIO32, input and output */
167     GPIO_NUM_33 = 33,   /*!< GPIO33, input and output */
168     GPIO_NUM_34 = 34,   /*!< GPIO34, input mode only */
169     GPIO_NUM_35 = 35,   /*!< GPIO35, input mode only */
170     GPIO_NUM_36 = 36,   /*!< GPIO36, input mode only */
171     GPIO_NUM_37 = 37,   /*!< GPIO37, input mode only */
172     GPIO_NUM_38 = 38,   /*!< GPIO38, input mode only */
173     GPIO_NUM_39 = 39,   /*!< GPIO39, input mode only */
174     GPIO_NUM_MAX = 40,
175 /** @endcond */
176 } gpio_num_t;
177
178 typedef enum {
179     GPIO_INTR_DISABLE = 0,     /*!< Disable GPIO interrupt                             */
180     GPIO_INTR_POSEDGE = 1,     /*!< GPIO interrupt type : rising edge                  */
181     GPIO_INTR_NEGEDGE = 2,     /*!< GPIO interrupt type : falling edge                 */
182     GPIO_INTR_ANYEDGE = 3,     /*!< GPIO interrupt type : both rising and falling edge */
183     GPIO_INTR_LOW_LEVEL = 4,   /*!< GPIO interrupt type : input low level trigger      */
184     GPIO_INTR_HIGH_LEVEL = 5,  /*!< GPIO interrupt type : input high level trigger     */
185     GPIO_INTR_MAX,
186 } gpio_int_type_t;
187
188 typedef enum {
189     GPIO_MODE_DISABLE = GPIO_MODE_DEF_DISABLE,                                        /*!< GPIO mode : disable input and output             */
190     GPIO_MODE_INPUT = GPIO_MODE_DEF_INPUT,                                                         /*!< GPIO mode : input only                           */
191     GPIO_MODE_OUTPUT = GPIO_MODE_DEF_OUTPUT,                                                       /*!< GPIO mode : output only mode                     */
192     GPIO_MODE_OUTPUT_OD = ((GPIO_MODE_DEF_OUTPUT)|(GPIO_MODE_DEF_OD)),                             /*!< GPIO mode : output only with open-drain mode     */
193     GPIO_MODE_INPUT_OUTPUT_OD = ((GPIO_MODE_DEF_INPUT)|(GPIO_MODE_DEF_OUTPUT)|(GPIO_MODE_DEF_OD)), /*!< GPIO mode : output and input with open-drain mode*/
194     GPIO_MODE_INPUT_OUTPUT = ((GPIO_MODE_DEF_INPUT)|(GPIO_MODE_DEF_OUTPUT)),                       /*!< GPIO mode : output and input mode                */
195 } gpio_mode_t;
196
197 typedef enum {
198     GPIO_PULLUP_DISABLE = 0x0,     /*!< Disable GPIO pull-up resistor */
199     GPIO_PULLUP_ENABLE = 0x1,      /*!< Enable GPIO pull-up resistor */
200 } gpio_pullup_t;
201
202 typedef enum {
203     GPIO_PULLDOWN_DISABLE = 0x0,   /*!< Disable GPIO pull-down resistor */
204     GPIO_PULLDOWN_ENABLE = 0x1,    /*!< Enable GPIO pull-down resistor  */
205 } gpio_pulldown_t;
206
207 /**
208  * @brief Configuration parameters of GPIO pad for gpio_config function
209  */
210 typedef struct {
211     uint64_t pin_bit_mask;          /*!< GPIO pin: set with bit mask, each bit maps to a GPIO */
212     gpio_mode_t mode;               /*!< GPIO mode: set input/output mode                     */
213     gpio_pullup_t pull_up_en;       /*!< GPIO pull-up                                         */
214     gpio_pulldown_t pull_down_en;   /*!< GPIO pull-down                                       */
215     gpio_int_type_t intr_type;      /*!< GPIO interrupt type                                  */
216 } gpio_config_t;
217
218 typedef enum {
219     GPIO_PULLUP_ONLY,               /*!< Pad pull up            */
220     GPIO_PULLDOWN_ONLY,             /*!< Pad pull down          */
221     GPIO_PULLUP_PULLDOWN,           /*!< Pad pull up + pull down*/
222     GPIO_FLOATING,                  /*!< Pad floating           */
223 } gpio_pull_mode_t;
224
225 typedef enum {
226     GPIO_DRIVE_CAP_0       = 0,    /*!< Pad drive capability: weak          */
227     GPIO_DRIVE_CAP_1       = 1,    /*!< Pad drive capability: stronger      */
228     GPIO_DRIVE_CAP_2       = 2,    /*!< Pad drive capability: default value */
229     GPIO_DRIVE_CAP_DEFAULT = 2,    /*!< Pad drive capability: default value */
230     GPIO_DRIVE_CAP_3       = 3,    /*!< Pad drive capability: strongest     */
231     GPIO_DRIVE_CAP_MAX,
232 } gpio_drive_cap_t;
233
234 typedef void (*gpio_isr_t)(void*);
235 typedef intr_handle_t gpio_isr_handle_t;
236
237 /**
238  * @brief GPIO common configuration
239  *
240  *        Configure GPIO's Mode,pull-up,PullDown,IntrType
241  *
242  * @param  pGPIOConfig Pointer to GPIO configure struct
243  *
244  * @return
245  *     - ESP_OK success
246  *     - ESP_ERR_INVALID_ARG Parameter error
247  *
248  */
249 esp_err_t gpio_config(const gpio_config_t *pGPIOConfig);
250
251
252 /**
253  * @brief  GPIO set interrupt trigger type
254  *
255  * @param  gpio_num GPIO number. If you want to set the trigger type of e.g. of GPIO16, gpio_num should be GPIO_NUM_16 (16);
256  * @param  intr_type Interrupt type, select from gpio_int_type_t
257  *
258  * @return
259  *     - ESP_OK  Success
260  *     - ESP_ERR_INVALID_ARG Parameter error
261  *
262  */
263 esp_err_t gpio_set_intr_type(gpio_num_t gpio_num, gpio_int_type_t intr_type);
264
265 /**
266  * @brief  Enable GPIO module interrupt signal
267  *
268  * @note Please do not use the interrupt of GPIO36 and GPIO39 when using ADC.
269  *       Please refer to the comments of `adc1_get_raw`.
270  *       Please refer to section 3.11 of 'ECO_and_Workarounds_for_Bugs_in_ESP32' for the description of this issue.
271  *
272  * @param  gpio_num GPIO number. If you want to enable an interrupt on e.g. GPIO16, gpio_num should be GPIO_NUM_16 (16);
273  *
274  * @return
275  *     - ESP_OK Success
276  *     - ESP_ERR_INVALID_ARG Parameter error
277  *
278  */
279 esp_err_t gpio_intr_enable(gpio_num_t gpio_num);
280
281 /**
282  * @brief  Disable GPIO module interrupt signal
283  *
284  * @param  gpio_num GPIO number. If you want to disable the interrupt of e.g. GPIO16, gpio_num should be GPIO_NUM_16 (16);
285  *
286  * @return
287  *     - ESP_OK success
288  *     - ESP_ERR_INVALID_ARG Parameter error
289  *
290  */
291 esp_err_t gpio_intr_disable(gpio_num_t gpio_num);
292
293 /**
294  * @brief  GPIO set output level
295  *
296  * @param  gpio_num GPIO number. If you want to set the output level of e.g. GPIO16, gpio_num should be GPIO_NUM_16 (16);
297  * @param  level Output level. 0: low ; 1: high
298  *
299  * @return
300  *     - ESP_OK Success
301  *     - ESP_ERR_INVALID_ARG GPIO number error
302  *
303  */
304 esp_err_t gpio_set_level(gpio_num_t gpio_num, uint32_t level);
305
306 /**
307  * @brief  GPIO get input level
308  *
309  * @warning If the pad is not configured for input (or input and output) the returned value is always 0.
310  *
311  * @param  gpio_num GPIO number. If you want to get the logic level of e.g. pin GPIO16, gpio_num should be GPIO_NUM_16 (16);
312  *
313  * @return
314  *     - 0 the GPIO input level is 0
315  *     - 1 the GPIO input level is 1
316  *
317  */
318 int gpio_get_level(gpio_num_t gpio_num);
319
320 /**
321  * @brief        GPIO set direction
322  *
323  * Configure GPIO direction,such as output_only,input_only,output_and_input
324  *
325  * @param  gpio_num  Configure GPIO pins number, it should be GPIO number. If you want to set direction of e.g. GPIO16, gpio_num should be GPIO_NUM_16 (16);
326  * @param  mode GPIO direction
327  *
328  * @return
329  *     - ESP_OK Success
330  *     - ESP_ERR_INVALID_ARG GPIO error
331  *
332  */
333 esp_err_t gpio_set_direction(gpio_num_t gpio_num, gpio_mode_t mode);
334
335 /**
336  * @brief  Configure GPIO pull-up/pull-down resistors
337  *
338  * Only pins that support both input & output have integrated pull-up and pull-down resistors. Input-only GPIOs 34-39 do not.
339  *
340  * @param  gpio_num GPIO number. If you want to set pull up or down mode for e.g. GPIO16, gpio_num should be GPIO_NUM_16 (16);
341  * @param  pull GPIO pull up/down mode.
342  *
343  * @return
344  *     - ESP_OK Success
345  *     - ESP_ERR_INVALID_ARG : Parameter error
346  *
347  */
348 esp_err_t gpio_set_pull_mode(gpio_num_t gpio_num, gpio_pull_mode_t pull);
349
350 /**
351   * @brief Enable GPIO wake-up function.
352   *
353   * @param gpio_num GPIO number.
354   *
355   * @param intr_type GPIO wake-up type. Only GPIO_INTR_LOW_LEVEL or GPIO_INTR_HIGH_LEVEL can be used.
356   *
357   * @return
358   *     - ESP_OK Success
359   *     - ESP_ERR_INVALID_ARG Parameter error
360   */
361 esp_err_t gpio_wakeup_enable(gpio_num_t gpio_num, gpio_int_type_t intr_type);
362
363 /**
364   * @brief Disable GPIO wake-up function.
365   *
366   * @param gpio_num GPIO number
367   *
368   * @return
369   *     - ESP_OK Success
370   *     - ESP_ERR_INVALID_ARG Parameter error
371   */
372 esp_err_t gpio_wakeup_disable(gpio_num_t gpio_num);
373
374 /**
375  * @brief   Register GPIO interrupt handler, the handler is an ISR.
376  *          The handler will be attached to the same CPU core that this function is running on.
377  *
378  * This ISR function is called whenever any GPIO interrupt occurs. See
379  * the alternative gpio_install_isr_service() and
380  * gpio_isr_handler_add() API in order to have the driver support
381  * per-GPIO ISRs.
382  *
383  * @param  fn  Interrupt handler function.
384  * @param  intr_alloc_flags Flags used to allocate the interrupt. One or multiple (ORred)
385  *            ESP_INTR_FLAG_* values. See esp_intr_alloc.h for more info.
386  * @param  arg  Parameter for handler function
387  * @param  handle Pointer to return handle. If non-NULL, a handle for the interrupt will be returned here.
388  *
389  * \verbatim embed:rst:leading-asterisk
390  * To disable or remove the ISR, pass the returned handle to the :doc:`interrupt allocation functions </api-reference/system/intr_alloc>`.
391  * \endverbatim
392  *
393  * @return
394  *     - ESP_OK Success ;
395  *     - ESP_ERR_INVALID_ARG GPIO error
396  *     - ESP_ERR_NOT_FOUND No free interrupt found with the specified flags
397  */
398 esp_err_t gpio_isr_register(void (*fn)(void*), void * arg, int intr_alloc_flags, gpio_isr_handle_t *handle);
399
400 /**
401   * @brief Enable pull-up on GPIO.
402   *
403   * @param gpio_num GPIO number
404   *
405   * @return
406   *     - ESP_OK Success
407   *     - ESP_ERR_INVALID_ARG Parameter error
408   */
409 esp_err_t gpio_pullup_en(gpio_num_t gpio_num);
410
411 /**
412   * @brief Disable pull-up on GPIO.
413   *
414   * @param gpio_num GPIO number
415   *
416   * @return
417   *     - ESP_OK Success
418   *     - ESP_ERR_INVALID_ARG Parameter error
419   */
420 esp_err_t gpio_pullup_dis(gpio_num_t gpio_num);
421
422 /**
423   * @brief Enable pull-down on GPIO.
424   *
425   * @param gpio_num GPIO number
426   *
427   * @return
428   *     - ESP_OK Success
429   *     - ESP_ERR_INVALID_ARG Parameter error
430   */
431 esp_err_t gpio_pulldown_en(gpio_num_t gpio_num);
432
433 /**
434   * @brief Disable pull-down on GPIO.
435   *
436   * @param gpio_num GPIO number
437   *
438   * @return
439   *     - ESP_OK Success
440   *     - ESP_ERR_INVALID_ARG Parameter error
441   */
442 esp_err_t gpio_pulldown_dis(gpio_num_t gpio_num);
443
444 /**
445   * @brief Install the driver's GPIO ISR handler service, which allows per-pin GPIO interrupt handlers.
446   *
447   * This function is incompatible with gpio_isr_register() - if that function is used, a single global ISR is registered for all GPIO interrupts. If this function is used, the ISR service provides a global GPIO ISR and individual pin handlers are registered via the gpio_isr_handler_add() function.
448   *
449   * @param intr_alloc_flags Flags used to allocate the interrupt. One or multiple (ORred)
450   *            ESP_INTR_FLAG_* values. See esp_intr_alloc.h for more info.
451   *
452   * @return
453   *     - ESP_OK Success
454   *     - ESP_ERR_NO_MEM No memory to install this service
455   *     - ESP_ERR_INVALID_STATE ISR service already installed.
456   *     - ESP_ERR_NOT_FOUND No free interrupt found with the specified flags
457   *     - ESP_ERR_INVALID_ARG GPIO error
458   */
459 esp_err_t gpio_install_isr_service(int intr_alloc_flags);
460
461 /**
462   * @brief Uninstall the driver's GPIO ISR service, freeing related resources.
463   */
464 void gpio_uninstall_isr_service();
465
466 /**
467   * @brief Add ISR handler for the corresponding GPIO pin.
468   *
469   * Call this function after using gpio_install_isr_service() to
470   * install the driver's GPIO ISR handler service.
471   *
472   * The pin ISR handlers no longer need to be declared with IRAM_ATTR,
473   * unless you pass the ESP_INTR_FLAG_IRAM flag when allocating the
474   * ISR in gpio_install_isr_service().
475   *
476   * This ISR handler will be called from an ISR. So there is a stack
477   * size limit (configurable as "ISR stack size" in menuconfig). This
478   * limit is smaller compared to a global GPIO interrupt handler due
479   * to the additional level of indirection.
480   *
481   * @param gpio_num GPIO number
482   * @param isr_handler ISR handler function for the corresponding GPIO number.
483   * @param args parameter for ISR handler.
484   *
485   * @return
486   *     - ESP_OK Success
487   *     - ESP_ERR_INVALID_STATE Wrong state, the ISR service has not been initialized.
488   *     - ESP_ERR_INVALID_ARG Parameter error
489   */
490 esp_err_t gpio_isr_handler_add(gpio_num_t gpio_num, gpio_isr_t isr_handler, void* args);
491
492 /**
493   * @brief Remove ISR handler for the corresponding GPIO pin.
494   *
495   * @param gpio_num GPIO number
496   *
497   * @return
498   *     - ESP_OK Success
499   *     - ESP_ERR_INVALID_STATE Wrong state, the ISR service has not been initialized.
500   *     - ESP_ERR_INVALID_ARG Parameter error
501   */
502 esp_err_t gpio_isr_handler_remove(gpio_num_t gpio_num);
503
504 /**
505   * @brief Set GPIO pad drive capability
506   *
507   * @param gpio_num GPIO number, only support output GPIOs
508   * @param strength Drive capability of the pad
509   *
510   * @return
511   *     - ESP_OK Success
512   *     - ESP_ERR_INVALID_ARG Parameter error
513   */
514 esp_err_t gpio_set_drive_capability(gpio_num_t gpio_num, gpio_drive_cap_t strength);
515
516 /**
517   * @brief Get GPIO pad drive capability
518   *
519   * @param gpio_num GPIO number, only support output GPIOs
520   * @param strength Pointer to accept drive capability of the pad
521   *
522   * @return
523   *     - ESP_OK Success
524   *     - ESP_ERR_INVALID_ARG Parameter error
525   */
526 esp_err_t gpio_get_drive_capability(gpio_num_t gpio_num, gpio_drive_cap_t* strength);
527
528 /**
529   * @brief Set gpio pad hold function.
530   *
531   * The gpio pad hold function works in both input and output modes, but must be output-capable gpios.
532   * If pad hold enabled:
533   *   in output mode: the output level of the pad will be force locked and can not be changed.
534   *   in input mode: the input value read will not change, regardless the changes of input signal.
535   *
536   * Power down or call gpio_hold_dis will disable this function.
537   *
538   * @param gpio_num GPIO number, only support output-capable GPIOs
539   *
540   * @return
541   *     - ESP_OK Success
542   *     - ESP_ERR_NOT_SUPPORTED Not support pad hold function
543   */
544 esp_err_t gpio_hold_en(gpio_num_t gpio_num);
545
546 /**
547   * @brief Unset gpio pad hold function.
548   *
549   * @param gpio_num GPIO number, only support output-capable GPIOs
550   *
551   * @return
552   *     - ESP_OK Success
553   *     - ESP_ERR_NOT_SUPPORTED Not support pad hold function
554   */
555  esp_err_t gpio_hold_dis(gpio_num_t gpio_num);
556
557 /**
558   * @brief Set pad input to a peripheral signal through the IOMUX.
559   * @param gpio_num GPIO number of the pad.
560   * @param signal_idx Peripheral signal id to input. One of the ``*_IN_IDX`` signals in ``soc/gpio_sig_map.h``.
561   */
562 void gpio_iomux_in(uint32_t gpio_num, uint32_t signal_idx);
563
564 /**
565   * @brief Set peripheral output to an GPIO pad through the IOMUX.
566   * @param gpio_num gpio_num GPIO number of the pad.
567   * @param func The function number of the peripheral pin to output pin.
568   *        One of the ``FUNC_X_*`` of specified pin (X) in ``soc/io_mux_reg.h``.
569   * @param oen_inv True if the output enable needs to be inversed, otherwise False.
570   */
571 void gpio_iomux_out(uint8_t gpio_num, int func, bool oen_inv);
572
573 #ifdef __cplusplus
574 }
575 #endif
576
577 #endif /* _DRIVER_GPIO_H_ */