1. 18 Sep, 2011 1 commit
  2. 17 Sep, 2011 4 commits
  3. 15 Sep, 2011 2 commits
    • Stefan Tauner's avatar
      ichspi: add ICH/PCH flash descriptor decoding via FDOC/FDOD · 1e14639f
      Stefan Tauner authored
      
      Based on the work of Matthias 'mazzoo' Wenzel this patch adds pretty
      printing of those ICH/PCH flash descriptor sections that are
      cached/mapped by the chipset (and which are therefore reachable via
      FDOC/FDOD registers).
      
      this includes the following:
      - content section:
          describes the image and some generic properties (number of
          sections, offset of sections, PCH/ICH and MCH/PROC strap
          offsets and lengths)
      - component section:
          identify the different SPI flash chips and their capabilities.
      - region section
          similarly to a partition table this describes the different regions.
          the content of FLREG* is derived from this section.
      - master section
          defines SPI master (host, ME, GbE) access rights of the
          individual regions. the content of PR* is derived from this section.
      
      this is only a part of the data included in the descriptor. other
      information can be retrieved from a complete binary dump of the
      descriptor region only.
      
      this patch also adds macros and pretty printing for "Vendor Specific
      Component Capabilities" registers: there are two of them: lower and
      upper. they describe the properties of the address space divided by
      FPBA (which allows to use multiple flash chips or partitions with
      different properties). the properties of all supported flash chips
      (together with their RDIDs) are stored in the same format in table
      in a descriptor section (which is used by the ME apparently). a
      later patch will use the macros outside of ichspi.c which is the
      reason why the prettyprinting function and the register bit macros
      are not defined in ichspi.c but ich_descriptors.h (else they would
      be moved in the follow-up patch).
      
      because this patch relies on (compiler) implementation-specific
      layouting of bit-fields, it checks for correct layout before taking
      any action on runtime.
      
      Corresponding to flashrom svn r1443.
      Signed-off-by: default avatarStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
      Acked-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
      1e14639f
    • Urja Rannikko's avatar
      serprog: add SPI support · c93f5f12
      Urja Rannikko authored
      
      Adds a new opcode (0x13) that just relays SPI bytes and wires it up to be
      usable within serprog.c. Checks for mandatory opcodes are moved around and
      changed a bit, but non-SPI programmers should not be harmed by this patch.
      
      Corresponding to flashrom svn r1442.
      Signed-off-by: default avatarUrja Rannikko <urjaman@gmail.com>
      Signed-off-by: default avatarStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
      Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
      c93f5f12
  4. 14 Sep, 2011 1 commit
  5. 13 Sep, 2011 2 commits
  6. 12 Sep, 2011 2 commits
  7. 11 Sep, 2011 1 commit
  8. 09 Sep, 2011 1 commit
  9. 08 Sep, 2011 2 commits
  10. 07 Sep, 2011 3 commits
  11. 06 Sep, 2011 2 commits
  12. 03 Sep, 2011 3 commits
  13. 31 Aug, 2011 1 commit
  14. 27 Aug, 2011 1 commit
    • Stefan Tauner's avatar
      Fix printing of the Boot BIOS Straps on Intel chipsets · bd0c70ae
      Stefan Tauner authored
      
      The meaning of the bits involved has changed several times in the past.
      This patch takes these changes into account and hence fixes the output of the
      pretty printing of GCS on all SPI-supported Intel chipsets that are not ICH7 or
      NM10 (the latter were unaffected, because the defaults were correct).
      
      This patch also allows to differentiate Ibex Peak and Cougar Point chipsets from
      the earlier chipset series (ICH10) by adding new wrapper functions that set
      "ich_generation" to 11 and 12 respectively. This should not change behavior
      outside of enable_flash_ich_dc_spi, because the code path for
      ich_generation >=9 is equal.
      
      alternatively we could just remove the pretty printing of GCS and just output
      the bits involved. i would like to keep the pch differentiation anyway though,
      because i feel it will become handy in the future.
      
      tested on my QS57-based thinkpad (probe + partial read)
      
      Corresponding to flashrom svn r1423.
      Signed-off-by: default avatarStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
      Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
      bd0c70ae
  15. 26 Aug, 2011 1 commit
  16. 25 Aug, 2011 3 commits
  17. 20 Aug, 2011 2 commits
  18. 18 Aug, 2011 1 commit
    • Stefan Tauner's avatar
      Makefile: fix and simplify test program compilations · 56787086
      Stefan Tauner authored
      This was totally broken due to the make's shell function's temporal
      behavior.
      
      quote from the gnu make documentation
      (http://www.gnu.org/s/hello/manual/make/Shell-Function.html):
      "The commands run by calls to the shell function are run when the
      function calls are expanded"
      we have used the shell function to echo the test programs to a file.
      the file name used was equal for all tests and was overwritten for
      each test. the result was that all tests (in a single target?) used
      the last test program because the echoing of the test programs was
      done before all test compilations(!)
      see my mail for details:
      http://lists.gnu.org/archive/html/bug-make/2011-08/msg00010.html
      
      
      
      also the branching for testing ifeq ($(CONFIG_FT2232_SPI), yes) was
      unnecessarily complicated.
      
      in my approach here i am using verbatim variables (allows to define
      even complex test programs in the makefile without jumping through
      hoops) that get exported to environment variables (via "export",
      reference afterwards with "$$<varname>").
      
      i have also added the missing redirection of stderr to the compiler
      test and changed the definition of ARCH to use simple expansion (:=).
      
      the latter is still wrong, because it uses $(CC) before we check if
      a compiler is installed... makes the compiler check pretty much
      useless. The simple expansion just reduces the number of errors
      printed to 1.
      
      Corresponding to flashrom svn r1416.
      Signed-off-by: default avatarStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
      Acked-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
      56787086
  19. 17 Aug, 2011 1 commit
  20. 16 Aug, 2011 1 commit
  21. 15 Aug, 2011 1 commit
  22. 12 Aug, 2011 1 commit
  23. 11 Aug, 2011 2 commits
  24. 09 Aug, 2011 1 commit