From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Sun, 21 Feb 2016 14:14:12 +0800 Subject: [U-Boot] Please pull u-boot-x86 Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom, This includes the 2nd part of the Intel Cougar Canyon2 board support, plus one bug fix of the mp init. The following changes since commit 20680b560a17fb29c862de77930cfbf76b24f83c: Merge branch 'master' of git://git.denx.de/u-boot-atmel (2016-02-20 17:32:48 -0500) are available in the git repository at: git://git.denx.de/u-boot-x86.git master for you to fetch changes up to 03bfc78359a2d749252b7dfdbff33898f6da0385: x86: doc: Update to include Intel Bayley Bay board instructions (2016-02-21 13:42:52 +0800) ---------------------------------------------------------------- Bin Meng (6): x86: ivybridge: Add FSP support superio: Add SMSC SIO1007 driver x86: fsp: Make sure HOB list is not overwritten by U-Boot x86: ivybridge: bd82x6x: Support FSP enabled configuration x86: Add Intel Cougar Canyon 2 board x86: doc: Update to include Intel Bayley Bay board instructions Stephen Warren (1): x86: fix memalign() parameter order arch/x86/Kconfig | 10 ++++++++++ arch/x86/cpu/ivybridge/Kconfig | 12 ++++++++++++ arch/x86/cpu/ivybridge/Makefile | 6 +++++- arch/x86/cpu/ivybridge/bd82x6x.c | 4 ++++ arch/x86/cpu/ivybridge/fsp_configs.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ arch/x86/cpu/ivybridge/ivybridge.c | 22 ++++++++++++++++++++++ arch/x86/cpu/mp_init.c | 2 +- arch/x86/dts/Makefile | 1 + arch/x86/dts/cougarcanyon2.dts | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ arch/x86/include/asm/arch-ivybridge/fsp/fsp_configs.h | 40 ++++++++++++++++++++++++++++++++++++++++ arch/x86/include/asm/arch-ivybridge/fsp/fsp_vpd.h | 12 ++++++++++++ arch/x86/lib/fsp/fsp_support.c | 33 +++++++++++++++++++++++++++++++++ board/intel/Kconfig | 9 +++++++++ board/intel/cougarcanyon2/Kconfig | 25 +++++++++++++++++++++++++ board/intel/cougarcanyon2/MAINTAINERS | 6 ++++++ board/intel/cougarcanyon2/Makefile | 7 +++++++ board/intel/cougarcanyon2/cougarcanyon2.c | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ board/intel/cougarcanyon2/start.S | 9 +++++++++ configs/cougarcanyon2_defconfig | 20 ++++++++++++++++++++ doc/README.x86 | 57 +++++++++++++++++++++++++++++++++++++++++---------------- drivers/misc/Makefile | 1 + drivers/misc/smsc_sio1007.c | 126 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ include/configs/cougarcanyon2.h | 34 ++++++++++++++++++++++++++++++++++ include/smsc_sio1007.h | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 24 files changed, 740 insertions(+), 18 deletions(-) create mode 100644 arch/x86/cpu/ivybridge/fsp_configs.c create mode 100644 arch/x86/cpu/ivybridge/ivybridge.c create mode 100644 arch/x86/dts/cougarcanyon2.dts create mode 100644 arch/x86/include/asm/arch-ivybridge/fsp/fsp_configs.h create mode 100644 arch/x86/include/asm/arch-ivybridge/fsp/fsp_vpd.h create mode 100644 board/intel/cougarcanyon2/Kconfig create mode 100644 board/intel/cougarcanyon2/MAINTAINERS create mode 100644 board/intel/cougarcanyon2/Makefile create mode 100644 board/intel/cougarcanyon2/cougarcanyon2.c create mode 100644 board/intel/cougarcanyon2/start.S create mode 100644 configs/cougarcanyon2_defconfig create mode 100644 drivers/misc/smsc_sio1007.c create mode 100644 include/configs/cougarcanyon2.h create mode 100644 include/smsc_sio1007.h Regards, Bin