Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | # SPDX-License-Identifier: GPL-2.0 # Copyright (c) 2016, Xilinx Inc. Michal Simek # Copyright (c) 2017, Xiphos Systems Corp. All rights reserved. import re import pytest import random import utils """ Note: This test relies on boardenv_* containing configuration values to define which SPI Flash areas are available for testing. Without this, this test will be automatically skipped. For example: # A list of sections of Flash memory to be tested. env__sf_configs = ( { # Where in SPI Flash should the test operate. 'offset': 0x00000000, # This value is optional. # If present, specifies the [[bus:]cs] argument used in `sf probe` # If missing, defaults to 0. 'id': '0:1', # This value is optional. # If set as a number, specifies the speed of the SPI Flash. # If set as an array of 2, specifies a range for a random speed. # If missing, defaults to 0. 'speed': 1000000, # This value is optional. # If present, specifies the size to use for read/write operations. # If missing, the SPI Flash page size is used as a default (based on # the `sf probe` output). 'len': 0x10000, # This value is optional. # If present, specifies if the test can write to Flash offset # If missing, defaults to False. 'writeable': False, # This value is optional. # If present, specifies the expected CRC32 value of the flash area. # If missing, extra check is ignored. 'crc32': 0xCAFECAFE, }, ) """ def sf_prepare(ubman, env__sf_config): """Check global state of the SPI Flash before running any test. Args: ubman: A U-Boot console connection. env__sf_config: The single SPI Flash device configuration on which to run the tests. Returns: sf_params: a dictionary of SPI Flash parameters. """ sf_params = {} sf_params['ram_base'] = utils.find_ram_base(ubman) probe_id = env__sf_config.get('id', 0) speed = env__sf_config.get('speed', 0) if isinstance(speed, int): sf_params['speed'] = speed else: assert len(speed) == 2, "If speed is a list, it must have 2 entries" sf_params['speed'] = random.randint(speed[0], speed[1]) cmd = 'sf probe %d %d' % (probe_id, sf_params['speed']) output = ubman.run_command(cmd) assert 'SF: Detected' in output, 'No Flash device available' m = re.search('page size (.+?) Bytes', output) assert m, 'SPI Flash page size not recognized' sf_params['page_size'] = int(m.group(1)) m = re.search('erase size (.+?) KiB', output) assert m, 'SPI Flash erase size not recognized' sf_params['erase_size'] = int(m.group(1)) sf_params['erase_size'] *= 1024 m = re.search('total (.+?) MiB', output) assert m, 'SPI Flash total size not recognized' sf_params['total_size'] = int(m.group(1)) sf_params['total_size'] *= 1024 * 1024 assert 'offset' in env__sf_config, \ '\'offset\' is required for this test.' sf_params['len'] = env__sf_config.get('len', sf_params['erase_size']) assert not env__sf_config['offset'] % sf_params['erase_size'], \ 'offset not multiple of erase size.' assert not sf_params['len'] % sf_params['erase_size'], \ 'erase length not multiple of erase size.' assert not (env__sf_config.get('writeable', False) and 'crc32' in env__sf_config), \ 'Cannot check crc32 on writeable sections' return sf_params def sf_read(ubman, env__sf_config, sf_params): """Helper function used to read and compute the CRC32 value of a section of SPI Flash memory. Args: ubman: A U-Boot console connection. env__sf_config: The single SPI Flash device configuration on which to run the tests. sf_params: SPI Flash parameters. Returns: CRC32 value of SPI Flash section """ addr = sf_params['ram_base'] offset = env__sf_config['offset'] count = sf_params['len'] pattern = random.randint(0, 0xFF) crc_expected = env__sf_config.get('crc32', None) cmd = 'mw.b %08x %02x %x' % (addr, pattern, count) ubman.run_command(cmd) crc_pattern = utils.crc32(ubman, addr, count) if crc_expected: assert crc_pattern != crc_expected cmd = 'sf read %08x %08x %x' % (addr, offset, count) response = ubman.run_command(cmd) assert 'Read: OK' in response, 'Read operation failed' crc_readback = utils.crc32(ubman, addr, count) assert crc_pattern != crc_readback, 'sf read did not update RAM content.' if crc_expected: assert crc_readback == crc_expected return crc_readback def sf_update(ubman, env__sf_config, sf_params): """Helper function used to update a section of SPI Flash memory. Args: ubman: A U-Boot console connection. env__sf_config: The single SPI Flash device configuration on which to run the tests. Returns: CRC32 value of SPI Flash section """ addr = sf_params['ram_base'] offset = env__sf_config['offset'] count = sf_params['len'] pattern = int(random.random() * 0xFF) cmd = 'mw.b %08x %02x %x' % (addr, pattern, count) ubman.run_command(cmd) crc_pattern = utils.crc32(ubman, addr, count) cmd = 'sf update %08x %08x %x' % (addr, offset, count) ubman.run_command(cmd) crc_readback = sf_read(ubman, env__sf_config, sf_params) assert crc_readback == crc_pattern @pytest.mark.buildconfigspec('cmd_sf') @pytest.mark.buildconfigspec('cmd_crc32') @pytest.mark.buildconfigspec('cmd_memory') def test_sf_read(ubman, env__sf_config): sf_params = sf_prepare(ubman, env__sf_config) sf_read(ubman, env__sf_config, sf_params) @pytest.mark.buildconfigspec('cmd_sf') @pytest.mark.buildconfigspec('cmd_crc32') @pytest.mark.buildconfigspec('cmd_memory') def test_sf_read_twice(ubman, env__sf_config): sf_params = sf_prepare(ubman, env__sf_config) crc1 = sf_read(ubman, env__sf_config, sf_params) sf_params['ram_base'] += 0x100 crc2 = sf_read(ubman, env__sf_config, sf_params) assert crc1 == crc2, 'CRC32 of two successive read operation do not match' @pytest.mark.buildconfigspec('cmd_sf') @pytest.mark.buildconfigspec('cmd_crc32') @pytest.mark.buildconfigspec('cmd_memory') def test_sf_erase(ubman, env__sf_config): if not env__sf_config.get('writeable', False): pytest.skip('Flash config is tagged as not writeable') sf_params = sf_prepare(ubman, env__sf_config) addr = sf_params['ram_base'] offset = env__sf_config['offset'] count = sf_params['len'] cmd = 'sf erase %08x %x' % (offset, count) output = ubman.run_command(cmd) assert 'Erased: OK' in output, 'Erase operation failed' cmd = 'mw.b %08x ff %x' % (addr, count) ubman.run_command(cmd) crc_ffs = utils.crc32(ubman, addr, count) crc_read = sf_read(ubman, env__sf_config, sf_params) assert crc_ffs == crc_read, 'Unexpected CRC32 after erase operation.' @pytest.mark.buildconfigspec('cmd_sf') @pytest.mark.buildconfigspec('cmd_crc32') @pytest.mark.buildconfigspec('cmd_memory') def test_sf_update(ubman, env__sf_config): if not env__sf_config.get('writeable', False): pytest.skip('Flash config is tagged as not writeable') sf_params = sf_prepare(ubman, env__sf_config) sf_update(ubman, env__sf_config, sf_params) |