From: Jan Kiszka Date: Wed, 2 Mar 2022 14:01:56 +0000 (+0100) Subject: sf: Query write-protection status before operating the flash X-Git-Tag: baikal/mips/sdk5.8.2~5^2~286^2~2 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=6d4bd9aa77cec0beb41beb1aded5ba32a4cf3071;p=uboot.git sf: Query write-protection status before operating the flash Do not suggest successful operation if a flash area to be changed is actually locked, thus will not execute the request. Rather report an error and bail out. That's way more user-friendly than asking them to manually check for this case. Derived from original patch by Chao Zeng. Signed-off-by: Jan Kiszka Acked-by: Jagan Teki --- diff --git a/cmd/sf.c b/cmd/sf.c index 8713736b2a..cd50b38081 100644 --- a/cmd/sf.c +++ b/cmd/sf.c @@ -294,6 +294,12 @@ static int do_spi_flash_read_write(int argc, char *const argv[]) return 1; } + if (strncmp(argv[0], "read", 4) != 0 && flash->flash_is_unlocked && + !flash->flash_is_unlocked(flash, offset, len)) { + printf("ERROR: flash area is locked\n"); + return 1; + } + buf = map_physmem(addr, len, MAP_WRBACK); if (!buf && addr) { puts("Failed to map physical memory\n"); @@ -350,6 +356,12 @@ static int do_spi_flash_erase(int argc, char *const argv[]) return 1; } + if (flash->flash_is_unlocked && + !flash->flash_is_unlocked(flash, offset, len)) { + printf("ERROR: flash area is locked\n"); + return 1; + } + ret = spi_flash_erase(flash, offset, size); printf("SF: %zu bytes @ %#x Erased: ", (size_t)size, (u32)offset); if (ret)