mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
mkdfu.py: Support setting flash parameters
This commit is contained in:
parent
73be74fd71
commit
d2c918f407
@ -29,6 +29,7 @@ function(__add_dfu_targets)
|
|||||||
-o "${CMAKE_CURRENT_BINARY_DIR}/dfu.bin"
|
-o "${CMAKE_CURRENT_BINARY_DIR}/dfu.bin"
|
||||||
--json "${CMAKE_CURRENT_BINARY_DIR}/flasher_args.json"
|
--json "${CMAKE_CURRENT_BINARY_DIR}/flasher_args.json"
|
||||||
--pid "${dfu_pid}"
|
--pid "${dfu_pid}"
|
||||||
|
--flash-size "${CONFIG_ESPTOOLPY_FLASHSIZE}"
|
||||||
DEPENDS gen_project_binary bootloader
|
DEPENDS gen_project_binary bootloader
|
||||||
VERBATIM
|
VERBATIM
|
||||||
USES_TERMINAL)
|
USES_TERMINAL)
|
||||||
|
@ -103,6 +103,26 @@ ESPRESSIF_VID = 12346
|
|||||||
# This CRC32 gets added after DFUSUFFIX_STRUCT
|
# This CRC32 gets added after DFUSUFFIX_STRUCT
|
||||||
DFUCRC_STRUCT = b'<I'
|
DFUCRC_STRUCT = b'<I'
|
||||||
|
|
||||||
|
# Flash chip parameters file related things
|
||||||
|
FlashParamsData = namedtuple(
|
||||||
|
'FlashParamsData',
|
||||||
|
[
|
||||||
|
'ishspi',
|
||||||
|
'legacy',
|
||||||
|
'deviceId',
|
||||||
|
'chip_size',
|
||||||
|
'block_size',
|
||||||
|
'sector_size',
|
||||||
|
'page_size',
|
||||||
|
'status_mask',
|
||||||
|
],
|
||||||
|
)
|
||||||
|
FLASH_PARAMS_STRUCT = b'<IIIIIIII'
|
||||||
|
FLASH_PARAMS_FILE = 'flash_params.dat'
|
||||||
|
DFU_INFO_FLAG_PARAM = (1 << 2)
|
||||||
|
DFU_INFO_FLAG_NOERASE = (1 << 3)
|
||||||
|
DFU_INFO_FLAG_IGNORE_MD5 = (1 << 4)
|
||||||
|
|
||||||
|
|
||||||
def dfu_crc(data, crc=0): # type: (bytes, int) -> int
|
def dfu_crc(data, crc=0): # type: (bytes, int) -> int
|
||||||
""" Calculate CRC32/JAMCRC of data, with an optional initial value """
|
""" Calculate CRC32/JAMCRC of data, with an optional initial value """
|
||||||
@ -116,6 +136,17 @@ def pad_bytes(b, multiple, padding=b'\x00'): # type: (bytes, int, bytes) -> byt
|
|||||||
return b + padding * (padded_len - len(b))
|
return b + padding * (padded_len - len(b))
|
||||||
|
|
||||||
|
|
||||||
|
def flash_size_bytes(size): # type: (str) -> int
|
||||||
|
"""
|
||||||
|
Given a flash size passed in args.flash_size
|
||||||
|
(ie 4MB), return the size in bytes.
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
return int(size.rstrip('MB'), 10) * 1024 * 1024
|
||||||
|
except ValueError:
|
||||||
|
raise argparse.ArgumentTypeError('Unknown size {}'.format(size))
|
||||||
|
|
||||||
|
|
||||||
class EspDfuWriter(object):
|
class EspDfuWriter(object):
|
||||||
def __init__(self, dest_file, pid, part_size): # type: (typing.BinaryIO, int, int) -> None
|
def __init__(self, dest_file, pid, part_size): # type: (typing.BinaryIO, int, int) -> None
|
||||||
self.dest = dest_file
|
self.dest = dest_file
|
||||||
@ -124,6 +155,29 @@ class EspDfuWriter(object):
|
|||||||
self.entries = [] # type: typing.List[bytes]
|
self.entries = [] # type: typing.List[bytes]
|
||||||
self.index = [] # type: typing.List[DFUInfo]
|
self.index = [] # type: typing.List[DFUInfo]
|
||||||
|
|
||||||
|
def add_flash_params_file(self, flash_size): # type: (str) -> None
|
||||||
|
"""
|
||||||
|
Add a file containing flash chip parameters
|
||||||
|
|
||||||
|
Corresponds to the "flashchip" data structure that the ROM
|
||||||
|
has in RAM.
|
||||||
|
|
||||||
|
See flash_set_parameters() in esptool.py for more info
|
||||||
|
"""
|
||||||
|
flash_params = FlashParamsData(
|
||||||
|
ishspi=0,
|
||||||
|
legacy=0,
|
||||||
|
deviceId=0, # ignored
|
||||||
|
chip_size=flash_size_bytes(flash_size), # flash size in bytes
|
||||||
|
block_size=64 * 1024,
|
||||||
|
sector_size=4 * 1024,
|
||||||
|
page_size=256,
|
||||||
|
status_mask=0xffff,
|
||||||
|
)
|
||||||
|
data = struct.pack(FLASH_PARAMS_STRUCT, *flash_params)
|
||||||
|
flags = DFU_INFO_FLAG_PARAM | DFU_INFO_FLAG_NOERASE | DFU_INFO_FLAG_IGNORE_MD5
|
||||||
|
self._add_cpio_flash_entry(FLASH_PARAMS_FILE, 0, data, flags)
|
||||||
|
|
||||||
def add_file(self, flash_addr, path): # type: (int, str) -> None
|
def add_file(self, flash_addr, path): # type: (int, str) -> None
|
||||||
"""
|
"""
|
||||||
Add file to be written into flash at given address
|
Add file to be written into flash at given address
|
||||||
@ -166,14 +220,14 @@ class EspDfuWriter(object):
|
|||||||
self.dest.write(out_data)
|
self.dest.write(out_data)
|
||||||
|
|
||||||
def _add_cpio_flash_entry(
|
def _add_cpio_flash_entry(
|
||||||
self, filename, flash_addr, data
|
self, filename, flash_addr, data, flags=0
|
||||||
): # type: (str, int, bytes) -> None
|
): # type: (str, int, bytes, int) -> None
|
||||||
md5 = hashlib.md5()
|
md5 = hashlib.md5()
|
||||||
md5.update(data)
|
md5.update(data)
|
||||||
self.index.append(
|
self.index.append(
|
||||||
DFUInfo(
|
DFUInfo(
|
||||||
address=flash_addr,
|
address=flash_addr,
|
||||||
flags=0,
|
flags=flags,
|
||||||
name=filename.encode('utf-8'),
|
name=filename.encode('utf-8'),
|
||||||
md5=md5.digest(),
|
md5=md5.digest(),
|
||||||
)
|
)
|
||||||
@ -196,6 +250,8 @@ class EspDfuWriter(object):
|
|||||||
|
|
||||||
def action_write(args): # type: (typing.Mapping[str, typing.Any]) -> None
|
def action_write(args): # type: (typing.Mapping[str, typing.Any]) -> None
|
||||||
writer = EspDfuWriter(args['output_file'], args['pid'], args['part_size'])
|
writer = EspDfuWriter(args['output_file'], args['pid'], args['part_size'])
|
||||||
|
print('Adding flash chip parameters file with flash_size = {}'.format(args['flash_size']))
|
||||||
|
writer.add_flash_params_file(args['flash_size'])
|
||||||
for addr, f in args['files']:
|
for addr, f in args['files']:
|
||||||
print('Adding {} at {:#x}'.format(f, addr))
|
print('Adding {} at {:#x}'.format(f, addr))
|
||||||
writer.add_file(addr, f)
|
writer.add_file(addr, f)
|
||||||
@ -228,6 +284,10 @@ def main(): # type: () -> None
|
|||||||
write_parser.add_argument('files',
|
write_parser.add_argument('files',
|
||||||
metavar='<address> <file>', help='Add <file> at <address>',
|
metavar='<address> <file>', help='Add <file> at <address>',
|
||||||
nargs='*')
|
nargs='*')
|
||||||
|
write_parser.add_argument('-fs', '--flash-size',
|
||||||
|
help='SPI Flash size in MegaBytes (1MB, 2MB, 4MB, 8MB, 16MB, 32MB, 64MB, 128MB)',
|
||||||
|
choices=['1MB', '2MB', '4MB', '8MB', '16MB', '32MB', '64MB', '128MB'],
|
||||||
|
default='2MB')
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
@ -261,6 +321,7 @@ def main(): # type: () -> None
|
|||||||
'files': files,
|
'files': files,
|
||||||
'pid': args.pid,
|
'pid': args.pid,
|
||||||
'part_size': args.part_size,
|
'part_size': args.part_size,
|
||||||
|
'flash_size': args.flash_size,
|
||||||
}
|
}
|
||||||
|
|
||||||
{'write': action_write
|
{'write': action_write
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -34,7 +34,8 @@ class TestMkDFU(unittest.TestCase):
|
|||||||
self.addCleanup(os.unlink, f_out.name)
|
self.addCleanup(os.unlink, f_out.name)
|
||||||
args = [mkdfu_path, 'write',
|
args = [mkdfu_path, 'write',
|
||||||
'-o', f_out.name,
|
'-o', f_out.name,
|
||||||
'--pid', '2']
|
'--pid', '2',
|
||||||
|
'--flash-size', '4MB']
|
||||||
if part_size:
|
if part_size:
|
||||||
args += ['--part-size', str(part_size)]
|
args += ['--part-size', str(part_size)]
|
||||||
if json_input:
|
if json_input:
|
||||||
@ -44,6 +45,8 @@ class TestMkDFU(unittest.TestCase):
|
|||||||
p = pexpect.spawn(sys.executable, args, timeout=10, encoding='utf-8')
|
p = pexpect.spawn(sys.executable, args, timeout=10, encoding='utf-8')
|
||||||
self.addCleanup(p.terminate, force=True)
|
self.addCleanup(p.terminate, force=True)
|
||||||
|
|
||||||
|
p.expect_exact('Adding flash chip parameters file with flash_size = 4MB')
|
||||||
|
|
||||||
for addr, f_path in sorted(file_args, key=lambda e: e[0]):
|
for addr, f_path in sorted(file_args, key=lambda e: e[0]):
|
||||||
p.expect_exact('Adding {} at {}'.format(f_path, hex(addr)))
|
p.expect_exact('Adding {} at {}'.format(f_path, hex(addr)))
|
||||||
|
|
||||||
@ -103,7 +106,7 @@ class TestSplit(TestMkDFU):
|
|||||||
tests with images prepared in the "2" subdirectory
|
tests with images prepared in the "2" subdirectory
|
||||||
|
|
||||||
"2/dfu.bin" was prepared with:
|
"2/dfu.bin" was prepared with:
|
||||||
mkdfu.py write --part-size 5 --pid 2 -o 2/dfu.bin 0 bin
|
mkdfu.py write --part-size 5 --pid 2 --flash-size 4MB -o 2/dfu.bin 0 bin
|
||||||
where the content of "bin" is b"\xce" * 10
|
where the content of "bin" is b"\xce" * 10
|
||||||
'''
|
'''
|
||||||
def test_split(self):
|
def test_split(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user