* The RP2350 has 64 pages of 64 rows (i.e. 4096 rows)
* Each row has 24 bits, those 24 bits are used in various different styles, all tailored to cope with expected update patterns, and resilience to bit errors.
* ECC - 16 bit data payload with 8 bits of error correction. ECC rows are used for "data" style storage in the OTP, where there are no redundant copies of the row. The error correction is provided by the hardware. When error correction is used, it is generally not possible to update any bits in the row later.
* raw - ECC is disabled, and the extra 8 bits are used for actual information. When using raw rows, data is generally repeated for redundancy (either by having multiple copies for the whole row, or by repeating data within the same row). The raw rows allow independent updates of bits (0->1) within the row since there is no global error correction over the entire row
For raw we have
* RBIT-3 - the row holds a bit-set, but the next 2 rows contain redundant copies of the data. when software (bootrom usually) looks for a bit value within the row, all 3 rows are read, and the bit value is taken as the majority vote of that bit across the 3 rows.
* RBIT-8 - the row holds a bit-set only used for critical boot flags - even more redundant copies (7 extra)... a logical bit is "set" if it is set in at least 3 of the 8 rows.
* (no name) - the row holds 8 bytes of data, but it is repeated 3 times within the row (bits 0-7, 8-15, 16-23)...
We say 8K because that's how the h/w describes itself (and generally most of the use of the OTP is going to be ECC)
* Each row has 24 bits, those 24 bits are used in various different styles, all tailored to cope with expected update patterns, and resilience to bit errors.
* ECC - 16 bit data payload with 8 bits of error correction. ECC rows are used for "data" style storage in the OTP, where there are no redundant copies of the row. The error correction is provided by the hardware. When error correction is used, it is generally not possible to update any bits in the row later.
* raw - ECC is disabled, and the extra 8 bits are used for actual information. When using raw rows, data is generally repeated for redundancy (either by having multiple copies for the whole row, or by repeating data within the same row). The raw rows allow independent updates of bits (0->1) within the row since there is no global error correction over the entire row
For raw we have
* RBIT-3 - the row holds a bit-set, but the next 2 rows contain redundant copies of the data. when software (bootrom usually) looks for a bit value within the row, all 3 rows are read, and the bit value is taken as the majority vote of that bit across the 3 rows.
* RBIT-8 - the row holds a bit-set only used for critical boot flags - even more redundant copies (7 extra)... a logical bit is "set" if it is set in at least 3 of the 8 rows.
* (no name) - the row holds 8 bytes of data, but it is repeated 3 times within the row (bits 0-7, 8-15, 16-23)...
We say 8K because that's how the h/w describes itself (and generally most of the use of the OTP is going to be ECC)
Statistics: Posted by kilograham — Tue Nov 12, 2024 3:02 pm