mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
Some checks failed
JavaScript code lint and formatting with Biome / eslint (push) Has been cancelled
Check code formatting / code-formatting (push) Has been cancelled
Check spelling with codespell / codespell (push) Has been cancelled
Build docs / build (push) Has been cancelled
Check examples / embedding (push) Has been cancelled
Package mpremote / build (push) Has been cancelled
.mpy file format and tools / test (push) Has been cancelled
Build ports metadata / build (push) Has been cancelled
alif port / build_alif (alif_ae3_build) (push) Has been cancelled
cc3200 port / build (push) Has been cancelled
esp32 port / build_idf (esp32_build_cmod_spiram_s2) (push) Has been cancelled
esp32 port / build_idf (esp32_build_s3_c3) (push) Has been cancelled
esp8266 port / build (push) Has been cancelled
mimxrt port / build (push) Has been cancelled
nrf port / build (push) Has been cancelled
powerpc port / build (push) Has been cancelled
qemu port / build_and_test_arm (push) Has been cancelled
qemu port / build_and_test_rv32 (push) Has been cancelled
renesas-ra port / build_renesas_ra_board (push) Has been cancelled
rp2 port / build (push) Has been cancelled
samd port / build (push) Has been cancelled
stm32 port / build_stm32 (stm32_misc_build) (push) Has been cancelled
stm32 port / build_stm32 (stm32_nucleo_build) (push) Has been cancelled
stm32 port / build_stm32 (stm32_pyb_build) (push) Has been cancelled
unix port / minimal (push) Has been cancelled
unix port / reproducible (push) Has been cancelled
unix port / standard (push) Has been cancelled
unix port / standard_v2 (push) Has been cancelled
unix port / coverage (push) Has been cancelled
unix port / coverage_32bit (push) Has been cancelled
unix port / nanbox (push) Has been cancelled
unix port / float (push) Has been cancelled
unix port / stackless_clang (push) Has been cancelled
unix port / float_clang (push) Has been cancelled
unix port / settrace (push) Has been cancelled
unix port / settrace_stackless (push) Has been cancelled
unix port / macos (push) Has been cancelled
unix port / qemu_mips (push) Has been cancelled
unix port / qemu_arm (push) Has been cancelled
unix port / qemu_riscv64 (push) Has been cancelled
webassembly port / build (push) Has been cancelled
windows port / build-vs (Debug, x64, windows-2022, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Debug, x64, windows-latest, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Debug, x86, windows-2022, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Debug, x86, windows-latest, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-2019, dev, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-2019, standard, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-2022, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-2022, standard, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-latest, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x64, windows-latest, standard, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-2019, dev, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-2019, standard, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-2022, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-2022, standard, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-latest, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x86, windows-latest, standard, 2017, [15, 16)) (push) Has been cancelled
windows port / build-mingw (i686, mingw32, dev) (push) Has been cancelled
windows port / build-mingw (i686, mingw32, standard) (push) Has been cancelled
windows port / build-mingw (x86_64, mingw64, dev) (push) Has been cancelled
windows port / build-mingw (x86_64, mingw64, standard) (push) Has been cancelled
windows port / cross-build-on-linux (push) Has been cancelled
zephyr port / build (push) Has been cancelled
Python code lint and formatting with ruff / ruff (push) Has been cancelled
There are some newer PYBD_SF6 being produced which have a larger flash, namely two of 8MiB (instead of the older ones with two of 2MiB). This commit adds support for these boards. The idea is to have the same PYBD_SF6 firmware run on both old and new boards. That means autodetecting the flash at start-up and configuring all the relevant SPI/QSPI parameters, including for ROMFS and mboot. Signed-off-by: Damien George <damien@micropython.org>
122 lines
5.2 KiB
C
122 lines
5.2 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2018-2019 Damien P. George
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
// Take PYBD_SF2 as base configuration
|
|
#include "boards/PYBD_SF2/mpconfigboard.h"
|
|
|
|
#undef MICROPY_HW_BOARD_NAME
|
|
#undef MICROPY_HW_MCU_NAME
|
|
#undef MICROPY_HW_CLK_PLLM
|
|
#undef MICROPY_HW_CLK_PLLN
|
|
#undef MICROPY_HW_CLK_PLLP
|
|
#undef MICROPY_HW_CLK_PLLQ
|
|
#undef MICROPY_HW_FLASH_LATENCY
|
|
|
|
#define MICROPY_HW_BOARD_NAME "PYBD-SF6W"
|
|
#define MICROPY_HW_MCU_NAME "STM32F767IIK"
|
|
|
|
// HSE is 25MHz, run SYS at 144MHz
|
|
#define MICROPY_HW_CLK_PLLM (25)
|
|
#define MICROPY_HW_CLK_PLLN (288)
|
|
#define MICROPY_HW_CLK_PLLP (RCC_PLLP_DIV2)
|
|
#define MICROPY_HW_CLK_PLLQ (6)
|
|
#define MICROPY_HW_FLASH_LATENCY (FLASH_LATENCY_4)
|
|
|
|
// ROMFS config
|
|
#define MICROPY_HW_ROMFS_ENABLE_EXTERNAL_QSPI (1)
|
|
#define MICROPY_HW_ROMFS_QSPI_SPIFLASH_OBJ (&spi_bdev2.spiflash)
|
|
#define MICROPY_HW_ROMFS_ENABLE_PART0 (1)
|
|
|
|
// Extra UART config
|
|
#define MICROPY_HW_UART7_TX (pyb_pin_W16)
|
|
#define MICROPY_HW_UART7_RX (pyb_pin_W22B)
|
|
|
|
// Extra CAN buses
|
|
#define MICROPY_HW_CAN2_NAME "Y"
|
|
#define MICROPY_HW_CAN2_TX (pyb_pin_Y6)
|
|
#define MICROPY_HW_CAN2_RX (pyb_pin_Y5)
|
|
|
|
// Ethernet via RMII
|
|
#define MICROPY_HW_ETH_MDC (pyb_pin_W24)
|
|
#define MICROPY_HW_ETH_MDIO (pyb_pin_W15)
|
|
#define MICROPY_HW_ETH_RMII_REF_CLK (pyb_pin_W17)
|
|
#define MICROPY_HW_ETH_RMII_CRS_DV (pyb_pin_W14)
|
|
#define MICROPY_HW_ETH_RMII_RXD0 (pyb_pin_W51)
|
|
#define MICROPY_HW_ETH_RMII_RXD1 (pyb_pin_W47)
|
|
#define MICROPY_HW_ETH_RMII_TX_EN (pyb_pin_W8)
|
|
#define MICROPY_HW_ETH_RMII_TXD0 (pyb_pin_W45)
|
|
#define MICROPY_HW_ETH_RMII_TXD1 (pyb_pin_W49)
|
|
|
|
// The below code reconfigures SPI flash for dynamic size detection.
|
|
|
|
#undef MICROPY_BOARD_EARLY_INIT
|
|
#undef MICROPY_HW_SPIFLASH_SIZE_BITS
|
|
#undef MICROPY_HW_QSPIFLASH_SIZE_BITS_LOG2
|
|
#undef MBOOT_SPIFLASH_BYTE_SIZE
|
|
#undef MBOOT_SPIFLASH_LAYOUT
|
|
#undef MBOOT_SPIFLASH_ERASE_BLOCKS_PER_PAGE
|
|
#undef MBOOT_SPIFLASH2_BYTE_SIZE
|
|
#undef MBOOT_SPIFLASH2_LAYOUT
|
|
#undef MBOOT_SPIFLASH2_ERASE_BLOCKS_PER_PAGE
|
|
|
|
// These are convenience macros to refer to the SPI flash chip parameters for the external SPI flash.
|
|
#define MICROPY_BOARD_SPIFLASH_CHIP_PARAMS0 (spi_bdev.spiflash.chip_params) // SPI flash #1, R/W storage
|
|
#define MICROPY_BOARD_SPIFLASH_CHIP_PARAMS1 (spi_bdev2.spiflash.chip_params) // SPI flash #2, memory mapped
|
|
|
|
// Early init is needed to initialise the default SPI flash chip parameters.
|
|
#define MICROPY_BOARD_EARLY_INIT board_early_init_sf6
|
|
|
|
// Enable dynamic detection of SPI flash.
|
|
#define MICROPY_HW_SPIFLASH_CHIP_PARAMS (1)
|
|
#define MICROPY_HW_SPIFLASH_DETECT_DEVICE (1)
|
|
|
|
// Settings for SPI flash #1.
|
|
#define MICROPY_HW_SPIFLASH_SIZE_BITS (1 << (MICROPY_BOARD_SPIFLASH_CHIP_PARAMS0->memory_size_bytes_log2 + 3))
|
|
|
|
// Settings for SPI flash #2.
|
|
#define MICROPY_HW_QSPI_PRESCALER (MICROPY_BOARD_SPIFLASH_CHIP_PARAMS1->qspi_prescaler)
|
|
#define MICROPY_HW_QSPIFLASH_SIZE_BITS_LOG2 (MICROPY_BOARD_SPIFLASH_CHIP_PARAMS1->memory_size_bytes_log2 + 3)
|
|
|
|
// ROMFS partition 0 is dynamically sized (SPI flash #2).
|
|
#define MICROPY_HW_ROMFS_PART0_START (uintptr_t)(&_micropy_hw_romfs_part0_start)
|
|
#define MICROPY_HW_ROMFS_PART0_SIZE (1 << MICROPY_BOARD_SPIFLASH_CHIP_PARAMS1->memory_size_bytes_log2)
|
|
|
|
// Mboot SPI flash #1 configuration.
|
|
#define MBOOT_SPIFLASH_LAYOUT_DYNAMIC_MAX_LEN (20)
|
|
#define MBOOT_SPIFLASH_LAYOUT (MICROPY_BOARD_SPIFLASH_CHIP_PARAMS0->memory_size_bytes_log2 == 21 ? "/0x80000000/512*4Kg" : "/0x80000000/2048*4Kg")
|
|
#define MBOOT_SPIFLASH_BYTE_SIZE (1 << MICROPY_BOARD_SPIFLASH_CHIP_PARAMS0->memory_size_bytes_log2)
|
|
#define MBOOT_SPIFLASH_ERASE_BLOCKS_PER_PAGE (1)
|
|
|
|
// Mboot SPI flash #2 configuration.
|
|
#define MBOOT_SPIFLASH2_LAYOUT_DYNAMIC_MAX_LEN (20)
|
|
#define MBOOT_SPIFLASH2_LAYOUT (MICROPY_BOARD_SPIFLASH_CHIP_PARAMS1->memory_size_bytes_log2 == 21 ? "/0x90000000/512*4Kg" : "/0x90000000/2048*4Kg")
|
|
#define MBOOT_SPIFLASH2_BYTE_SIZE (1 << MICROPY_BOARD_SPIFLASH_CHIP_PARAMS1->memory_size_bytes_log2)
|
|
#define MBOOT_SPIFLASH2_ERASE_BLOCKS_PER_PAGE (1)
|
|
|
|
extern unsigned char _micropy_hw_romfs_part0_start;
|
|
|
|
void board_early_init_sf6(void);
|