This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
So I have issues with linker-generated CRC table over Flash ranges.
As mentioned here new option of CRC generation was added. Here is a part of linker cmd file I'm using:.....
FLASH_CRC : origin = 0x0B0000, length = 0x000060
GROUP {
BEGIN : origin = 0x0B0060, length = 0x000002
FLASHJ : origin = 0x0B0062, length = 0x8000-0x62 /* on-chip Flash */
FLASHK : origin = 0x0B8000, length = 0x002000 /* on-chip Flash */
FLASHL : origin = 0x0BA000, length = 0x002000 /* on-chip Flash */
}crc(linkerCrcTable, algorithm=CRC32_PRIME)
.....
.TI.memcrc : >FLASH_CRC
.....
So I have 2 questions:
1)Is it possible to have one crc over multiple flash ranges?
If I'm going to verify my firmware (N ranges) with linker crc. The result I'm supposed to get (but not getting, see question 2)
will be table of records. I want to have a single crc all ranges in the whole GROUP. Is it possible?
2) Resulting table does not contain correct records. I'm expecting to see table as in Figure 8-7 of SPRU513Q and
in ...\tools\compiler\ti-cgt-c2000_22.6.1.LTS\include\crc_tbl.h
I have converted *.out file to *.hex via hex2000 util to verify generated table. What I am seeing is nowhere near what is expected:
- The first string sets base address 0x0B0000 which is correct
- The second string should contain table header and a couple of records. This is where things start to go wrong.
I got table header which looks Ok. Then records are not. I have correct crc value (0xB1D5086B) for first range in Address field, Starting address in
crc value field. Remaining records does not contain crc at all and also fields are messed up. :02000004000BEF
:200000000006000400000000086BB1D5000000000060000B00020000000000000062000B03
:200010007F9E0000000000008000000B2000000000000000A000000B20000000FFFFFFFF41
:20002000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0
:20003000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0
:20004000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0
:20005000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB0
:20006000004B2943FFFFFFFFFFFFFFFFFFFFFFFFB2BDAABDA2BDFE0A8BA583C1825486A424
...
I get this result with debugger attached as well:
Why am I getting this strange result?
Figured out the problem. So, when using crc(...) operator MEMRANGE_CRC_TABLE kind of record is generated. And
crc_table(...) will generate CRC_TABLE record.