SPI中的CPOL和CPHA概念

经常会提及SPI分为四种模式:

Mode 0 : Clock Polarity (CPOL) = 0 and, Clock Phase (CPHA) = 0

Mode 1 : CPOL = 0 and, CPHA = 1

Mode 2 : CPOL = 1 and, CPHA = 0

Mode 3 : CPOL = 1 and, CPHA = 1

以上模式仅针对SPI的时钟(SCK)来区分:

CPOL 也就是时钟的极性,用来表示SPI总线在空闲时SCK是低电平还是高电平,低电平为0,高电平为1;

CPHA 也就是时钟的相位,用来决定何时进行信号采样,在第一个跳变沿还是第二个跳变沿,在第一个跳变沿采样则为0,在第二个跳变沿采样则为1。

S25FS128S/S25FS256S 在单数据速率(Single Data Rate)模式下,支持mode0 和 mode3模式。

For these two modes, input data into the device is always latched in on the rising edge of the SCK signal and the output data is always available from the falling edge of the SCK clock signal.

以下为时序图:

SPI中的CPOL和CPHA概念_第1张图片

 

你可能感兴趣的:(uboot,驱动,arm,嵌入式硬件,linux)