Contiki-NG
board.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016, Texas Instruments Incorporated - http://www.ti.com/
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the copyright holder nor the names of its
14  * contributors may be used to endorse or promote products derived
15  * from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28  * OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 /*---------------------------------------------------------------------------*/
31 /** \addtogroup launchpad-peripherals
32  * @{
33  *
34  * \defgroup launchpad-cc1310-specific CC1310 LaunchPad Peripherals
35  *
36  * Defines related to the CC1310 LaunchPad
37  *
38  * This file provides connectivity information on LEDs, Buttons, UART and
39  * other peripherals
40  *
41  * This file is not meant to be modified by the user.
42  * @{
43  *
44  * \file
45  * Header file with definitions related to the I/O connections on the TI
46  * CC1310 LaunchPad
47  *
48  * \note Do not include this file directly. It gets included by contiki-conf
49  * after all relevant directives have been set.
50  */
51 /*---------------------------------------------------------------------------*/
52 #ifndef BOARD_H_
53 #define BOARD_H_
54 /*---------------------------------------------------------------------------*/
55 #include "ioc.h"
56 /*---------------------------------------------------------------------------*/
57 /**
58  * \name LED HAL configuration
59  *
60  * Those values are not meant to be modified by the user
61  * @{
62  */
63 #define LEDS_CONF_COUNT 2
64 #define LEDS_CONF_RED 1
65 #define LEDS_CONF_GREEN 2
66 /** @} */
67 /*---------------------------------------------------------------------------*/
68 /**
69  * \name LED IOID mappings
70  *
71  * Those values are not meant to be modified by the user
72  * @{
73  */
74 #define BOARD_IOID_LED_1 IOID_6
75 #define BOARD_IOID_LED_2 IOID_7
76 /** @} */
77 /*---------------------------------------------------------------------------*/
78 /**
79  * \name UART IOID mapping
80  *
81  * Those values are not meant to be modified by the user
82  * @{
83  */
84 #define BOARD_IOID_UART_RX IOID_2
85 #define BOARD_IOID_UART_TX IOID_3
86 #define BOARD_IOID_UART_RTS IOID_18
87 #define BOARD_IOID_UART_CTS IOID_19
88 #define BOARD_UART_RX (1 << BOARD_IOID_UART_RX)
89 #define BOARD_UART_TX (1 << BOARD_IOID_UART_TX)
90 #define BOARD_UART_RTS (1 << BOARD_IOID_UART_RTS)
91 #define BOARD_UART_CTS (1 << BOARD_IOID_UART_CTS)
92 /** @} */
93 /*---------------------------------------------------------------------------*/
94 /**
95  * \name Button IOID mapping
96  *
97  * Those values are not meant to be modified by the user
98  * @{
99  */
100 #define BOARD_IOID_KEY_LEFT IOID_13
101 #define BOARD_IOID_KEY_RIGHT IOID_14
102 #define BOARD_KEY_LEFT (1 << BOARD_IOID_KEY_LEFT)
103 #define BOARD_KEY_RIGHT (1 << BOARD_IOID_KEY_RIGHT)
104 /** @} */
105 /*---------------------------------------------------------------------------*/
106 /**
107  * \name External flash IOID mapping
108  *
109  * Those values are not meant to be modified by the user
110  * @{
111  */
112 #define EXT_FLASH_SPI_CONTROLLER SPI_CONTROLLER_SPI0
113 
114 #define BOARD_IOID_FLASH_SCK IOID_10
115 #define BOARD_IOID_FLASH_MOSI IOID_9
116 #define BOARD_IOID_FLASH_MISO IOID_8
117 #define BOARD_IOID_FLASH_CS IOID_20
118 
119 #define EXT_FLASH_SPI_PIN_SCK 10
120 #define EXT_FLASH_SPI_PIN_MOSI 9
121 #define EXT_FLASH_SPI_PIN_MISO 8
122 #define EXT_FLASH_SPI_PIN_CS 20
123 
124 #define EXT_FLASH_DEVICE_ID 0x14
125 #define EXT_FLASH_MID 0xC2
126 
127 #define EXT_FLASH_PROGRAM_PAGE_SIZE 256
128 #define EXT_FLASH_ERASE_SECTOR_SIZE 4096
129 /** @} */
130 /*---------------------------------------------------------------------------*/
131 /**
132  * \brief I2C IOID mappings
133  *
134  * Those values are not meant to be modified by the user
135  * @{
136  */
137 #define BOARD_IOID_SCL IOID_4
138 #define BOARD_IOID_SDA IOID_5
139 /** @} */
140 /*---------------------------------------------------------------------------*/
141 /**
142  * \brief ROM bootloader configuration
143  *
144  * Change SET_CCFG_BL_CONFIG_BL_PIN_NUMBER to BOARD_IOID_KEY_xyz to select
145  * which button triggers the bootloader on reset.
146  *
147  * The remaining values are not meant to be modified by the user
148  * @{
149  */
150 #if ROM_BOOTLOADER_ENABLE
151 #define SET_CCFG_BL_CONFIG_BOOTLOADER_ENABLE 0xC5
152 #define SET_CCFG_BL_CONFIG_BL_LEVEL 0x00
153 #define SET_CCFG_BL_CONFIG_BL_PIN_NUMBER BOARD_IOID_KEY_LEFT
154 #define SET_CCFG_BL_CONFIG_BL_ENABLE 0xC5
155 #else
156 #define SET_CCFG_BL_CONFIG_BOOTLOADER_ENABLE 0x00
157 #define SET_CCFG_BL_CONFIG_BL_LEVEL 0x01
158 #define SET_CCFG_BL_CONFIG_BL_PIN_NUMBER 0xFF
159 #define SET_CCFG_BL_CONFIG_BL_ENABLE 0xFF
160 #endif
161 /** @} */
162 /*---------------------------------------------------------------------------*/
163 /**
164  * \brief Remaining pins
165  *
166  * Those values are not meant to be modified by the user
167  * @{
168  */
169 #define BOARD_IOID_DIO1 IOID_1
170 #define BOARD_IOID_CS IOID_11
171 #define BOARD_IOID_TDO IOID_16
172 #define BOARD_IOID_TDI IOID_17
173 #define BOARD_IOID_DIO12 IOID_12
174 #define BOARD_IOID_DIO15 IOID_15
175 #define BOARD_IOID_DIO21 IOID_21
176 #define BOARD_IOID_DIO22 IOID_22
177 #define BOARD_IOID_DIO23 IOID_23
178 #define BOARD_IOID_DIO24 IOID_24
179 #define BOARD_IOID_DIO25 IOID_25
180 #define BOARD_IOID_DIO26 IOID_26
181 #define BOARD_IOID_DIO27 IOID_27
182 #define BOARD_IOID_DIO28 IOID_28
183 #define BOARD_IOID_DIO29 IOID_29
184 #define BOARD_IOID_DIO30 IOID_30
185 
186 #define BOARD_UNUSED_PINS { \
187  BOARD_IOID_DIO1, BOARD_IOID_CS, BOARD_IOID_TDO, BOARD_IOID_TDI, \
188  BOARD_IOID_DIO12, BOARD_IOID_DIO15, BOARD_IOID_DIO21, BOARD_IOID_DIO22, \
189  BOARD_IOID_DIO23, BOARD_IOID_DIO24, BOARD_IOID_DIO25, BOARD_IOID_DIO26, \
190  BOARD_IOID_DIO27, BOARD_IOID_DIO28, BOARD_IOID_DIO29, BOARD_IOID_DIO30, \
191  IOID_UNUSED \
192  }
193 /** @} */
194 /*---------------------------------------------------------------------------*/
195 /**
196  * \brief Board indices for the button HAL
197  *
198  * Those values are not meant to be modified by the user
199  * @{
200  */
201 #define BOARD_BUTTON_HAL_INDEX_KEY_LEFT 0x00
202 #define BOARD_BUTTON_HAL_INDEX_KEY_RIGHT 0x01
203 /** @} */
204 /*---------------------------------------------------------------------------*/
205 /**
206  * \name Device string used on startup
207  * @{
208  */
209 #define BOARD_STRING "TI CC1310 LaunchPad"
210 
211 /** @} */
212 /*---------------------------------------------------------------------------*/
213 #endif /* BOARD_H_ */
214 /*---------------------------------------------------------------------------*/
215 /**
216  * @}
217  * @}
218  */
Header file with declarations for the I/O Control module.