-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathboard.h
278 lines (220 loc) · 11.4 KB
/
board.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
Copyright (c) 2022 Arduino SA. All right reserved.
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 2.1 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, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __BOARD_H
#define __BOARD_H
#define BOARD_APP_DEFAULT_ADD 0x08040000
#define BOOTLOADER_CONFIG_MAGIC 0xA0
#define BOOTLOADER_VERSION 6
#define USB_SPEED_HIGH 1
#define USB_SPEED_FULL 2
#ifndef BOARD_USB_SPEED
#ifdef USE_USB_HS
#define BOARD_USB_SPEED USB_SPEED_HIGH
#else
#define BOARD_USB_SPEED USB_SPEED_FULL
#endif
#endif
#ifndef BOARD_HAS_ETHERNET
#define BOARD_HAS_ETHERNET 1
#endif
#ifndef BOARD_HAS_WIFI
#define BOARD_HAS_WIFI 1
#endif
#ifndef BOARD_RAM_SIZE
#define BOARD_RAM_SIZE 8
#endif
#ifndef BOARD_QSPI_SIZE
#define BOARD_QSPI_SIZE 16
#endif
#ifndef BOARD_HAS_VIDEO
#define BOARD_HAS_VIDEO 1
#endif
#ifndef BOARD_HAS_CRYPTO
#define BOARD_HAS_CRYPTO 1
#endif
#ifndef BOARD_EXTCLOCK
#define BOARD_EXTCLOCK 25
#endif
#if BOARD_HAS_VIDEO
#define BOARD_VIDEO_ENABLE PJ_2
#define BOARD_VIDEO_RESET PJ_3
#endif
#if defined TARGET_PORTENTA_H7_M7
#define BOARD_GREEN_LED PK_6
#define BOARD_RED_LED PK_5
#define BOARD_BLUE_LED PK_7
#define BOARD_LED_OFF 1
#define BOARD_USB_RESET PJ_4
#define BOARD_ETH_RESET PJ_15
#define BOARD_BOOT_SEL PI_8
#define BOARD_I2C_SCL PB_6
#define BOARD_I2C_SDA PB_7
#define BOARD_USBD_VID 0x2341
#define BOARD_USBD_PID 0x035B
#define BOARD_USBD_STRING "Portenta H7"
#define BOARD_QSPI_SO0 PD_11
#define BOARD_QSPI_SO1 PD_12
#define BOARD_QSPI_SO2 PF_7
#define BOARD_QSPI_SO3 PD_13
#define BOARD_QSPI_SCK PF_10
#define BOARD_QSPI_CS PG_6
#define BOARD_USB_OTG_FS_DM_DP_PIN (GPIO_PIN_11 | GPIO_PIN_12)
#define BOARD_USB_OTG_FS_DM_DP_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_FS_DM_DP_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_FS_DM_DP_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_FS_DM_DP_ALTERNATE (GPIO_AF10_OTG1_FS)
#define BOARD_USB_OTG_FS_DM_DP_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_CLK_PIN (GPIO_PIN_5)
#define BOARD_USB_OTG_HS_CLK_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_CLK_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_CLK_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_HS_CLK_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_CLK_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_D0_PIN (GPIO_PIN_3)
#define BOARD_USB_OTG_HS_D0_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_D0_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_D0_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_HS_D0_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_D0_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_D1_D7_PIN (GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_5 | GPIO_PIN_10 | GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13)
#define BOARD_USB_OTG_HS_D1_D7_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_D1_D7_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_D1_D7_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_D1_D7_GPIO (GPIOB)
#define BOARD_USB_OTG_HS_STP_PIN (GPIO_PIN_0)
#define BOARD_USB_OTG_HS_STP_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_STP_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_STP_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_STP_GPIO (GPIOC)
#define BOARD_USB_OTG_HS_NXT_PIN (GPIO_PIN_4)
#define BOARD_USB_OTG_HS_NXT_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_NXT_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_NXT_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_NXT_GPIO (GPIOH)
#define BOARD_USB_OTG_HS_DIR_PIN (GPIO_PIN_11)
#define BOARD_USB_OTG_HS_DIR_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_DIR_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_DIR_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_DIR_GPIO (GPIOI)
#elif defined TARGET_NICLA_VISION
#define BOARD_GREEN_LED PC_13
#define BOARD_RED_LED PE_3
#define BOARD_BLUE_LED PF_4
#define BOARD_LED_OFF 1
#define BOARD_USB_RESET PA_2
#define BOARD_I2C_SCL PF_1
#define BOARD_I2C_SDA PF_0
#define BOARD_USBD_VID 0x2341
#define BOARD_USBD_PID 0x035F
#define BOARD_USBD_STRING "Nicla Vision"
#define BOARD_QSPI_SO0 PD_11
#define BOARD_QSPI_SO1 PF_9
#define BOARD_QSPI_SO2 PE_2
#define BOARD_QSPI_SO3 PD_13
#define BOARD_QSPI_SCK PF_10
#define BOARD_QSPI_CS PG_6
#define BOARD_USB_OTG_FS_DM_DP_PIN (GPIO_PIN_11 | GPIO_PIN_12)
#define BOARD_USB_OTG_FS_DM_DP_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_FS_DM_DP_PULL (GPIO_PULLUP)
#define BOARD_USB_OTG_FS_DM_DP_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_FS_DM_DP_ALTERNATE (GPIO_AF10_OTG1_FS)
#define BOARD_USB_OTG_FS_DM_DP_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_CLK_PIN (GPIO_PIN_5)
#define BOARD_USB_OTG_HS_CLK_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_CLK_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_CLK_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_HS_CLK_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_CLK_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_D0_PIN (GPIO_PIN_3)
#define BOARD_USB_OTG_HS_D0_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_D0_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_D0_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_HS_D0_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_D0_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_D1_D7_PIN (GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_5 | GPIO_PIN_10 | GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13)
#define BOARD_USB_OTG_HS_D1_D7_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_D1_D7_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_D1_D7_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_D1_D7_GPIO (GPIOB)
#define BOARD_USB_OTG_HS_STP_PIN (GPIO_PIN_0)
#define BOARD_USB_OTG_HS_STP_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_STP_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_STP_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_STP_GPIO (GPIOC)
#define BOARD_USB_OTG_HS_NXT_PIN (GPIO_PIN_3)
#define BOARD_USB_OTG_HS_NXT_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_NXT_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_NXT_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_NXT_GPIO (GPIOC)
#define BOARD_USB_OTG_HS_DIR_PIN (GPIO_PIN_2)
#define BOARD_USB_OTG_HS_DIR_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_DIR_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_DIR_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_DIR_GPIO (GPIOC)
#elif defined TARGET_OPTA
#define BOARD_GREEN_LED PH_12
#define BOARD_RED_LED PH_11
#define BOARD_BLUE_LED PE_5
#define BOARD_LED_OFF 0
#define BOARD_ETH_RESET PJ_15
#define BOARD_USBD_VID 0x2341
#define BOARD_USBD_PID 0x0364
#define BOARD_USBD_STRING "Opta"
#define BOARD_QSPI_SO0 PD_11
#define BOARD_QSPI_SO1 PD_12
#define BOARD_QSPI_SO2 PE_2
#define BOARD_QSPI_SO3 PD_13
#define BOARD_QSPI_SCK PB_2
#define BOARD_QSPI_CS PG_6
#define BOARD_USB_OTG_FS_DM_DP_PIN (GPIO_PIN_11 | GPIO_PIN_12)
#define BOARD_USB_OTG_FS_DM_DP_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_FS_DM_DP_PULL (GPIO_PULLUP)
#define BOARD_USB_OTG_FS_DM_DP_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_FS_DM_DP_ALTERNATE (GPIO_AF10_OTG1_FS)
#define BOARD_USB_OTG_FS_DM_DP_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_CLK_PIN (GPIO_PIN_5)
#define BOARD_USB_OTG_HS_CLK_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_CLK_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_CLK_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_HS_CLK_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_CLK_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_D0_PIN (GPIO_PIN_3)
#define BOARD_USB_OTG_HS_D0_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_D0_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_D0_SPEED (GPIO_SPEED_FREQ_VERY_HIGH)
#define BOARD_USB_OTG_HS_D0_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_D0_GPIO (GPIOA)
#define BOARD_USB_OTG_HS_D1_D7_PIN (GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_5 | GPIO_PIN_10 | GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13)
#define BOARD_USB_OTG_HS_D1_D7_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_D1_D7_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_D1_D7_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_D1_D7_GPIO (GPIOB)
#define BOARD_USB_OTG_HS_STP_PIN (GPIO_PIN_0)
#define BOARD_USB_OTG_HS_STP_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_STP_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_STP_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_STP_GPIO (GPIOC)
#define BOARD_USB_OTG_HS_NXT_PIN (GPIO_PIN_3)
#define BOARD_USB_OTG_HS_NXT_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_NXT_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_NXT_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_NXT_GPIO (GPIOC)
#define BOARD_USB_OTG_HS_DIR_PIN (GPIO_PIN_2)
#define BOARD_USB_OTG_HS_DIR_MODE (GPIO_MODE_AF_PP)
#define BOARD_USB_OTG_HS_DIR_PULL (GPIO_NOPULL)
#define BOARD_USB_OTG_HS_DIR_ALTERNATE (GPIO_AF10_OTG2_HS)
#define BOARD_USB_OTG_HS_DIR_GPIO (GPIOC)
#endif
#endif /* __BOARD_H */