Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disabled interrupts on smt32f7 and stm32h7 before calling disable data cache #15006

Merged
merged 1 commit into from
Aug 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#ifndef USE_USER_DEFINED_HAL_ETH_MSPINIT

#include "stm32f7xx_hal.h"
#include "platform/mbed_critical.h"

/**
* Override HAL Eth Init function
Expand All @@ -38,7 +39,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
GPIO_InitTypeDef GPIO_InitStructure;
if (heth->Instance == ETH) {
/* Disable DCache for STM32F7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();

/* Enable GPIOs clocks */
__HAL_RCC_GPIOA_CLK_ENABLE();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#ifndef USE_USER_DEFINED_HAL_ETH_MSPINIT

#include "stm32f7xx_hal.h"
#include "platform/mbed_critical.h"

/**
* Override HAL Eth Init function
Expand All @@ -38,7 +39,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
GPIO_InitTypeDef GPIO_InitStructure;
if (heth->Instance == ETH) {
/* Disable DCache for STM32F7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();

/* Enable GPIOs clocks */
__HAL_RCC_GPIOA_CLK_ENABLE();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#ifndef USE_USER_DEFINED_HAL_ETH_MSPINIT

#include "stm32f7xx_hal.h"
#include "platform/mbed_critical.h"

/**
* Override HAL Eth Init function
Expand All @@ -38,7 +39,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
GPIO_InitTypeDef GPIO_InitStructure;
if (heth->Instance == ETH) {
/* Disable DCache for STM32F7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();

/* Enable GPIOs clocks */
__HAL_RCC_GPIOA_CLK_ENABLE();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#ifndef USE_USER_DEFINED_HAL_ETH_MSPINIT

#include "stm32f7xx_hal.h"
#include "platform/mbed_critical.h"

/**
* Override HAL Eth Init function
Expand All @@ -38,7 +39,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
GPIO_InitTypeDef GPIO_InitStructure;
if (heth->Instance == ETH) {
/* Disable DCache for STM32F7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();

/* Enable GPIOs clocks */
__HAL_RCC_GPIOA_CLK_ENABLE();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#ifndef USE_USER_DEFINED_HAL_ETH_MSPINIT

#include "stm32f7xx_hal.h"
#include "platform/mbed_critical.h"

/**
* Override HAL Eth Init function
Expand All @@ -38,7 +39,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
GPIO_InitTypeDef GPIO_InitStructure;
if (heth->Instance == ETH) {
/* Disable DCache for STM32F7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();

/* Enable GPIOs clocks */
__HAL_RCC_GPIOA_CLK_ENABLE();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#ifndef USE_USER_DEFINED_HAL_ETH_MSPINIT

#include "stm32h7xx_hal.h"
#include "platform/mbed_critical.h"

#define ETH_TX_EN_Pin GPIO_PIN_11
#define ETH_TX_EN_GPIO_Port GPIOG
Expand Down Expand Up @@ -66,7 +67,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
if (heth->Instance == ETH) {
#if defined(CORE_CM7)
/* Disable DCache for STM32H7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();
#endif

/* GPIO Ports Clock Enable */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#ifndef USE_USER_DEFINED_HAL_ETH_MSPINIT

#include "stm32h7xx_hal.h"
#include "platform/mbed_critical.h"

#define MCO_Pin GPIO_PIN_0
#define MCO_GPIO_Port GPIOH
Expand Down Expand Up @@ -63,7 +64,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
GPIO_InitTypeDef GPIO_InitStruct;
if (heth->Instance == ETH) {
/* Disable DCache for STM32H7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();

/* GPIO Ports Clock Enable */
__HAL_RCC_GPIOH_CLK_ENABLE();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#ifndef USE_USER_DEFINED_HAL_ETH_MSPINIT

#include "stm32h7xx_hal.h"
#include "platform/mbed_critical.h"

#define MCO_Pin GPIO_PIN_0
#define MCO_GPIO_Port GPIOH
Expand Down Expand Up @@ -63,7 +64,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
GPIO_InitTypeDef GPIO_InitStruct;
if (heth->Instance == ETH) {
/* Disable DCache for STM32H7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();

/* GPIO Ports Clock Enable */
__HAL_RCC_GPIOH_CLK_ENABLE();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

#include "stm32h7xx_hal.h"
#include "portenta_power.h"
#include "platform/mbed_critical.h"

#define ETH_TX_EN_Pin GPIO_PIN_11
#define ETH_TX_EN_GPIO_Port GPIOG
Expand Down Expand Up @@ -66,7 +67,9 @@ void HAL_ETH_MspInit(ETH_HandleTypeDef *heth)

#if !(defined(DUAL_CORE) && defined(CORE_CM4))
/* Disable DCache for STM32H7 family */
core_util_critical_section_enter();
SCB_DisableDCache();
core_util_critical_section_exit();
#endif

/* GPIO Ports Clock Enable */
Expand Down