| /**************************************************************************** |
| * arch/arm/src/nrf91/nrf91_gpio.h |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. The |
| * ASF licenses this file to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance with the |
| * License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| * License for the specific language governing permissions and limitations |
| * under the License. |
| * |
| ****************************************************************************/ |
| |
| #ifndef __ARCH_ARM_SRC_NRF91_NRF91_GPIO_H |
| #define __ARCH_ARM_SRC_NRF91_NRF91_GPIO_H |
| |
| /**************************************************************************** |
| * Included Files |
| ****************************************************************************/ |
| |
| #include <nuttx/config.h> |
| |
| #ifndef __ASSEMBLY__ |
| # include <stdint.h> |
| # include <stdbool.h> |
| #endif |
| |
| #include <arch/nrf91/chip.h> |
| #include "hardware/nrf91_gpio.h" |
| |
| /**************************************************************************** |
| * Pre-processor Definitions |
| ****************************************************************************/ |
| |
| /* Bit-encoded input to nrf91_gpio_config() *********************************/ |
| |
| /* 32-Bit Encoding: .... .... .... .GGF FSSD DDDM MVPN NNNN |
| * |
| * Pin Function: FF |
| * Pin Sense: SS |
| * Pin Drive: DDDD |
| * Pin Mode bits: MM |
| * Initial value: V (output pins) |
| * Port number: P (0-1) |
| * Pin number: NNNNN (0-31) |
| */ |
| |
| /* Pin Function bits: |
| * Only meaningful when the GPIO function is GPIO_PIN |
| * |
| * .... .... .... ...F F... .... .... .... |
| */ |
| |
| #define GPIO_FUNC_SHIFT (15) /* Bits 15-16: GPIO mode */ |
| #define GPIO_FUNC_MASK (0x03 << GPIO_FUNC_SHIFT) |
| # define GPIO_INPUT (0x00 << GPIO_FUNC_SHIFT) /* 00000 GPIO input pin */ |
| # define GPIO_OUTPUT (0x01 << GPIO_FUNC_SHIFT) /* 00001 GPIO output pin */ |
| |
| /* Pin Sense bits: |
| * |
| * .... .... .... .... .SS. .... .... .... |
| */ |
| |
| #define GPIO_SENSE_SHIFT (13) /* Bits 13-14: Pin Sense mode */ |
| #define GPIO_SENSE_MASK (0x3 << GPIO_SENSE_SHIFT) |
| # define GPIO_SENSE_NONE (0 << GPIO_SENSE_SHIFT) |
| # define GPIO_SENSE_HIGH (2 << GPIO_SENSE_SHIFT) |
| # define GPIO_SENSE_LOW (3 << GPIO_SENSE_SHIFT) |
| |
| /* Pin Drive bits: |
| * |
| * .... .... .... .... ...D DDD. .... .... |
| */ |
| |
| #define GPIO_DRIVE_SHIFT (9) /* Bits 9-12: Pin pull-up mode */ |
| #define GPIO_DRIVE_MASK (0xf << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_S0S1 (0 << GPIO_DRIVE_SHIFT) /* Standard '0', standard '1' */ |
| # define GPIO_DRIVE_H0S1 (1 << GPIO_DRIVE_SHIFT) /* High drive '0', standard '1' */ |
| # define GPIO_DRIVE_S0H1 (2 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_H0H1 (3 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_D0S1 (4 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_D0H1 (5 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_S0D1 (6 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_H0D1 (7 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_EOS1 (8 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_SOE1 (9 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_EOE1 (10 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_DOE1 (11 << GPIO_DRIVE_SHIFT) |
| # define GPIO_DRIVE_EOD1 (12 << GPIO_DRIVE_SHIFT) |
| |
| /* Pin Mode: MM |
| * |
| * .... .... .... .... .... ...M M... .... |
| */ |
| |
| #define GPIO_MODE_SHIFT (7) /* Bits 7-8: Pin pull-up mode */ |
| #define GPIO_MODE_MASK (0x3 << GPIO_MODE_SHIFT) |
| # define GPIO_FLOAT (0 << GPIO_MODE_SHIFT) /* Neither pull-up nor -down */ |
| # define GPIO_PULLDOWN (1 << GPIO_MODE_SHIFT) /* Pull-down resistor enabled */ |
| # define GPIO_PULLUP (2 << GPIO_MODE_SHIFT) /* Pull-up resistor enabled */ |
| |
| /* Initial value: V |
| * |
| * .... .... .... .... .... .... .V.. .... |
| */ |
| |
| #define GPIO_VALUE (1 << 6) /* Bit 6: Initial GPIO output value */ |
| # define GPIO_VALUE_ONE GPIO_VALUE |
| # define GPIO_VALUE_ZERO (0) |
| |
| /* Port number: PPP (0-5) |
| * |
| * .... .... .... .... .... .... ..P. .... |
| */ |
| |
| #define GPIO_PORT_SHIFT (5) /* Bit 5: Port number */ |
| #define GPIO_PORT_MASK (0x1 << GPIO_PORT_SHIFT) |
| # define GPIO_PORT0 (0 << GPIO_PORT_SHIFT) |
| # define GPIO_PORT1 (1 << GPIO_PORT_SHIFT) |
| |
| /* Pin number: NNNNN (0-31) |
| * |
| * .... .... .... .... .... .... ...N NNNN |
| */ |
| |
| #define GPIO_PIN_SHIFT 0 /* Bits 0-4: GPIO number: 0-31 */ |
| #define GPIO_PIN_MASK (0x1f << GPIO_PIN_SHIFT) |
| # define GPIO_PIN0 (0 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN1 (1 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN2 (2 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN3 (3 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN4 (4 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN5 (5 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN6 (6 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN7 (7 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN8 (8 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN9 (9 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN10 (10 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN11 (11 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN12 (12 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN13 (13 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN14 (14 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN15 (15 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN16 (16 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN17 (17 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN18 (18 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN19 (19 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN20 (20 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN21 (21 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN22 (22 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN23 (23 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN24 (24 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN25 (25 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN26 (26 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN27 (27 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN28 (28 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN29 (29 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN30 (30 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN31 (31 << GPIO_PIN_SHIFT) |
| # define GPIO_PIN(n) ((n) << GPIO_PIN_SHIFT) |
| |
| /* Helper macros */ |
| |
| #define GPIO_PIN_DECODE(p) (((p) & GPIO_PIN_MASK) >> GPIO_PIN_SHIFT) |
| #define GPIO_PORT_DECODE(p) (((p) & GPIO_PORT_MASK) >> GPIO_PORT_SHIFT) |
| |
| /**************************************************************************** |
| * Public Types |
| ****************************************************************************/ |
| |
| typedef uint32_t nrf91_pinset_t; |
| |
| enum nrf91_gpio_detectmode_e |
| { |
| NRF91_GPIO_DETECTMODE_DETECT, |
| NRF91_GPIO_DETECTMODE_LDETECT, |
| }; |
| |
| /**************************************************************************** |
| * Public Data |
| ****************************************************************************/ |
| |
| #ifndef __ASSEMBLY__ |
| #undef EXTERN |
| #if defined(__cplusplus) |
| #define EXTERN extern "C" |
| extern "C" |
| { |
| #else |
| #define EXTERN extern |
| #endif |
| |
| /**************************************************************************** |
| * Public Function Prototypes |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Name: nrf91_gpio_config |
| * |
| * Description: |
| * Configure a GPIO pin based on bit-encoded description of the pin. |
| * |
| ****************************************************************************/ |
| |
| int nrf91_gpio_config(nrf91_pinset_t cfgset); |
| |
| /**************************************************************************** |
| * Name: nrf91_gpio_unconfig |
| * |
| * Description: |
| * Unconfigure a GPIO pin based on bit-encoded description of the pin. |
| * |
| ****************************************************************************/ |
| |
| int nrf91_gpio_unconfig(nrf91_pinset_t cfgset); |
| |
| /**************************************************************************** |
| * Name: rnf52_gpio_write |
| * |
| * Description: |
| * Write one or zero to the selected GPIO pin |
| * |
| ****************************************************************************/ |
| |
| void nrf91_gpio_write(nrf91_pinset_t pinset, bool value); |
| |
| /**************************************************************************** |
| * Name: nrf91_gpio_read |
| * |
| * Description: |
| * Read one or zero from the selected GPIO pin |
| * |
| ****************************************************************************/ |
| |
| bool nrf91_gpio_read(nrf91_pinset_t pinset); |
| |
| /**************************************************************************** |
| * Function: nf52_gpio_dump |
| * |
| * Description: |
| * Dump all GPIO registers associated with the base address of the provided |
| * pinset. |
| * |
| ****************************************************************************/ |
| |
| #ifdef CONFIG_DEBUG_GPIO_INFO |
| int nrf91_gpio_dump(nrf91_pinset_t pinset, const char *msg); |
| #else |
| # define nrf91_gpio_dump(p,m) |
| #endif |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| #endif /* __ASSEMBLY__ */ |
| |
| #endif /* __ARCH_ARM_SRC_NRF91_NRF91_GPIO_H */ |