1. 28 Sep, 2009 1 commit
  2. 18 Sep, 2009 1 commit
  3. 16 Sep, 2009 2 commits
  4. 05 Sep, 2009 1 commit
    • Carl-Daniel Hailfinger's avatar
      Store block sizes and corresponding erase functions in struct flashchip · f38431a5
      Carl-Daniel Hailfinger authored
      I decided to fill in the info for a
      few chips to illustrate how this works both for uniform and non-uniform
      sector sizes.
      
      struct eraseblock{
      int size; /* Eraseblock size */
      int count; /* Number of contiguous blocks with that size */
      };
      
      struct eraseblock doesn't correspond with a single erase block, but with
      a group of contiguous erase blocks having the same size.
      Given a (top boot block) flash chip with the following weird, but
      real-life structure:
      
      top
      16384
      8192
      8192
      32768
      65536
      65536
      65536
      65536
      65536
      65536
      65536
      bottom
      
      we get the following encoding:
      {65536,7},{32768,1},{8192,2},{16384,1}
      
      Although the number of blocks is bigger than 4, the number of block
      groups is only 4. If you ever add some flash chips with more than 4
      contiguous block groups, the definition will not fit into the 4-member
      array anymore and gcc will recognize that and error out. No undetected
      overflow possible. In that case, you simply increase array size a b...
      f38431a5
  5. 02 Sep, 2009 1 commit
  6. 19 Aug, 2009 4 commits
  7. 13 Aug, 2009 1 commit
  8. 12 Aug, 2009 4 commits
  9. 30 Jul, 2009 1 commit
  10. 24 Jul, 2009 1 commit
  11. 23 Jul, 2009 1 commit
  12. 22 Jul, 2009 1 commit
  13. 11 Jul, 2009 1 commit
  14. 01 Jul, 2009 1 commit
  15. 28 Jun, 2009 3 commits
  16. 24 Jun, 2009 3 commits
  17. 23 Jun, 2009 1 commit
  18. 20 Jun, 2009 1 commit
    • Uwe Hermann's avatar
      Various wiki output changes · a2d05012
      Uwe Hermann authored
      
       - Move board_info_url struct to print.c, doesn't have to be global.
      
       - Simplify flashrom.c a bit by moving stuff to print.c.
         Eliminate two now-useless mini-functions in print.c.
      
       - Add a note that the wiki page contents are semi-automatically generated.
      
       - Mention date of last wiki page update as well as the flashrom revision
         that was used to generate the wiki output.
      
       - Also generate list of supported laptops in -z output now.
      
       - Add some more board URLs.
      
       - Add a boards_notes[] table to allow for arbitrary footnotes/comments for
         each board in the table. All notes will automatically be turned into
         wiki footnotes with correct numbers and will appear at the end of the
         respective table.
      
      Corresponding to flashrom svn r615.
      Signed-off-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
      Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
      a2d05012
  19. 19 Jun, 2009 2 commits
  20. 17 Jun, 2009 1 commit
  21. 16 Jun, 2009 3 commits
  22. 15 Jun, 2009 2 commits
  23. 13 Jun, 2009 1 commit
  24. 12 Jun, 2009 2 commits