forked from kuldeepdhaka/libopencm3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds GPIO module support. GPIO can be controlled using the GPIO number as stated in the reference manual, similar to Linux. Also 32-bit access to whole ports is possible. Reading a GPIO is possible without muxing the pad as GPIO, however writing a GPIO needs the pad to be muxed as GPIO.
- Loading branch information
Showing
4 changed files
with
215 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/** @defgroup VF6xx_gpio_defines GPIO Defines | ||
* | ||
* @brief <b>Defined Constants and Types for the VF6xx GPIO Module</b> | ||
* | ||
* @ingroup VF6xx_defines | ||
* | ||
* @version 1.0.0 | ||
* | ||
* @author @htmlonly © @endhtmlonly 2014 | ||
* Stefan Agner <[email protected]> | ||
* | ||
* @date 03 July 2014 | ||
* | ||
* LGPL License Terms @ref lgpl_license | ||
* */ | ||
/* | ||
* This file is part of the libopencm3 project. | ||
* | ||
* Copyright (C) 2014 Stefan Agner <[email protected]> | ||
* | ||
* This library is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this library. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef LIBOPENCM3_VF6XX_GPIO_H | ||
#define LIBOPENCM3_VF6XX_GPIO_H | ||
|
||
#include <libopencm3/cm3/common.h> | ||
#include <libopencm3/vf6xx/memorymap.h> | ||
|
||
/* --- Convenience macros -------------------------------------------------- */ | ||
|
||
/****************************************************************************/ | ||
/** @defgroup gpio_reg_base GPIO register base addresses | ||
@ingroup VF6xx_gpio_defines | ||
@{*/ | ||
#define GPIO(port) (GPIO_BASE + (0x040 * (port))) | ||
#define GPIO0 (GPIO_BASE + 0x000) | ||
#define GPIO1 (GPIO_BASE + 0x040) | ||
#define GPIO2 (GPIO_BASE + 0x080) | ||
#define GPIO3 (GPIO_BASE + 0x0C0) | ||
#define GPIO4 (GPIO_BASE + 0x100) | ||
|
||
#define GPIO_OFFSET(gpio) (0x1 << (gpio % 32)) | ||
|
||
/* --- GPIO registers ------------------------------------------------------ */ | ||
|
||
#define GPIO_PDOR(gpio_base) MMIO32(gpio_base + 0x00) | ||
#define GPIO_PSOR(gpio_base) MMIO32(gpio_base + 0x04) | ||
#define GPIO_PCOR(gpio_base) MMIO32(gpio_base + 0x08) | ||
#define GPIO_PTOR(gpio_base) MMIO32(gpio_base + 0x0C) | ||
#define GPIO_PDIR(gpio_base) MMIO32(gpio_base + 0x10) | ||
|
||
/* --- Function prototypes ------------------------------------------------- */ | ||
|
||
#include <libopencm3/cm3/common.h> | ||
|
||
BEGIN_DECLS | ||
|
||
void gpio_set(uint32_t gpio); | ||
void gpio_clear(uint32_t gpio); | ||
bool gpio_get(uint32_t gpio); | ||
void gpio_toggle(uint32_t gpio); | ||
uint32_t gpio_port_read(uint32_t gpioport); | ||
void gpio_port_write(uint32_t gpioport, uint32_t data); | ||
|
||
END_DECLS | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
/** @defgroup VF6xx_gpio GPIO | ||
* | ||
* @ingroup VF6xx | ||
* | ||
* @section vf6xx_gpio_api_ex GPIO API. | ||
* | ||
* @brief <b>VF6xx General-Purpose Input/Output (GPIO)</b> | ||
* | ||
* @author @htmlonly © @endhtmlonly 2014 Stefan Agner <[email protected]> | ||
* | ||
* @date 03 July 2014 | ||
* | ||
* This library supports the GPIO module in the VF6xx SoC of Freescale. | ||
* Access is provided by GPIO number according to the Pinmux list of the | ||
* Reference Manual, similar as GPIOs are available on Linux. | ||
* | ||
* LGPL License Terms @ref lgpl_license | ||
*/ | ||
/* | ||
* This file is part of the libopencm3 project. | ||
* | ||
* Copyright (C) 2014 Stefan Agner <[email protected]> | ||
* | ||
* This library is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this library. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/**@{*/ | ||
|
||
#include <libopencm3/vf6xx/gpio.h> | ||
#include <libopencm3/vf6xx/ccm.h> | ||
|
||
/*---------------------------------------------------------------------------*/ | ||
/** @brief Set GPIO | ||
Set GPIO by GPIO number according to MUX list | ||
@param[in] gpio unsigned 32 bit. GPIO number | ||
*/ | ||
|
||
void gpio_set(uint32_t gpio) | ||
{ | ||
uint32_t port = GPIO(gpio / 32); | ||
GPIO_PSOR(port) = GPIO_OFFSET(gpio); | ||
} | ||
|
||
/*---------------------------------------------------------------------------*/ | ||
/** @brief Set GPIO | ||
Clears GPIO by GPIO number according to MUX list | ||
@param[in] gpio unsigned 32 bit. GPIO number | ||
*/ | ||
|
||
void gpio_clear(uint32_t gpio) | ||
{ | ||
uint32_t port = GPIO(gpio / 32); | ||
GPIO_PCOR(port) = GPIO_OFFSET(gpio); | ||
} | ||
|
||
/*---------------------------------------------------------------------------*/ | ||
/** @brief Get GPIOs logic state | ||
Get logic level of GPIO given by GPIO number according to MUX list. Reading | ||
a GPIO value is possible even if the port is not muxed for GPIO. | ||
@param[in] gpio unsigned 32 bit. GPIO number | ||
@returns the logic state of the given GPIO. | ||
*/ | ||
|
||
bool gpio_get(uint32_t gpio) | ||
{ | ||
uint32_t port = GPIO(gpio / 32); | ||
return !!(GPIO_PDIR(port) & GPIO_OFFSET(gpio)); | ||
} | ||
|
||
/*---------------------------------------------------------------------------*/ | ||
/** @brief Toggles GPIO | ||
Toggles GPIO by GPIO number according to MUX list | ||
@param[in] gpio unsigned 32 bit. GPIO number | ||
*/ | ||
|
||
void gpio_toggle(uint32_t gpio) | ||
{ | ||
uint32_t port = GPIO(gpio / 32); | ||
GPIO_PTOR(port) = GPIO_OFFSET(gpio); | ||
} | ||
|
||
/*---------------------------------------------------------------------------*/ | ||
/** @brief Read a whole GPIO Port | ||
Gets all 32 GPIOs of a Port. | ||
@param[in] gpioport unsigned 32 bit. GPIO port @ref gpio_reg_base | ||
@returns the logic states of the given GPIO port. | ||
*/ | ||
|
||
uint32_t gpio_port_read(uint32_t gpioport) | ||
{ | ||
return GPIO_PDIR(gpioport); | ||
} | ||
|
||
/*---------------------------------------------------------------------------*/ | ||
/** @brief Write a whole GPIO Port | ||
Sets all 32 GPIOs of a Port. | ||
@param[in] gpioport unsigned 32 bit. GPIO port @ref gpio_reg_base | ||
@param[in] gpio unsigned 32 bit. 1 for a logic 1 driven at port, 0 for a logic | ||
0 driven at port. | ||
*/ | ||
|
||
void gpio_port_write(uint32_t gpioport, uint32_t data) | ||
{ | ||
GPIO_PDOR(gpioport) = data; | ||
} | ||
|
||
/**@}*/ | ||
|