1. 13 Mar, 2010 2 commits
  2. 12 Mar, 2010 1 commit
  3. 11 Mar, 2010 1 commit
  4. 09 Mar, 2010 2 commits
  5. 08 Mar, 2010 1 commit
    • Carl-Daniel Hailfinger's avatar
      Write granularity is chip specific · e8e369fc
      Carl-Daniel Hailfinger authored
      
      The following write granularities exist according to my datasheet
      survey: - 1 bit. Each bit can be cleared individually. - 1 byte. A byte
      can be written once. Further writes to an already written byte cause
      the contents to be either undefined or to stay unchanged. - 128 bytes.
      If less than 128 bytes are written, the rest will be erased. Each write
      to a 128-byte region will trigger an automatic erase before anything is
      written. Very uncommon behaviour. - 256 bytes. If less than 256 bytes
      are written, the contents of the unwritten bytes are undefined.
      
      Note that chips with default 256-byte writes, which keep the original
      contents for unwritten bytes, have a granularity of 1 byte.
      
      Handle 1-bit, 1-byte and 256-byte write granularity.
      
      Corresponding to flashrom svn r927.
      Signed-off-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
      Acked-by: default avatarSean Nelson <audiohacked@gmail.com>
      Acked-by: default avatarDavid Hendricks <dhendrix@google.com>
      e8e369fc
  6. 07 Mar, 2010 5 commits
  7. 05 Mar, 2010 1 commit
  8. 03 Mar, 2010 1 commit
  9. 28 Feb, 2010 1 commit
  10. 27 Feb, 2010 2 commits
  11. 26 Feb, 2010 3 commits
  12. 25 Feb, 2010 1 commit
  13. 24 Feb, 2010 3 commits
  14. 22 Feb, 2010 1 commit
  15. 21 Feb, 2010 1 commit
  16. 19 Feb, 2010 1 commit
  17. 18 Feb, 2010 1 commit
  18. 16 Feb, 2010 1 commit
  19. 14 Feb, 2010 2 commits
  20. 13 Feb, 2010 3 commits
  21. 12 Feb, 2010 4 commits
  22. 11 Feb, 2010 2 commits
    • Carl-Daniel Hailfinger's avatar
      At long last, the day has come, and we can bury full-chip erase once and for all · 48f1d73b
      Carl-Daniel Hailfinger authored
      
      Back in November 2008(!) I proposed the first version of the flexible
      sector-based erase structure, and now we can finally rip out the old
      full-chip erase code without ill effects. Rejoice and party!
      
      Thanks to everyone who made this possible, especially to Sean Nelson who
      converted the majority of flash chips to sector erase.
      
      Corresponding to flashrom svn r895.
      Signed-off-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
      Acked-by: default avatarSean Nelson <audiohacked@gmail.com>
      48f1d73b
    • Carl-Daniel Hailfinger's avatar
      Rewrite substantial parts of the ICH SPI support · f15e1abb
      Carl-Daniel Hailfinger authored
      
      This megapatch rewrites substantial parts of ICH SPI to actually do
      what the SPI layer wants instead of its own weird idea about commands
      (running unrequested commands, running modified commands). Besides that,
      there is a fair share of cleanups as well.
      
      - Add JEDEC_EWSR (Enable Write Status Register) to default commands. -
      Mark a no longer used opcode/preopcode table as unused. - Declare all
      commands as non-atomic/standalone by default. The ICH SPI driver has
      no business executing commands (preopcodes) automatically if they were
      not requested. - Automatically adjust preopcode/opcode pairings (like
      WREN+ERASE) based on what the SPI layer requested. The ICH SPI driver
      has no business executing altered opcode pairs as it sees fit. - Fix
      incomplete initialization in the case of a locked down chipset. Leaving
      the first 4 opcodes with uninitialized pairings had unpredictable
      results. - switch() exists for a reason. Nested if() checking on the
      same variable is an interesting style. - Actually check if the requested
      readcnt/writecnt for a command is supported by the hardware instead
      of delivering corrupt/incomplete commands and data. - If a command
      has unsupported readlen/writelen, complain loudly to the user. - Use
      find_opcode instead of open-coding the same stuff in a dozen variations.
      - Introduce infrastructure for updating the command set of unlocked
      chipsets on the fly.
      
      Corresponding to flashrom svn r894.
      Signed-off-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
      Acked-by: default avatarDavid Hendricks <dhendrix@google.com>
      f15e1abb