A64 SID controller has some issues when readind data, To exampine the problem I've done the following steps.
When reading the whole nvmem memory in one chunk the returned bytes are valid: dd if=/sys/bus/nvmem/devices/sunxi-sid0/nvmem 2>/dev/null | hexdump -C 00000000 ba 00 c0 92 20 46 10 84 00 45 34 50 0e 04 26 48 |.... F...E4P..&H| 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000030 00 00 00 00 87 07 8d 07 8e 07 00 00 00 00 00 00 |................| 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000100 When bs is set to 4 bytes the data is no longer valid: dd if=/sys/bus/nvmem/devices/sunxi-sid0/nvmem bs=4 2>/dev/null | hexdump -C 00000000 ba 00 c0 92 20 46 10 84 00 45 34 50 0e 04 26 48 |.... F...E4P..&H| 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000030 00 00 00 00 87 00 00 00 8e 00 00 00 00 00 00 00 |................| 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000100 You can see that only the data at 0x34 and 0x38 is corrupted. It appears that A64 needs minimun 8 bytes block size; dd if=/sys/bus/nvmem/devices/sunxi-sid0/nvmem bs=8 2>/dev/null | hexdump -C 00000000 ba 00 c0 92 20 46 10 84 00 45 34 50 0e 04 26 48 |.... F...E4P..&H| 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000030 00 00 00 00 87 07 8d 07 8e 07 00 00 00 00 00 00 |................| 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000100 In the driver stride is set to 4 and word_size to 1. When you're using nvmem as thermal calibration data in the dts you write something like this: sid: eeprom@1c14000 { compatible = "allwinner,sun50i-a64-sid"; ..... thermal_calibration: calib@34 { reg = <0x34 0x08>; }; }; This will return incorrect data. One way to fix this is to set stride/word_size to 8, but this will be inconvenient for the dts. Other is to enable reading data via register access. After the fix: dd if=/sys/bus/nvmem/devices/sunxi-sid0/nvmem bs=4 2>/dev/null | hexdump -C 00000000 ba 00 c0 92 20 46 10 84 00 45 34 50 0e 04 26 48 |.... F...E4P..&H| 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000030 00 00 00 00 87 07 8d 07 8e 07 00 00 00 00 00 00 |................| 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 00000100 Stefan Mavrodiev (1): nvmem: sunxi_sid: fix A64 SID controller support drivers/nvmem/sunxi_sid.c | 1 + 1 file changed, 1 insertion(+) -- 2.17.1