esp_psram: improve mapping log when physical range is larger

After this commit, when physical address is larger than vaddr range,
driver will still map as much as it can, but also give a verbose level
log to show the actual mapped size
pull/9491/head
Armando 2022-07-27 10:59:47 +08:00 zatwierdzone przez Armando (Dou Yiwen)
rodzic f325ad2211
commit 42dfb5cadd
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -159,8 +159,8 @@ esp_err_t esp_psram_init(void)
//----------------------------------Map the PSRAM physical range to MMU-----------------------------//
intptr_t vaddr_start = mmu_get_psram_vaddr_start();
if (vaddr_start + psram_available_size > mmu_get_psram_vaddr_end()) {
ESP_EARLY_LOGV(TAG, "Virtual address not enough for PSRAM!");
psram_available_size = mmu_get_psram_vaddr_end() - vaddr_start;
ESP_EARLY_LOGV(TAG, "Virtual address not enough for PSRAM, map as much as we can. %dMB is mapped", psram_available_size / 1024 / 1024);
}
#if CONFIG_IDF_TARGET_ESP32