1. 28 1月, 2016 1 次提交
    • S
      x86: baytrail: Add documentation for FSP memory-down values · 9b5dbe13
      Stefan Roese 提交于
      This patch adds the documentation for the memory-down parameters
      of the Intel FSP. To configure a board without SPD DDR DIMM but
      with onboard DDR chips. The values are taken from the coreboot
      header:
      
      	src/soc/intel/fsp_baytrail/chip.h
      
      (git ID da1a70ea from 2016-01-16 as reference).
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Andrew Bradford <andrew.bradford@kodakalaris.com>
      Cc: Bin Meng <bmeng.cn@gmail.com>
      Cc: Simon Glass <sjg@chromium.org>
      Reviewed-by: NBin Meng <bmeng.cn@gmail.com>
      9b5dbe13
  2. 27 1月, 2016 3 次提交
    • S
      arm: mvebu: Add support for the Armada XP theadorable board · b20c38a9
      Stefan Roese 提交于
      This patch adds support for the Armada XP (MV78260) based theadorable
      board. Its equipped with onboard DDR3, UART, ethernet, I2C, SPI NOR,
      LCD and SATA (SSD) interfaces / devices.
      
      Two defconfigs are added:
      
      theadorable_defconfig:
      The production U-Boot version with a stripped down drivers and feature
      list. This removes networking, USB and PCI support.
      
      theadorable_debug_defconfig:
      The debugging / testing U-Boot version with full support for all drivers.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Luka Perkov <luka.perkov@sartura.hr>
      Signed-off-by: NStefan Roese <sr@denx.de>
      b20c38a9
    • T
      Merge branch 'master' of http://git.denx.de/u-boot-sunxi · 9e4de7fd
      Tom Rini 提交于
      9e4de7fd
    • H
      mvtwsi: Fix breakage introduced by "Fix mvtwsi not working on sun6i and newer sunxi SoCs" · 2ca02995
      Hans de Goede 提交于
      "Fix mvtwsi not working on sun6i and newer sunxi SoCs" includes the following:
      
      @@ -189,7 +200,8 @@ static int twsi_start(struct i2c_adapter *adap, int expected_status)
       	/* globally set TWSIEN in case it was not */
       	twsi_control_flags |= MVTWSI_CONTROL_TWSIEN;
       	/* assert START */
      -	writel(twsi_control_flags | MVTWSI_CONTROL_START, &twsi->control);
      +	twsi_control_flags |= MVTWSI_CONTROL_START | MVTWSI_CONTROL_CLEAR_IFLG;
      +	writel(twsi_control_flags, &twsi->control);
       	/* wait for controller to process START */
       	return twsi_wait(adap, expected_status);
       }
      
      The modification of twsi_control_flags done here was introduced while
      merging to fix a line > 80 chars, but twsi_control_flags is a global variable
      and should not be modified like this here, this commit fixes this, restoring
      mvtwsi functionality.
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      2ca02995
  3. 26 1月, 2016 29 次提交
  4. 25 1月, 2016 7 次提交