flashrom: Transmitted one clock cycle too long -> buffer shifted
This commit is contained in:
parent
b01f74648e
commit
e66c98a670
@ -87,14 +87,20 @@ begin
|
|||||||
bitCounter <= 0;
|
bitCounter <= 0;
|
||||||
bitCounterIn <= 0;
|
bitCounterIn <= 0;
|
||||||
data_in_length_i <= 0;
|
data_in_length_i <= 0;
|
||||||
pseudoEdge <= true;
|
pseudoEdge <= true;
|
||||||
end if;
|
end if;
|
||||||
ckDiv <= 0;
|
ckDiv <= 0;
|
||||||
when TX =>
|
when TX =>
|
||||||
if ckDiv = clk_divider - 2 or pseudoEdge then
|
if ckDiv = clk_divider - 2 or pseudoEdge then
|
||||||
|
ckDiv <= 0;
|
||||||
if not pseudoEdge then
|
if not pseudoEdge then
|
||||||
spi_sck <= not spi_sck;
|
spi_sck <= not spi_sck;
|
||||||
end if;
|
end if;
|
||||||
|
if spi_sck = '0' and bitCounter = data_in_length_i and data_in_valid = '0' then
|
||||||
|
-- Prevent last clock cycle (make it a "passive" one)
|
||||||
|
spi_sck <= '0';
|
||||||
|
pseudoEdge <= true;
|
||||||
|
end if;
|
||||||
if spi_sck = '1' or pseudoEdge then -- falling edge -> provide data
|
if spi_sck = '1' or pseudoEdge then -- falling edge -> provide data
|
||||||
if bitCounter = data_in_length_i then
|
if bitCounter = data_in_length_i then
|
||||||
bitCounter <= 0;
|
bitCounter <= 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user