2016-02-04 15:30:06 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jan Wagner <mail@jwagner.eu>
|
2016-02-07 12:56:27 +01:00
|
|
|
* 2015-2016 Freie Universität Berlin
|
2016-02-04 15:30:06 +01:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-02-07 12:56:27 +01:00
|
|
|
* @ingroup cpu_nrf5x_common
|
2016-02-04 15:30:06 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Low-level GPIO driver implementation
|
|
|
|
*
|
2016-02-07 12:56:27 +01:00
|
|
|
* @note This GPIO driver implementation supports only one pin to be
|
|
|
|
* defined as external interrupt.
|
2016-02-04 15:30:06 +01:00
|
|
|
*
|
2016-02-07 12:56:27 +01:00
|
|
|
* @author Christian Kühling <kuehling@zedat.fu-berlin.de>
|
|
|
|
* @author Timo Ziegler <timo.ziegler@fu-berlin.de>
|
2016-02-04 15:30:06 +01:00
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
* @author Jan Wagner <mail@jwagner.eu>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "periph/gpio.h"
|
2016-02-07 12:56:27 +01:00
|
|
|
#include "periph_cpu.h"
|
2016-02-04 15:30:06 +01:00
|
|
|
#include "periph_conf.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Place to store the interrupt context
|
|
|
|
*/
|
|
|
|
static gpio_isr_ctx_t exti_chan;
|
|
|
|
|
|
|
|
|
2016-02-20 14:43:41 +01:00
|
|
|
int gpio_init(gpio_t pin, gpio_mode_t mode)
|
2016-02-04 15:30:06 +01:00
|
|
|
{
|
2016-02-20 14:43:41 +01:00
|
|
|
switch (mode) {
|
|
|
|
case GPIO_IN:
|
|
|
|
case GPIO_IN_PD:
|
|
|
|
case GPIO_IN_PU:
|
|
|
|
case GPIO_OUT:
|
|
|
|
/* configure pin direction, input buffer and pull resistor state */
|
|
|
|
GPIO_BASE->PIN_CNF[pin] = mode;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-02-04 15:30:06 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-02-20 14:43:41 +01:00
|
|
|
int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank,
|
2016-02-04 15:30:06 +01:00
|
|
|
gpio_cb_t cb, void *arg)
|
|
|
|
{
|
|
|
|
/* disable external interrupt in case one is active */
|
|
|
|
NRF_GPIOTE->INTENSET &= ~(GPIOTE_INTENSET_IN0_Msk);
|
|
|
|
/* save callback */
|
|
|
|
exti_chan.cb = cb;
|
|
|
|
exti_chan.arg = arg;
|
|
|
|
/* configure pin as input */
|
2016-02-20 14:43:41 +01:00
|
|
|
gpio_init(pin, mode);
|
2016-02-04 15:30:06 +01:00
|
|
|
/* set interrupt priority and enable global GPIOTE interrupt */
|
|
|
|
NVIC_EnableIRQ(GPIOTE_IRQn);
|
|
|
|
/* configure the GPIOTE channel: set even mode, pin and active flank */
|
|
|
|
NRF_GPIOTE->CONFIG[0] = (GPIOTE_CONFIG_MODE_Event |
|
|
|
|
(pin << GPIOTE_CONFIG_PSEL_Pos) |
|
|
|
|
(flank << GPIOTE_CONFIG_POLARITY_Pos));
|
|
|
|
/* enable external interrupt */
|
|
|
|
NRF_GPIOTE->INTENSET |= GPIOTE_INTENSET_IN0_Msk;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gpio_irq_enable(gpio_t pin)
|
|
|
|
{
|
|
|
|
(void) pin;
|
|
|
|
NRF_GPIOTE->INTENSET |= GPIOTE_INTENSET_IN0_Msk;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gpio_irq_disable(gpio_t pin)
|
|
|
|
{
|
|
|
|
(void) pin;
|
|
|
|
NRF_GPIOTE->INTENCLR |= GPIOTE_INTENSET_IN0_Msk;
|
|
|
|
}
|
|
|
|
|
|
|
|
int gpio_read(gpio_t pin)
|
|
|
|
{
|
2016-02-07 12:56:27 +01:00
|
|
|
if (GPIO_BASE->DIR & (1 << pin)) {
|
|
|
|
return (GPIO_BASE->OUT & (1 << pin)) ? 1 : 0;
|
2016-02-04 15:30:06 +01:00
|
|
|
}
|
|
|
|
else {
|
2016-02-07 12:56:27 +01:00
|
|
|
return (GPIO_BASE->IN & (1 << pin)) ? 1 : 0;
|
2016-02-04 15:30:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gpio_set(gpio_t pin)
|
|
|
|
{
|
2016-02-07 12:56:27 +01:00
|
|
|
GPIO_BASE->OUTSET = (1 << pin);
|
2016-02-04 15:30:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void gpio_clear(gpio_t pin)
|
|
|
|
{
|
2016-02-07 12:56:27 +01:00
|
|
|
GPIO_BASE->OUTCLR = (1 << pin);
|
2016-02-04 15:30:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void gpio_toggle(gpio_t pin)
|
|
|
|
{
|
2016-02-07 12:56:27 +01:00
|
|
|
GPIO_BASE->OUT ^= (1 << pin);
|
2016-02-04 15:30:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void gpio_write(gpio_t pin, int value)
|
|
|
|
{
|
|
|
|
if (value) {
|
2016-02-07 12:56:27 +01:00
|
|
|
GPIO_BASE->OUTSET = (1 << pin);
|
2016-02-04 15:30:06 +01:00
|
|
|
} else {
|
2016-02-07 12:56:27 +01:00
|
|
|
GPIO_BASE->OUTCLR = (1 << pin);
|
2016-02-04 15:30:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void isr_gpiote(void)
|
|
|
|
{
|
|
|
|
if (NRF_GPIOTE->EVENTS_IN[0] == 1) {
|
|
|
|
NRF_GPIOTE->EVENTS_IN[0] = 0;
|
|
|
|
exti_chan.cb(exti_chan.arg);
|
|
|
|
}
|
2016-11-30 18:26:05 +01:00
|
|
|
cortexm_isr_end();
|
2016-02-04 15:30:06 +01:00
|
|
|
}
|