blob: 74268adeb7c1fd00e05525e44e9325648beaf9b6 [file] [log] [blame]
Kévin Redon9a12d682018-07-08 13:21:16 +02001/* SIMtrace 2 firmware USB DFU bootloader
2 *
3 * (C) 2015-2017 by Harald Welte <hwelte@hmw-consulting.de>
4 * (C) 2018 by sysmocom -s.f.m.c. GmbH, Author: Kevin Redon <kredon@sysmocom.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 */
Harald Welted8a003d2017-02-27 20:31:09 +010020#include "board.h"
21#include "utils.h"
22#include "usb/device/dfu/dfu.h"
23#include "usb/common/dfu/usb_dfu.h"
24#include "manifest.h"
25
Harald Welte3bbaba02017-03-06 22:47:06 +010026#include <osmocom/core/timer.h>
27
Harald Welte32852bc2017-02-28 00:21:45 +010028#define ALTIF_RAM 0
29#define ALTIF_FLASH 1
30
Harald Welted8a003d2017-02-27 20:31:09 +010031unsigned int g_unique_id[4];
Kévin Redon869dbfa2018-06-17 22:36:44 +020032/* remember if the watchdog has been configured in the main loop so we can kick it in the ISR */
33static bool watchdog_configured = false;
Harald Welted8a003d2017-02-27 20:31:09 +010034
Kévin Redon9def7632018-06-27 16:27:41 +020035/* There is not enough space in the 16 KiB DFU bootloader to include led.h functions */
36#ifdef PINS_LEDS
37/** LED pin configurations */
38static const Pin pinsLeds[] = { PINS_LEDS } ;
39#endif
40
Harald Welted8a003d2017-02-27 20:31:09 +010041/*----------------------------------------------------------------------------
42 * Callbacks
43 *----------------------------------------------------------------------------*/
44
Harald Welte32852bc2017-02-28 00:21:45 +010045#define RAM_ADDR(offset) (IRAM_ADDR + BOARD_DFU_RAM_SIZE + offset)
46#define FLASH_ADDR(offset) (IFLASH_ADDR + BOARD_DFU_BOOT_SIZE + offset)
47
48#define IFLASH_END ((uint8_t *)IFLASH_ADDR + IFLASH_SIZE)
49#define IRAM_END ((uint8_t *)IRAM_ADDR + IRAM_SIZE)
50
Kévin Redon318309f2018-06-01 11:02:49 +020051/* incoming call-back: Host has transferred 'len' bytes (stored at
Harald Welte32852bc2017-02-28 00:21:45 +010052 * 'data'), which we shall write to 'offset' into the partition
Kévin Redon318309f2018-06-01 11:02:49 +020053 * associated with 'altif'. Guaranted to be less than
Harald Welte32852bc2017-02-28 00:21:45 +010054 * BOARD_DFU_PAGE_SIZE */
55int USBDFU_handle_dnload(uint8_t altif, unsigned int offset,
56 uint8_t *data, unsigned int len)
Harald Welted8a003d2017-02-27 20:31:09 +010057{
Harald Welte32852bc2017-02-28 00:21:45 +010058 uint32_t addr;
Harald Welte1cfc2612018-06-29 21:07:41 +020059 unsigned int i;
Harald Welte32852bc2017-02-28 00:21:45 +010060 int rc;
Kévin Redon318309f2018-06-01 11:02:49 +020061 /* address of the last allocated variable on the stack */
62 uint32_t stack_addr = (uint32_t)&rc;
Kévin Redon869dbfa2018-06-17 22:36:44 +020063 /* kick the dog to have enough time to flash */
64 if (watchdog_configured) {
65 WDT_Restart(WDT);
66 }
Harald Welte32852bc2017-02-28 00:21:45 +010067
Harald Weltee8eea292017-03-03 00:35:51 +010068 printf("dnload(altif=%u, offset=%u, len=%u)\n\r", altif, offset, len);
Harald Welte32852bc2017-02-28 00:21:45 +010069
Kévin Redon9def7632018-06-27 16:27:41 +020070#ifdef PINS_LEDS
71 PIO_Clear(&pinsLeds[LED_NUM_RED]);
72#endif
73
Harald Welte32852bc2017-02-28 00:21:45 +010074 switch (altif) {
75 case ALTIF_RAM:
76 addr = RAM_ADDR(offset);
Kévin Redonb73f0a02018-06-17 22:33:29 +020077 if (addr < IRAM_ADDR || addr + len >= IRAM_ADDR + IRAM_SIZE || addr + len >= stack_addr) {
Harald Welteadba0ce2017-02-28 01:02:24 +010078 g_dfu->state = DFU_STATE_dfuERROR;
79 g_dfu->status = DFU_STATUS_errADDRESS;
Kévin Redon9def7632018-06-27 16:27:41 +020080 rc = DFU_RET_STALL;
81 break;
Harald Welte32852bc2017-02-28 00:21:45 +010082 }
83 memcpy((void *)addr, data, len);
Kévin Redon9def7632018-06-27 16:27:41 +020084 rc = DFU_RET_ZLP;
85 break;
Harald Welte32852bc2017-02-28 00:21:45 +010086 case ALTIF_FLASH:
87 addr = FLASH_ADDR(offset);
Kévin Redonb73f0a02018-06-17 22:33:29 +020088 if (addr < IFLASH_ADDR || addr + len >= IFLASH_ADDR + IFLASH_SIZE) {
Harald Welteadba0ce2017-02-28 01:02:24 +010089 g_dfu->state = DFU_STATE_dfuERROR;
90 g_dfu->status = DFU_STATUS_errADDRESS;
Kévin Redon9def7632018-06-27 16:27:41 +020091 rc = DFU_RET_STALL;
92 break;
Harald Welte32852bc2017-02-28 00:21:45 +010093 }
Kévin Redonb73f0a02018-06-17 22:33:29 +020094 rc = FLASHD_Unlock(addr, addr + len, 0, 0);
95 if (rc != 0) {
96 TRACE_ERROR("DFU download flash unlock failed\n\r");
Kévin Redon9def7632018-06-27 16:27:41 +020097 rc = DFU_RET_STALL;
98 break;
Kévin Redonb73f0a02018-06-17 22:33:29 +020099 }
Harald Welte32852bc2017-02-28 00:21:45 +0100100 rc = FLASHD_Write(addr, data, len);
101 if (rc != 0) {
Kévin Redonb73f0a02018-06-17 22:33:29 +0200102 TRACE_ERROR("DFU download flash erase failed\n\r");
Kévin Redon9def7632018-06-27 16:27:41 +0200103 rc = DFU_RET_STALL;
104 break;
Kévin Redonb73f0a02018-06-17 22:33:29 +0200105 }
Harald Welte1cfc2612018-06-29 21:07:41 +0200106 for (i = 0; i < len; i++) {
Kévin Redonb73f0a02018-06-17 22:33:29 +0200107 if (((uint8_t*)addr)[i]!=data[i]) {
108 TRACE_ERROR("DFU download flash data written not correct\n\r");
Kévin Redon9def7632018-06-27 16:27:41 +0200109 rc = DFU_RET_STALL;
110 break;
Kévin Redonb73f0a02018-06-17 22:33:29 +0200111 }
112 }
Kévin Redon9def7632018-06-27 16:27:41 +0200113 rc = DFU_RET_ZLP;
114 break;
Harald Welte32852bc2017-02-28 00:21:45 +0100115 default:
Harald Welte32852bc2017-02-28 00:21:45 +0100116 TRACE_ERROR("DFU download for unknown AltIf %d\n\r", altif);
Kévin Redon9def7632018-06-27 16:27:41 +0200117 rc = DFU_RET_STALL;
118 break;
Harald Welte32852bc2017-02-28 00:21:45 +0100119 }
Kévin Redon9def7632018-06-27 16:27:41 +0200120
121#ifdef PINS_LEDS
122 PIO_Set(&pinsLeds[LED_NUM_RED]);
123#endif
124
125 return rc;
Harald Welted8a003d2017-02-27 20:31:09 +0100126}
Harald Welte32852bc2017-02-28 00:21:45 +0100127
128/* incoming call-back: Host has requested to read back 'req_len' bytes
129 * starting from 'offset' of the firmware * associated with partition
130 * 'altif' */
131int USBDFU_handle_upload(uint8_t altif, unsigned int offset,
132 uint8_t *data, unsigned int req_len)
133{
134 uint32_t addr;
135
136 printf("upload(altif=%u, offset=%u, len=%u)", altif, offset, req_len);
137
138 switch (altif) {
139 case ALTIF_RAM:
140 addr = RAM_ADDR(offset);
141 if (addr > IRAM_ADDR + IRAM_SIZE) {
Harald Welteadba0ce2017-02-28 01:02:24 +0100142 g_dfu->state = DFU_STATE_dfuERROR;
143 g_dfu->status = DFU_STATUS_errADDRESS;
Harald Welte32852bc2017-02-28 00:21:45 +0100144 return -1;
145 }
146 if ((uint8_t *)addr + req_len > IRAM_END)
147 req_len = IRAM_END - (uint8_t *)addr;
148 memcpy(data, (void *)addr, req_len);
149 break;
150 case ALTIF_FLASH:
151 addr = FLASH_ADDR(offset);
152 if (addr > IFLASH_ADDR + IFLASH_SIZE) {
Harald Welteadba0ce2017-02-28 01:02:24 +0100153 g_dfu->state = DFU_STATE_dfuERROR;
154 g_dfu->status = DFU_STATUS_errADDRESS;
Harald Welte32852bc2017-02-28 00:21:45 +0100155 return -1;
156 }
157 if ((uint8_t *)addr + req_len > IFLASH_END)
158 req_len = IFLASH_END - (uint8_t *)addr;
159 memcpy(data, (void *)addr, req_len);
160 break;
161 default:
162 TRACE_ERROR("DFU upload for unknown AltIf %d\n\r", altif);
163 /* FIXME: set error codes */
164 return -1;
165 }
Harald Welteec0837c2017-03-03 01:33:24 +0100166 printf("=%u\n\r", req_len);
Harald Welte32852bc2017-02-28 00:21:45 +0100167 return req_len;
168}
169
Harald Welte27f5fc62017-11-28 22:15:56 +0100170/* can be overridden by board specific code, e.g. by pushbutton */
171WEAK int board_override_enter_dfu(void)
Harald Welte14051002017-03-04 19:17:27 +0100172{
Harald Welte27f5fc62017-11-28 22:15:56 +0100173 return 0;
Harald Welte14051002017-03-04 19:17:27 +0100174}
175
176/* using this function we can determine if we should enter DFU mode
177 * during boot, or if we should proceed towards the application/runtime */
178int USBDFU_OverrideEnterDFU(void)
179{
180 uint32_t *app_part = (uint32_t *)FLASH_ADDR(0);
Kévin Redon9918c282018-07-07 15:22:16 +0200181 /* at the first call we are before the text segment has been relocated,
182 * so g_dfu is not initialized yet */
183 g_dfu = &_g_dfu;
184 if (USB_DFU_MAGIC == g_dfu->magic) {
185 return 1;
186 }
Harald Welte14051002017-03-04 19:17:27 +0100187
188 /* If the loopback jumper is set, we enter DFU mode */
Kévin Redon9918c282018-07-07 15:22:16 +0200189 if (board_override_enter_dfu()) {
190 return 2;
191 }
Harald Welte14051002017-03-04 19:17:27 +0100192
193 /* if the first word of the application partition doesn't look
194 * like a stack pointer (i.e. point to RAM), enter DFU mode */
Kévin Redon9918c282018-07-07 15:22:16 +0200195 if ((app_part[0] < IRAM_ADDR) || ((uint8_t *)app_part[0] > IRAM_END)) {
196 return 3;
197 }
Harald Welte14051002017-03-04 19:17:27 +0100198
199 /* if the second word of the application partition doesn't look
200 * like a function from flash (reset vector), enter DFU mode */
201 if (((uint32_t *)app_part[1] < app_part) ||
Kévin Redon9918c282018-07-07 15:22:16 +0200202 ((uint8_t *)app_part[1] > IFLASH_END)) {
203 return 4;
204 }
Harald Welte14051002017-03-04 19:17:27 +0100205
206 return 0;
207}
Harald Welted8a003d2017-02-27 20:31:09 +0100208
209/* returns '1' in case we should break any endless loop */
210static void check_exec_dbg_cmd(void)
211{
212 int ch;
213
214 if (!UART_IsRxReady())
215 return;
216
217 ch = UART_GetChar();
218
219 //board_exec_dbg_cmd(ch);
220}
221
222/*------------------------------------------------------------------------------
223 * Main
224 *------------------------------------------------------------------------------*/
225#define MAX_USB_ITER BOARD_MCK/72 // This should be around a second
226extern int main(void)
227{
228 uint8_t isUsbConnected = 0;
229 unsigned int i = 0;
Harald Welte5b108d82017-03-06 21:51:55 +0100230 uint32_t reset_cause = (RSTC->RSTC_SR & RSTC_SR_RSTTYP_Msk) >> RSTC_SR_RSTTYP_Pos;
Harald Welted8a003d2017-02-27 20:31:09 +0100231
Kévin Redon869dbfa2018-06-17 22:36:44 +0200232 /* Enable watchdog for 2000ms, with no window */
Harald Welte45ebe452017-03-03 19:01:53 +0100233 WDT_Enable(WDT, WDT_MR_WDRSTEN | WDT_MR_WDDBGHLT | WDT_MR_WDIDLEHLT |
Kévin Redon869dbfa2018-06-17 22:36:44 +0200234 (WDT_GetPeriod(2000) << 16) | WDT_GetPeriod(2000));
235 watchdog_configured = true;
Harald Welted8a003d2017-02-27 20:31:09 +0100236
Kévin Redon9def7632018-06-27 16:27:41 +0200237#ifdef PINS_LEDS
238 /* Configure LED */
239 PIO_Configure(pinsLeds, sizeof(pinsLeds));
240 PIO_Set(&pinsLeds[LED_NUM_RED]);
241 PIO_Clear(&pinsLeds[LED_NUM_GREEN]);
242#endif
243
Harald Welted8a003d2017-02-27 20:31:09 +0100244 PIO_InitializeInterrupts(0);
245
246 EEFC_ReadUniqueID(g_unique_id);
247
Kévin Redon9918c282018-07-07 15:22:16 +0200248 printf("\n\r\n\r"
Harald Welteec0837c2017-03-03 01:33:24 +0100249 "=============================================================================\n\r"
250 "DFU bootloader %s for board %s (C) 2010-2017 by Harald Welte\n\r"
251 "=============================================================================\n\r",
Harald Welted8a003d2017-02-27 20:31:09 +0100252 manifest_revision, manifest_board);
253
Harald Welteec0837c2017-03-03 01:33:24 +0100254 TRACE_INFO("Chip ID: 0x%08x (Ext 0x%08x)\n\r", CHIPID->CHIPID_CIDR, CHIPID->CHIPID_EXID);
255 TRACE_INFO("Serial Nr. %08x-%08x-%08x-%08x\n\r",
Harald Welted8a003d2017-02-27 20:31:09 +0100256 g_unique_id[0], g_unique_id[1],
257 g_unique_id[2], g_unique_id[3]);
Harald Welte5b108d82017-03-06 21:51:55 +0100258 TRACE_INFO("Reset Cause: 0x%x\n\r", reset_cause);
259
Kévin Redon9918c282018-07-07 15:22:16 +0200260#if (TRACE_LEVEL >= TRACE_LEVEL_INFO)
261 /* Find out why we are in the DFU bootloader, and not the main application */
262 TRACE_INFO("DFU bootloader start reason: ");
263 switch (USBDFU_OverrideEnterDFU()) {
264 case 0:
265 /* 0 normally means that there is no override, but we are in the bootloader,
266 * thus the first check in board_cstartup_gnu did return something else than 0.
267 * this can only be g_dfu->magic which is erased when the segment are
268 * relocated, which happens in board_cstartup_gnu just after USBDFU_OverrideEnterDFU.
269 * no static variable can be used to store this case since this will also be overwritten
270 */
271 case 1:
272 TRACE_INFO_WP("DFU switch requested by main application\n\r");
273 break;
274 case 2:
275 TRACE_INFO_WP("bootloader forced (button pressed or jumper set)\n\r");
276 break;
277 case 3:
278 TRACE_INFO_WP("stack pointer (first application word) does no point in RAM\n\r");
279 break;
280 case 4: // the is no reason
281 TRACE_INFO_WP("reset vector (second application word) does no point in flash\n\r");
282 break;
283 default:
284 TRACE_INFO_WP("unknown\n\r");
285 break;
286 }
287#endif
288
Harald Welte5b108d82017-03-06 21:51:55 +0100289 /* clear g_dfu on power-up reset */
290 if (reset_cause == 0)
291 memset(g_dfu, 0, sizeof(*g_dfu));
Harald Welted8a003d2017-02-27 20:31:09 +0100292
Harald Welte8adf0ac2017-03-03 01:52:34 +0100293 board_main_top();
Harald Welted8a003d2017-02-27 20:31:09 +0100294
Harald Welteec0837c2017-03-03 01:33:24 +0100295 TRACE_INFO("USB init...\n\r");
Kévin Redonf5869d42018-06-17 22:31:21 +0200296 /* Signal USB reset by disabling the pull-up on USB D+ for at least 10 ms */
297 const Pin usb_dp_pullup = PIN_USB_PULLUP;
298 PIO_Configure(&usb_dp_pullup, 1);
299 PIO_Set(&usb_dp_pullup);
300 mdelay(15);
301 PIO_Clear(&usb_dp_pullup);
Harald Welted8a003d2017-02-27 20:31:09 +0100302 USBDFU_Initialize(&dfu_descriptors);
303
304 while (USBD_GetState() < USBD_STATE_CONFIGURED) {
Harald Welte45ebe452017-03-03 19:01:53 +0100305 WDT_Restart(WDT);
Harald Welted8a003d2017-02-27 20:31:09 +0100306 check_exec_dbg_cmd();
Harald Welte32852bc2017-02-28 00:21:45 +0100307#if 1
Harald Welted8a003d2017-02-27 20:31:09 +0100308 if (i >= MAX_USB_ITER * 3) {
309 TRACE_ERROR("Resetting board (USB could "
Harald Welteec0837c2017-03-03 01:33:24 +0100310 "not be configured)\n\r");
Harald Weltef415d712017-03-03 01:51:43 +0100311 USBD_Disconnect();
Harald Welted8a003d2017-02-27 20:31:09 +0100312 NVIC_SystemReset();
313 }
314#endif
315 i++;
316 }
317
Kévin Redonb73f0a02018-06-17 22:33:29 +0200318 /* Initialize the flash to be able to write it, using the IAP ROM code */
Harald Welteec9b5ff2017-03-02 23:18:40 +0100319 FLASHD_Initialize(BOARD_MCK, 1);
Kévin Redonb73f0a02018-06-17 22:33:29 +0200320
Harald Welteec0837c2017-03-03 01:33:24 +0100321 TRACE_INFO("entering main loop...\n\r");
Harald Welted8a003d2017-02-27 20:31:09 +0100322 while (1) {
Harald Welte45ebe452017-03-03 19:01:53 +0100323 WDT_Restart(WDT);
Harald Welted8a003d2017-02-27 20:31:09 +0100324#if TRACE_LEVEL >= TRACE_LEVEL_DEBUG
325 const char rotor[] = { '-', '\\', '|', '/' };
326 putchar('\b');
327 putchar(rotor[i++ % ARRAY_SIZE(rotor)]);
328#endif
329 check_exec_dbg_cmd();
Harald Welte3bbaba02017-03-06 22:47:06 +0100330#if 0
331 osmo_timers_prepare();
332 osmo_timers_update();
333#endif
Harald Welted8a003d2017-02-27 20:31:09 +0100334
335 if (USBD_GetState() < USBD_STATE_CONFIGURED) {
336
337 if (isUsbConnected) {
338 isUsbConnected = 0;
339 }
340 } else if (isUsbConnected == 0) {
Harald Welteec0837c2017-03-03 01:33:24 +0100341 TRACE_INFO("USB is now configured\n\r");
Harald Welted8a003d2017-02-27 20:31:09 +0100342
343 isUsbConnected = 1;
344 }
345 }
346}