f8ac1d9261
It is now a generic `memorymap` API and an ESP specific `espulp` module. Fixes #7218. Fixes #3234. Fixes #7300.
108 lines
4.1 KiB
C
108 lines
4.1 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2020 microDev
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "shared-bindings/memorymap/AddressRange.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "soc/soc.h"
|
|
|
|
size_t allow_ranges[][2] = {
|
|
// ULP accessible RAM
|
|
{SOC_RTC_DATA_LOW, SOC_RTC_DATA_HIGH},
|
|
// CPU accessible RAM that is preserved during sleep if the RTC power domain is left on.
|
|
{SOC_RTC_DRAM_LOW, SOC_RTC_DRAM_HIGH},
|
|
// RTC peripheral registers
|
|
{0x60008000, 0x60009000}
|
|
|
|
};
|
|
|
|
void common_hal_memorymap_addressrange_construct(memorymap_addressrange_obj_t *self, uint8_t *start_address, size_t length) {
|
|
bool allowed = false;
|
|
for (size_t i = 0; i < MP_ARRAY_SIZE(allow_ranges); i++) {
|
|
uint8_t *allowed_start = (uint8_t *)allow_ranges[i][0];
|
|
uint8_t *allowed_end = (uint8_t *)allow_ranges[i][1];
|
|
if (allowed_start <= start_address &&
|
|
(start_address + length) <= allowed_end) {
|
|
allowed = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!allowed) {
|
|
mp_raise_ValueError(translate("Address range not allowed"));
|
|
}
|
|
|
|
self->start_address = start_address;
|
|
self->len = length;
|
|
}
|
|
|
|
size_t common_hal_memorymap_addressrange_get_length(const memorymap_addressrange_obj_t *self) {
|
|
return self->len;
|
|
}
|
|
|
|
bool common_hal_memorymap_addressrange_set_bytes(const memorymap_addressrange_obj_t *self,
|
|
size_t start_index, uint8_t *values, size_t len) {
|
|
uint8_t *address = self->start_address + start_index;
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
|
if (len == 1) {
|
|
*((uint8_t *)address) = values[0];
|
|
} else if (len == sizeof(uint16_t) && (((size_t)address) % sizeof(uint16_t)) == 0) {
|
|
*((uint16_t *)address) = ((uint16_t *)values)[0];
|
|
} else if (len == sizeof(uint32_t) && (((size_t)address) % sizeof(uint32_t)) == 0) {
|
|
*((uint32_t *)address) = ((uint32_t *)values)[0];
|
|
} else if (len == sizeof(uint64_t) && (((size_t)address) % sizeof(uint64_t)) == 0) {
|
|
*((uint64_t *)address) = ((uint64_t *)values)[0];
|
|
} else {
|
|
memcpy(address, values, len);
|
|
}
|
|
#pragma GCC diagnostic pop
|
|
|
|
return true;
|
|
}
|
|
|
|
void common_hal_memorymap_addressrange_get_bytes(const memorymap_addressrange_obj_t *self,
|
|
size_t start_index, size_t len, uint8_t *values) {
|
|
uint8_t *address = self->start_address + start_index;
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
|
if (len == 1) {
|
|
values[0] = *((uint8_t *)address);
|
|
} else if (len == sizeof(uint16_t) && (((size_t)address) % sizeof(uint16_t)) == 0) {
|
|
((uint16_t *)values)[0] = *((uint16_t *)address);
|
|
} else if (len == sizeof(uint32_t) && (((size_t)address) % sizeof(uint32_t)) == 0) {
|
|
((uint32_t *)values)[0] = *((uint32_t *)address);
|
|
} else if (len == sizeof(uint64_t) && (((size_t)address) % sizeof(uint64_t)) == 0) {
|
|
((uint64_t *)values)[0] = *((uint64_t *)address);
|
|
} else {
|
|
memcpy(values, address, len);
|
|
}
|
|
#pragma GCC diagnostic pop
|
|
}
|