Skip to content
Snippets Groups Projects
  • Todor I Mollov's avatar
    d04371a1
    Blackfin: spi: make cs deassert function deterministic · d04371a1
    Todor I Mollov authored
    
    Blackfin SPI driver was not driving the SPI chip-select high before
    putting the chip-select signals into tri-state mode.  This is probably
    something that slipped by unnoticed in most designs.  If the signals are
    put directly into a tri-state mode, then the board is relying on the
    pull-up resistors to pull up the chip-select before the next transaction.
    Most of the time this is fine, except when you have two transactions that
    follow each other very closely, such as the flash erase and read status
    register commands.  In this case I was seeing a 500ns separation between
    the transactions.  In my setup, with a 10kOhm pull-up, it would meet
    timing spec about half the time and resulted in intermittent errors.  (A
    stronger pull up would fix this, but our design is targeted for low power
    consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
    I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
    chip-selects high before putting them into tri-state.  For me, this
    resulted in a rise time of 5ns instead of the previous rise time of about
    1us, and fully satisfied the timing spec of the chip.
    
    Signed-off-by: default avatarTodor I Mollov <tmollov@ucsd.edu>
    Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
    d04371a1
    History
    Blackfin: spi: make cs deassert function deterministic
    Todor I Mollov authored
    
    Blackfin SPI driver was not driving the SPI chip-select high before
    putting the chip-select signals into tri-state mode.  This is probably
    something that slipped by unnoticed in most designs.  If the signals are
    put directly into a tri-state mode, then the board is relying on the
    pull-up resistors to pull up the chip-select before the next transaction.
    Most of the time this is fine, except when you have two transactions that
    follow each other very closely, such as the flash erase and read status
    register commands.  In this case I was seeing a 500ns separation between
    the transactions.  In my setup, with a 10kOhm pull-up, it would meet
    timing spec about half the time and resulted in intermittent errors.  (A
    stronger pull up would fix this, but our design is targeted for low power
    consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
    I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
    chip-selects high before putting them into tri-state.  For me, this
    resulted in a rise time of 5ns instead of the previous rise time of about
    1us, and fully satisfied the timing spec of the chip.
    
    Signed-off-by: default avatarTodor I Mollov <tmollov@ucsd.edu>
    Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
bfin_spi.c 9.35 KiB