70179cfcc9354006ad18d18c95acf76edbc89ea1
[bertos.git] / bertos / cpu / cortex-m3 / drv / gpio_lm3s.h
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 LM3S1968 GPIO control interface.
34  */
35
36 #ifndef GPIO_LM3S_H
37 #define GPIO_LM3S_H
38
39 /**
40  * GPIO mode
41  */
42 /*\{*/
43 #define GPIO_DIR_MODE_IN        0x00000000  //< Pin is a GPIO input
44 #define GPIO_DIR_MODE_OUT       0x00000001  //< Pin is a GPIO output
45 #define GPIO_DIR_MODE_HW        0x00000002  //< Pin is a peripheral function
46 /*\}*/
47
48 /**
49  * GPIO strenght
50  */
51 /*\{*/
52 #define GPIO_STRENGTH_2MA       0x00000001  //< 2mA drive strength
53 #define GPIO_STRENGTH_4MA       0x00000002  //< 4mA drive strength
54 #define GPIO_STRENGTH_8MA       0x00000004  //< 8mA drive strength
55 #define GPIO_STRENGTH_8MA_SC    0x0000000C  //< 8mA drive with slew rate control
56 /*\}*/
57
58 /**
59  * GPIO type
60  */
61 /*\{*/
62 #define GPIO_PIN_TYPE_STD       0x00000008  //< Push-pull
63 #define GPIO_PIN_TYPE_STD_WPU   0x0000000A  //< Push-pull with weak pull-up
64 #define GPIO_PIN_TYPE_STD_WPD   0x0000000C  //< Push-pull with weak pull-down
65 #define GPIO_PIN_TYPE_OD        0x00000009  //< Open-drain
66 #define GPIO_PIN_TYPE_OD_WPU    0x0000000B  //< Open-drain with weak pull-up
67 #define GPIO_PIN_TYPE_OD_WPD    0x0000000D  //< Open-drain with weak pull-down
68 #define GPIO_PIN_TYPE_ANALOG    0x00000000  //< Analog comparator
69 /*\}*/
70
71 int lm3s_gpio_pin_config(uint32_t port, uint8_t pins,
72                 uint32_t mode, uint32_t strength, uint32_t type);
73 void lm3s_gpio_pin_write(uint32_t port, uint8_t pins, uint8_t val);
74
75 #endif /* GPIO_LM3S_H */