We are trying to get CY15B104QN spi-fram with nvmem subsystem. When we use atmel at25 eeprom driver, we always read FF from the chip. When we try to debug using spi-tools without the driver, if we read with default bits-per-word parameter which is 8 we always read FF. We observed that the spi controller does not drive clock more than 8 bits. If I set bits-per-word to 16 on spi-tools (spi-pipe command) I can read the device id. What could be the problem here? The IC is connected to the SPI1.
Are you using the devkit or custom board for AGX Orin?
What’s the Jetpack version in use?
Do you have any concern to use bits-per-word as 16?
In 16-bit mode, the command and address bytes are grouped into the same SPI transfer, ensuring they are sent in one continuous transaction. This prevents chip-select(CS) from toggling or introducing gaps between bytes, which could otherwise cause the device to misinterpret the sequence and lead to data loss.