mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			85 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include <stdio.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
#include <freertos/FreeRTOS.h>
 | 
						|
#include <freertos/task.h>
 | 
						|
#include <freertos/semphr.h>
 | 
						|
 | 
						|
#include <unity.h>
 | 
						|
#include <esp_spi_flash.h>
 | 
						|
#include <esp_attr.h>
 | 
						|
#include <esp_flash_encrypt.h>
 | 
						|
 | 
						|
#include "../cache_utils.h"
 | 
						|
 | 
						|
static QueueHandle_t result_queue;
 | 
						|
 | 
						|
static IRAM_ATTR void cache_test_task(void *arg)
 | 
						|
{
 | 
						|
    bool do_disable = (bool)arg;
 | 
						|
    bool result;
 | 
						|
    if(do_disable) {
 | 
						|
        spi_flash_disable_interrupts_caches_and_other_cpu();
 | 
						|
    }
 | 
						|
    result = spi_flash_cache_enabled();
 | 
						|
    if (do_disable) {
 | 
						|
        spi_flash_enable_interrupts_caches_and_other_cpu();
 | 
						|
    }
 | 
						|
 | 
						|
    TEST_ASSERT( xQueueSendToBack(result_queue, &result, 0) );
 | 
						|
    vTaskDelete(NULL);
 | 
						|
}
 | 
						|
 | 
						|
TEST_CASE("spi_flash_cache_enabled() works on both CPUs", "[spi_flash][esp_flash]")
 | 
						|
{
 | 
						|
    result_queue = xQueueCreate(1, sizeof(bool));
 | 
						|
 | 
						|
    for(int cpu = 0; cpu < portNUM_PROCESSORS; cpu++) {
 | 
						|
        for(int disable = 0; disable <= 1; disable++) {
 | 
						|
            bool do_disable = disable;
 | 
						|
            bool result;
 | 
						|
            printf("Testing cpu %d disabled %d\n", cpu, do_disable);
 | 
						|
 | 
						|
            xTaskCreatePinnedToCore(cache_test_task, "cache_check_task",
 | 
						|
                                    2048, (void *)do_disable, configMAX_PRIORITIES-1, NULL, cpu);
 | 
						|
 | 
						|
            TEST_ASSERT( xQueueReceive(result_queue, &result, 2) );
 | 
						|
            TEST_ASSERT_EQUAL(!do_disable, result);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    vQueueDelete(result_queue);
 | 
						|
}
 | 
						|
 | 
						|
static const uint32_t s_in_rodata[] = { 0x12345678, 0xfedcba98 };
 | 
						|
 | 
						|
static void IRAM_ATTR cache_access_test_func(void* arg)
 | 
						|
{
 | 
						|
    spi_flash_disable_interrupts_caches_and_other_cpu();
 | 
						|
    volatile uint32_t* src = (volatile uint32_t*) s_in_rodata;
 | 
						|
    uint32_t v1 = src[0];
 | 
						|
    uint32_t v2 = src[1];
 | 
						|
    bool cache_enabled = spi_flash_cache_enabled();
 | 
						|
    spi_flash_enable_interrupts_caches_and_other_cpu();
 | 
						|
    printf("%d %x %x\n", cache_enabled, v1, v2);
 | 
						|
    vTaskDelete(NULL);
 | 
						|
}
 | 
						|
 | 
						|
// These tests works properly if they resets the chip with the
 | 
						|
// "Cache disabled but cached memory region accessed" reason and the correct CPU is logged.
 | 
						|
TEST_CASE("invalid access to cache raises panic (PRO CPU)", "[spi_flash][ignore]")
 | 
						|
{
 | 
						|
    xTaskCreatePinnedToCore(&cache_access_test_func, "ia", 2048, NULL, 5, NULL, 0);
 | 
						|
    vTaskDelay(1000/portTICK_PERIOD_MS);
 | 
						|
}
 | 
						|
 | 
						|
#ifndef CONFIG_FREERTOS_UNICORE
 | 
						|
 | 
						|
TEST_CASE("invalid access to cache raises panic (APP CPU)", "[spi_flash][ignore]")
 | 
						|
{
 | 
						|
    xTaskCreatePinnedToCore(&cache_access_test_func, "ia", 2048, NULL, 5, NULL, 1);
 | 
						|
    vTaskDelay(1000/portTICK_PERIOD_MS);
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |