panda/board/bootstub.c

100 lines
1.9 KiB
C
Raw Normal View History

2017-04-28 20:32:09 -06:00
#define BOOTSTUB
2017-07-24 16:16:22 -06:00
#include "config.h"
#include "obj/gitversion.h"
2017-04-06 19:11:36 -06:00
#ifdef STM32F4
#define PANDA
#include "stm32f4xx.h"
2017-04-28 20:32:09 -06:00
#include "stm32f4xx_hal_gpio_ex.h"
2017-04-06 19:11:36 -06:00
#else
#include "stm32f2xx.h"
2017-04-28 20:32:09 -06:00
#include "stm32f2xx_hal_gpio_ex.h"
2017-04-06 19:11:36 -06:00
#endif
2019-05-21 11:32:16 -06:00
// default since there's no serial
2019-07-07 16:05:47 -06:00
void puts(const char *a) {
2019-07-07 16:57:14 -06:00
UNUSED(a);
2019-07-07 16:05:47 -06:00
}
void puth(unsigned int i) {
2019-07-07 16:57:14 -06:00
UNUSED(i);
2019-07-07 16:05:47 -06:00
}
2019-05-21 11:32:16 -06:00
#include "libc.h"
2017-07-30 09:26:48 -06:00
#include "provision.h"
2017-04-06 19:11:36 -06:00
2019-05-21 09:28:04 -06:00
#include "drivers/clock.h"
2017-07-29 18:53:39 -06:00
#include "drivers/llgpio.h"
#include "gpio.h"
2017-07-24 11:39:03 -06:00
#include "drivers/spi.h"
2017-07-24 16:16:22 -06:00
#include "drivers/usb.h"
2017-07-29 19:16:08 -06:00
//#include "drivers/uart.h"
2017-04-25 19:03:58 -06:00
#include "crypto/rsa.h"
#include "crypto/sha.h"
#include "obj/cert.h"
2017-04-28 20:32:09 -06:00
#include "spi_flasher.h"
2017-04-27 21:32:16 -06:00
2019-07-07 16:05:47 -06:00
void __initialize_hardware_early(void) {
2017-04-06 19:11:36 -06:00
early();
}
2019-07-07 16:05:47 -06:00
void fail(void) {
2017-07-24 16:16:22 -06:00
soft_flasher_start();
2017-04-25 19:03:58 -06:00
}
2017-07-22 15:28:11 -06:00
// know where to sig check
extern void *_app_start[];
2019-01-17 17:17:53 -07:00
// FIXME: sometimes your panda will fail flashing and will quickly blink a single Green LED
// BOUNTY: $200 coupon on shop.comma.ai or $100 check.
2019-07-07 16:05:47 -06:00
int main(void) {
2017-07-24 16:16:22 -06:00
__disable_irq();
2017-04-17 14:57:34 -06:00
clock_init();
detect();
if (revision == PANDA_REV_C) {
set_usb_power_mode(USB_POWER_CLIENT);
}
2017-04-17 14:57:34 -06:00
2017-07-24 16:16:22 -06:00
if (enter_bootloader_mode == ENTER_SOFTLOADER_MAGIC) {
enter_bootloader_mode = 0;
soft_flasher_start();
}
2017-04-25 19:03:58 -06:00
// validate length
2017-05-01 23:59:10 -06:00
int len = (int)_app_start[0];
2017-07-27 16:54:55 -06:00
if ((len < 8) || (len > (0x1000000 - 0x4000 - 4 - RSANUMBYTES))) goto fail;
2017-04-25 19:03:58 -06:00
// compute SHA hash
2017-05-01 23:59:10 -06:00
uint8_t digest[SHA_DIGEST_SIZE];
2017-04-26 11:41:57 -06:00
SHA_hash(&_app_start[1], len-4, digest);
2017-04-25 19:03:58 -06:00
// verify RSA signature
2017-04-28 16:06:01 -06:00
if (RSA_verify(&release_rsa_key, ((void*)&_app_start[0]) + len, RSANUMBYTES, digest, SHA_DIGEST_SIZE)) {
goto good;
2017-04-26 11:41:57 -06:00
}
2017-04-17 14:57:34 -06:00
2017-04-28 21:13:00 -06:00
// allow debug if built from source
#ifdef ALLOW_DEBUG
if (RSA_verify(&debug_rsa_key, ((void*)&_app_start[0]) + len, RSANUMBYTES, digest, SHA_DIGEST_SIZE)) {
goto good;
2017-04-28 16:06:01 -06:00
}
2017-04-28 21:13:00 -06:00
#endif
2017-04-28 16:06:01 -06:00
// here is a failure
2017-07-27 16:54:55 -06:00
fail:
2017-04-28 16:06:01 -06:00
fail();
2017-07-27 16:54:55 -06:00
return 0;
2017-04-28 16:06:01 -06:00
good:
2017-04-17 14:57:34 -06:00
// jump to flash
2019-07-07 16:05:47 -06:00
((void(*)(void)) _app_start[1])();
2017-04-06 19:11:36 -06:00
return 0;
}
Revert commits that broke USB for openpilot. Revert "fix openpilot board flashing" This reverts commit 8ff93ad5da39f8dc4bf6fe632f26418b696fd230. Revert "Fixed output_enabled led not turning off when mode changed to no output." This reverts commit 27a8af11075d92d03c389713694a879905877cf0. Revert "Fixed loopback test for new GMLAN 'can4' behavior." This reverts commit 59592f599af01a667b4fd966e613b8f504d62dc2. Revert "GMLAN is now always mapped through CAN4 (index 3)" This reverts commit 329c09102435bfd9b1fbb60694139a5ff7bf4148. Revert "Removed compile time config for CAN loopback, implemented as usb message." This reverts commit e1a4c3298557fccf854ed5cbda448f8c0015b7ea. Revert "Change all output safety mode identifier to prevent user mistakes." This reverts commit 6b363e2e92fcd5e7f25b5458fe9008ff8f9fd664. Revert "untabify" This reverts commit 191f67b083e182323ba956c3ab75df10bec2f863. Revert "Refactor of safety to support more modular additions of safety policies." This reverts commit e5b524eddc82e53587cc47dcf15b22fd35890a92. Revert "Split up some more header files into compilation units." This reverts commit e2a78912f5b649822974fc0e974ec50d9d9c7d10. Revert "Enabled emulated control writes over USB." This reverts commit 133cfe970379d6881de26289616d1d9085bb5986. Revert "Moved CAN and USART code out of main.c and into more appropriate files." This reverts commit daad2dc0620d629e7db0dd68dee5595ed2b57160. Revert "Large Panda CAN cleanup. Restrict GMLAN to valid baud rates." This reverts commit a0616a2bc2ac2bfd99223aaa84912e6f649c9d54. Revert "Panda library now correctly sends USB direction bit." This reverts commit 1712c901d4b46b2726b3165a7cb2e91c281c662b. Revert "Board makefile now automatically calculates header file dependencies." This reverts commit 4a8d4e597b397ca6d68dd5dd2a376c8354dc3422. Revert "Loopback test works over wifi. (Disable trying to send over wifi)" This reverts commit dae636968af482e170aade1d785a1e197e9f3c04. Revert "Fix legacy board build" This reverts commit 62bf4e575686c84c672eb0d341ad41f174141c2d. Revert "Style cop" This reverts commit c439f43726feb30cf2ec486ffcad6ac94ab5e128. Revert "Untabify" This reverts commit 41e5eec6211c23836535af49380f74350a0ceb12. Revert "Fixed disabling gmlan." This reverts commit 5e1e45a4afade384b628e44587dd8e37d3dcd8cd. Revert "Removed dead code, standardized canid in more commands, better erroring behavior." This reverts commit b59aeb6d87ddd85406ec42e4ed8a74a232d506a4. Revert "loopback test works with new CAN bus ids." This reverts commit 75970861cf2b025173afb906e4e243861bed506a. Revert "Large reorganization of code and early integration of can bitrate setting." This reverts commit a1ed7b62ee66ec8f56bba488c38c67b69eead8cf.
2017-07-12 12:25:10 -06:00