| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975 |
- # SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
- # SPDX-License-Identifier: Unlicense OR CC0-1.0
- from __future__ import unicode_literals
- import logging
- import os
- import pytest
- from pytest_embedded import Dut
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.esp32c2
- @pytest.mark.esp32c3
- def test_examples_efuse(dut: Dut) -> None:
- dut.expect(r'example: Coding Scheme (3/4)|(NONE)|(REPEAT)|(RS \(Reed-Solomon coding\))', timeout=20)
- dut.expect(['example: read efuse fields',
- r'example: 1. read MAC address: {}'.format(r':'.join((r'[0-9a-f]{2}',) * 6)),
- 'example: 2. read secure_version: 0',
- 'example: 3. read custom fields',
- 'example: module_version = 0',
- 'example: device_role = None',
- 'example: setting_1 = 0',
- 'example: setting_2 = 0',
- 'example: custom_secure_version = 0',
- 'example: This example does not burn any efuse in reality only virtually',
- 'example: Write operations in efuse fields are performed virtually',
- 'example: write custom efuse fields',
- 'efuse: Virtual efuses enabled: Not really burning eFuses',
- 'example: module_version = 1',
- 'example: device_role = Slave',
- 'example: setting_1 = 3',
- 'example: setting_2 = 4',
- 'example: custom_secure_version = 5',
- 'example: Done'], expect_all=True)
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.esp32s2
- @pytest.mark.esp32c2
- @pytest.mark.esp32c3
- @pytest.mark.parametrize('config', ['virt_flash_enc',], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_flash_enc(dut: Dut) -> None:
- # check and log bin size
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_virt_flash_enc_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.write_flash_no_enc()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Checking flash encryption...')
- dut.expect('Generating new flash encryption key...')
- if dut.app.target == 'esp32':
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 2')
- dut.expect('Setting CRYPT_CONFIG efuse to 0xF')
- dut.expect('Not disabling UART bootloader encryption')
- dut.expect('Disable UART bootloader decryption...')
- dut.expect('Disable UART bootloader MMU cache...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- else:
- if dut.app.target == 'esp32c2':
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 1')
- else:
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 4')
- dut.expect('Not disabling UART bootloader encryption')
- dut.expect('Disable UART bootloader cache...')
- dut.expect('Disable JTAG...')
- dut.expect('bootloader encrypted successfully')
- dut.expect('partition table encrypted and loaded successfully')
- dut.expect('Flash encryption completed', timeout=90)
- dut.expect('Resetting with flash encryption enabled...')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Checking flash encryption...')
- if dut.app.target == 'esp32':
- dut.expect_exact('flash encryption is enabled (3 plaintext flashes left)', timeout=3)
- else:
- dut.expect_exact('flash encryption is enabled (1 plaintext flashes left)')
- dut.expect_exact('Flash encryption mode is DEVELOPMENT (not secure)')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32s2
- @pytest.mark.parametrize('config', ['virt_flash_enc_aes_256',], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_flash_enc_aes_256(dut: Dut) -> None:
- # Only ESP32-S2 has support AES-256 FLASH_ENCRYPTION key
- # check and log bin size
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_virt_flash_enc_aes_256_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.write_flash_no_enc()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Checking flash encryption...')
- dut.expect('Generating new flash encryption key...')
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 2')
- dut.expect('Writing EFUSE_BLK_KEY1 with purpose 3')
- dut.expect('Not disabling UART bootloader encryption')
- dut.expect('Disable UART bootloader cache...')
- dut.expect('Disable JTAG...')
- dut.expect('bootloader encrypted successfully')
- dut.expect('partition table encrypted and loaded successfully')
- dut.expect('Flash encryption completed', timeout=90)
- dut.expect('Resetting with flash encryption enabled...')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Checking flash encryption...')
- dut.expect_exact('flash encryption is enabled (1 plaintext flashes left)')
- dut.expect_exact('Flash encryption mode is DEVELOPMENT (not secure)')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.esp32c2
- @pytest.mark.esp32c3
- @pytest.mark.esp32s2
- @pytest.mark.parametrize('config', ['virt_flash_enc',], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_flash_enc_pre_loaded(dut: Dut) -> None:
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.write_flash_no_enc()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Flash encryption completed', timeout=90)
- dut.expect('Resetting with flash encryption enabled...')
- dut.expect_exact('Flash encryption mode is DEVELOPMENT (not secure)')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- if dut.app.target == 'esp32':
- print(' - Flash emul_efuse with pre-loaded efuses (FLASH_CRYPT_CNT 1 -> 0)')
- # offset of this eFuse is taken from components/efuse/esp32/esp_efuse_table.csv
- FLASH_CRYPT_CNT = 20
- # Resets eFuse, which enables Flash encryption feature
- dut.serial.erase_field_on_emul_efuse([FLASH_CRYPT_CNT])
- elif dut.app.target == 'esp32c2':
- FLASH_CRYPT_CNT = 39
- dut.serial.erase_field_on_emul_efuse([FLASH_CRYPT_CNT])
- else:
- # offset of this eFuse is taken from components/efuse/{target}/esp_efuse_table.csv
- print(' - Flash emul_efuse with pre-loaded efuses (SPI_BOOT_CRYPT_CNT 1 -> 0)')
- SPI_BOOT_CRYPT_CNT = 82
- # Resets eFuse, which enables Flash encryption feature
- dut.serial.erase_field_on_emul_efuse([SPI_BOOT_CRYPT_CNT])
- print(' - Start app (flash partition_table and app)')
- dut.serial.write_flash_no_enc()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Checking flash encryption...')
- dut.expect('Using pre-loaded flash encryption key in efuse')
- if dut.app.target == 'esp32':
- dut.expect('Setting CRYPT_CONFIG efuse to 0xF')
- dut.expect('Not disabling UART bootloader encryption')
- dut.expect('Disable UART bootloader decryption...')
- dut.expect('Disable UART bootloader MMU cache...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- else:
- dut.expect('Not disabling UART bootloader encryption')
- dut.expect('Disable UART bootloader cache...')
- dut.expect('Disable JTAG...')
- dut.expect('bootloader encrypted successfully')
- dut.expect('partition table encrypted and loaded successfully')
- dut.expect('Flash encryption completed', timeout=90)
- dut.expect('Resetting with flash encryption enabled...')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Checking flash encryption...')
- if dut.app.target == 'esp32':
- dut.expect_exact('flash encryption is enabled (3 plaintext flashes left)')
- else:
- dut.expect_exact('flash encryption is enabled (1 plaintext flashes left)')
- dut.expect_exact('Flash encryption mode is DEVELOPMENT (not secure)')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.esp32c2
- @pytest.mark.esp32c3
- @pytest.mark.esp32s2
- @pytest.mark.parametrize('config', ['virt_flash_enc_release',], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_flash_enc_release(dut: Dut) -> None:
- # check and log bin size
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_virt_flash_enc_release_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- dut.serial.erase_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.write_flash_no_enc()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Checking flash encryption...')
- dut.expect('Generating new flash encryption key...')
- if dut.app.target == 'esp32':
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 2')
- dut.expect('Setting CRYPT_CONFIG efuse to 0xF')
- dut.expect('Disable UART bootloader encryption...')
- dut.expect('Disable UART bootloader decryption...')
- dut.expect('Disable UART bootloader MMU cache...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- else:
- if dut.app.target == 'esp32c2':
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 1')
- else:
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 4')
- dut.expect('Disable UART bootloader encryption')
- dut.expect('Disable UART bootloader cache...')
- dut.expect('Disable JTAG...')
- dut.expect('bootloader encrypted successfully')
- dut.expect('partition table encrypted and loaded successfully')
- dut.expect('Setting CRYPT_CNT for permanent encryption', timeout=90)
- dut.expect('Flash encryption completed')
- dut.expect('Resetting with flash encryption enabled...')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Checking flash encryption...')
- dut.expect_exact('flash encryption is enabled (0 plaintext flashes left)', timeout=5)
- dut.expect('Flash encryption mode is RELEASE')
- dut.expect('Start eFuse example')
- dut.expect('Flash Encryption is in RELEASE mode')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.parametrize('config', ['virt_secure_boot_v1',], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v1(dut: Dut) -> None:
- # only for ESP32
- # check and log bin size
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_virt_secure_boot_v1_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader')
- dut.serial.bootloader_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v1: Generating new secure boot key...')
- dut.expect('secure_boot_v1: Generating secure boot digest...')
- dut.expect('secure_boot_v1: Digest generation complete')
- dut.expect('Checking secure boot...')
- dut.expect('secure_boot_v1: blowing secure boot efuse...')
- dut.expect('Read & write protecting new key...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- dut.expect('secure_boot_v1: secure boot is now enabled for bootloader image')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- dut.serial.hard_reset()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v1: bootloader secure boot is already enabled. No need to generate digest. continuing..')
- dut.expect('boot: Checking secure boot...')
- dut.expect('secure_boot_v1: bootloader secure boot is already enabled, continuing..')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.parametrize('config', ['virt_secure_boot_v1',], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v1_pre_loaded(dut: Dut) -> None:
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader')
- dut.serial.bootloader_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- print(' - Flash emul_efuse with pre-loaded efuses (ABS_DONE_0 1 -> 0)')
- # offset of this eFuse is taken from components/efuse/esp32/esp_efuse_table.csv
- ABS_DONE_0 = 196
- # Resets eFuse, which enables Secure boot (V1) feature
- dut.serial.erase_field_on_emul_efuse([ABS_DONE_0])
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v1: Using pre-loaded secure boot key in EFUSE block 2')
- dut.expect('secure_boot_v1: Generating secure boot digest...')
- dut.expect('secure_boot_v1: Digest generation complete')
- dut.expect('Checking secure boot...')
- dut.expect('secure_boot_v1: blowing secure boot efuse...')
- dut.expect('Read & write protecting new key...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- dut.expect('secure_boot_v1: secure boot is now enabled for bootloader image')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- dut.serial.hard_reset()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v1: bootloader secure boot is already enabled. No need to generate digest. continuing..')
- dut.expect('Checking secure boot...')
- dut.expect('secure_boot_v1: bootloader secure boot is already enabled, continuing..')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.parametrize('config', [('virt_secure_boot_v2.esp32'),], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v2(dut: Dut) -> None:
- # only for ESP32 ECO3
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_secure_boot_v2_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader')
- dut.serial.bootloader_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Secure boot V2 is not enabled yet and eFuse digest keys are not set')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...', timeout=20)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Secure boot V2 is not enabled yet and eFuse digest keys are not set')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: Secure boot digests absent, generating..')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the bootloader')
- dut.expect('Writing EFUSE_BLK_KEY1 with purpose 3')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the app')
- dut.expect_exact('secure_boot_v2: Application key(0) matches with bootloader key(0)')
- dut.expect('secure_boot_v2: blowing secure boot efuse...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- dut.expect('UART ROM Download mode kept enabled - SECURITY COMPROMISED')
- dut.expect('Prevent read disabling of additional efuses...')
- dut.expect('secure_boot_v2: Secure boot permanently enabled')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- dut.serial.hard_reset()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('secure_boot_v2: secure boot v2 is already enabled, continuing..')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader and app')
- dut.serial.bootloader_flash()
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- print(' - Flash emul_efuse with pre-loaded efuses (ABS_DONE_1 1 -> 0)')
- # offset of this eFuse is taken from components/efuse/esp32/esp_efuse_table.csv
- ABS_DONE_1 = 197
- # Resets eFuse, which enables Secure boot (V2) feature
- dut.serial.erase_field_on_emul_efuse([ABS_DONE_1])
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: Secure boot digests already present')
- dut.expect('secure_boot_v2: Using pre-loaded public key digest in eFuse')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the app')
- dut.expect_exact('secure_boot_v2: Application key(0) matches with bootloader key(0)')
- dut.expect('secure_boot_v2: blowing secure boot efuse...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- dut.expect('UART ROM Download mode kept enabled - SECURITY COMPROMISED')
- dut.expect('Prevent read disabling of additional efuses...')
- dut.expect('secure_boot_v2: Secure boot permanently enabled')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- dut.serial.hard_reset()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('secure_boot_v2: secure boot v2 is already enabled, continuing..')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.parametrize('config', [('virt_secure_boot_v2.esp32'),], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v2_pre_loaded(dut: Dut) -> None:
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader and app')
- dut.serial.bootloader_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- print(' - Flash emul_efuse with pre-loaded efuses (ABS_DONE_1 1 -> 0)')
- # offset of this eFuse is taken from components/efuse/esp32/esp_efuse_table.csv
- ABS_DONE_1 = 197
- # Resets eFuse, which enables Secure boot (V2) feature
- dut.serial.erase_field_on_emul_efuse([ABS_DONE_1])
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: Secure boot digests already present')
- dut.expect('secure_boot_v2: Using pre-loaded public key digest in eFuse')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the app')
- dut.expect_exact('secure_boot_v2: Application key(0) matches with bootloader key(0)')
- dut.expect('secure_boot_v2: blowing secure boot efuse...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- dut.expect('UART ROM Download mode kept enabled - SECURITY COMPROMISED')
- dut.expect('Prevent read disabling of additional efuses...')
- dut.expect('secure_boot_v2: Secure boot permanently enabled')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- dut.serial.hard_reset()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('secure_boot_v2: secure boot v2 is already enabled, continuing..')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- def test_examples_efuse_with_virt_secure_boot_v2_esp32xx(dut: Dut) -> None:
- # check and log bin size
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_virt_secure_boot_v2_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader')
- dut.serial.bootloader_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Secure boot V2 is not enabled yet and eFuse digest keys are not set')
- if dut.app.target == 'esp32c2':
- signed_scheme = 'ECDSA'
- else:
- signed_scheme = 'RSA-PSS'
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Secure boot V2 is not enabled yet and eFuse digest keys are not set')
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: Secure boot digests absent, generating..')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the bootloader')
- if dut.app.target == 'esp32c2':
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 3')
- else:
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 9')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the app')
- dut.expect_exact('secure_boot_v2: Application key(0) matches with bootloader key(0)')
- if dut.app.target != 'esp32c2':
- dut.expect_exact('secure_boot_v2: Revoking empty key digest slot (1)...')
- dut.expect_exact('secure_boot_v2: Revoking empty key digest slot (2)...')
- dut.expect('secure_boot_v2: blowing secure boot efuse...')
- dut.expect('UART ROM Download mode kept enabled - SECURITY COMPROMISED')
- dut.expect('Disable hardware & software JTAG...')
- dut.expect('secure_boot_v2: Secure boot permanently enabled')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- dut.serial.hard_reset()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('secure_boot_v2: secure boot v2 is already enabled, continuing..')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32c3
- @pytest.mark.parametrize('config', ['virt_secure_boot_v2.esp32c3'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v2_esp32c3(dut: Dut) -> None:
- test_examples_efuse_with_virt_secure_boot_v2_esp32xx(dut)
- @pytest.mark.generic
- @pytest.mark.esp32c2
- @pytest.mark.parametrize('config', ['virt_secure_boot_v2.esp32c2'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v2_esp32c2(dut: Dut) -> None:
- test_examples_efuse_with_virt_secure_boot_v2_esp32xx(dut)
- @pytest.mark.generic
- @pytest.mark.esp32s2
- @pytest.mark.parametrize('config', ['virt_secure_boot_v2.esp32s2'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v2_esp32s2(dut: Dut) -> None:
- test_examples_efuse_with_virt_secure_boot_v2_esp32xx(dut)
- def test_example_efuse_with_virt_secure_boot_v2_esp32xx_pre_loaded(dut: Dut) -> None:
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader and app')
- dut.serial.bootloader_flash()
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- print(' - Flash emul_efuse with pre-loaded efuses (SECURE_BOOT_EN 1 -> 0, SECURE_BOOT_KEY_REVOKE[0..2] -> 0)')
- # offsets of eFuses are taken from components/efuse/{target}/esp_efuse_table.csv
- if dut.app.target == 'esp32c2':
- SECURE_BOOT_EN = 53
- dut.serial.erase_field_on_emul_efuse([SECURE_BOOT_EN])
- else:
- SECURE_BOOT_EN = 116
- SECURE_BOOT_KEY_REVOKE0 = 85
- SECURE_BOOT_KEY_REVOKE1 = 86
- SECURE_BOOT_KEY_REVOKE2 = 87
- # Resets eFuse, which enables Secure boot feature
- # Resets eFuses, which control digest slots
- dut.serial.erase_field_on_emul_efuse([SECURE_BOOT_EN, SECURE_BOOT_KEY_REVOKE0, SECURE_BOOT_KEY_REVOKE1, SECURE_BOOT_KEY_REVOKE2])
- print(' - Start app (flash partition_table and app)')
- dut.serial.flash()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- if dut.app.target == 'esp32c2':
- signed_scheme = 'ECDSA'
- else:
- signed_scheme = 'RSA-PSS'
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: Secure boot digests already present')
- dut.expect('secure_boot_v2: Using pre-loaded public key digest in eFuse')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the app')
- if dut.app.target != 'esp32c2':
- dut.expect_exact('secure_boot_v2: Revoking empty key digest slot (1)...')
- dut.expect_exact('secure_boot_v2: Revoking empty key digest slot (2)...')
- dut.expect('secure_boot_v2: blowing secure boot efuse...')
- dut.expect('UART ROM Download mode kept enabled - SECURITY COMPROMISED')
- dut.expect('Disable hardware & software JTAG...')
- dut.expect('secure_boot_v2: Secure boot permanently enabled', timeout=20)
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- dut.serial.hard_reset()
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('secure_boot_v2: secure boot v2 is already enabled, continuing..')
- dut.expect('Start eFuse example')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32c3
- @pytest.mark.parametrize('config', ['virt_secure_boot_v2.esp32c3'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v2_esp32c3_pre_loaded(dut: Dut) -> None:
- test_example_efuse_with_virt_secure_boot_v2_esp32xx_pre_loaded(dut)
- @pytest.mark.generic
- @pytest.mark.esp32c2
- @pytest.mark.parametrize('config', ['virt_secure_boot_v2.esp32c2'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v2_esp32c2_pre_loaded(dut: Dut) -> None:
- test_example_efuse_with_virt_secure_boot_v2_esp32xx_pre_loaded(dut)
- @pytest.mark.generic
- @pytest.mark.esp32s2
- @pytest.mark.parametrize('config', ['virt_secure_boot_v2.esp32s2'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_secure_boot_v2_esp32s2_pre_loaded(dut: Dut) -> None:
- test_example_efuse_with_virt_secure_boot_v2_esp32xx_pre_loaded(dut)
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.parametrize('config', ['virt_sb_v1_and_fe',], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_sb_v1_and_fe(dut: Dut) -> None:
- # check and log bin size
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_virt_sb_v1_and_fe_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader')
- dut.serial.bootloader_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.write_flash_no_enc()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v1: Generating new secure boot key...')
- dut.expect('secure_boot_v1: Generating secure boot digest...')
- dut.expect('secure_boot_v1: Digest generation complete')
- dut.expect('Checking flash encryption...')
- dut.expect('flash_encrypt: Generating new flash encryption key...')
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 2')
- dut.expect('flash_encrypt: Setting CRYPT_CONFIG efuse to 0xF')
- dut.expect('flash_encrypt: Not disabling UART bootloader encryption')
- dut.expect('flash_encrypt: Disable UART bootloader decryption...')
- dut.expect('flash_encrypt: Disable UART bootloader MMU cache...')
- dut.expect('flash_encrypt: Disable JTAG...')
- dut.expect('flash_encrypt: Disable ROM BASIC interpreter fallback...')
- dut.expect('flash_encrypt: bootloader encrypted successfully')
- dut.expect('flash_encrypt: partition table encrypted and loaded successfully')
- dut.expect('Verifying image signature...')
- dut.expect('flash_encrypt: Flash encryption completed', timeout=90)
- dut.expect('Checking secure boot...')
- dut.expect('secure_boot_v1: blowing secure boot efuse...')
- dut.expect('Read & write protecting new key...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- dut.expect('secure_boot_v1: secure boot is now enabled for bootloader image')
- dut.expect('Resetting with flash encryption enabled...')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v1: bootloader secure boot is already enabled. No need to generate digest. continuing..')
- dut.expect('Checking flash encryption...')
- dut.expect_exact('flash_encrypt: flash encryption is enabled (3 plaintext flashes left)')
- dut.expect('Checking secure boot...')
- dut.expect('secure_boot_v1: bootloader secure boot is already enabled, continuing..')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect_exact('flash_encrypt: Flash encryption mode is DEVELOPMENT (not secure)')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Flash Encryption is NOT in RELEASE mode')
- dut.expect('example: Secure Boot is in RELEASE mode')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32
- @pytest.mark.parametrize('config', ['virt_sb_v2_and_fe.esp32',], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_sb_v2_and_fe(dut: Dut) -> None:
- # check and log bin size
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_virt_sb_v2_and_fe_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- print(' - Erase flash')
- dut.serial.erase_flash()
- print(' - Flash bootloader')
- dut.serial.bootloader_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.write_flash_no_enc()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('secure_boot_v2: Secure boot V2 is not enabled yet and eFuse digest keys are not set')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Secure boot V2 is not enabled yet and eFuse digest keys are not set')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully')
- dut.expect('secure_boot_v2: Secure boot digests absent, generating..')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the bootloader')
- dut.expect('Writing EFUSE_BLK_KEY1 with purpose 3')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the app')
- dut.expect_exact('secure_boot_v2: Application key(0) matches with bootloader key(0)')
- dut.expect('secure_boot_v2: blowing secure boot efuse...')
- dut.expect('Disable JTAG...')
- dut.expect('Disable ROM BASIC interpreter fallback...')
- dut.expect('Disable ROM Download mode...')
- dut.expect('secure_boot_v2: Secure boot permanently enabled')
- dut.expect('Checking flash encryption...')
- dut.expect('flash_encrypt: Generating new flash encryption key...')
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 2')
- dut.expect('flash_encrypt: Setting CRYPT_CONFIG efuse to 0xF')
- dut.expect('flash_encrypt: Not disabling UART bootloader encryption')
- dut.expect('flash_encrypt: Disable UART bootloader decryption...')
- dut.expect('flash_encrypt: Disable UART bootloader MMU cache...')
- dut.expect('flash_encrypt: Disable JTAG...')
- dut.expect('flash_encrypt: Disable ROM BASIC interpreter fallback...')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('flash_encrypt: bootloader encrypted successfully')
- dut.expect('flash_encrypt: partition table encrypted and loaded successfully')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('flash_encrypt: Flash encryption completed', timeout=90)
- dut.expect('Resetting with flash encryption enabled...')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with RSA-PSS...')
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('secure_boot_v2: secure boot v2 is already enabled, continuing..')
- dut.expect_exact('flash_encrypt: flash encryption is enabled (3 plaintext flashes left)')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect_exact('flash_encrypt: Flash encryption mode is DEVELOPMENT (not secure)')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Flash Encryption is NOT in RELEASE mode')
- dut.expect('example: Secure Boot is in RELEASE mode')
- dut.expect('example: Done')
- def test_examples_efuse_with_virt_sb_v2_and_fe_esp32xx(dut: Dut) -> None:
- # check and log bin size
- binary_file = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
- bin_size = os.path.getsize(binary_file)
- logging.info('{}_bootloader_virt_sb_v2_and_fe_bin_size: {}KB'.format(dut.app.target, bin_size // 1024))
- dut.serial.erase_flash()
- print(' - Flash bootloader')
- dut.serial.bootloader_flash()
- print(' - Start app (flash partition_table and app)')
- dut.serial.write_flash_no_enc()
- dut.expect('Loading virtual efuse blocks from real efuses')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Secure boot V2 is not enabled yet and eFuse digest keys are not set')
- signed_scheme = 'ECDSA' if dut.app.target == 'esp32c2' else 'RSA-PSS'
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Secure boot V2 is not enabled yet and eFuse digest keys are not set')
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: Secure boot digests absent, generating..')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the bootloader')
- if dut.app.target == 'esp32c2':
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 3')
- else:
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 9')
- dut.expect('secure_boot_v2: Digests successfully calculated, 1 valid signatures')
- dut.expect_exact('secure_boot_v2: 1 signature block(s) found appended to the app')
- dut.expect_exact('secure_boot_v2: Application key(0) matches with bootloader key(0)')
- if dut.app.target != 'esp32c2':
- dut.expect_exact('secure_boot_v2: Revoking empty key digest slot (1)...')
- dut.expect_exact('secure_boot_v2: Revoking empty key digest slot (2)...')
- dut.expect('secure_boot_v2: blowing secure boot efuse...')
- dut.expect('Enabling Security download mode...')
- dut.expect('Disable hardware & software JTAG...')
- if dut.app.target != 'esp32c2':
- dut.expect('secure_boot_v2: Secure boot permanently enabled')
- dut.expect('Checking flash encryption...')
- dut.expect('flash_encrypt: Generating new flash encryption key...')
- if dut.app.target == 'esp32c2':
- dut.expect('Writing EFUSE_BLK_KEY0 with purpose 2')
- else:
- dut.expect('Writing EFUSE_BLK_KEY1 with purpose 4')
- dut.expect('Not disabling UART bootloader encryption')
- dut.expect('Disable UART bootloader cache...')
- dut.expect('Disable JTAG...')
- if dut.app.target == 'esp32c2':
- dut.expect('boot: Secure boot permanently enabled')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('flash_encrypt: bootloader encrypted successfully')
- dut.expect('flash_encrypt: partition table encrypted and loaded successfully')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('flash_encrypt: Flash encryption completed', timeout=90)
- dut.expect('Resetting with flash encryption enabled...')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect('Verifying image signature...')
- dut.expect('secure_boot_v2: Verifying with %s...' % signed_scheme)
- dut.expect('secure_boot_v2: Signature verified successfully!')
- dut.expect('secure_boot_v2: enabling secure boot v2...')
- dut.expect('secure_boot_v2: secure boot v2 is already enabled, continuing..')
- dut.expect_exact('flash_encrypt: flash encryption is enabled (1 plaintext flashes left)')
- dut.expect('Loading virtual efuse blocks from flash')
- dut.expect_exact('flash_encrypt: Flash encryption mode is DEVELOPMENT (not secure)')
- dut.expect('main_task: Calling app_main()')
- dut.expect('Start eFuse example')
- dut.expect('example: Flash Encryption is NOT in RELEASE mode')
- dut.expect('example: Secure Boot is in RELEASE mode')
- dut.expect('example: Done')
- @pytest.mark.generic
- @pytest.mark.esp32c3
- @pytest.mark.parametrize('config', ['virt_sb_v2_and_fe.esp32c3'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_sb_v2_and_fe_esp32c3(dut: Dut) -> None:
- test_examples_efuse_with_virt_sb_v2_and_fe_esp32xx(dut)
- @pytest.mark.generic
- @pytest.mark.esp32c2
- @pytest.mark.parametrize('config', ['virt_sb_v2_and_fe.esp32c2'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_sb_v2_and_fe_esp32c2(dut: Dut) -> None:
- test_examples_efuse_with_virt_sb_v2_and_fe_esp32xx(dut)
- @pytest.mark.generic
- @pytest.mark.esp32s2
- @pytest.mark.parametrize('config', ['virt_sb_v2_and_fe.esp32s2'], indirect=True)
- @pytest.mark.parametrize('skip_autoflash', ['y'], indirect=True)
- def test_examples_efuse_with_virt_sb_v2_and_fe_esp32s2(dut: Dut) -> None:
- test_examples_efuse_with_virt_sb_v2_and_fe_esp32xx(dut)
|