File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
drivers/ra/fsp/src/r_flash_hp
zephyr/ra/ra_cfg/fsp_cfg/bsp Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -2640,6 +2640,13 @@ fsp_err_t flash_hp_pe_mode_exit (void)
2640
2640
err = temp_err ;
2641
2641
}
2642
2642
2643
+ #if defined(BSP_CFG_DCACHE_ENABLED )
2644
+ #if (1U == BSP_CFG_DCACHE_ENABLED )
2645
+ /* Clean and Invalidates D-Cache */
2646
+ SCB_CleanInvalidateDCache ();
2647
+ #endif
2648
+ #endif
2649
+
2643
2650
return err ;
2644
2651
}
2645
2652
Original file line number Diff line number Diff line change 483
483
#endif
484
484
485
485
#ifndef BSP_CFG_DCACHE_ENABLED
486
- #define BSP_CFG_DCACHE_ENABLED (0 )
486
+ #define BSP_CFG_DCACHE_ENABLED (CONFIG_DCACHE )
487
487
#endif
488
488
489
489
#ifndef BSP_CFG_SDRAM_ENABLED
Original file line number Diff line number Diff line change 478
478
#endif
479
479
480
480
#ifndef BSP_CFG_DCACHE_ENABLED
481
- #define BSP_CFG_DCACHE_ENABLED (0 )
481
+ #define BSP_CFG_DCACHE_ENABLED (CONFIG_DCACHE )
482
482
#endif
483
483
484
484
#ifndef BSP_CFG_SDRAM_ENABLED
Original file line number Diff line number Diff line change 463
463
#endif
464
464
465
465
#ifndef BSP_CFG_DCACHE_ENABLED
466
- #define BSP_CFG_DCACHE_ENABLED (0 )
466
+ #define BSP_CFG_DCACHE_ENABLED (CONFIG_DCACHE )
467
467
#endif
468
468
469
469
#ifndef BSP_CFG_SDRAM_ENABLED
You can’t perform that action at this time.
0 commit comments