/**************************************************************************/ /*! @file gpio.c @author K. Townsend (microBuilder.eu) @date 22 March 2010 @version 0.10 @section DESCRIPTION Controls the general purpose digital IO. @section LICENSE Software License Agreement (BSD License) Copyright (c) 2010, microBuilder SARL All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holders nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /**************************************************************************/ #include "gpio.h" #ifdef CFG_CHIBI #include "drivers/chibi/chb_drvr.h" volatile uint32_t chibi_counter = 0; #endif static bool _gpioInitialised = false; /**************************************************************************/ /*! @brief Initialises GPIO and enables the GPIO interrupt handler for all GPIO ports. */ /**************************************************************************/ void gpioInit (void) { /* Enable AHB clock to the GPIO domain. */ SCB_SYSAHBCLKCTRL |= (SCB_SYSAHBCLKCTRL_GPIO); /* Set up NVIC when I/O pins are configured as external interrupts. */ NVIC_EnableIRQ(EINT0_IRQn); NVIC_EnableIRQ(EINT1_IRQn); NVIC_EnableIRQ(EINT2_IRQn); NVIC_EnableIRQ(EINT3_IRQn); /* Set initialisation flag */ _gpioInitialised = true; return; } /**************************************************************************/ /*! @brief Sets the direction (input/output) for a specific port pin @param[in] portNum The port number (0..3) @param[in] bitPos The bit position (0..11) @param[in] dir The pin direction (gpioDirection_Input or gpioDirection_Output) */ /**************************************************************************/ void gpioSetDir (uint32_t portNum, uint32_t bitPos, gpioDirection_t dir) { if (!_gpioInitialised) gpioInit(); // Get the appropriate register (handled this way to optimise code size) REG32 *gpiodir = &GPIO_GPIO0DIR; switch (portNum) { case 0: gpiodir = &GPIO_GPIO0DIR; break; case 1: gpiodir = &GPIO_GPIO1DIR; break; case 2: gpiodir = &GPIO_GPIO2DIR; break; case 3: gpiodir = &GPIO_GPIO3DIR; break; } // Toggle dir dir == gpioDirection_Output ? (*gpiodir |= (1 << bitPos)) : (*gpiodir &= ~(1 << bitPos)); } /**************************************************************************/ /*! @brief Gets the value for a specific port pin @param[in] portNum The port number (0..3) @param[in] bitPos The bit position (0..31) @return The current value for the specified port pin (0..1) */ /**************************************************************************/ uint32_t gpioGetValue (uint32_t portNum, uint32_t bitPos) { if (!_gpioInitialised) gpioInit(); uint32_t value = 0; switch (portNum) { case 0: value = (GPIO_GPIO0DATA & (1 << bitPos)) ? 1 : 0; break; case 1: value = (GPIO_GPIO1DATA & (1 << bitPos)) ? 1 : 0; break; case 2: value = (GPIO_GPIO2DATA & (1 << bitPos)) ? 1 : 0; break; case 3: value = (GPIO_GPIO3DATA & (1 << bitPos)) ? 1 : 0; break; default: break; } return value; } /**************************************************************************/ /*! @brief Sets the value for a specific port pin (only relevant when a pin is configured as output). @param[in] portNum The port number (0..3) @param[in] bitPos The bit position (0..31) @param[in] bitValue The value to set for the specified bit (0..1). 0 will set the pin low and 1 will set the pin high. */ /**************************************************************************/ void gpioSetValue (uint32_t portNum, uint32_t bitPos, uint32_t bitVal) { if (!_gpioInitialised) gpioInit(); // Get the appropriate register (handled this way to optimise code size) REG32 *gpiodata = &GPIO_GPIO0DATA; switch (portNum) { case 0: gpiodata = &GPIO_GPIO0DATA; break; case 1: gpiodata = &GPIO_GPIO1DATA; break; case 2: gpiodata = &GPIO_GPIO2DATA; break; case 3: gpiodata = &GPIO_GPIO3DATA; break; } // Toggle value bitVal == 1 ? (*gpiodata |= (1 << bitPos)) : (*gpiodata &= ~(1 << bitPos)); } /**************************************************************************/ /*! @brief Sets the interrupt sense, event, etc. @param[in] portNum The port number (0..3) @param[in] bitPos The bit position (0..31) @param[in] sense Whether the interrupt should be configured as edge or level sensitive. @param[in] edge Whether one edge or both trigger an interrupt. @param[in] event Whether the rising or the falling edge (high or low) should be used to trigger the interrupt. @section Example @code // Initialise gpio gpioInit(); // Set GPIO1.8 to input gpioSetDir(1, 8, gpioDirection_Input); // Disable the internal pullup/down resistor on P1.8 gpioSetPullup (&IOCON_PIO1_8, gpioPullupMode_Inactive); // Setup an interrupt on GPIO1.8 gpioSetInterrupt(1, // Port 8, // Pin gpioInterruptSense_Edge, // Edge/Level Sensitive gpioInterruptEdge_Single, // Single/Double Edge gpioInterruptEvent_ActiveHigh); // Rising/Falling // Enable the interrupt gpioIntEnable(1, 8); @endcode */ /**************************************************************************/ void gpioSetInterrupt (uint32_t portNum, uint32_t bitPos, gpioInterruptSense_t sense, gpioInterruptEdge_t edge, gpioInterruptEvent_t event) { if (!_gpioInitialised) gpioInit(); // Get the appropriate register (handled this way to optimise code size) REG32 *gpiois = &GPIO_GPIO0IS; REG32 *gpioibe = &GPIO_GPIO0IBE; REG32 *gpioiev = &GPIO_GPIO0IEV; switch (portNum) { case 0: gpiois = &GPIO_GPIO0IS; gpioibe = &GPIO_GPIO0IBE; gpioiev = &GPIO_GPIO0IEV; break; case 1: gpiois = &GPIO_GPIO1IS; gpioibe = &GPIO_GPIO1IBE; gpioiev = &GPIO_GPIO1IEV; break; case 2: gpiois = &GPIO_GPIO2IS; gpioibe = &GPIO_GPIO2IBE; gpioiev = &GPIO_GPIO2IEV; break; case 3: gpiois = &GPIO_GPIO3IS; gpioibe = &GPIO_GPIO3IBE; gpioiev = &GPIO_GPIO3IEV; break; } if (sense == gpioInterruptSense_Edge) { *gpiois &= ~(0x1<