mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-22 22:38:08 +00:00
fix(core): fix systick frequency computation by utilizing HSE_VALUE properly
[no changelog]
This commit is contained in:
parent
10687e8fa0
commit
b4c95f4c16
@ -1,8 +1,6 @@
|
||||
#ifndef _STM32F429I_DISC1_H
|
||||
#define _STM32F429I_DISC1_H
|
||||
|
||||
#define HSE_8MHZ
|
||||
|
||||
#define DISPLAY_COLOR_MODE DMA2D_OUTPUT_RGB565
|
||||
|
||||
#define I2C_COUNT 1
|
||||
|
@ -1,7 +1,6 @@
|
||||
#ifndef STM32U5A9J_DK_H_
|
||||
#define STM32U5A9J_DK_H_
|
||||
|
||||
#define HSE_16MHZ
|
||||
#define VDD_1V8 1
|
||||
|
||||
#define DISPLAY_COLOR_MODE DMA2D_OUTPUT_ARGB8888
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef _TREZOR_R_V10_H
|
||||
#define _TREZOR_R_V10_H
|
||||
|
||||
#define HSE_8MHZ
|
||||
|
||||
#define BTN_LEFT_PIN GPIO_PIN_10
|
||||
#define BTN_LEFT_PORT GPIOC
|
||||
#define BTN_LEFT_CLK_ENA __HAL_RCC_GPIOC_CLK_ENABLE
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef _TREZOR_T_H
|
||||
#define _TREZOR_T_H
|
||||
|
||||
#define HSE_8MHZ
|
||||
|
||||
#define DISPLAY_COLOR_MODE DMA2D_OUTPUT_RGB565
|
||||
|
||||
#define DISPLAY_IDENTIFY 1
|
||||
|
@ -1,7 +1,6 @@
|
||||
#ifndef TREZOR_T3W1_REVA_H_
|
||||
#define TREZOR_T3W1_REVA_H_
|
||||
|
||||
#define HSE_32MHZ
|
||||
#define VDD_1V8 1
|
||||
|
||||
#define BTN_POWER_PIN GPIO_PIN_5
|
||||
|
@ -39,13 +39,17 @@ typedef struct {
|
||||
uint32_t plln;
|
||||
} clock_conf_t;
|
||||
|
||||
#ifdef HSE_16MHZ
|
||||
#ifdef USE_HSE
|
||||
#if HSE_VALUE == 16000000
|
||||
#define PLLM_COEF 2U
|
||||
#elif defined HSE_8MHZ
|
||||
#elif HSE_VALUE == 8000000
|
||||
#define PLLM_COEF 1U
|
||||
#else
|
||||
#error Unsupported HSE frequency
|
||||
#endif
|
||||
#else
|
||||
#error HSE is required
|
||||
#endif
|
||||
|
||||
#if defined STM32F427xx || defined STM32F429xx
|
||||
#ifdef TREZOR_MODEL_T
|
||||
|
@ -33,15 +33,19 @@ const uint32_t MSIRangeTable[16] = {48000000U, 24000000U, 16000000U, 12000000U,
|
||||
400000U, 200000U, 133000U, 100000U};
|
||||
|
||||
// PLLCLK = ((HSE / PLLM) * PLLN) / PLLR
|
||||
#ifdef HSE_32MHZ
|
||||
#ifdef USE_HSE
|
||||
#if HSE_VALUE == 32000000
|
||||
#define PLLM_COEF 2U
|
||||
#define PLLN_COEF 2U
|
||||
#elif defined HSE_16MHZ
|
||||
#elif HSE_VALUE == 16000000
|
||||
#define PLLM_COEF 1U
|
||||
#define PLLN_COEF 2U
|
||||
#elif defined HSE_8MHZ
|
||||
#elif HSE_VALUE == 8000000
|
||||
#define PLLM_COEF 1U
|
||||
#define PLLN_COEF 4U
|
||||
#elif defined HSE_VALUE
|
||||
#error Unsupported HSE frequency
|
||||
#endif
|
||||
#else
|
||||
// no HSE available, use 16MHz HSI
|
||||
#define HSI_ONLY
|
||||
|
@ -32,6 +32,7 @@ def configure(
|
||||
defines += [f'TREZOR_BOARD=\\"{board}\\"']
|
||||
defines += [f"HW_MODEL={hw_model}"]
|
||||
defines += [f"HW_REVISION={hw_revision}"]
|
||||
defines += ["HSE_VALUE=8000000", "USE_HSE=1"]
|
||||
|
||||
sources += [
|
||||
"embed/io/display/stm32f429i-disc1/display_driver.c",
|
||||
|
@ -30,15 +30,10 @@ def configure(
|
||||
env.get("ENV")["RUST_TARGET"] = "thumbv8m.main-none-eabihf"
|
||||
|
||||
defines += [mcu]
|
||||
defines += [
|
||||
f'TREZOR_BOARD=\\"{board}\\"',
|
||||
]
|
||||
defines += [
|
||||
f"HW_MODEL={hw_model}",
|
||||
]
|
||||
defines += [
|
||||
f"HW_REVISION={hw_revision}",
|
||||
]
|
||||
defines += [f'TREZOR_BOARD=\\"{board}\\"']
|
||||
defines += [f"HW_MODEL={hw_model}"]
|
||||
defines += [f"HW_REVISION={hw_revision}"]
|
||||
defines += ["HSE_VALUE=16000000", "USE_HSE=1"]
|
||||
|
||||
sources += [
|
||||
"embed/io/display/stm32u5a9j-dk/display_driver.c",
|
||||
|
@ -36,6 +36,7 @@ def configure(
|
||||
defines += [f'TREZOR_BOARD=\\"{board}\\"']
|
||||
defines += [f"HW_MODEL={hw_model}"]
|
||||
defines += [f"HW_REVISION={hw_revision}"]
|
||||
defines += ["HSE_VALUE=8000000", "USE_HSE=1"]
|
||||
|
||||
sources += ["embed/io/display/vg-2864/display_driver.c"]
|
||||
paths += ["embed/io/display/inc"]
|
||||
|
@ -36,6 +36,7 @@ def configure(
|
||||
defines += [f'TREZOR_BOARD=\\"{board}\\"']
|
||||
defines += [f"HW_MODEL={hw_model}"]
|
||||
defines += [f"HW_REVISION={hw_revision}"]
|
||||
defines += ["HSE_VALUE=8000000", "USE_HSE=1"]
|
||||
|
||||
sources += ["embed/io/display/st-7789/display_nofb.c"]
|
||||
sources += ["embed/io/display/st-7789/display_driver.c"]
|
||||
|
@ -33,6 +33,7 @@ def configure(
|
||||
defines += [f'TREZOR_BOARD=\\"{board}\\"']
|
||||
defines += [f"HW_MODEL={hw_model}"]
|
||||
defines += [f"HW_REVISION={hw_revision}"]
|
||||
defines += ["HSE_VALUE=32000000", "USE_HSE=1"]
|
||||
|
||||
sources += [
|
||||
"embed/io/display/st7785ma/display_driver.c",
|
||||
|
Loading…
Reference in New Issue
Block a user