pio.c
上传用户:xukun0987
上传日期:2022-07-16
资源大小:216k
文件大小:12k
源码类别:

微处理器开发

开发平台:

C/C++

  1. /* ----------------------------------------------------------------------------
  2.  *         ATMEL Microcontroller Software Support 
  3.  * ----------------------------------------------------------------------------
  4.  * Copyright (c) 2008, Atmel Corporation
  5.  *
  6.  * All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions are met:
  10.  *
  11.  * - Redistributions of source code must retain the above copyright notice,
  12.  * this list of conditions and the disclaimer below.
  13.  *
  14.  * Atmel's name may not be used to endorse or promote products derived from
  15.  * this software without specific prior written permission.
  16.  *
  17.  * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  19.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
  20.  * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  22.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
  23.  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  24.  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  25.  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  26.  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * ----------------------------------------------------------------------------
  28.  */
  29. //------------------------------------------------------------------------------
  30. //         Headers
  31. //------------------------------------------------------------------------------
  32. #include "pio.h"
  33. #include <board.h>
  34. //------------------------------------------------------------------------------
  35. //         Local Functions
  36. //------------------------------------------------------------------------------
  37. //------------------------------------------------------------------------------
  38. /// Configures one or more pin(s) of a PIO controller as being controlled by
  39. /// peripheral A. Optionally, the corresponding internal pull-up(s) can be
  40. /// enabled.
  41. /// param pio  Pointer to a PIO controller.
  42. /// param mask  Bitmask of one or more pin(s) to configure.
  43. /// param enablePullUp  Indicates if the pin(s) internal pull-up shall be
  44. ///                      configured.
  45. //------------------------------------------------------------------------------
  46. static void PIO_SetPeripheralA(
  47.     AT91S_PIO *pio,
  48.     unsigned int mask,
  49.     unsigned char enablePullUp)
  50. {
  51.     // Disable interrupts on the pin(s)
  52.     pio->PIO_IDR = mask;
  53.     // Enable the pull-up(s) if necessary
  54.     if (enablePullUp) {
  55.         pio->PIO_PPUER = mask;
  56.     }
  57.     else {
  58.         pio->PIO_PPUDR = mask;
  59.     }
  60.     // Configure pin
  61.     pio->PIO_ASR = mask;
  62.     pio->PIO_PDR = mask;
  63. }
  64. //------------------------------------------------------------------------------
  65. /// Configures one or more pin(s) of a PIO controller as being controlled by
  66. /// peripheral B. Optionally, the corresponding internal pull-up(s) can be
  67. /// enabled.
  68. /// param pio  Pointer to a PIO controller.
  69. /// param mask  Bitmask of one or more pin(s) to configure.
  70. /// param enablePullUp  Indicates if the pin(s) internal pull-up shall be
  71. ///                      configured.
  72. //------------------------------------------------------------------------------
  73. static void PIO_SetPeripheralB(
  74.     AT91S_PIO *pio,
  75.     unsigned int mask,
  76.     unsigned char enablePullUp)
  77. {
  78.     // Disable interrupts on the pin(s)
  79.     pio->PIO_IDR = mask;
  80.     // Enable the pull-up(s) if necessary
  81.     if (enablePullUp) {
  82.         pio->PIO_PPUER = mask;
  83.     }
  84.     else {
  85.         pio->PIO_PPUDR = mask;
  86.     }
  87.     // Configure pin
  88.     pio->PIO_BSR = mask;
  89.     pio->PIO_PDR = mask;
  90. }
  91. //------------------------------------------------------------------------------
  92. /// Configures one or more pin(s) or a PIO controller as inputs. Optionally,
  93. /// the corresponding internal pull-up(s) and glitch filter(s) can be
  94. /// enabled.
  95. /// param pio  Pointer to a PIO controller.
  96. /// param mask  Bitmask indicating which pin(s) to configure as input(s).
  97. /// param enablePullUp  Indicates if the internal pull-up(s) must be enabled.
  98. /// param enableFilter  Indicates if the glitch filter(s) must be enabled.
  99. //------------------------------------------------------------------------------
  100. static void PIO_SetInput(
  101.     AT91S_PIO *pio,
  102.     unsigned int mask,
  103.     unsigned char enablePullUp,
  104.     unsigned char enableFilter)
  105. {
  106.     // Disable interrupts
  107.     pio->PIO_IDR = mask;
  108.     // Enable pull-up(s) if necessary
  109.     if (enablePullUp) {
  110.     
  111.         pio->PIO_PPUER = mask;
  112.     }
  113.     else {
  114.     
  115.         pio->PIO_PPUDR = mask;
  116.     }
  117.     // Enable filter(s) if necessary
  118.     if (enableFilter) {
  119.     
  120.         pio->PIO_IFER = mask;
  121.     }
  122.     else {
  123.     
  124.         pio->PIO_IFDR = mask;
  125.     }
  126.     // Configure pin as input
  127.     pio->PIO_ODR = mask;
  128.     pio->PIO_PER = mask;
  129. }
  130. //------------------------------------------------------------------------------
  131. /// Configures one or more pin(s) of a PIO controller as outputs, with the
  132. /// given default value. Optionally, the multi-drive feature can be enabled
  133. /// on the pin(s).
  134. /// param pio  Pointer to a PIO controller.
  135. /// param mask  Bitmask indicating which pin(s) to configure.
  136. /// param defaultValue  Default level on the pin(s).
  137. /// param enableMultiDrive  Indicates if the pin(s) shall be configured as
  138. ///                          open-drain.
  139. /// param enablePullUp  Indicates if the pin shall have its pull-up activated.
  140. //------------------------------------------------------------------------------
  141. static void PIO_SetOutput(
  142.     AT91S_PIO *pio,
  143.     unsigned int mask,
  144.     unsigned char defaultValue,
  145.     unsigned char enableMultiDrive,
  146.     unsigned char enablePullUp)
  147. {
  148.     // Disable interrupts
  149.     pio->PIO_IDR = mask;
  150.     // Enable pull-up(s) if necessary
  151.     if (enablePullUp) {
  152.     
  153.         pio->PIO_PPUER = mask;
  154.     }
  155.     else {
  156.     
  157.         pio->PIO_PPUDR = mask;
  158.     }
  159.     // Enable multi-drive if necessary
  160.     if (enableMultiDrive) {
  161.     
  162.         pio->PIO_MDER = mask;
  163.     }
  164.     else {
  165.     
  166.         pio->PIO_MDDR = mask;
  167.     }
  168.     // Set default value
  169.     if (defaultValue) {
  170.         pio->PIO_SODR = mask;
  171.     }
  172.     else {
  173.         pio->PIO_CODR = mask;
  174.     }
  175.     // Configure pin(s) as output(s)
  176.     pio->PIO_OER = mask;
  177.     pio->PIO_PER = mask;
  178. }
  179. //------------------------------------------------------------------------------
  180. //         Global Functions
  181. //------------------------------------------------------------------------------
  182. //------------------------------------------------------------------------------
  183. /// Configures a list of Pin instances, each of which can either hold a single
  184. /// pin or a group of pins, depending on the mask value; all pins are configured
  185. /// by this function. The size of the array must also be provided and is easily
  186. /// computed using PIO_LISTSIZE whenever its length is not known in advance.
  187. /// param list  Pointer to a list of Pin instances.
  188. /// param size  Size of the Pin list (calculated using PIO_LISTSIZE).
  189. /// return 1 if the pins have been configured properly; otherwise 0.
  190. //------------------------------------------------------------------------------
  191. unsigned char PIO_Configure(const Pin *list, unsigned int size)
  192. {
  193.     // Configure pins
  194.     while (size > 0) {
  195.     
  196.         switch (list->type) {
  197.     
  198.             case PIO_PERIPH_A:
  199.                 PIO_SetPeripheralA(list->pio,
  200.                                    list->mask,
  201.                                    (list->attribute & PIO_PULLUP) ? 1 : 0);
  202.                 break;
  203.     
  204.             case PIO_PERIPH_B:
  205.                 PIO_SetPeripheralB(list->pio,
  206.                                    list->mask,
  207.                                    (list->attribute & PIO_PULLUP) ? 1 : 0);
  208.                 break;
  209.     
  210.             case PIO_INPUT:
  211.                 AT91C_BASE_PMC->PMC_PCER = 1 << list->id;
  212.                 PIO_SetInput(list->pio,
  213.                              list->mask,
  214.                              (list->attribute & PIO_PULLUP) ? 1 : 0,
  215.                              (list->attribute & PIO_DEGLITCH)? 1 : 0);
  216.                 break;
  217.     
  218.             case PIO_OUTPUT_0:
  219.             case PIO_OUTPUT_1:
  220.                 PIO_SetOutput(list->pio,
  221.                               list->mask,
  222.                               (list->type == PIO_OUTPUT_1),
  223.                               (list->attribute & PIO_OPENDRAIN) ? 1 : 0,
  224.                               (list->attribute & PIO_PULLUP) ? 1 : 0);
  225.                 break;
  226.     
  227.             default: return 0;
  228.         }
  229.         list++;
  230.         size--;
  231.     }
  232.     return 1;
  233. }
  234. //------------------------------------------------------------------------------
  235. /// Sets a high output level on all the PIOs defined in the given Pin instance.
  236. /// This has no immediate effects on PIOs that are not output, but the PIO
  237. /// controller will memorize the value they are changed to outputs.
  238. /// param pin  Pointer to a Pin instance describing one or more pins.
  239. //------------------------------------------------------------------------------
  240. void PIO_Set(const Pin *pin)
  241. {
  242.     pin->pio->PIO_SODR = pin->mask;
  243. }
  244. //------------------------------------------------------------------------------
  245. /// Sets a low output level on all the PIOs defined in the given Pin instance.
  246. /// This has no immediate effects on PIOs that are not output, but the PIO
  247. /// controller will memorize the value they are changed to outputs.
  248. /// param pin  Pointer to a Pin instance describing one or more pins.
  249. //------------------------------------------------------------------------------
  250. void PIO_Clear(const Pin *pin)
  251. {
  252.     pin->pio->PIO_CODR = pin->mask;
  253. }
  254. //------------------------------------------------------------------------------
  255. /// Returns 1 if one or more PIO of the given Pin instance currently have a high
  256. /// level; otherwise returns 0. This method returns the actual value that is
  257. /// being read on the pin. To return the supposed output value of a pin, use
  258. /// PIO_GetOutputDataStatus() instead.
  259. /// param pin  Pointer to a Pin instance describing one or more pins.
  260. /// return 1 if the Pin instance contains at least one PIO that currently has
  261. /// a high level; otherwise 0.
  262. //------------------------------------------------------------------------------
  263. unsigned char PIO_Get(const Pin *pin)
  264. {
  265.     unsigned int reg;
  266.     if ((pin->type == PIO_OUTPUT_0) || (pin->type == PIO_OUTPUT_1)) {
  267.         reg = pin->pio->PIO_ODSR;
  268.     }
  269.     else {
  270.         reg = pin->pio->PIO_PDSR;
  271.     }
  272.     if ((reg & pin->mask) == 0) {
  273.         return 0;
  274.     }
  275.     else {
  276.         return 1;
  277.     }
  278. }
  279. //------------------------------------------------------------------------------
  280. /// Returns 1 if one or more PIO of the given Pin are configured to output a
  281. /// high level (even if they are not output).
  282. /// To get the actual value of the pin, use PIO_Get() instead.
  283. /// param pin  Pointer to a Pin instance describing one or more pins.
  284. /// return 1 if the Pin instance contains at least one PIO that is configured
  285. /// to output a high level; otherwise 0.
  286. //------------------------------------------------------------------------------
  287. unsigned char PIO_GetOutputDataStatus(const Pin *pin)
  288. {
  289.     if ((pin->pio->PIO_ODSR & pin->mask) == 0) {
  290.         return 0;
  291.     }
  292.     else {
  293.         return 1;
  294.     }
  295. }
  296. //------------------------------------------------------------------------------
  297. /// Returns the value of ISR for the PIO controller of the pin.
  298. /// Reading this register acknoledges all the ITs.
  299. /// param pin  Pointer to a Pin instance describing one or more pins.
  300. //------------------------------------------------------------------------------
  301. unsigned int PIO_GetISR(const Pin *pin)
  302. {
  303.     return (pin->pio->PIO_ISR);
  304. }