Add comment and reorder the includes. Move gpio structure to specific header file.
[bertos.git] / bertos / cpu / cortex-m3 / drv / gpio_stm32.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief STM32 GPIO control interface.
34  *
35  * \author Andrea Righi <arighi@develer.com>
36  */
37
38 #include "gpio_stm32.h"
39
40 #include <cfg/compiler.h>
41 #include <cfg/debug.h>
42
43 #include <io/stm32.h>
44
45
46 /**
47  * Configure a GPIO pin
48  *
49  * \param base Base address of the GPIO port
50  * \param pins Bit-packed representation of the pin(s)
51  * \param mode Pin(s) configuration mode
52  * \param speed Output drive speed
53  *
54  * Return 0 on success, otherwise a negative value.
55  */
56 int stm32_gpioPinConfig(struct stm32_gpio *base,
57                         uint16_t pins, uint8_t mode, uint8_t speed)
58 {
59         uint32_t reg_mode = mode & 0x0f;
60         int i;
61
62         if (mode & 0x10)
63                 reg_mode |= speed;
64
65         if (pins & 0xff)
66         {
67                 uint32_t reg = base->CRL;
68
69                 for (i = 0; i < 8; i++)
70                 {
71                         uint32_t pos = 1 << i;
72
73                         if (pins & pos)
74                         {
75                                 pos = i << 2;
76                                 reg &= ~(0x0f << pos);
77                                 reg |= reg_mode << pos;
78
79                                 if (mode == GPIO_MODE_IPD)
80                                         base->BRR = 0x01 << i;
81                                 if (mode == GPIO_MODE_IPU)
82                                         base->BSRR = 0x01 << i;
83                         }
84                 }
85                 base->CRL = reg;
86         }
87         if (pins > 0xff)
88         {
89                 uint32_t reg = base->CRH;
90
91                 for (i = 0; i < 8; i++)
92                 {
93                         uint32_t pos = 1 << (i + 8);
94
95                         if (pins & pos)
96                         {
97                                 pos = i << 2;
98                                 reg &= ~(0x0f << pos);
99                                 reg |= reg_mode << pos;
100
101                                 if (mode == GPIO_MODE_IPD)
102                                         base->BRR = 0x01 << (i + 8);
103                                 if (mode == GPIO_MODE_IPU)
104                                         base->BSRR = 0x01 << (i + 8);
105                         }
106                 }
107                 base->CRH = reg;
108         }
109         return 0;
110 }