1. 10 10月, 2014 1 次提交
  2. 08 10月, 2014 1 次提交
  3. 07 10月, 2014 1 次提交
  4. 06 10月, 2014 5 次提交
  5. 26 9月, 2014 1 次提交
    • Y
      board/ls1021aqds: Add DDR4 support · c7eae7fc
      York Sun 提交于
      LS1021AQDS has a variant with DDR4 slot. This patch adds a new defconfig
      for this variant to enable DDR4 support. RAW timing parameters are not
      added for DDR4. The board timing parameters are only tuned for single-
      rank 1600 and 1800MT/s with Micron DIMM 9ASF51272AZ-2G1A1 due to DIMM
      availability.
      Signed-off-by: NYork Sun <yorksun@freescale.com>
      CC: Alison Wang <alison.wang@freescale.com>
      c7eae7fc
  6. 25 9月, 2014 11 次提交
  7. 24 9月, 2014 1 次提交
    • N
      spi: mxc: fix sf probe when using mxc_spi · 155fa9af
      Nikita Kiryanov 提交于
      MXC SPI driver has a feature whereas a GPIO line can be used to force CS high
      across multiple transactions. This is set up by embedding the GPIO information
      in the CS value:
      
      cs = (cs | gpio << 8)
      
      This merge of cs and gpio data into one value breaks the sf probe command:
      if the use of gpio is required, invoking "sf probe <cs>" will not work, because
      the CS argument doesn't have the GPIO information in it. Instead, the user must
      use "sf probe <cs | gpio << 8>". For example, if bank 2 gpio 30 is used to force
      cs high on cs 0, bus 0, then instead of typing "sf probe 0" the user now must
      type "sf probe 15872".
      
      This is inconsistent with the description of the sf probe command, and forces
      the user to be aware of implementaiton details.
      
      Fix this by introducing a new board function: board_spi_cs_gpio(), which will
      accept a naked CS value, and provide the driver with the relevant GPIO, if one
      is necessary.
      
      Cc: Eric Nelson <eric.nelson@boundarydevices.com>
      Cc: Eric Benard <eric@eukrea.com>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Tim Harvey <tharvey@gateworks.com>
      Cc: Stefano Babic <sbabic@denx.de>
      Cc: Tom Rini <trini@ti.com>
      Cc: Marek Vasut <marex@denx.de>
      Reviewed-by: NMarek Vasut <marex@denx.de>
      Signed-off-by: NNikita Kiryanov <nikita@compulab.co.il>
      Reviewed-by: NJagannadha Sutradharudu Teki <jaganna@xilinx.com>
      155fa9af
  8. 22 9月, 2014 1 次提交
  9. 19 9月, 2014 1 次提交
  10. 18 9月, 2014 1 次提交
  11. 17 9月, 2014 2 次提交
  12. 14 9月, 2014 1 次提交
  13. 11 9月, 2014 1 次提交
    • S
      tegra: Convert tegra GPIO driver to use driver model · 2fccd2d9
      Simon Glass 提交于
      This is an implementation of GPIOs for Tegra that uses driver model. It has
      been tested on trimslice and also using the new iotrace feature.
      
      The implementation uses a top-level GPIO device (which has no actual GPIOS).
      Under this all the banks are created as separate GPIO devices.
      
      The GPIOs are named as per the Tegra datasheet/header files: A0..A7, B0..B7,
      ..., Z0..Z7, AA0..AA7, etc.
      
      Since driver model is not yet available before relocation, or in SPL, a
      special function is provided for seaboard's SPL code.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      2fccd2d9
  14. 09 9月, 2014 12 次提交