[U-Boot] Please pull u-boot-x86

Simon Glass sjg at chromium.org
Mon Jan 26 20:51:40 CET 2015


Hi Tom,

The following changes since commit 37b608a52dcb13312a4f7ccea199cd6bac76d298:

  powerpc: remove icecube_5200, Lite5200, cpci5200, mecp5200, pf5200
(2015-01-23 16:56:09 -0500)

are available in the git repository at:

  http://git.denx.de/u-boot-x86.git

for you to fetch changes up to e43ade3749ff10bc313f33bf23705465e4163896:

  x86: config: chromebook_link: Enable environment (2015-01-24 06:13:46 -0700)

----------------------------------------------------------------
Bin Meng (5):
      x86: ahci: Make sure interface is not busy after enabling the port
      x86: Add missing DECLARE_GLOBAL_DATA_PTR for mtrr.c
      x86: Save mtrr support flag in global data
      x86: Test mtrr support flag before accessing mtrr msr
      x86: Fix various code format issues in start16.S

Sebastien Ronsse (1):
      x86: Fix out of bounds irq handlers access

Simon Glass (22):
      bios_emulator: Fix an #ifdef typo in the header file
      x86: Correct endianness isues in pci_rom
      x86: Support ROMs on other archs
      bios_emulator: Don't display error when emulator terminates
      bios_emulator: Add some VESA interface debugging
      x86: pci: Don't stop when we get a vendor/device mismatch
      x86: Add a VESA video driver
      x86: Drop the x86_fb driver
      x86: Access the VGA ROM when needed
      x86: video: Add support for CONFIG_CONSOLE_SCROLL_LINES
      x86: config: Always scroll the display by 5 lines, for speed
      x86: dts: Add compatible string for Intel ICH9 SPI controller
      net: Add a separate file for IP checksumming
      x86: Use ipchecksum from net/
      x86: rtc: mc146818: Add helpers to read/write CMOS RAM
      x86: spi: Add device tree support
      Allow architecture-specific memory reservation
      x86: dts: Add SPI flash MRC details for chromebook_link
      x86: Implement a cache for Memory Reference Code parameters
      x86: config: Enable hook for saving MRC configuration
      x86: ivybridge: Drop the Kconfig MRC cache information
      x86: config: chromebook_link: Enable environment

Sjoerd Simons (1):
      pci: tegra: Fix port information parsing

 arch/x86/cpu/coreboot/Makefile                  |   1 -
 arch/x86/cpu/coreboot/coreboot.c                |   5 ++++
 arch/x86/cpu/coreboot/ipchecksum.c              |  55
----------------------------------
 arch/x86/cpu/coreboot/tables.c                  |   8 ++---
 arch/x86/cpu/cpu.c                              |   7 +++++
 arch/x86/cpu/ivybridge/Kconfig                  |  28 -----------------
 arch/x86/cpu/ivybridge/Makefile                 |   1 +
 arch/x86/cpu/ivybridge/mrccache.c               | 156
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/x86/cpu/ivybridge/sdram.c                  | 253
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/x86/cpu/mtrr.c                             |  14 +++++++++
 arch/x86/cpu/start16.S                          |  20 ++++++-------
 arch/x86/dts/chromebook_link.dts                |  15 +++++++++-
 arch/x86/include/asm/arch-coreboot/ipchecksum.h |  37 -----------------------
 arch/x86/include/asm/arch-ivybridge/mrccache.h  |  51
+++++++++++++++++++++++++++++++
 arch/x86/include/asm/global_data.h              |  16 ++++++----
 arch/x86/include/asm/mtrr.h                     |   5 +++-
 arch/x86/include/asm/u-boot-x86.h               |   2 ++
 arch/x86/lib/init_helpers.c                     |   4 ++-
 arch/x86/lib/interrupts.c                       |   2 +-
 common/board_f.c                                |   7 +++++
 configs/chromebook_link_defconfig               |   2 +-
 drivers/bios_emulator/atibios.c                 | 161
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------
 drivers/bios_emulator/include/x86emu/debug.h    |   2 +-
 drivers/bios_emulator/x86emu/ops.c              |   2 +-
 drivers/block/ahci.c                            |  20 ++++++++++++-
 drivers/pci/pci_auto.c                          |  28 ++++++++++++++++-
 drivers/pci/pci_rom.c                           |  40 +++++++++++++++++--------
 drivers/pci/pci_tegra.c                         |   5 ++--
 drivers/rtc/mc146818.c                          | 121
++++++++++++++++++++++++++++++++++++++++++++------------------------------
 drivers/spi/ich.c                               |   7 +++++
 drivers/video/Kconfig                           |   7 +++--
 drivers/video/Makefile                          |   2 +-
 drivers/video/cfb_console.c                     |  26 ++++++++++------
 drivers/video/vesa_fb.c                         |  64
+++++++++++++++++++++++++++++++++++++++
 drivers/video/x86_fb.c                          |  38 -----------------------
 include/configs/chromebook_link.h               |   8 +++++
 include/configs/x86-common.h                    |   2 ++
 include/fdtdec.h                                |   1 +
 include/net.h                                   |  30 +++++++++++++++++++
 include/pci.h                                   |   9 ++++++
 include/pci_rom.h                               |   1 -
 include/rtc.h                                   |  32 ++++++++++++++++++++
 include/vbe.h                                   |   9 ++++--
 lib/fdtdec.c                                    |   1 +
 net/Makefile                                    |   1 +
 net/checksum.c                                  |  60
+++++++++++++++++++++++++++++++++++++
 46 files changed, 1078 insertions(+), 288 deletions(-)
 delete mode 100644 arch/x86/cpu/coreboot/ipchecksum.c
 create mode 100644 arch/x86/cpu/ivybridge/mrccache.c
 delete mode 100644 arch/x86/include/asm/arch-coreboot/ipchecksum.h
 create mode 100644 arch/x86/include/asm/arch-ivybridge/mrccache.h
 create mode 100644 drivers/video/vesa_fb.c
 delete mode 100644 drivers/video/x86_fb.c
 create mode 100644 net/checksum.c

Regards,
Simon


More information about the U-Boot mailing list