diff options
Diffstat (limited to 'baseboard/nucleo-f412zg')
-rw-r--r-- | baseboard/nucleo-f412zg/base-board.c | 11 | ||||
-rw-r--r-- | baseboard/nucleo-f412zg/base-board.h | 198 | ||||
-rw-r--r-- | baseboard/nucleo-f412zg/base-gpio.inc | 27 | ||||
-rw-r--r-- | baseboard/nucleo-f412zg/build.mk | 14 | ||||
-rw-r--r-- | baseboard/nucleo-f412zg/openocd-flash.cfg | 14 | ||||
-rw-r--r-- | baseboard/nucleo-f412zg/openocd.cfg | 9 |
6 files changed, 0 insertions, 273 deletions
diff --git a/baseboard/nucleo-f412zg/base-board.c b/baseboard/nucleo-f412zg/base-board.c deleted file mode 100644 index 15e46f006e..0000000000 --- a/baseboard/nucleo-f412zg/base-board.c +++ /dev/null @@ -1,11 +0,0 @@ -/* Copyright 2020 The Chromium OS Authors. All rights reserved. - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -#include "common.h" -#include "gpio.h" - -__overridable void button_event(enum gpio_signal signal) -{ -} diff --git a/baseboard/nucleo-f412zg/base-board.h b/baseboard/nucleo-f412zg/base-board.h deleted file mode 100644 index d41cdfd207..0000000000 --- a/baseboard/nucleo-f412zg/base-board.h +++ /dev/null @@ -1,198 +0,0 @@ -/* Copyright 2020 The Chromium OS Authors. All rights reserved. - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -/* Nucleo-F412ZG baseboard configuration */ - -#ifndef __CROS_EC_BASE_BOARD_H -#define __CROS_EC_BASE_BOARD_H - -/*-------------------------------------------------------------------------* - * Flash layout: - * - * +++++++++++++ - * | RO | - * | ......... | - * | Rollback | (two sectors) - * +-----------+ - * | RW | - * | | - * | | - * | | - * | | - * +++++++++++++ - * - * We adjust the following macros to accommodate a for a rollback, RO, - * and RW region of different sizes. - * - *-------------------------------------------------------------------------*/ - -#undef _IMAGE_SIZE -#undef CONFIG_ROLLBACK_OFF -#undef CONFIG_ROLLBACK_SIZE -#undef CONFIG_FLASH_PSTATE -#undef CONFIG_FW_PSTATE_SIZE -#undef CONFIG_FW_PSTATE_OFF -#undef CONFIG_SHAREDLIB_SIZE -#undef CONFIG_RO_MEM_OFF -#undef CONFIG_RO_STORAGE_OFF -#undef CONFIG_RO_SIZE -#undef CONFIG_RW_MEM_OFF -#undef CONFIG_RW_STORAGE_OFF -#undef CONFIG_RW_SIZE -#undef CONFIG_EC_PROTECTED_STORAGE_OFF -#undef CONFIG_EC_PROTECTED_STORAGE_SIZE -#undef CONFIG_EC_WRITABLE_STORAGE_OFF -#undef CONFIG_EC_WRITABLE_STORAGE_SIZE -#undef CONFIG_WP_STORAGE_OFF -#undef CONFIG_WP_STORAGE_SIZE - -#define CONFIG_FLASH_WRITE_SIZE STM32_FLASH_WRITE_SIZE_3300 - -#define CONFIG_SHAREDLIB_SIZE 0 - -#define CONFIG_RO_MEM_OFF 0 -#define CONFIG_RO_STORAGE_OFF 0 -#define CONFIG_RO_SIZE (128 * 1024) - -/* EC rollback protection block */ -#define CONFIG_ROLLBACK_OFF (CONFIG_RO_MEM_OFF + CONFIG_RO_SIZE) -#define CONFIG_ROLLBACK_SIZE (128 * 1024 * 2) /* 2 blocks of 128KB each */ - -#define CONFIG_RW_MEM_OFF (CONFIG_ROLLBACK_OFF + CONFIG_ROLLBACK_SIZE) -#define CONFIG_RW_STORAGE_OFF 0 -#define CONFIG_RW_SIZE (CONFIG_FLASH_SIZE_BYTES - \ - (CONFIG_RW_MEM_OFF - CONFIG_RO_MEM_OFF)) - -#define CONFIG_EC_PROTECTED_STORAGE_OFF CONFIG_RO_MEM_OFF -#define CONFIG_EC_PROTECTED_STORAGE_SIZE CONFIG_RO_SIZE -#define CONFIG_EC_WRITABLE_STORAGE_OFF CONFIG_RW_MEM_OFF -#define CONFIG_EC_WRITABLE_STORAGE_SIZE CONFIG_RW_SIZE - -#define CONFIG_WP_STORAGE_OFF CONFIG_EC_PROTECTED_STORAGE_OFF -#define CONFIG_WP_STORAGE_SIZE CONFIG_EC_PROTECTED_STORAGE_SIZE - -/* - * We want to prevent flash readout, and use it as indicator of protection - * status. - */ -#define CONFIG_FLASH_READOUT_PROTECTION_AS_PSTATE - -/*-------------------------------------------------------------------------* - * UART Console Setup - *-------------------------------------------------------------------------*/ - -/* The UART console is on USART3 */ -#undef CONFIG_UART_CONSOLE -#define CONFIG_UART_CONSOLE 3 -#undef CONFIG_UART_TX_BUF_SIZE -#define CONFIG_UART_TX_BUF_SIZE 2048 -#define CONFIG_UART_TX_REQ_CH 4 -#define CONFIG_UART_RX_REQ_CH 4 -/* We don't currently use DMA. */ -#define CONFIG_UART_TX_DMA_PH DMAMUX1_REQ_USART3_TX -#undef CONFIG_UART_TX_DMA -#undef CONFIG_UART_RX_DMA - -/*-------------------------------------------------------------------------* - * Console Commands - *-------------------------------------------------------------------------*/ - -#define CONFIG_CMD_FLASH -#define CONFIG_CMD_IDLE_STATS - -/*-------------------------------------------------------------------------* - * Rollback Block - *-------------------------------------------------------------------------*/ - -#define CONFIG_ROLLBACK -#define CONFIG_MPU -#define CONFIG_ROLLBACK_MPU_PROTECT - -/* - * We do not use any "locally" generated entropy: this is normally used - * to add local entropy when the main source of entropy is remote. - */ -#undef CONFIG_ROLLBACK_SECRET_LOCAL_ENTROPY_SIZE -#ifdef SECTION_IS_RW - #undef CONFIG_ROLLBACK_UPDATE -#endif - -/*-------------------------------------------------------------------------* - * RW Signature Verification - *-------------------------------------------------------------------------*/ - -#ifdef SECTION_IS_RO - /* RO verifies the RW partition signature */ - #define CONFIG_RSA - #define CONFIG_RWSIG -#endif /* SECTION_IS_RO */ -#define CONFIG_RSA_KEY_SIZE 3072 -#define CONFIG_RSA_EXPONENT_3 -#define CONFIG_RWSIG_TYPE_RWSIG - -/*-------------------------------------------------------------------------* - * Watchdog - *-------------------------------------------------------------------------*/ - -/* - * RW does slow compute, RO does slow flash erase. - */ -#undef CONFIG_WATCHDOG_PERIOD_MS -#define CONFIG_WATCHDOG_PERIOD_MS 10000 -#define CONFIG_WATCHDOG_HELP - -/*-------------------------------------------------------------------------* - * Disable Features - *-------------------------------------------------------------------------*/ - -#undef CONFIG_ADC -#undef CONFIG_HIBERNATE -#undef CONFIG_I2C -#undef CONFIG_LID_SWITCH -#undef CONFIG_TASK_PROFILING - -/*-------------------------------------------------------------------------* - * Other - *-------------------------------------------------------------------------*/ - -#define CONFIG_AES -#define CONFIG_AES_GCM -#define CONFIG_DMA -#define CONFIG_FPU -#define CONFIG_HOST_COMMAND_STATUS -#define CONFIG_MKBP_EVENT -#define CONFIG_MKBP_USE_GPIO -#define CONFIG_PRINTF_LEGACY_LI_FORMAT -#define CONFIG_RNG -#define CONFIG_SHA256 -#define CONFIG_SHA256_UNROLLED -#define CONFIG_STM_HWTIMER32 -#define CONFIG_WP_ACTIVE_HIGH - -#ifndef TEST_BUILD - /* TODO(hesling): Fix the illogical dependency between spi.c - * and host_command.c - * - * Currently, the chip/stm32/spi.c depends on functions defined in - * common/host_command.c. When unit test builds use their own tasklist - * without the HOSTCMD task, host_command.c is excluded from the build, - * but chip/stm32/spi.c remains (because of CONFIG_SPI). - * This triggers an undefined reference linker error. - * The reproduce case: - * - Allow CONFIG_SPI in TEST_BUILDs - * - make BOARD=nucleo-h743zi tests - */ - #define CONFIG_SPI -#endif - -#ifndef __ASSEMBLER__ - /* Timer selection */ - #define TIM_CLOCK32 2 - #define TIM_WATCHDOG 16 - #include "gpio_signal.h" - void button_event(enum gpio_signal signal); -#endif /* !__ASSEMBLER__ */ - -#endif /* __CROS_EC_BASE_BOARD_H */ diff --git a/baseboard/nucleo-f412zg/base-gpio.inc b/baseboard/nucleo-f412zg/base-gpio.inc deleted file mode 100644 index 4ebd99f91f..0000000000 --- a/baseboard/nucleo-f412zg/base-gpio.inc +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright 2019 The Chromium OS Authors. All rights reserved. - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -/* - * Note that these pins map to the Nucleo-F412ZG. - */ - -/* Inputs and Interrupts */ -GPIO_INT(SPI1_NSS, PIN(A, 4), GPIO_INPUT, spi_event) -GPIO_INT(BTN1, PIN(C, 13), GPIO_INT_BOTH, button_event) -GPIO(WP, PIN(B, 8), GPIO_INPUT) /* Not same as bloonchipper */ - -/* Outputs */ -GPIO(EC_INT_L, PIN(A, 1), GPIO_OUT_HIGH) -GPIO(LED1, PIN(B, 0), GPIO_OUT_LOW) /* Green */ -GPIO(LED2, PIN(B, 7), GPIO_OUT_LOW) /* Blue */ -GPIO(LED3, PIN(B, 14), GPIO_OUT_LOW) /* Red */ - -UNIMPLEMENTED(ENTERING_RW) - -/* USART3: PD8/PD9 (TX/RX) */ -ALTERNATE(PIN_MASK(D, 0x0300), GPIO_ALT_USART, MODULE_UART, GPIO_PULL_UP) -/* SPI1 slave from the AP: PA4/5/6/7 (CS/CLK/MISO/MOSI) */ -ALTERNATE(PIN_MASK(A, 0x00f0), GPIO_ALT_SPI, MODULE_SPI, 0) diff --git a/baseboard/nucleo-f412zg/build.mk b/baseboard/nucleo-f412zg/build.mk deleted file mode 100644 index 1456331fec..0000000000 --- a/baseboard/nucleo-f412zg/build.mk +++ /dev/null @@ -1,14 +0,0 @@ -# -*- makefile -*- -# Copyright 2020 The Chromium OS Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. -# -# Nucleo-F412ZG baseboard specific files build -# - -# the IC is STmicro STM32F412 -CHIP:=stm32 -CHIP_FAMILY:=stm32f4 -CHIP_VARIANT:=stm32f412 - -baseboard-y=base-board.o diff --git a/baseboard/nucleo-f412zg/openocd-flash.cfg b/baseboard/nucleo-f412zg/openocd-flash.cfg deleted file mode 100644 index 3333d1163a..0000000000 --- a/baseboard/nucleo-f412zg/openocd-flash.cfg +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 2020 The Chromium OS Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -source [find board/st_nucleo_f4.cfg] - -gdb_port 0 -tcl_port 0 -telnet_port 0 -init -reset halt -flash write_image erase $BUILD_DIR/ec.bin 0x08000000 -reset -shutdown diff --git a/baseboard/nucleo-f412zg/openocd.cfg b/baseboard/nucleo-f412zg/openocd.cfg deleted file mode 100644 index 589d4400f4..0000000000 --- a/baseboard/nucleo-f412zg/openocd.cfg +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright 2020 The Chromium OS Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -source [find board/st_nucleo_f4.cfg] - -# Enabled EC task context support -# This is supported by the upstream OpenOCD -$_TARGETNAME configure -rtos Chromium-EC |