]> git.baikalelectronics.ru Git - uboot.git/commit
fru: ops: Display FRU fields properly for 0xc1 fields
authorAlgapally Santosh Sagar <santoshsagar.algapally@amd.com>
Wed, 25 Jan 2023 12:06:21 +0000 (13:06 +0100)
committerMichal Simek <michal.simek@amd.com>
Fri, 27 Jan 2023 07:49:24 +0000 (08:49 +0100)
commit429fa94a9c510b68e27941a0a89ec67b29aa2cb9
tree0da06f49945bc5199df1659eacc8acbf282211cf
parent1bc43a6a3051e97457364444380d809eb0a100a0
fru: ops: Display FRU fields properly for 0xc1 fields

FRU data is not displayed properly in case of 0xc1 fields.
The 0xC1 can be used in two cases.
1. Char record type 8-bit ASCII + Latin 1 with length of 1.
(For example board revision 'A')

2. C1h (type/length byte encoded to indicate no more info fields).
which can follow by 00h to fill all remaining unused space

Hence removed the check end-of-the field c1 to allow c1 fields.

"ASCII+LATIN1" is defined as the printable characters from the
first set of 256 characters of Unicode 6.2 (U+0000h through U+00FFh,
inclusive) expressed as an eight-bit value. (Unicode follows ISO/IEC
8859-1 in the layout of printable characters up to U+00FFh).

So, print only printable chars and limit range from 0x20 ' ' to 0x7e '-'
which will be also indication if 0xc1 behaves as record with one char or
end of record.

Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/4198d73de600627872c80a5b07e5068502c589d7.1674648379.git.michal.simek@amd.com
board/xilinx/common/fru_ops.c