Re: [U-Boot] Please pull u-boot-x86.git

2015-10-22 Thread Tom Rini
On Wed, Oct 21, 2015 at 05:15:17PM -0600, Simon Glass wrote:

> Hi Tom,
> 
> This includes support for booting VxWorks, the Advantech SOM-6896, MRC
> fixes (speeds up boot), expanded video support and some debug UART
> improvements.
> 
> 
> The following changes since commit 5ec0003b19cbdf06ccd6941237cbc0d1c3468e2d:
> 
>   Prepare v2015.10 (2015-10-19 19:59:38 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-x86.git
> 
> for you to fetch changes up to e0ae64880b61fdeaf261fddd747efa80fa53d386:
> 
>   x86: Add support for Advantech SOM-6896 (2015-10-21 16:29:27 -0600)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2015-10-21 Thread Simon Glass
Hi Tom,

This includes support for booting VxWorks, the Advantech SOM-6896, MRC
fixes (speeds up boot), expanded video support and some debug UART
improvements.


The following changes since commit 5ec0003b19cbdf06ccd6941237cbc0d1c3468e2d:

  Prepare v2015.10 (2015-10-19 19:59:38 -0400)

are available in the git repository at:

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

for you to fetch changes up to e0ae64880b61fdeaf261fddd747efa80fa53d386:

  x86: Add support for Advantech SOM-6896 (2015-10-21 16:29:27 -0600)


Bin Meng (41):
  pci: Set PCI_COMMAND_IO bit for VGA device
  video: vesa_fb: Fix wrong return value check of pci_find_class()
  dm: pci: Fix pci_last_busno() to return the real last bus no
  dm: pci: Enable VGA address forwarding on bridges
  x86: ivybridge: Remove the dead codes that programs pci bridge
  x86: Allow disabling IGD on Intel Queensbay
  x86: Initialize GDT entry 1 to be the 32-bit CS as well
  x86: Move install_e820_map() out of zimage.c
  x86: Remove quotation mark in CONFIG_HOSTNAME
  cmd: Convert CONFIG_CMD_ELF to Kconfig
  cmd: Clean up cmd_elf a little bit
  cmd: elf: Reorder load_elf_image_phdr() and load_elf_image_shdr()
  cmd: bootvx: Avoid strlen() calls when constructing VxWorks bootline
  cmd: bootvx: Pass netmask and gatewayip to VxWorks bootline
  cmd: bootvx: Always get VxWorks bootline from env
  cmd: bootvx: Pass E820 information to an x86 VxWorks kernel
  cmd: bootvx: Add asmlinkage to the VxWorks x86 entry
  doc: Complement document about booting VxWorks
  Makefile: Generate U_BOOT_DMI_DATE for SMBIOS
  x86: Add SMBIOS table support
  x86: fsp: Compact the output of hob command
  x86: fsp: Print GUID whenever applicable in the hob command output
  x86: fsp: Make hob command a sub-command to fsp
  x86: fsp: Add a hdr sub-command to show header information
  x86: Add ENABLE_MRC_CACHE Kconfig option
  x86: Move mrccache.[c|h] to a common place
  x86: Do sanity test on the cache record in mrccache_update()
  x86: Add various minor tidy-ups in mrccache codes
  x86: Add more common routines to manipulate mrc cache
  x86: ivybridge: Use APIs provided in the mrccache lib
  x86: Use struct mrc_region to describe a mrc region
  x86: fsp: Pass mrc cache to fsp_init() and save it to gd after fsp_init()
  x86: baytrail: Save mrc cache to spi flash
  x86: Enable mrc cache for bayleybay and minnowmax
  x86: baytrail: Issue full system reset in reset_cpu()
  x86: Remove unused rw-mrc-cache properties in the link and
panther dts files
  x86: ivybridge: Correct two typos for MRC
  x86: quark: Implement mrc cache
  x86: galileo: Enable mrc cache
  x86: Pass correct cpu_index to ap_init()
  x86: ivybridge: Enable the MRC cache

George McCollister (3):
  x86: pci: Add PCI IDs for Wildcat Point
  x86: spi: Add support for Wildcat Point
  x86: Add support for Advantech SOM-6896

Simon Glass (16):
  malloc_simple: Add debug() information
  dm: pci: Tidy up auto-config error handling
  dm: pci: Correct a few debug() statements
  dm: pci: Adjust pci_find_and_bind_driver() to return -EPERM
  debug_uart: Adjust the declaration of debug_uart_init()
  debug_uart: Support board-specific UART initialisation
  debug_uart: Add an option to announce the debug UART
  x86: Init the debug UART if enabled
  x86: chromebook_link: Enable the debug UART
  rtc: mc146818: Add a comment to the #endif
  rtc: mc146818: Use probe() to set up the device
  dm: rtc: Correct rtc_read32() return value
  x86: ivybridge: Use 'ret' instead of 'rcode'
  x86: ivybridge: Check the RTC return value
  x86: ivybridge: Fix car_uninit() to correctly set run state
  x86: ivybridge: Measure the MRC code execution time

 Makefile|   2 +
 README  |  12 +-
 arch/x86/Kconfig|  19 +++
 arch/x86/cpu/baytrail/valleyview.c  |  25 
 arch/x86/cpu/cpu.c  |   7 +-
 arch/x86/cpu/ivybridge/Makefile |   1 -
 arch/x86/cpu/ivybridge/bd82x6x.c|  32 -
 arch/x86/cpu/ivybridge/car.S|   2 +-
 arch/x86/cpu/ivybridge/cpu.c|   7 +
 arch/x86/cpu/ivybridge/sdram.c  | 162 +--
 arch/x86/cpu/quark/dram.c   |  52 +++-
 arch/x86/cpu/quark/quark.c  |  19 +++
 arch/x86/cpu/queensbay/Kconfig  |   8 ++
 arch/x86/cpu/queensbay/tnc.c|  19 +++
 arch/x86/cpu/sipi_vector.S  |   4 +-
 arch/x86/cpu/start.S|  11 +-
 arch/x86/dts/Makefile   |   3 +-
 

Re: [U-Boot] Please pull u-boot-x86.git (take 2)

2015-10-02 Thread Tom Rini
On Tue, Sep 29, 2015 at 09:20:53AM -0600, Simon Glass wrote:

> Hi Tom.
> 
> This include one more bug fix.
> 
> The following changes since commit 1f8836396de8215b7f460616926052b32597bb29:
> 
>   Prepare v2015.10-rc4 (2015-09-28 16:57:42 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-x86.git
> 
> for you to fetch changes up to 196193a4d4963a8dde00c7cdd0ec83b60ea61e61:
> 
>   x86: fsp: Report correct number of E820 table entries (2015-09-28
> 21:56:27 -0700)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git (take 2)

2015-09-29 Thread Simon Glass
Hi Tom.

This include one more bug fix.

The following changes since commit 1f8836396de8215b7f460616926052b32597bb29:

  Prepare v2015.10-rc4 (2015-09-28 16:57:42 -0400)

are available in the git repository at:

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

for you to fetch changes up to 196193a4d4963a8dde00c7cdd0ec83b60ea61e61:

  x86: fsp: Report correct number of E820 table entries (2015-09-28
21:56:27 -0700)


Bin Meng (1):
  x86: fsp: Report correct number of E820 table entries

Simon Glass (1):
  x86: chromebook_link: Expand early malloc() memory

 arch/x86/lib/fsp/fsp_dram.c   | 3 ++-
 configs/chromebook_link_defconfig | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2015-09-11 Thread Tom Rini
On Thu, Sep 10, 2015 at 03:50:36PM -0700, Simon Glass wrote:

> Hi Tom,
> 
> Here are a few more driver model PCI fixes, the tftp revert and some
> driver model conversions for x86, as well as a few other minor fixes.
> There are a few more patches in flight but I could not apply them due
> to problems. I thought it best to get this out in the interim since
> the hour is late.
> 
> 
> The following changes since commit efde6a579fe3c172d214fb3047b02c827779738a:
> 
>   Prepare v2015.10-rc3 (2015-09-07 08:56:35 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-x86.git
> 
> for you to fetch changes up to f0dc73c090317c7d0660443bc933d612a4c0c699:
> 
>   net: designware: Fix build warnings (2015-09-09 07:48:03 -0600)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2015-09-10 Thread Simon Glass
Hi Tom,

Here are a few more driver model PCI fixes, the tftp revert and some
driver model conversions for x86, as well as a few other minor fixes.
There are a few more patches in flight but I could not apply them due
to problems. I thought it best to get this out in the interim since
the hour is late.


The following changes since commit efde6a579fe3c172d214fb3047b02c827779738a:

  Prepare v2015.10-rc3 (2015-09-07 08:56:35 -0400)

are available in the git repository at:

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

for you to fetch changes up to f0dc73c090317c7d0660443bc933d612a4c0c699:

  net: designware: Fix build warnings (2015-09-09 07:48:03 -0600)


Bin Meng (21):
  x86: ifdtool: Support checking region overlap before U-Boot
  x86: doc: Change to use CONFIG_VGA_BIOS_ADDR
  x86: bayleybay: Change default vga bios rom address
  net: Revert "tftp: adjust settings to be suitable for 100Mbit ethernet"
  dm: eth: Do not print misleading "Net Initialization Skipped"
  dm: test: Add a new test case for dm_test_eth_rotate
  dm: eth: Correctly detect alias in eth_get_dev_by_name()
  x86: crownbay: Convert to use CONFIG_DM_USB
  x86: crownbay: Convert to use CONFIG_DM_ETH for E1000
  net: pch_gbe: Convert to driver model
  net: pch_gbe: Add Kconfig option
  x86: crownbay: Enable CONFIG_PCH_GBE
  x86: coreboot: Convert to use more dm drivers
  x86: bayleybay: Convert to use more dm drivers
  x86: quark: Optimize MRC execution time
  x86: quark: Avoid chicken and egg problem
  x86: Enable PCIe controller on quark/galileo
  x86: Convert to use driver model pci on quark/galileo
  x86: quark: Add USB PHY initialization support
  x86: galileo: Convert to use CONFIG_DM_USB
  net: designware: Fix build warnings

Masahiro Yamada (1):
  Revert "patman: use -D option for git format-patch"

Simon Glass (3):
  x86: panther: Add PCI and video configuration
  buildman: Improve the config comparison feature
  dm: pci: Allow a PCI bus to be found without an alias

 arch/sandbox/dts/test.dts   |   7 +++
 arch/x86/cpu/coreboot/coreboot.c|   6 ---
 arch/x86/cpu/quark/Makefile |   1 -
 arch/x86/cpu/quark/msg_port.c   |  44 
 arch/x86/cpu/quark/pci.c|  70 -
 arch/x86/cpu/quark/quark.c  | 139
+---
 arch/x86/dts/chromebox_panther.dts  |  10 
 arch/x86/dts/galileo.dts|   8 ++-
 arch/x86/include/asm/arch-quark/quark.h |  85 ++
 board/intel/bayleybay/bayleybay.c   |   6 ---
 board/intel/crownbay/crownbay.c |   6 ---
 board/intel/galileo/galileo.c   |  56 
 configs/bayleybay_defconfig |   5 +-
 configs/coreboot-x86_defconfig  |   5 +-
 configs/crownbay_defconfig  |   5 +-
 configs/galileo_defconfig   |   3 ++
 doc/README.x86  |   2 +-
 drivers/net/Kconfig |  13 +
 drivers/net/designware.c|   8 +--
 drivers/net/pch_gbe.c   | 133
+-
 drivers/net/pch_gbe.h   |   2 -
 drivers/pci/pci-uclass.c|  28 --
 include/configs/chromebox_panther.h |   2 +
 include/configs/crownbay.h  |   4 --
 include/configs/galileo.h   |  12 -
 include/configs/sandbox.h   |   3 +-
 include/netdev.h|   4 --
 net/eth.c   |   7 ++-
 net/tftp.c  |  10 ++--
 test/dm/eth.c   |   5 ++
 tools/buildman/builder.py   | 186
+
 tools/ifdtool.c |  66 ---
 tools/patman/gitutil.py |   2 +-
 33 files changed, 643 insertions(+), 300 deletions(-)
 delete mode 100644 arch/x86/cpu/quark/pci.c

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2015-08-26 Thread Simon Glass
Hi Tom,

The includes ACPI support for the first time and quite a few fixes:
microcode for newer Minnowmax boards, coreboot booting, i8042
keyboard, Minnowmax GPIO and getting serial running on crownbay.

It also includes the patch to fix the e1000 build warning. I put that
first so that the brokenness is minimised.


The following changes since commit 7d31c6ab83d8a5875875eda041c0a1e756189917:

  Merge git://git.denx.de/u-boot-pxa (2015-08-24 16:06:03 -0400)

are available in the git repository at:

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

for you to fetch changes up to f4b5db7c5309dd7f3ecc6369f3c1f41e8bfe93ae:

  dm: pci: Document binding of pci device drivers (2015-08-26 07:54:18 -0700)


Bin Meng (36):
  net: e1000: Fix build warnings for 32-bit
  x86: doc: Update coreboot payload entry point address
  x86: coreboot: Increase memrange entry number to 32
  x86: coreboot: Correctly report E820 types
  x86: Remove calculate_relocation_address()
  x86: coreboot: Allow =4GiB memory bank size
  x86: kconfig: Hide System tables for EFI
  x86: kconfig: Hide System tables for coreboot
  x86: Only include cbfs command for coreboot
  x86: Enable CONFIG_PCI_CONFIG_HOST_BRIDGE for all boards
  video: coreboot: Save VESA mode for future use
  x86: Set up video framebuffer for coreboot before loading kernel
  efi: Update README.efi to clarify build and test instructions
  x86: baytrail: Add microcode for BayTrail-I D0 stepping
  x86: baytrail: Support multiple microcode copies
  dm: pci: Support selected device/driver binding before relocation
  x86: fsp: Delay x86_fsp_init() call a little bit
  x86: fsp: Enlarge the size of malloc() pool before relocation
  x86: fsp: Add comments about U-Boot entering start.S twice
  x86: queensbay: Move unprotect_spi_flash() to arch_misc_init()
  x86: baytrail: Remove the fsp_init_phase_pci() call
  x86: fsp: Call fsp_init_phase_pci() in pci_uclass_post_probe()
  x86: superio: Add keyboard controller support to smsc_lpc47m driver
  fdtdec: Fix possible infinite loop in fdtdec_get_pci_vendev()
  dm: pci: Save devfn without bus number in pci_uclass_child_post_bind()
  x86: i8042: Remove unused codes
  x86: i8042: Reorder static functions
  x86: i8042: Clean up the driver per coding convention
  x86: i8042: Correctly initialize the controller
  video: cfb_console: Allow VGA device to work without i8042 keyboard
  x86: crownbay: Enable on-board SMSC superio keyboard controller
  video: ct69000: Remove unused codes
  dm: pci: Optimize pci_uclass_post_bind()
  dm: core: Fix code reentrancy issue in device_probe_child()
  x86: crownbay: Support Topcliff integrated pci uart devices with
driver model
  dm: pci: Document binding of pci device drivers

Masahiro Yamada (1):
  patman: use -D option for git format-patch

Saket Sinha (3):
  x86: Generate a valid ACPI table
  x86: Add ACPI table support to QEMU
  x86: Add DSDT table for supporting ACPI on QEMU

Simon Glass (10):
  x86: Correct microcode documentation
  x86: ifdtool: Check that U-Boot does not overlap other regions
  x86: ifdtool: Split microcode linking into its own function
  x86: ifdtool: Support collating microcode into one place
  x86: ifdtool: Drop microcode from the device tree when collating
  x86: minnowmax: Add access to GPIOs E0, E1, E2
  dm: pci: Add a comment to help find pci_hose_read_config_byte, etc.
  x86: minnowmax: Correct pad-offset value for host_en1
  x86: gpio: Correct calls to _ich6_gpio_set_direction()
  x86: gpio: Tidy up gpio_ich6_get_base() and callers

 Makefile |1 +
 arch/x86/Kconfig |   22 +-
 arch/x86/cpu/baytrail/valleyview.c   |8 +-
 arch/x86/cpu/coreboot/sdram.c|   33 +-
 arch/x86/cpu/qemu/Makefile   |1 +
 arch/x86/cpu/qemu/acpi.c |  176 +
 arch/x86/cpu/qemu/acpi/cpu-hotplug.asl   |   80 +++
 arch/x86/cpu/qemu/acpi/dbug.asl  |   25 +
 arch/x86/cpu/qemu/acpi/hpet.asl  |   31 +
 arch/x86/cpu/qemu/acpi/isa.asl   |  102 +++
 arch/x86/cpu/qemu/acpi/pci-crs.asl   |   61 ++
 arch/x86/cpu/qemu/dsdt.asl   |  412 
 arch/x86/cpu/queensbay/tnc.c |4 +-
 arch/x86/cpu/start.S |   14 +-
 arch/x86/dts/bayleybay.dts   |6 +
 arch/x86/dts/crownbay.dts|   17 +-
 arch/x86/dts/microcode/m0130679901.dtsi  | 3284
++
 arch/x86/dts/minnowmax.dts   |   32 +-
 arch/x86/include/asm/acpi_table.h|  393 
 

Re: [U-Boot] Please pull u-boot-x86.git

2015-08-26 Thread Tom Rini
On Wed, Aug 26, 2015 at 02:26:03PM -0700, Simon Glass wrote:

 Hi Tom,
 
 The includes ACPI support for the first time and quite a few fixes:
 microcode for newer Minnowmax boards, coreboot booting, i8042
 keyboard, Minnowmax GPIO and getting serial running on crownbay.
 
 It also includes the patch to fix the e1000 build warning. I put that
 first so that the brokenness is minimised.
 
 
 The following changes since commit 7d31c6ab83d8a5875875eda041c0a1e756189917:
 
   Merge git://git.denx.de/u-boot-pxa (2015-08-24 16:06:03 -0400)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to f4b5db7c5309dd7f3ecc6369f3c1f41e8bfe93ae:
 
   dm: pci: Document binding of pci device drivers (2015-08-26 07:54:18 -0700)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2015-08-17 Thread Tom Rini
On Fri, Aug 14, 2015 at 10:57:59AM -0600, Simon Glass wrote:

 Hi Tom,
 
 This includes various fixes including moving x86 over to use
 board_init_f_mem() and proper interrupt support on minnowmax. The
 revert of fdtdec_get_addr_size() is here also. Stephen confirmed it
 will not affect 64-bit Tegra. Due to problems with Stephen's latest
 patch (actually more likely problems in the callers!) I need to do
 more investigation before applying that.
 
 
 The following changes since commit bbc1b99e8b8a1b87c2d0d959a1fcd1990abe82dd:
 
   ARM: tegra: represent RAM in 1 or 2 banks (2015-08-13 13:06:04 -0700)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 236efe36be6d1c544f9477f10fdf38a17cd7a869:
 
   Revert fdt: Fix fdtdec_get_addr_size() for 64-bit (2015-08-14
 10:00:52 -0600)
 

(I thought I sent this already but there's a copy in my drafts..)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2015-08-14 Thread Simon Glass
Hi Tom,

This includes various fixes including moving x86 over to use
board_init_f_mem() and proper interrupt support on minnowmax. The
revert of fdtdec_get_addr_size() is here also. Stephen confirmed it
will not affect 64-bit Tegra. Due to problems with Stephen's latest
patch (actually more likely problems in the callers!) I need to do
more investigation before applying that.


The following changes since commit bbc1b99e8b8a1b87c2d0d959a1fcd1990abe82dd:

  ARM: tegra: represent RAM in 1 or 2 banks (2015-08-13 13:06:04 -0700)

are available in the git repository at:

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

for you to fetch changes up to 236efe36be6d1c544f9477f10fdf38a17cd7a869:

  Revert fdt: Fix fdtdec_get_addr_size() for 64-bit (2015-08-14
10:00:52 -0600)


Andrew Bradford (1):
  x86: baytrail: Configure FSP UPD from device tree

Bin Meng (5):
  common: Display =4GiB memory bank size
  x86: baytrail: Add all IDE/SATA PCI device IDs
  x86: fsp: Do not assert VPD_IMAGE_REV when DEBUG
  video: vesa: Correct a typo in the Kconfig VESA mode string
  x86: Set APs' req_seq to the reg number from device tree

Simon Glass (22):
  dm: pci: Provide friendly config access functions
  dm: pci: Add a way to iterate through all PCI devices
  x86: Re-order efi-x86_defconfig
  x86: Tidy up the PIRQ routing code a little
  x86: Split out fsp_init_phase_pci() code into a new function
  x86: Allow pirq_init() to return an error
  x86: baytrail: Tidy up interrupt and FSP init
  x86: baytrail: Support running as an EFI payload
  x86: Remove init_gd() function
  Align global_data to a 16-byte boundary
  Allow arch-specific setting of global_data in board_init_f_mem()
  x86: Move the GDT into global_data
  x86: Switch to using generic global_data setup
  Revert dm: pci: Allow scan bridge child devices before relocation
  x86: Convert minnowmax to use CONFIG_DM_USB
  x86: Convert minnowmax to use CONFIG_DM_NET
  x86: Show the un-relocated IP address in exceptions
  x86: Drop FSP error defines and use EFI instead
  x86: Return -1 when reading a PCI config register fails
  x86: minnowmax: Define and enable interrupt setup
  x86: Add a simple interrupt script to the README
  Revert fdt: Fix fdtdec_get_addr_size() for 64-bit

Stoppa, Igor (1):
  x86: Add clarifications to the x86 README

 arch/x86/cpu/baytrail/fsp_configs.c  | 162
+++--
 arch/x86/cpu/baytrail/valleyview.c   |  11 +++-
 arch/x86/cpu/cpu.c   |  11 ++--
 arch/x86/cpu/interrupts.c|   2 +
 arch/x86/cpu/irq.c   |  58 ---
 arch/x86/cpu/mp_init.c   |   7 +++
 arch/x86/cpu/pci.c   |   9 ++-
 arch/x86/cpu/qemu/qemu.c |   4 +-
 arch/x86/cpu/quark/quark.c   |   4 +-
 arch/x86/cpu/queensbay/tnc.c |   4 +-
 arch/x86/cpu/start.S |  95
+--
 arch/x86/dts/bayleybay.dts   |  38 +
 arch/x86/dts/minnowmax.dts   | 125
-
 arch/x86/include/asm/arch-baytrail/fsp/fsp_vpd.h |   1 -
 arch/x86/include/asm/arch-queensbay/fsp/fsp_vpd.h|   1 -
 arch/x86/include/asm/fsp/fsp_support.h   |   7 +++
 arch/x86/include/asm/fsp/fsp_types.h |  11 
 arch/x86/include/asm/global_data.h   |   4 +-
 arch/x86/include/asm/irq.h   |   4 +-
 arch/x86/include/asm/u-boot-x86.h|   1 -
 arch/x86/lib/fsp/fsp_common.c|  13 +++--
 arch/x86/lib/fsp/fsp_support.c   |   3 +-
 board/intel/minnowmax/minnowmax.c|   6 --
 common/board_f.c |  20 +--
 configs/efi-x86_defconfig|  10 ++--
 configs/minnowmax_defconfig  |  13 +++--
 doc/README.x86   |  47 
 doc/device-tree-bindings/misc/intel,baytrail-fsp.txt | 158
+++
 drivers/pci/pci-uclass.c | 140
+
 drivers/video/Kconfig|   2 +-
 include/asm-generic/global_data.h|   3 +-
 include/asm-generic/u-boot.h |   4 +-
 include/common.h |  43 ++
 include/configs/bayleybay.h  |   3 +-
 include/configs/minnowmax.h  |   7 ++-
 include/fdtdec.h   

Re: [U-Boot] Please pull u-boot-x86.git branch sandbox (take 2a)

2015-04-20 Thread Tom Rini
On Sun, Apr 19, 2015 at 08:26:01PM -0600, Simon Glass wrote:

 Hi Tom,
 
 I've rebased on master and built again. Note this is branch 'sandbox'.
 
 
 The following changes since commit b8d7652c81689a69bc6eaa206cf875bbe632831c:
 
   Merge branch 'buildman' of git://git.denx.de/u-boot-x86 (2015-04-18
 19:24:13 -0400)
 
 are available in the git repository at:
 
   http://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 791a9f67f4f8db512cf59b40f47544fb335cd8db:
 
   sandbox: add config_distro_defaults and config_distro_bootcmd
 (2015-04-19 14:45:58 -0600)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch buildman

2015-04-19 Thread Tom Rini
On Sat, Apr 18, 2015 at 04:23:42PM -0600, Simon Glass wrote:

 Hi Tom,
 
 Here are the queued-up buildman/patman patches, including the new
 CONFIG comparison feature (remember to build with -C if using it).
 
 Note these are in branch 'buildman'.
 
 
 The following changes since commit 5ab83ec1a13601c4f76ce009afe0d1ee51f1ad9c:
 
   sandbox: exynos: Move CONFIG_SOUND_SANDBOX to Kconfig (2015-04-13
 20:53:47 -0600)
 
 are available in the git repository at:
 
   http://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 9194e3c1c0d6031ff84e1dd63c401dc76a990876:
 
   patman: cover letter shows like 00/xx if more than 10 patches
 (2015-04-18 16:14:27 -0600)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch sandbox (take 2a)

2015-04-19 Thread Simon Glass
Hi Tom,

I've rebased on master and built again. Note this is branch 'sandbox'.


The following changes since commit b8d7652c81689a69bc6eaa206cf875bbe632831c:

  Merge branch 'buildman' of git://git.denx.de/u-boot-x86 (2015-04-18
19:24:13 -0400)

are available in the git repository at:

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

for you to fetch changes up to 791a9f67f4f8db512cf59b40f47544fb335cd8db:

  sandbox: add config_distro_defaults and config_distro_bootcmd
(2015-04-19 14:45:58 -0600)


Sjoerd Simons (9):
  sandbox: only do sandboxfs for hostfs interface
  sandbox: Split bootm code out into lib/bootm
  sandbox: Add support for bootz
  sandbox: Renamed sb command to host
  sandbox: Implement host dev [device]
  config_distro_bootcmd.h: Add shared block definition for the
host interface
  pxe: Ensure all memory access is to mapped memory
  config: Add default client arch defines for intel architectures
  sandbox: add config_distro_defaults and config_distro_bootcmd

 arch/sandbox/cpu/cpu.c   |  12 -
 arch/sandbox/lib/Makefile|   1 +
 arch/sandbox/lib/bootm.c |  63 
 common/Makefile  |   2 +-
 common/cmd_host.c| 175
+
 common/cmd_pxe.c |  86 +---
 common/cmd_sandbox.c | 126
---
 fs/sandbox/sandboxfs.c   |   6 ++-
 include/config_distro_bootcmd.h  |  13 +
 include/config_distro_defaults.h |   4 ++
 include/configs/sandbox.h|  31 +---
 11 files changed, 341 insertions(+), 178 deletions(-)
 create mode 100644 arch/sandbox/lib/bootm.c
 create mode 100644 common/cmd_host.c
 delete mode 100644 common/cmd_sandbox.c

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch buildman

2015-04-18 Thread Simon Glass
Hi Tom,

Here are the queued-up buildman/patman patches, including the new
CONFIG comparison feature (remember to build with -C if using it).

Note these are in branch 'buildman'.


The following changes since commit 5ab83ec1a13601c4f76ce009afe0d1ee51f1ad9c:

  sandbox: exynos: Move CONFIG_SOUND_SANDBOX to Kconfig (2015-04-13
20:53:47 -0600)

are available in the git repository at:

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

for you to fetch changes up to 9194e3c1c0d6031ff84e1dd63c401dc76a990876:

  patman: cover letter shows like 00/xx if more than 10 patches
(2015-04-18 16:14:27 -0600)


Simon Glass (5):
  Create a .cfg file containing the CONFIG options used to build
  buildman: Show 'make' command line when -V is used
  buildman: Adjust the 'aborted' heuristic for writing output
  buildman: Store build config files
  buildman: Allow comparison of build configuration

Tom Rini (2):
  buildman: Keep more outputs with the --keep-outputs flag
  buildman: Make -V (verbose_build) really be verbose

Wu, Josh (1):
  patman: cover letter shows like 00/xx if more than 10 patches

 Makefile|  10 +++-
 scripts/Makefile.spl|   9 +++-
 tools/buildman/builder.py   | 185
++-
 tools/buildman/builderthread.py |  65 +++-
 tools/buildman/cmdline.py   |   4 +-
 tools/buildman/control.py   |   3 +-
 tools/patman/patchstream.py |   7 ++-
 7 files changed, 250 insertions(+), 33 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2015-03-27 Thread Tom Rini
On Wed, Mar 25, 2015 at 04:33:00PM -0600, Simon Glass wrote:

 Hi Tom,
 
 These are improvements to a new board and some code clean-ups that I
 requested, so I think it is probably reasonable to take these now.
 
 
 The following changes since commit b81bdf62e0cf9b5c64d30284d01658a851f142f7:
 
   bav335x: Update defconfigs and fix typo in EEPROM config format
 (2015-03-24 10:56:35 -0400)
 
 are available in the git repository at:
 
   http://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 6f1eba49a558421e3fcb06ab0addc12b9a3804c6:
 
   x86: Add ramboot and nfsboot commands in x86-common.h (2015-03-24
 21:22:38 -0600)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2015-03-25 Thread Simon Glass
Hi Tom,

These are improvements to a new board and some code clean-ups that I
requested, so I think it is probably reasonable to take these now.


The following changes since commit b81bdf62e0cf9b5c64d30284d01658a851f142f7:

  bav335x: Update defconfigs and fix typo in EEPROM config format
(2015-03-24 10:56:35 -0400)

are available in the git repository at:

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

for you to fetch changes up to 6f1eba49a558421e3fcb06ab0addc12b9a3804c6:

  x86: Add ramboot and nfsboot commands in x86-common.h (2015-03-24
21:22:38 -0600)


Bin Meng (11):
  x86: quark: MRC codes clean up
  fdtdec: Improve fdtdec_get_pci_bdf() documentation
  x86: Add queensbay fsp patch information in README.x86
  x86: quark: Enable on-chip ethernet controllers
  net: Add ethernet FCS length macro in net.h
  net: Update README.drivers.eth to mention latest APIs
  net: Add Intel Topcliff GMAC driver
  x86: crownbay: Enable Intel Topcliff GMAC support
  x86: crownbay: Enable saving environment in SPI flash
  x86: galileo: Enable saving environment in SPI flash
  x86: Add ramboot and nfsboot commands in x86-common.h

Tom Rini (1):
  arch/x86/cpu/quark/mrc.c: Switch to U_BOOT_DATE / U_BOOT_TIME

 arch/x86/cpu/quark/hte.c  |   74 
 arch/x86/cpu/quark/hte.h  |4 +-
 arch/x86/cpu/quark/mrc.c  |   15 +-
 arch/x86/cpu/quark/mrc_util.c |  326 
 arch/x86/cpu/quark/mrc_util.h |   34 
 arch/x86/cpu/quark/quark.c|   19 ++
 arch/x86/cpu/quark/smc.c  | 1205
---
 arch/x86/cpu/quark/smc.h  |  349 ++-
 doc/README.drivers.eth|   51 +++--
 doc/README.x86|7 +
 drivers/net/Makefile  |1 +
 drivers/net/e1000.h   |7 +-
 drivers/net/pch_gbe.c |  466
++
 drivers/net/pch_gbe.h |  300 ++
 drivers/usb/gadget/ether.c|1 -
 drivers/usb/gadget/rndis.c|1 -
 include/configs/crownbay.h|   12 ++
 include/configs/galileo.h |   13 ++
 include/configs/x86-common.h  |   31 +++-
 include/fdtdec.h  |5 +-
 include/net.h |2 +
 include/netdev.h  |4 +
 include/usb_ether.h   |1 -
 23 files changed, 1852 insertions(+), 1076 deletions(-)
 create mode 100644 drivers/net/pch_gbe.c
 create mode 100644 drivers/net/pch_gbe.h

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch sandbox

2015-02-16 Thread Tom Rini
On Sun, Feb 15, 2015 at 02:46:05PM -0700, Simon Glass wrote:

 Hi Tom,
 
 There are the only pending sandbox/patman/buildman patches that I am
 aware of (for this release). If I have missed any, please assign them
 to me in patchwork.
 
 Note these are in branch 'sandbox'.
 
 
 The following changes since commit bd2a4888b123713adec271d6c8040ca9f609aa2f:
 
   sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART (2015-02-11
 19:43:45 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git x86/sandbox
 
 for you to fetch changes up to e50ab22984ce90ffcc47bc620ed2caac0bcc02f7:
 
   sandbox: Adjust the order of the NO_SDL check (2015-02-15 14:34:06 -0700)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch sandbox

2015-02-15 Thread Simon Glass
Hi Tom,

There are the only pending sandbox/patman/buildman patches that I am
aware of (for this release). If I have missed any, please assign them
to me in patchwork.

Note these are in branch 'sandbox'.


The following changes since commit bd2a4888b123713adec271d6c8040ca9f609aa2f:

  sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART (2015-02-11
19:43:45 -0500)

are available in the git repository at:

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

for you to fetch changes up to e50ab22984ce90ffcc47bc620ed2caac0bcc02f7:

  sandbox: Adjust the order of the NO_SDL check (2015-02-15 14:34:06 -0700)


Albert ARIBAUD (1):
  buildman: allow multiple toolchains in a single path

Joe Hershberger (1):
  sandbox: Return '-c command' exit value as sandbox exit code

Simon Glass (3):
  buildman: Fix incorrect arguemnt in GetUpstream()
  patman: Read in the git-mailrc alias file
  sandbox: Adjust the order of the NO_SDL check

 arch/sandbox/config.mk   | 12 ++--
 arch/sandbox/cpu/start.c |  6 --
 arch/sandbox/cpu/state.c |  5 -
 arch/sandbox/include/asm/state.h | 15 ---
 tools/buildman/toolchain.py  |  9 +
 tools/patman/gitutil.py  |  2 +-
 tools/patman/settings.py | 27 +++
 7 files changed, 43 insertions(+), 33 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch buildman

2015-01-16 Thread Tom Rini
On Wed, Jan 14, 2015 at 10:20:06PM -0700, Simon Glass wrote:

 Hi Tom,
 
 Can we please try that again? I think I did something wrong. The
 branch name is 'buildman'. I am still getting errors about not pushing
 the code there, for non-master branches.
 
 
 The following changes since commit bd5053ffa5b8162257537bdb79ba829372423096:
 
   Merge branch 'buildman' of git://git.denx.de/u-boot-x86 (2015-01-14
 11:00:38 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to d2ce658de527af4eaa193ccb7c4d881e02a31257:
 
   buildman: Add an option to write the full build output (2015-01-14
 21:16:54 -0800)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch buildman

2015-01-14 Thread Simon Glass
Hi Tom,

Can we please try that again? I think I did something wrong. The
branch name is 'buildman'. I am still getting errors about not pushing
the code there, for non-master branches.


The following changes since commit bd5053ffa5b8162257537bdb79ba829372423096:

  Merge branch 'buildman' of git://git.denx.de/u-boot-x86 (2015-01-14
11:00:38 -0500)

are available in the git repository at:

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

for you to fetch changes up to d2ce658de527af4eaa193ccb7c4d881e02a31257:

  buildman: Add an option to write the full build output (2015-01-14
21:16:54 -0800)


Simon Glass (17):
  buildman: Add tests that check the correct output directory is used
  buildman: Put build in 'current', not 'current/current'
  buildman: Don't prune output space for 'current source' build
  buildman: Try to guess the upstream commit
  buildman: Add an option to flatten output directory trees
  buildman: Don't remove entire output directory when testing
  buildman: Allow specifying a range of commits to build
  buildman: Try to avoid hard-coded string parsing
  buildman: Put the toolchain path first instead of last in PATH
  buildman: Add an option to use the full tool chain path
  buildman: Add a note about Python pre-requisites
  buildman: Add documentation about the .buildman file
  buildman: Don't complain about missing sections in ~/.buildman
  buildman: Don't use the local settings when running tests
  buildman: Allow architecture to alias to multiple toolchains
  buildman: Add the option to download toolchains from kernel.org
  buildman: Add an option to write the full build output

 tools/buildman/README   | 142 +-
 tools/buildman/bsettings.py |  11 ++-
 tools/buildman/builder.py   |  21 -
 tools/buildman/builderthread.py |   7 +-
 tools/buildman/cmdline.py   |  10 +++
 tools/buildman/control.py   |  58 ++---
 tools/buildman/test.py  |  75 +++-
 tools/buildman/toolchain.py | 270
-
 tools/patman/gitutil.py |  90 ---
 9 files changed, 606 insertions(+), 78 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch 'buildman'

2015-01-14 Thread Tom Rini
On Tue, Jan 13, 2015 at 07:51:04PM -0800, Simon Glass wrote:

 Hi Tom,
 
 Here are all the buildman enhancements and bug fixes so far. I have a
 few more to work on but no patches yet.
 
 Note these are in branch 'buildman'.
 
 
 The following changes since commit 5f88ed5cde04612e5b4520327b82d81a3f5493a0:
 
   Merge git://git.denx.de/u-boot-x86 (2015-01-13 13:39:25 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to a9c3573c41864c0185f8f3adeb9cf124cb74e7ea:
 
   buildman: Add an option to write the full build output (2015-01-13
 19:46:34 -0800)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch 'buildman'

2015-01-13 Thread Simon Glass
Hi Tom,

Here are all the buildman enhancements and bug fixes so far. I have a
few more to work on but no patches yet.

Note these are in branch 'buildman'.


The following changes since commit 5f88ed5cde04612e5b4520327b82d81a3f5493a0:

  Merge git://git.denx.de/u-boot-x86 (2015-01-13 13:39:25 -0500)

are available in the git repository at:

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

for you to fetch changes up to a9c3573c41864c0185f8f3adeb9cf124cb74e7ea:

  buildman: Add an option to write the full build output (2015-01-13
19:46:34 -0800)


Simon Glass (17):
  buildman: Add tests that check the correct output directory is used
  buildman: Put build in 'current', not 'current/current'
  buildman: Don't prune output space for 'current source' build
  buildman: Try to guess the upstream commit
  buildman: Add an option to flatten output directory trees
  buildman: Don't remove entire output directory when testing
  buildman: Allow specifying a range of commits to build
  buildman: Try to avoid hard-coded string parsing
  buildman: Put the toolchain path first instead of last in PATH
  buildman: Add an option to use the full tool chain path
  buildman: Add a note about Python pre-requisites
  buildman: Add documentation about the .buildman file
  buildman: Don't complain about missing sections in ~/.buildman
  buildman: Don't use the local settings when running tests
  buildman: Allow architecture to alias to multiple toolchains
  buildman: Add the option to download toolchains from kernel.org
  buildman: Add an option to write the full build output

 tools/buildman/README   | 142 +-
 tools/buildman/bsettings.py |  11 ++-
 tools/buildman/builder.py   |  21 -
 tools/buildman/builderthread.py |   7 +-
 tools/buildman/cmdline.py   |  10 +++
 tools/buildman/control.py   |  58 ++---
 tools/buildman/test.py  |  75 +++-
 tools/buildman/toolchain.py | 270
-
 tools/patman/gitutil.py |  90 ---
 9 files changed, 606 insertions(+), 78 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git (take 2)

2015-01-13 Thread Simon Glass
Hi Tom,

I'm not sure of the process for a failed pull request. I have fixed up
the offending patch (fdt: Add several apis to decode pci device node)
and pushed to to x86/master.


The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368:

  Prepare v2015.01 (2015-01-12 09:39:08 -0500)

are available in the git repository at:

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

for you to fetch changes up to 657e384af630463e3c8c4ffbacd16c5e46aeb0e0:

  x86: Remove CONFIG_DISPLAY_CPUINFO in chromebook_link.h (2015-01-13
07:25:05 -0800)


Bin Meng (25):
  x86: Remove alex.dts in arch/x86/dts
  x86: Rename coreboot.dsti to serial.dtsi
  x86: Clean up the board dts files
  x86: Add missing DECLARE_GLOBAL_DATA_PTR for pci.c
  x86: Support pci bus scan in the early phase
  pci: Make pci apis usable before relocation
  x86: Simplify the fsp hob access functions
  fdt: Add several apis to decode pci device node
  serial: ns16550: Support ns16550 compatible pci uart devices
  x86: Use ePAPR defined properties for x86-uart
  x86: crownbay: Add pci devices in the dts file
  x86: fsp: Drop get_hob_type() and get_hob_length()
  x86: coreboot: Set up timer base correctly
  x86: Allow a hardcoded TSC frequency provided by Kconfig
  x86: Move CONFIG_X86_RESET_VECTOR and CONFIG_SYS_X86_START16 to Kconfig
  x86: Hide ROM chip size when CONFIG_X86_RESET_VECTOR is not selected
  x86: coreboot: Make SYS_CONFIG_NAME and DEFAULT_DEVICE_TREE configurable
  x86: coreboot: Move coreboot-specific defines from coreboot.h to Kconfig
  x86: Move CONFIG_SYS_CAR_xxx to Kconfig
  x86: Remove include/configs/coreboot.h
  x86: Make chromebook_link the default board for coreboot
  x86: coreboot: Wrap cros_ec initialization
  x86: coreboot: Configure pci memory regions
  x86: Update README.x86 for coreboot support
  x86: Remove CONFIG_DISPLAY_CPUINFO in chromebook_link.h

Simon Glass (20):
  x86: Correct XIP_ROM_SIZE
  x86: Drop RAMTOP Kconfig
  x86: Correct ifdtool microcode calculation
  x86: video: Add a debug() to display the frame buffer address
  x86: pci: Don't return a vesa mode when there is not video
  x86: video: Add debug option to time the BIOS copy
  x86: ivybridge: Only run the Video BIOS when video is enabled
  x86: Use cache, don't clear the display in video BIOS
  x86: Tidy up VESA mode numbers
  x86: pci: Display vesa modes in hex
  x86: ivybridge: Drop support for ROM caching
  x86: Add support for MTRRs
  x86: ivybridge: Set up an MTRR for the video frame buffer
  x86: board_f: Adjust x86 boot order for performance
  x86: ivybridge: Request MTRRs for DRAM regions
  x86: Commit the current MTRRs before relocation
  x86: ivybridge: Add a way to turn off the CAR
  x86: Disable CAR before relocation on platforms that need it
  x86: ivybridge: Update microcode early in boot
  x86: Add an 'mtrr' command to list and adjust MTRRs

 arch/x86/Kconfig  |  39 +-
 arch/x86/cpu/Makefile |   1 +
 arch/x86/cpu/coreboot/Kconfig |  15 +++
 arch/x86/cpu/coreboot/coreboot.c  |  22 ++--
 arch/x86/cpu/coreboot/pci.c   |  30 -
 arch/x86/cpu/coreboot/timestamp.c |  33 --
 arch/x86/cpu/ivybridge/car.S  |  74 +++-
 arch/x86/cpu/ivybridge/cpu.c  |  27 +
 arch/x86/cpu/ivybridge/gma.c  |  16 ++-
 arch/x86/cpu/ivybridge/microcode_intel.c  |  26 ++--
 arch/x86/cpu/ivybridge/sdram.c|  10 ++
 arch/x86/cpu/mtrr.c   |  81 +
 arch/x86/cpu/pci.c|  11 +-
 arch/x86/cpu/queensbay/fsp_support.c  |  95 ---
 arch/x86/cpu/queensbay/tnc_dram.c |  39 +++---
 arch/x86/cpu/start.S  |   8 ++
 arch/x86/dts/Makefile |   4 +-
 arch/x86/dts/alex.dts |  24 
 arch/x86/dts/chromebook_link.dts  | 217
-
 arch/x86/dts/coreboot.dtsi|  17 ---
 arch/x86/dts/crownbay.dts |  94 +--
 arch/x86/dts/link.dts | 224
---
 arch/x86/dts/serial.dtsi  |   9 ++
 arch/x86/include/asm/arch-ivybridge/microcode.h   |   6 +
 arch/x86/include/asm/arch-queensbay/fsp/fsp_hob.h |  68 +++
 arch/x86/include/asm/arch-queensbay/fsp/fsp_support.h |   5 +-
 arch/x86/include/asm/global_data.h|  16 ++-
 

Re: [U-Boot] Please pull u-boot-x86.git

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 05:06:19PM -0800, Simon Glass wrote:

 Hi Tom,
 
 The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368:
 
   Prepare v2015.01 (2015-01-12 09:39:08 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to c479f96c0e0ceb226a8fb83a7996b78bfdcfd7b2:
 
   x86: Remove CONFIG_DISPLAY_CPUINFO in chromebook_link.h (2015-01-12
 17:03:47 -0800)
 

This breaks the heck out of most other platforms:
+(davinci_sonata) In file included from arch/arm/lib/board.c:39:0:
+(davinci_sonata) include/fdtdec.h:342:30: error: unknown type name 'pci_dev_t'

Please fix, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2015-01-13 Thread Simon Glass
Hi Tom,

On 13 January 2015 at 06:37, Tom Rini tr...@ti.com wrote:
 On Mon, Jan 12, 2015 at 05:06:19PM -0800, Simon Glass wrote:

 Hi Tom,

 The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368:

   Prepare v2015.01 (2015-01-12 09:39:08 -0500)

 are available in the git repository at:

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

 for you to fetch changes up to c479f96c0e0ceb226a8fb83a7996b78bfdcfd7b2:

   x86: Remove CONFIG_DISPLAY_CPUINFO in chromebook_link.h (2015-01-12
 17:03:47 -0800)


 This breaks the heck out of most other platforms:
 +(davinci_sonata) In file included from arch/arm/lib/board.c:39:0:
 +(davinci_sonata) include/fdtdec.h:342:30: error: unknown type name 
 'pci_dev_t'

 Please fix, thanks!

Oh dear, thanks for catching this. It looks like this patch:

cf1a5cb fdt: Add several apis to decode pci device node

I'll fix it (and my process).

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git (take 2)

2015-01-13 Thread Tom Rini
On Tue, Jan 13, 2015 at 10:21:06AM -0800, Simon Glass wrote:

 Hi Tom,
 
 I'm not sure of the process for a failed pull request. I have fixed up
 the offending patch (fdt: Add several apis to decode pci device node)
 and pushed to to x86/master.
 
 
 The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368:
 
   Prepare v2015.01 (2015-01-12 09:39:08 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 657e384af630463e3c8c4ffbacd16c5e46aeb0e0:
 
   x86: Remove CONFIG_DISPLAY_CPUINFO in chromebook_link.h (2015-01-13
 07:25:05 -0800)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2015-01-12 Thread Simon Glass
Hi Tom,

The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368:

  Prepare v2015.01 (2015-01-12 09:39:08 -0500)

are available in the git repository at:

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

for you to fetch changes up to c479f96c0e0ceb226a8fb83a7996b78bfdcfd7b2:

  x86: Remove CONFIG_DISPLAY_CPUINFO in chromebook_link.h (2015-01-12
17:03:47 -0800)


Bin Meng (25):
  x86: Remove alex.dts in arch/x86/dts
  x86: Rename coreboot.dsti to serial.dtsi
  x86: Clean up the board dts files
  x86: Add missing DECLARE_GLOBAL_DATA_PTR for pci.c
  x86: Support pci bus scan in the early phase
  pci: Make pci apis usable before relocation
  x86: Simplify the fsp hob access functions
  fdt: Add several apis to decode pci device node
  serial: ns16550: Support ns16550 compatible pci uart devices
  x86: Use ePAPR defined properties for x86-uart
  x86: crownbay: Add pci devices in the dts file
  x86: fsp: Drop get_hob_type() and get_hob_length()
  x86: coreboot: Set up timer base correctly
  x86: Allow a hardcoded TSC frequency provided by Kconfig
  x86: Move CONFIG_X86_RESET_VECTOR and CONFIG_SYS_X86_START16 to Kconfig
  x86: Hide ROM chip size when CONFIG_X86_RESET_VECTOR is not selected
  x86: coreboot: Make SYS_CONFIG_NAME and DEFAULT_DEVICE_TREE configurable
  x86: coreboot: Move coreboot-specific defines from coreboot.h to Kconfig
  x86: Move CONFIG_SYS_CAR_xxx to Kconfig
  x86: Remove include/configs/coreboot.h
  x86: Make chromebook_link the default board for coreboot
  x86: coreboot: Wrap cros_ec initialization
  x86: coreboot: Configure pci memory regions
  x86: Update README.x86 for coreboot support
  x86: Remove CONFIG_DISPLAY_CPUINFO in chromebook_link.h

Simon Glass (20):
  x86: Correct XIP_ROM_SIZE
  x86: Drop RAMTOP Kconfig
  x86: Correct ifdtool microcode calculation
  x86: video: Add a debug() to display the frame buffer address
  x86: pci: Don't return a vesa mode when there is not video
  x86: video: Add debug option to time the BIOS copy
  x86: ivybridge: Only run the Video BIOS when video is enabled
  x86: Use cache, don't clear the display in video BIOS
  x86: Tidy up VESA mode numbers
  x86: pci: Display vesa modes in hex
  x86: ivybridge: Drop support for ROM caching
  x86: Add support for MTRRs
  x86: ivybridge: Set up an MTRR for the video frame buffer
  x86: board_f: Adjust x86 boot order for performance
  x86: ivybridge: Request MTRRs for DRAM regions
  x86: Commit the current MTRRs before relocation
  x86: ivybridge: Add a way to turn off the CAR
  x86: Disable CAR before relocation on platforms that need it
  x86: ivybridge: Update microcode early in boot
  x86: Add an 'mtrr' command to list and adjust MTRRs

 arch/x86/Kconfig  |  39 +-
 arch/x86/cpu/Makefile |   1 +
 arch/x86/cpu/coreboot/Kconfig |  15 +++
 arch/x86/cpu/coreboot/coreboot.c  |  22 ++--
 arch/x86/cpu/coreboot/pci.c   |  30 -
 arch/x86/cpu/coreboot/timestamp.c |  33 --
 arch/x86/cpu/ivybridge/car.S  |  74 +++-
 arch/x86/cpu/ivybridge/cpu.c  |  27 +
 arch/x86/cpu/ivybridge/gma.c  |  16 ++-
 arch/x86/cpu/ivybridge/microcode_intel.c  |  26 ++--
 arch/x86/cpu/ivybridge/sdram.c|  10 ++
 arch/x86/cpu/mtrr.c   |  81 +
 arch/x86/cpu/pci.c|  11 +-
 arch/x86/cpu/queensbay/fsp_support.c  |  95 ---
 arch/x86/cpu/queensbay/tnc_dram.c |  39 +++---
 arch/x86/cpu/start.S  |   8 ++
 arch/x86/dts/Makefile |   4 +-
 arch/x86/dts/alex.dts |  24 
 arch/x86/dts/chromebook_link.dts  | 217
-
 arch/x86/dts/coreboot.dtsi|  17 ---
 arch/x86/dts/crownbay.dts |  94 +--
 arch/x86/dts/link.dts | 224
---
 arch/x86/dts/serial.dtsi  |   9 ++
 arch/x86/include/asm/arch-ivybridge/microcode.h   |   6 +
 arch/x86/include/asm/arch-queensbay/fsp/fsp_hob.h |  68 +++
 arch/x86/include/asm/arch-queensbay/fsp/fsp_support.h |   5 +-
 arch/x86/include/asm/global_data.h|  16 ++-
 arch/x86/include/asm/mtrr.h   | 163
-
 arch/x86/include/asm/pci.h|   2 +-
 arch/x86/lib/Makefile  

Re: [U-Boot] Please pull u-boot-x86.git branch misc

2015-01-07 Thread Tom Rini
On Mon, Jan 05, 2015 at 05:48:01PM -0700, Simon Glass wrote:

 Hi Tom,
 
 This didn't go through last time, it is on branch 'misc'.
 
 
 The following changes since commit d622ac39274a949b6445f1bfd92dc1644014388b:
 
   powerpc: mpc824x: remove MPC824X cpu support (2015-01-05 12:08:55 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 9332274989009b213a405134202088e1bd81fe51:
 
   cros-ec-keyboard: Synchronize DT binding from linux (2015-01-05
 17:45:16 -0700)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch misc

2015-01-05 Thread Simon Glass
Hi Tom,

This didn't go through last time, it is on branch 'misc'.


The following changes since commit d622ac39274a949b6445f1bfd92dc1644014388b:

  powerpc: mpc824x: remove MPC824X cpu support (2015-01-05 12:08:55 -0500)

are available in the git repository at:

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

for you to fetch changes up to 9332274989009b213a405134202088e1bd81fe51:

  cros-ec-keyboard: Synchronize DT binding from linux (2015-01-05
17:45:16 -0700)


Masahiro Yamada (2):
  dm: README: recommend u-boot.dtb to try driver-model on sandbox
  i2c_eeprom: include linux/err.h to fix build error

Sjoerd Simons (1):
  cros-ec-keyboard: Synchronize DT binding from linux

 arch/arm/dts/exynos5250-snow.dts| 59
+++
 arch/arm/dts/exynos5420-peach-pit.dts   | 59
+++
 arch/arm/dts/exynos5800-peach-pi.dts|  4 +++-
 doc/device-tree-bindings/input/cros-ec-keyb.txt | 53
+++--
 doc/driver-model/README.txt |  4 ++--
 drivers/input/cros_ec_keyb.c| 16 ++--
 drivers/misc/i2c_eeprom.c   |  1 +
 7 files changed, 41 insertions(+), 155 deletions(-)


Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch misc

2015-01-05 Thread Simon Glass
Hi Tom,

On 29 December 2014 at 19:26, Tom Rini tr...@ti.com wrote:
 On Mon, Dec 29, 2014 at 03:07:41PM -0700, Simon Glass wrote:

 Hi Tom,

 Here are a few misc fixes and updates. Note that the branch is 'misc'
 (there is also a 'master' branch pull out there).


 The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af:

   ARM: UniPhier: enable CONFIG_CMD_DM (2014-12-18 23:34:30 +0900)

 are available in the git repository at:

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

 for you to fetch changes up to 90f20e002e16c53f7857740a5e6baaa7183f584c:

   cros-ec-keyboard: Synchronize DT binding from linux (2014-12-29
 15:02:02 -0700)


 Applied to u-boot/master, thanks!

Sorry for the delay - I was just looking and could not see this pull
request applied.

I will rebase and send a new pull request.

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch misc

2014-12-29 Thread Simon Glass
Hi Tom,

Here are a few misc fixes and updates. Note that the branch is 'misc'
(there is also a 'master' branch pull out there).


The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af:

  ARM: UniPhier: enable CONFIG_CMD_DM (2014-12-18 23:34:30 +0900)

are available in the git repository at:

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

for you to fetch changes up to 90f20e002e16c53f7857740a5e6baaa7183f584c:

  cros-ec-keyboard: Synchronize DT binding from linux (2014-12-29
15:02:02 -0700)


Masahiro Yamada (2):
  dm: README: recommend u-boot.dtb to try driver-model on sandbox
  i2c_eeprom: include linux/err.h to fix build error

Sjoerd Simons (1):
  cros-ec-keyboard: Synchronize DT binding from linux

 arch/arm/dts/exynos5250-snow.dts| 59
+++
 arch/arm/dts/exynos5420-peach-pit.dts   | 59
+++
 arch/arm/dts/exynos5800-peach-pi.dts|  4 +++-
 doc/device-tree-bindings/input/cros-ec-keyb.txt | 53
+++--
 doc/driver-model/README.txt |  4 ++--
 drivers/input/cros_ec_keyb.c| 16 ++--
 drivers/misc/i2c_eeprom.c   |  1 +
 7 files changed, 41 insertions(+), 155 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch misc

2014-12-29 Thread Tom Rini
On Mon, Dec 29, 2014 at 03:07:41PM -0700, Simon Glass wrote:

 Hi Tom,
 
 Here are a few misc fixes and updates. Note that the branch is 'misc'
 (there is also a 'master' branch pull out there).
 
 
 The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af:
 
   ARM: UniPhier: enable CONFIG_CMD_DM (2014-12-18 23:34:30 +0900)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 90f20e002e16c53f7857740a5e6baaa7183f584c:
 
   cros-ec-keyboard: Synchronize DT binding from linux (2014-12-29
 15:02:02 -0700)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2014-12-29 Thread Tom Rini
On Thu, Dec 18, 2014 at 05:29:39PM -0700, Simon Glass wrote:

 Hi Tom,
 
 Here is the last of the Atom changes - we now have good support for
 one Atom variant (with a path to adding to it) and basic support for
 ivybridge. A good start.
 
 
 The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af:
 
   ARM: UniPhier: enable CONFIG_CMD_DM (2014-12-18 23:34:30 +0900)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to d2c6181d2d2afe00399cf0c8d9deafcb66b77330:
 
   x86: Add a script to process Intel microcode files (2014-12-18 17:26:08 
 -0700)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2014-12-18 Thread Simon Glass
Hi Tom,

Here is the last of the Atom changes - we now have good support for
one Atom variant (with a path to adding to it) and basic support for
ivybridge. A good start.


The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af:

  ARM: UniPhier: enable CONFIG_CMD_DM (2014-12-18 23:34:30 +0900)

are available in the git repository at:

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

for you to fetch changes up to d2c6181d2d2afe00399cf0c8d9deafcb66b77330:

  x86: Add a script to process Intel microcode files (2014-12-18 17:26:08 -0700)


Bin Meng (14):
  x86: Integrate Tunnel Creek processor microcode
  x86: Add basic support to queensbay platform and crownbay board
  x86: ich6-gpio: Add Intel Tunnel Creek GPIO support
  x86: Enable the queensbay cpu directory build
  x86: Add queensbay and crownbay Kconfig files
  x86: Add crownbay defconfig and config.h
  x86: Use consistent name XXX_ADDR for binary blob flash address
  x86: Include FSP and CMC binary in the u-boot.rom build rules
  x86: crownbay: Add SPI flash support
  x86: crownbay: Enable Intel E1000 NIC support
  x86: crownbay: Add SDHCI support
  x86: Rename coreboot-serial to x86-serial
  x86: Add a README.x86 for U-Boot on x86 support
  x86: Clean up the FSP support codes

Simon Glass (9):
  x86: ifdtool: Correct a debug() missing parameter
  x86: ifdtool: Display filename when file errors are reported
  x86: ifdtool: Use a structure for the file/address list
  x86: ifdtool: Add support for early microcode access
  x86: Move microcode updates into a separate directory
  x86: ivybridge: Update the microcode
  x86: Correct problems in the microcode loading
  x86: Convert microcode format to device-tree-only
  x86: Add a script to process Intel microcode files

 Makefile |  16 +-
 arch/x86/Kconfig |  13 ++
 arch/x86/cpu/Makefile|   1 +
 arch/x86/cpu/ivybridge/microcode_intel.c |  27 ++-
 arch/x86/cpu/ivybridge/sdram.c   |   2 +-
 arch/x86/cpu/queensbay/Kconfig   |  79 +++
 arch/x86/cpu/queensbay/Makefile  |   9 +
 arch/x86/cpu/queensbay/fsp_configs.c |   2 +-
 arch/x86/cpu/queensbay/fsp_support.c | 255
++--
 arch/x86/cpu/queensbay/tnc.c |  72 ++
 arch/x86/cpu/queensbay/tnc_car.S | 124 ++
 arch/x86/cpu/queensbay/tnc_dram.c|  78 +++
 arch/x86/cpu/queensbay/tnc_pci.c |  61 +
 arch/x86/cpu/queensbay/topcliff.c|  47 
 arch/x86/dts/coreboot.dtsi   |   2 +-
 arch/x86/dts/crownbay.dts|   7 +
 arch/x86/dts/link.dts|   4 +-
 arch/x86/dts/m12206a7_0028.dtsi  | 622
-
 arch/x86/dts/m12306a9_0017.dtsi  | 750
---
 arch/x86/dts/microcode/m0220661105_cv.dtsi   | 368
+
 arch/x86/dts/microcode/m12206a7_0029.dtsi| 686
++
 arch/x86/dts/microcode/m12306a9_001b.dtsi| 814

 arch/x86/include/asm/arch-queensbay/fsp/fsp_api.h|  18 +-
 arch/x86/include/asm/arch-queensbay/fsp/fsp_ffs.h|  28 +--
 arch/x86/include/asm/arch-queensbay/fsp/fsp_fv.h |  14 +-
 arch/x86/include/asm/arch-queensbay/fsp/fsp_hob.h| 112 +
 arch/x86/include/asm/arch-queensbay/fsp/fsp_infoheader.h |   6 +-
 arch/x86/include/asm/arch-queensbay/fsp/fsp_platform.h   |   8 +-
 arch/x86/include/asm/arch-queensbay/fsp/fsp_support.h|  63 ++---
 arch/x86/include/asm/arch-queensbay/fsp/fsp_types.h  |  17 +-
 arch/x86/include/asm/arch-queensbay/fsp/fsp_vpd.h|   8 +-
 arch/x86/include/asm/arch-queensbay/gpio.h   |  13 ++
 arch/x86/include/asm/arch-queensbay/tnc.h|  15 ++
 arch/x86/include/asm/gpio.h  |   4 +-
 arch/x86/include/asm/ibmpc.h |   3 +
 arch/x86/lib/cmd_hob.c   |  22 +-
 board/coreboot/coreboot/coreboot.c   |   2 +-
 board/google/chromebook_link/link.c  |   2 +-
 board/intel/crownbay/Kconfig |  20 ++
 board/intel/crownbay/MAINTAINERS |   6 +
 board/intel/crownbay/Makefile|   7 +
 board/intel/crownbay/crownbay.c

Re: [U-Boot] Please pull u-boot-x86.git branch 'sandbox'

2014-12-04 Thread Tom Rini
On Mon, Dec 01, 2014 at 03:31:17PM -0700, Simon Glass wrote:

 Hi Tom,
 
 A random collection of thnigs. Note the branch is 'sandbox'.
 
 
 The following changes since commit 85bafb6da4dddfffa78479aa49a72ae48578a4ce:
 
   Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq
 (2014-11-26 11:23:26 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 1d8104fe8897c5fec3e03b4165bc67c57eeeaa72:
 
   buildman: Don't default to -e when building current source
 (2014-11-26 20:25:40 -0700)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2014-12-02 Thread Tom Rini
On Wed, Nov 26, 2014 at 09:28:50AM -0700, Simon Glass wrote:

 Hi Tom,
 
 This is the last of the bare x86 support for this release. I also
 brought in some interrupt fixes from Bin.
 
 
 
 The following changes since commit 2a82ec77d27ef5f860a107c4b764643a655dceeb:
 
   Prepare v2015.01-rc2 (2014-11-24 17:08:47 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 908ec6e4d1d12f746cb9b7cc73430a268ceb2c92:
 
   tools: Add ifdtool to .gitignore (2014-11-25 07:11:17 -0700)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch 'sandbox'

2014-12-01 Thread Simon Glass
Hi Tom,

A random collection of thnigs. Note the branch is 'sandbox'.


The following changes since commit 85bafb6da4dddfffa78479aa49a72ae48578a4ce:

  Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq
(2014-11-26 11:23:26 -0500)

are available in the git repository at:

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

for you to fetch changes up to 1d8104fe8897c5fec3e03b4165bc67c57eeeaa72:

  buildman: Don't default to -e when building current source
(2014-11-26 20:25:40 -0700)


Simon Glass (5):
  sandbox: Fix warnings due to 64-bit printf() strings
  sandbox: Fix warnings in cpu.c and os.c
  patman: Use the full commit hash for 'git checkout'
  buildman: Fix repeating board list with -l
  buildman: Don't default to -e when building current source

Tom Rini (1):
  buildman: Save *.img files too

 arch/sandbox/cpu/os.c   |  1 +
 arch/sandbox/cpu/start.c|  3 ++-
 common/cmd_mem.c|  6 --
 common/fdt_support.c| 15 +++
 disk/part_efi.c | 21 +++--
 tools/buildman/README   | 25 -
 tools/buildman/builder.py   |  3 ++-
 tools/buildman/builderthread.py |  2 +-
 tools/buildman/control.py   |  3 +--
 tools/patman/patchstream.py |  3 +--
 10 files changed, 42 insertions(+), 40 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2014-11-26 Thread Simon Glass
Hi Tom,

This is the last of the bare x86 support for this release. I also
brought in some interrupt fixes from Bin.



The following changes since commit 2a82ec77d27ef5f860a107c4b764643a655dceeb:

  Prepare v2015.01-rc2 (2014-11-24 17:08:47 -0500)

are available in the git repository at:

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

for you to fetch changes up to 908ec6e4d1d12f746cb9b7cc73430a268ceb2c92:

  tools: Add ifdtool to .gitignore (2014-11-25 07:11:17 -0700)


Bin Meng (5):
  x86: Call cpu_init_interrupts() from interrupt_init()
  x86: Remove cpu_init_r() for x86
  x86: Refactor interrupt_init()
  x86: Remove unnecessary call to initr_enable_interrupts()
  tools: Add ifdtool to .gitignore

Simon Glass (51):
  x86: Add ivybridge directory to Makefile
  Fix SIZE_MAX compiler warning when using stdint.h
  Align embedded device tree correctly
  pci: Update pci_ids.h to include some missing IDs
  x86: Remove board_early_init_r()
  x86: Panic if there is no relocation data
  x86: Ensure that all relocation data is included in the image
  x86: Factor out common values in the link script
  rtc: mc146818: Set up RTC at start of day
  x86: Add ioapic.h header
  x86: pci: Add handlers before and after a PCI hose scan
  x86: config: Enable plug-and-play for link PCI
  pci: Add functions to read and write a BAR address
  x86: Set up edge triggering on interrupt 9
  x86: ivybridge: Add support for BD82x6x PCH
  x86: Add a simple header file for ACPI
  x86: ivybridge: Add PCH init
  x86: ivybridge: Add additional LPC init
  x86: dts: Move PCI peripherals into a pci node
  x86: dts: Add LPC settings for link
  x86: ivybridge: Add SATA init
  x86: dts: Add SATA settings for link
  x86: ivybridge: Set up EHCI USB
  x86: config: Enable USB on link
  x86: ivybridge: Set up XHCI USB
  x86: Add Intel speedstep and turbo mode code
  x86: Drop old CONFIG_INTEL_CORE_ARCH code
  x86: Add LAPIC setup code
  x86: Add init for model 206AX CPU
  x86: Drop some msr functions that we don't support
  x86: ivybridge: Add northbridge init functions
  x86: config: Enable SPI for chromebook_link
  x86: Add a definition of asmlinkage
  Introduce a header file for the BIOS emulator
  x86: Add GDT descriptors for option ROMs
  x86: Add vesa mode configuration options
  Add support for Vesa BIOS extensions
  x86: Add support for running option ROMs natively
  pci: Add general support for execution of video ROMs
  x86: video: Add video driver for bare x86 boards
  x86: Allow an option ROM to be built into U-Boot
  x86: Add initial video device init for Intel GMA
  x86: dts: Add video information to the device tree
  x86: config: Enable video support for chromebook_link
  bios_emulator: Allow x86 to use the emulator
  bios_emulator: Add vesa support and allow ROMs to be passed in as data
  bios_emulator: Allow a custom interrupt handler to be installed
  bios_emulator: Add an option to enable debugging
  bios_emulator: Always print errors when opcode decode fails
  x86: chromebook_link: Enable the x86 emulator
  x86: chromebook_link: Enable the Chrome OS EC

 Makefile  |   3 +
 arch/x86/Kconfig  | 149 +++
 arch/x86/cpu/Makefile |   4 +
 arch/x86/cpu/config.mk|   5 +-
 arch/x86/cpu/coreboot/coreboot.c  |  11 --
 arch/x86/cpu/cpu.c|  17 +-
 arch/x86/cpu/interrupts.c |  54 ++
 arch/x86/cpu/ivybridge/Makefile   |   8 +
 arch/x86/cpu/ivybridge/bd82x6x.c  | 146 +++
 arch/x86/cpu/ivybridge/gma.c  | 756
++
 arch/x86/cpu/ivybridge/gma.h  | 156 
 arch/x86/cpu/ivybridge/lpc.c  | 523
++-
 arch/x86/cpu/ivybridge/model_206ax.c  | 514
++
 arch/x86/cpu/ivybridge/northbridge.c  | 188 +++
 arch/x86/cpu/ivybridge/pch.c  | 123 
 arch/x86/cpu/ivybridge/pci.c  |  40 
 arch/x86/cpu/ivybridge/sata.c | 225 ++
 arch/x86/cpu/ivybridge/usb_ehci.c |  29 +++
 arch/x86/cpu/ivybridge/usb_xhci.c |  32 
 arch/x86/cpu/lapic.c  |  57 ++
 arch/x86/cpu/pci.c|  12 ++
 arch/x86/cpu/turbo.c  |  98 ++
 arch/x86/cpu/u-boot.lds

Re: [U-Boot] Please pull u-boot-x86.git

2014-11-24 Thread Tom Rini
On Fri, Nov 21, 2014 at 08:00:27AM +0100, Simon Glass wrote:

 Hi Tom,
 
 Here's the introduction of bare x86 support.
 
 
 The following changes since commit 4d70b34d7f721d8b1d4d628e68c3a44ab7a10dff:
 
   Merge branch 'master' of git://git.denx.de/u-boot-ubi (2014-11-19
 23:18:29 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to fe5b9b447c6eea3873833b1f3ba15c9854aa2ef8:
 
   x86: Rename chromebook-x86 to coreboot (2014-11-21 07:34:16 +0100)
 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2014-11-21 Thread Masahiro Yamada
Hi Simon, Tom,



On Fri, 21 Nov 2014 08:24:54 +0100
Simon Glass s...@chromium.org wrote:

 Hi Masahiro,
 
 On 21 November 2014 08:11, Masahiro Yamada yamad...@jp.panasonic.com wrote:
  Simon,
 
  On Fri, 21 Nov 2014 08:00:27 +0100
  Simon Glass s...@chromium.org wrote:
 
  Hi Tom,
 
  Here's the introduction of bare x86 support.
 
 
  The following changes since commit 
  4d70b34d7f721d8b1d4d628e68c3a44ab7a10dff:
 
Merge branch 'master' of git://git.denx.de/u-boot-ubi (2014-11-19
  23:18:29 -0500)
 
  are available in the git repository at:
 
git://git.denx.de/u-boot-x86.git
 
  for you to fetch changes up to fe5b9b447c6eea3873833b1f3ba15c9854aa2ef8:
 
x86: Rename chromebook-x86 to coreboot (2014-11-21 07:34:16 +0100)
 
  
  Bin Meng (4):
x86: Do CPU identification in the early phase
x86: Do TSC MSR calibration only for known/supported CPUs
x86: Add quick TSC calibration via PIT
x86: Save TSC frequency in the global data
 
  Masahiro Yamada (1):
x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory
 
 
  Wait, this patch was posted as a series.
 
  It should not be applied without the others in my series.
  What is going on?
 
 I applied this to x86 a while back - it actually was the same as a
 patch I had locally so I picked up yours instead. It works fine on x86
 and I think it is independent of the series.
 
 So I know this is a bit unusual but I think it is OK.


Understood, but I am a bit unhappy because
  - The subject x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ 
directory
is totally unrelated to the actual code
  - The first hunk was lost of my original patch, so I have to resend my series
to get it back.


Tom, if possible, after you pull this, can you rephrase the commit subject 
locally?
For ex.

   x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory

   -
   
x86: remove redundant CONFIG_SYS_COREBOOT references



I will resend my series lator...




Best Regards
Masahiro Yamada

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2014-11-21 Thread Simon Glass
Hi Masahiro,

On 21 November 2014 09:29, Masahiro Yamada yamad...@jp.panasonic.com wrote:
 Hi Simon, Tom,



 On Fri, 21 Nov 2014 08:24:54 +0100
 Simon Glass s...@chromium.org wrote:

 Hi Masahiro,

 On 21 November 2014 08:11, Masahiro Yamada yamad...@jp.panasonic.com wrote:
  Simon,
 
  On Fri, 21 Nov 2014 08:00:27 +0100
  Simon Glass s...@chromium.org wrote:
 
  Hi Tom,
 
  Here's the introduction of bare x86 support.
 
 
  The following changes since commit 
  4d70b34d7f721d8b1d4d628e68c3a44ab7a10dff:
 
Merge branch 'master' of git://git.denx.de/u-boot-ubi (2014-11-19
  23:18:29 -0500)
 
  are available in the git repository at:
 
git://git.denx.de/u-boot-x86.git
 
  for you to fetch changes up to fe5b9b447c6eea3873833b1f3ba15c9854aa2ef8:
 
x86: Rename chromebook-x86 to coreboot (2014-11-21 07:34:16 +0100)
 
  
  Bin Meng (4):
x86: Do CPU identification in the early phase
x86: Do TSC MSR calibration only for known/supported CPUs
x86: Add quick TSC calibration via PIT
x86: Save TSC frequency in the global data
 
  Masahiro Yamada (1):
x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory
 
 
  Wait, this patch was posted as a series.
 
  It should not be applied without the others in my series.
  What is going on?

 I applied this to x86 a while back - it actually was the same as a
 patch I had locally so I picked up yours instead. It works fine on x86
 and I think it is independent of the series.

 So I know this is a bit unusual but I think it is OK.


 Understood, but I am a bit unhappy because
   - The subject x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ 
 directory
 is totally unrelated to the actual code
   - The first hunk was lost of my original patch, so I have to resend my 
 series
 to get it back.


 Tom, if possible, after you pull this, can you rephrase the commit subject 
 locally?
 For ex.

x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory

-

 x86: remove redundant CONFIG_SYS_COREBOOT references



 I will resend my series lator...

Ah sorry, I'm not sure what went wrong but it looks like I dropped a piece.

Tom, if you haven't already applied it, I'll drop this patch and
resend the pull request next week.

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2014-11-20 Thread Simon Glass
Hi Tom,

Here's the introduction of bare x86 support.


The following changes since commit 4d70b34d7f721d8b1d4d628e68c3a44ab7a10dff:

  Merge branch 'master' of git://git.denx.de/u-boot-ubi (2014-11-19
23:18:29 -0500)

are available in the git repository at:

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

for you to fetch changes up to fe5b9b447c6eea3873833b1f3ba15c9854aa2ef8:

  x86: Rename chromebook-x86 to coreboot (2014-11-21 07:34:16 +0100)


Bin Meng (4):
  x86: Do CPU identification in the early phase
  x86: Do TSC MSR calibration only for known/supported CPUs
  x86: Add quick TSC calibration via PIT
  x86: Save TSC frequency in the global data

Masahiro Yamada (1):
  x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory

Simon Glass (43):
  x86: Remove REALMODE_BASE which is no longer used
  x86: Remove board_init16() call which is not used
  x86: Invalidate TLB as early as possible
  x86: Tidy up global descriptor table setup
  x86: Use the standard dram_init() function
  x86: Use the standard arch_cpu_init() function
  x86: Fix up some missing prototypes
  x86: Save the BIST value on reset
  x86: Fix a warning with gcc 4.4.4
  Move early malloc() to before arch_cpu_init()
  fdt: Add a function to decode a variable-sized u32 array
  dm: serial: Move current serial port pointer to global_data
  dm: gpio: Add a function to read an ID from a list of GPIOs
  x86: Add ifdtool for working with Intel Flash Descriptor ROM images
  x86: config: Move common x86 configs to a common file
  x86: Add processor functions to halt and get stack pointer
  x86: Remove unnecessary find_fdt(), prepare_fdt() functions
  x86: Replace fill_processor_name() with cpu_get_name()
  x86: Allow timer calibration to work on ivybridge
  x86: ifdtool: Allow creation of an empty ROM
  x86: Add chromebook_link board
  x86: Build a .rom file which can be flashed to an x86 machine
  x86: Emit post codes in startup code for Chromebooks
  x86: chromebook_link: Implement CAR support (cache as RAM)
  x86: Refactor PCI to permit alternate init
  x86: Support use of PCI before relocation
  x86: ivybridge: Enable PCI in early init
  x86: pci: Allow configuration before relocation
  x86: ivybridge: Add early LPC init so that serial works
  x86: Tidy up coreboot header usage
  x86: Add clr/setbits functions
  x86: Add msr read/write functions that use a structure
  x86: ivybridge: Perform initial CPU setup
  x86: ivybridge: Check BIST value on boot
  x86: ivybridge: Perform Intel microcode update on boot
  x86: dts: Add microcode updates for ivybridge CPU
  x86: ivybridge: Add early init for PCH devices
  x86: ivybridge: Add support for early GPIO init
  x86: chromebook_link: Enable GPIO support
  x86: Make show_boot_progress() common
  x86: ivybridge: Add LAPIC support
  x86: ivybridge: Implement SDRAM init
  x86: Rename chromebook-x86 to coreboot

 Makefile |   36 ++-
 arch/x86/Kconfig |   74 -
 arch/x86/config.mk   |1 -
 arch/x86/cpu/Makefile|1 +
 arch/x86/cpu/coreboot/Makefile   |   12 +-
 arch/x86/cpu/coreboot/coreboot.c |   42 +--
 arch/x86/cpu/coreboot/ipchecksum.c   |2 +-
 arch/x86/cpu/coreboot/pci.c  |   22 +-
 arch/x86/cpu/coreboot/sdram.c|   15 +-
 arch/x86/cpu/coreboot/tables.c   |6 +-
 arch/x86/cpu/cpu.c   |  301
+++---
 arch/x86/cpu/interrupts.c|2 +-
 arch/x86/cpu/ivybridge/Kconfig   |  172 +++
 arch/x86/cpu/ivybridge/Makefile  |   16 +
 arch/x86/cpu/ivybridge/car.S |  178 +++
 arch/x86/cpu/ivybridge/cpu.c |  357
++
 arch/x86/cpu/ivybridge/early_init.c  |  145 +
 arch/x86/cpu/ivybridge/early_me.c|  191

 arch/x86/cpu/ivybridge/lpc.c |   48 +++
 arch/x86/cpu/ivybridge/me_status.c   |  195

 arch/x86/cpu/ivybridge/microcode_intel.c |  151 ++
 arch/x86/cpu/ivybridge/pci.c |   60 
 arch/x86/cpu/ivybridge/report_platform.c |   89 ++
 arch/x86/cpu/ivybridge/sdram.c   |  571
+++
 

Re: [U-Boot] Please pull u-boot-x86.git

2014-11-20 Thread Masahiro Yamada
Simon,

On Fri, 21 Nov 2014 08:00:27 +0100
Simon Glass s...@chromium.org wrote:

 Hi Tom,
 
 Here's the introduction of bare x86 support.
 
 
 The following changes since commit 4d70b34d7f721d8b1d4d628e68c3a44ab7a10dff:
 
   Merge branch 'master' of git://git.denx.de/u-boot-ubi (2014-11-19
 23:18:29 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to fe5b9b447c6eea3873833b1f3ba15c9854aa2ef8:
 
   x86: Rename chromebook-x86 to coreboot (2014-11-21 07:34:16 +0100)
 
 
 Bin Meng (4):
   x86: Do CPU identification in the early phase
   x86: Do TSC MSR calibration only for known/supported CPUs
   x86: Add quick TSC calibration via PIT
   x86: Save TSC frequency in the global data
 
 Masahiro Yamada (1):
   x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory


Wait, this patch was posted as a series.

It should not be applied without the others in my series.
What is going on?


Best Regards
Masahiro Yamada


___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2014-11-20 Thread Simon Glass
Hi Masahiro,

On 21 November 2014 08:11, Masahiro Yamada yamad...@jp.panasonic.com wrote:
 Simon,

 On Fri, 21 Nov 2014 08:00:27 +0100
 Simon Glass s...@chromium.org wrote:

 Hi Tom,

 Here's the introduction of bare x86 support.


 The following changes since commit 4d70b34d7f721d8b1d4d628e68c3a44ab7a10dff:

   Merge branch 'master' of git://git.denx.de/u-boot-ubi (2014-11-19
 23:18:29 -0500)

 are available in the git repository at:

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

 for you to fetch changes up to fe5b9b447c6eea3873833b1f3ba15c9854aa2ef8:

   x86: Rename chromebook-x86 to coreboot (2014-11-21 07:34:16 +0100)

 
 Bin Meng (4):
   x86: Do CPU identification in the early phase
   x86: Do TSC MSR calibration only for known/supported CPUs
   x86: Add quick TSC calibration via PIT
   x86: Save TSC frequency in the global data

 Masahiro Yamada (1):
   x86: use CONFIG_SYS_COREBOOT to descend into coreboot/ directory


 Wait, this patch was posted as a series.

 It should not be applied without the others in my series.
 What is going on?

I applied this to x86 a while back - it actually was the same as a
patch I had locally so I picked up yours instead. It works fine on x86
and I think it is independent of the series.

So I know this is a bit unusual but I think it is OK.

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2014-10-23 Thread Tom Rini
On Wed, Oct 22, 2014 at 09:55:47PM -0600, Simon Glass wrote:

 Hi Tom,
 
 These are the last of the x86 patches before it is converted to driver model.
 
 
 The following changes since commit 35d4fed320d577a4446531d7b9350ce40065c4b0:
 
   x86: Fix GDT limit in start16.S (2014-10-22 09:03:07 -0600)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 8104f546296a8e1fc1dd6129041e22f508b314f9:
 
   net: Display the size when tftpboot finishes (2014-10-22 21:50:33 -0600)
 
 
 Simon Glass (10):
   x86: config: Enable dhcp on link
   x86: Add device tree information for Chrome OS EC
   x86: dts: Add device tree compatible string for Intel IPC
   x86: cros_ec: Update LPC driver for new cros_ec header
   x86: cros_ec: Enable cros_ec for link
   doc: Remove note about auto-complete not working with hush
   x86: link: Tidy up the command lines options
   x86: config: link: Display the board model on the screen
   x86: Enable FIT, ELF on coreboot
   net: Display the size when tftpboot finishes
 
  README   |  4 
  arch/x86/dts/link.dts| 18 ++
  board/chromebook-x86/coreboot/Makefile   |  2 +-
  board/chromebook-x86/coreboot/coreboot.c | 16 
  drivers/misc/cros_ec_lpc.c   |  4 ++--
  include/configs/coreboot.h   | 22 ++
  include/fdtdec.h |  1 +
  lib/fdtdec.c |  1 +
  net/tftp.c   |  2 ++
  9 files changed, 59 insertions(+), 11 deletions(-)
  create mode 100644 board/chromebook-x86/coreboot/coreboot.c

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2014-10-22 Thread Simon Glass
Hi Tom,

These are the last of the x86 patches before it is converted to driver model.


The following changes since commit 35d4fed320d577a4446531d7b9350ce40065c4b0:

  x86: Fix GDT limit in start16.S (2014-10-22 09:03:07 -0600)

are available in the git repository at:

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

for you to fetch changes up to 8104f546296a8e1fc1dd6129041e22f508b314f9:

  net: Display the size when tftpboot finishes (2014-10-22 21:50:33 -0600)


Simon Glass (10):
  x86: config: Enable dhcp on link
  x86: Add device tree information for Chrome OS EC
  x86: dts: Add device tree compatible string for Intel IPC
  x86: cros_ec: Update LPC driver for new cros_ec header
  x86: cros_ec: Enable cros_ec for link
  doc: Remove note about auto-complete not working with hush
  x86: link: Tidy up the command lines options
  x86: config: link: Display the board model on the screen
  x86: Enable FIT, ELF on coreboot
  net: Display the size when tftpboot finishes

 README   |  4 
 arch/x86/dts/link.dts| 18 ++
 board/chromebook-x86/coreboot/Makefile   |  2 +-
 board/chromebook-x86/coreboot/coreboot.c | 16 
 drivers/misc/cros_ec_lpc.c   |  4 ++--
 include/configs/coreboot.h   | 22 ++
 include/fdtdec.h |  1 +
 lib/fdtdec.c |  1 +
 net/tftp.c   |  2 ++
 9 files changed, 59 insertions(+), 11 deletions(-)
 create mode 100644 board/chromebook-x86/coreboot/coreboot.c

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch misc

2014-09-23 Thread Tom Rini
On Tue, Sep 23, 2014 at 12:10:41PM +0900, Masahiro YAMADA wrote:
 2014-09-23 2:26 GMT+09:00 Simon Glass s...@chromium.org:
  Hi Masahiro,
 
  On 22 September 2014 11:13, Masahiro YAMADA yamad...@jp.panasonic.com 
  wrote:
  2014-09-23 0:33 GMT+09:00 Simon Glass s...@chromium.org:
 
  
  Jagannadha Sutradharudu Teki (1):
sandbox: Update minor documentation changes
 
 
  As I commented in
  http://patchwork.ozlabs.org/patch/384547/
  the second hunk does not make sense at all
  and not fixed yet.
 
  I did read your comment but thought it was addressed. Are you wanting
  to change this line also?
 
   The chosen vendor and board names are also 'sandbox', so there is a single
 
  Let me know what you'd like it to say, and I'll prepare a patch.
 
 
 Prior to commit 2dabac1337facbd (sandbox: set sandbox's vendor to null),
 the following statement was correct:
   The chosen vendor and board names are also 'sandbox', so there is a single
   board in board/sandbox/sandbox.
 
 
 Since commit 2dabac1337facbd:
   The board name is 'sandbox' but the vendor name is unset, so there is a 
 single
   board in board/sandbox.
 
 
 
 (Note, the board directory is specified by board/${VENDOR}/${BOARD},
 or board/${BOARD} if VENDOR is null. )

Since we're talking docs and you guys are sorting it out now, I'll grab
the current PR and then deal with another minor update after.

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch misc

2014-09-23 Thread Tom Rini
On Mon, Sep 22, 2014 at 09:33:37AM -0600, Simon Glass wrote:

 Hi Tom,
 
 Here are some minor fixes for sandbox, buildman and patman.
 
 
 The following changes since commit 9170818a4e004af7893fa0113f6e5b4afafded55:
 
   kconfiglib: change SPDX-License-Identifier to ISC (2014-09-17 21:03:18 
 -0400)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git misc
 
 for you to fetch changes up to 983a2749e2fdc459b2f44e82241a5c314ddbcdf6:
 
   patman: Add a -m option to avoid copying the maintainers (2014-09-21
 12:03:07 -0600)
 
 
 Jagannadha Sutradharudu Teki (1):
   sandbox: Update minor documentation changes
 
 Simon Glass (2):
   buildman: Fix the logic for the bloat command
   patman: Add a -m option to avoid copying the maintainers
 
  README   | 2 +-
  board/sandbox/README.sandbox | 6 +++---
  tools/buildman/control.py| 6 +++---
  tools/patman/README  | 4 ++--
  tools/patman/patman.py   | 6 +-
  tools/patman/series.py   | 7 +--
  6 files changed, 19 insertions(+), 12 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch misc

2014-09-22 Thread Masahiro YAMADA
2014-09-23 0:33 GMT+09:00 Simon Glass s...@chromium.org:

 
 Jagannadha Sutradharudu Teki (1):
   sandbox: Update minor documentation changes


As I commented in
http://patchwork.ozlabs.org/patch/384547/
the second hunk does not make sense at all
and not fixed yet.




-- 
Best Regards
Masahiro Yamada
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch misc

2014-09-22 Thread Simon Glass
Hi Masahiro,

On 22 September 2014 11:13, Masahiro YAMADA yamad...@jp.panasonic.com wrote:
 2014-09-23 0:33 GMT+09:00 Simon Glass s...@chromium.org:

 
 Jagannadha Sutradharudu Teki (1):
   sandbox: Update minor documentation changes


 As I commented in
 http://patchwork.ozlabs.org/patch/384547/
 the second hunk does not make sense at all
 and not fixed yet.

I did read your comment but thought it was addressed. Are you wanting
to change this line also?

  The chosen vendor and board names are also 'sandbox', so there is a single

Let me know what you'd like it to say, and I'll prepare a patch.

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch misc

2014-09-22 Thread Masahiro YAMADA
2014-09-23 2:26 GMT+09:00 Simon Glass s...@chromium.org:
 Hi Masahiro,

 On 22 September 2014 11:13, Masahiro YAMADA yamad...@jp.panasonic.com wrote:
 2014-09-23 0:33 GMT+09:00 Simon Glass s...@chromium.org:

 
 Jagannadha Sutradharudu Teki (1):
   sandbox: Update minor documentation changes


 As I commented in
 http://patchwork.ozlabs.org/patch/384547/
 the second hunk does not make sense at all
 and not fixed yet.

 I did read your comment but thought it was addressed. Are you wanting
 to change this line also?

  The chosen vendor and board names are also 'sandbox', so there is a single

 Let me know what you'd like it to say, and I'll prepare a patch.


Prior to commit 2dabac1337facbd (sandbox: set sandbox's vendor to null),
the following statement was correct:
  The chosen vendor and board names are also 'sandbox', so there is a single
  board in board/sandbox/sandbox.


Since commit 2dabac1337facbd:
  The board name is 'sandbox' but the vendor name is unset, so there is a single
  board in board/sandbox.



(Note, the board directory is specified by board/${VENDOR}/${BOARD},
or board/${BOARD} if VENDOR is null. )




-- 
Best Regards
Masahiro Yamada
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch misc

2014-09-22 Thread Simon Glass
Hi Tom,

Here are some minor fixes for sandbox, buildman and patman.


The following changes since commit 9170818a4e004af7893fa0113f6e5b4afafded55:

  kconfiglib: change SPDX-License-Identifier to ISC (2014-09-17 21:03:18 -0400)

are available in the git repository at:

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

for you to fetch changes up to 983a2749e2fdc459b2f44e82241a5c314ddbcdf6:

  patman: Add a -m option to avoid copying the maintainers (2014-09-21
12:03:07 -0600)


Jagannadha Sutradharudu Teki (1):
  sandbox: Update minor documentation changes

Simon Glass (2):
  buildman: Fix the logic for the bloat command
  patman: Add a -m option to avoid copying the maintainers

 README   | 2 +-
 board/sandbox/README.sandbox | 6 +++---
 tools/buildman/control.py| 6 +++---
 tools/patman/README  | 4 ++--
 tools/patman/patman.py   | 6 +-
 tools/patman/series.py   | 7 +--
 6 files changed, 19 insertions(+), 12 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch 'buildman'

2014-09-10 Thread Tom Rini
On Tue, Sep 09, 2014 at 04:52:18PM -0600, Simon Glass wrote:

 Hi Tom,
 
 Here are all the pending changes for patman/buildman. Mostly these add
 tests but there are also several fixes, some found by the tests. I
 believe it is worth applying these now, to make it easier to find
 other issues that might come up.
 
 Branch is 'buildman'.
 
 The following changes since commit 0b703dbcee7103f07804d0a4328d1593355c4324:
 
   patman: Fix detection of git version (2014-09-05 13:40:43 -0600)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to d0ea61d9caf85e4285d5c2da508db9fac70e4aba:
 
   buildman: fix typos of --dry-run help message (2014-09-09 16:48:06 -0600)
 
 
 Masahiro Yamada (1):
   buildman: fix typos of --dry-run help message
 
 Simon Glass (18):
   patman: Add a way of recording terminal output for testing
   buildman: Send builder output through a function for testing
   buildman: Enhance basic test to check summary output
   patman: RunPipe() should not pipe stdout/stderr unless asked
   buildman: Move the command line code into its own file
   buildman: Move full help code into the control module
   patman: Provide a way to intercept commands for testing
   buildman: Add a functional test
   buildman: Set up bsettings outside the control module
   buildman: Avoid looking at config file or toolchains in tests
   buildman: Allow tests to have their own boards
   buildman: Correct counting of build failures on retry
   buildman: Provide an internal option to clean the outpur dir
   patman: Start with a clean series when needed
   buildman: Add additional functional tests
   buildman: Expand output test to cover directory prefixes
   buildman: Permit branch names with an embedded '/'
   buildman: Ignore conflicting tags
 
 Thierry Reding (1):
   buildman: Create parent directories as necessary
 
 Vadim Bendebury (1):
   patman: make run results better visible
 
  tools/buildman/bsettings.py |  15 ++-
  tools/buildman/builder.py   |  60 +-
  tools/buildman/builderthread.py |  22 ++--
  tools/buildman/buildman.py  |  98 ++--
  tools/buildman/cmdline.py   |  85 ++
  tools/buildman/control.py   |  73 
  tools/buildman/func_test.py | 519
 +++
  tools/buildman/test.py  | 153 +++--
  tools/buildman/toolchain.py |   4 +-
  tools/patman/command.py |  22 
  tools/patman/gitutil.py |   8 +-
  tools/patman/patchstream.py |   6 +-
  tools/patman/patman.py  |   7 +-
  tools/patman/terminal.py|  72 
  14 files changed, 972 insertions(+), 172 deletions(-)
  create mode 100644 tools/buildman/cmdline.py
  create mode 100644 tools/buildman/func_test.py

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch 'buildman'

2014-09-09 Thread Simon Glass
Hi Tom,

Here are all the pending changes for patman/buildman. Mostly these add
tests but there are also several fixes, some found by the tests. I
believe it is worth applying these now, to make it easier to find
other issues that might come up.

Branch is 'buildman'.

The following changes since commit 0b703dbcee7103f07804d0a4328d1593355c4324:

  patman: Fix detection of git version (2014-09-05 13:40:43 -0600)

are available in the git repository at:

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

for you to fetch changes up to d0ea61d9caf85e4285d5c2da508db9fac70e4aba:

  buildman: fix typos of --dry-run help message (2014-09-09 16:48:06 -0600)


Masahiro Yamada (1):
  buildman: fix typos of --dry-run help message

Simon Glass (18):
  patman: Add a way of recording terminal output for testing
  buildman: Send builder output through a function for testing
  buildman: Enhance basic test to check summary output
  patman: RunPipe() should not pipe stdout/stderr unless asked
  buildman: Move the command line code into its own file
  buildman: Move full help code into the control module
  patman: Provide a way to intercept commands for testing
  buildman: Add a functional test
  buildman: Set up bsettings outside the control module
  buildman: Avoid looking at config file or toolchains in tests
  buildman: Allow tests to have their own boards
  buildman: Correct counting of build failures on retry
  buildman: Provide an internal option to clean the outpur dir
  patman: Start with a clean series when needed
  buildman: Add additional functional tests
  buildman: Expand output test to cover directory prefixes
  buildman: Permit branch names with an embedded '/'
  buildman: Ignore conflicting tags

Thierry Reding (1):
  buildman: Create parent directories as necessary

Vadim Bendebury (1):
  patman: make run results better visible

 tools/buildman/bsettings.py |  15 ++-
 tools/buildman/builder.py   |  60 +-
 tools/buildman/builderthread.py |  22 ++--
 tools/buildman/buildman.py  |  98 ++--
 tools/buildman/cmdline.py   |  85 ++
 tools/buildman/control.py   |  73 
 tools/buildman/func_test.py | 519
+++
 tools/buildman/test.py  | 153 +++--
 tools/buildman/toolchain.py |   4 +-
 tools/patman/command.py |  22 
 tools/patman/gitutil.py |   8 +-
 tools/patman/patchstream.py |   6 +-
 tools/patman/patman.py  |   7 +-
 tools/patman/terminal.py|  72 
 14 files changed, 972 insertions(+), 172 deletions(-)
 create mode 100644 tools/buildman/cmdline.py
 create mode 100644 tools/buildman/func_test.py

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch 'patman'

2014-09-06 Thread Tom Rini
On Fri, Sep 05, 2014 at 01:48:41PM -0600, Simon Glass wrote:

 Hi Tom,
 
 This is the rest of the initial patman/buildman series, except for the
 MAKEALL deprecation.
 
 I plan to also pull in the second buildman/patman series (with its
 fixes and new tests) for this release. There is a merge conflict with
 one of Masahiro's changes, so I will either resolve this manually, or
 resend the series.
 
 For now, here are change that I think are ready.
 
 
 The following changes since commit d6c1ffc7d23f4fe4ae8c91101861055b8e1501b6:
 
   Prepare v2014.10-rc2 (2014-09-02 16:58:29 -0400)
 
 are available in the git repository at:
 
   http://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 0b703dbcee7103f07804d0a4328d1593355c4324:
 
   patman: Fix detection of git version (2014-09-05 13:40:43 -0600)
 
 
 Simon Glass (12):
   patman: Fix indentation in terminal.py
   patman: Correct unit tests to run correctly
   patman: Remove the -a option
   patman: Use --no-pager' to stop git from forking a pager
   patman: Avoid changing the order of tags
   buildman: Set the return code to indicate build result
   buildman: Allow make-flags variables to include '-' and '_'
   buildman: Implement an option to exclude boards from the build
   buildman: Remove the directory prefix from each error line
   buildman: Add an option to show which boards caused which errors
   buildman: Separate out display of warnings and errors
   patman: Fix detection of git version
 
  tools/buildman/README   |  27 +---
  tools/buildman/board.py |  31 ++-
  tools/buildman/builder.py   | 139
 ---
  tools/buildman/builderthread.py |   4 ++-
  tools/buildman/buildman.py  |   8 -
  tools/buildman/control.py   |  20 +---
  tools/buildman/toolchain.py |   2 +-
  tools/patman/gitutil.py | 100
 +--
  tools/patman/patchstream.py |  21 -
  tools/patman/patman.py  |   7 -
  tools/patman/terminal.py| 112
 +++
  tools/patman/test.py|  13 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch 'patman'

2014-09-05 Thread Simon Glass
Hi Tom,

This is the rest of the initial patman/buildman series, except for the
MAKEALL deprecation.

I plan to also pull in the second buildman/patman series (with its
fixes and new tests) for this release. There is a merge conflict with
one of Masahiro's changes, so I will either resolve this manually, or
resend the series.

For now, here are change that I think are ready.


The following changes since commit d6c1ffc7d23f4fe4ae8c91101861055b8e1501b6:

  Prepare v2014.10-rc2 (2014-09-02 16:58:29 -0400)

are available in the git repository at:

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

for you to fetch changes up to 0b703dbcee7103f07804d0a4328d1593355c4324:

  patman: Fix detection of git version (2014-09-05 13:40:43 -0600)


Simon Glass (12):
  patman: Fix indentation in terminal.py
  patman: Correct unit tests to run correctly
  patman: Remove the -a option
  patman: Use --no-pager' to stop git from forking a pager
  patman: Avoid changing the order of tags
  buildman: Set the return code to indicate build result
  buildman: Allow make-flags variables to include '-' and '_'
  buildman: Implement an option to exclude boards from the build
  buildman: Remove the directory prefix from each error line
  buildman: Add an option to show which boards caused which errors
  buildman: Separate out display of warnings and errors
  patman: Fix detection of git version

 tools/buildman/README   |  27 +---
 tools/buildman/board.py |  31 ++-
 tools/buildman/builder.py   | 139
---
 tools/buildman/builderthread.py |   4 ++-
 tools/buildman/buildman.py  |   8 -
 tools/buildman/control.py   |  20 +---
 tools/buildman/toolchain.py |   2 +-
 tools/patman/gitutil.py | 100
+--
 tools/patman/patchstream.py |  21 -
 tools/patman/patman.py  |   7 -
 tools/patman/terminal.py| 112
+++
 tools/patman/test.py|  13 

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch patman

2014-08-28 Thread Simon Glass
Hi Tom,

This is just for one commit which fixes patman, so it should be
applied before we get to the other stuff.

(branch 'patman')


The following changes since commit 7bee1c91a94db19bd26f92cc67be35d3592c6429:

  Merge branch 'ag...@denx.de' of git://git.denx.de/u-boot-staging
(2014-08-25 08:34:39 -0400)

are available in the git repository at:

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

for you to fetch changes up to 042a732cf50568e77a20c540341fccf28ba62bcf:

  patman: Support the 'reverse' option for 'git log' (2014-08-28 07:56:19 -0700)


Simon Glass (1):
  patman: Support the 'reverse' option for 'git log'

 tools/patman/gitutil.py | 2 ++
 1 file changed, 2 insertions(+)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch patman

2014-08-28 Thread Tom Rini
On Thu, Aug 28, 2014 at 09:00:32AM -0600, Simon Glass wrote:

 Hi Tom,
 
 This is just for one commit which fixes patman, so it should be
 applied before we get to the other stuff.
 
 (branch 'patman')
 
 
 The following changes since commit 7bee1c91a94db19bd26f92cc67be35d3592c6429:
 
   Merge branch 'ag...@denx.de' of git://git.denx.de/u-boot-staging
 (2014-08-25 08:34:39 -0400)
 
 are available in the git repository at:
 
   http://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 042a732cf50568e77a20c540341fccf28ba62bcf:
 
   patman: Support the 'reverse' option for 'git log' (2014-08-28 07:56:19 
 -0700)
 
 
 Simon Glass (1):
   patman: Support the 'reverse' option for 'git log'
 
  tools/patman/gitutil.py | 2 ++
  1 file changed, 2 insertions(+)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch buildman

2014-08-13 Thread Simon Glass
The following changes since commit 5b7d0027c2463101dabf337a7cccd768fc20b85e:

  Merge branch 'master' of git://git.denx.de/u-boot-blackfin
(2014-08-12 16:54:55 -0400)

are available in the git repository at:

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

for you to fetch changes up to e49f14af1349eef94e41b636320bbfcace7403b5:

  patman: Only use git's --no-decorate when available (2014-08-13
08:34:16 -0600)


Simon Glass (15):
  buildman: Fix a few typos
  buildman: Add some notes about moving from MAKEALL
  buildman: Allow building of current source tree
  buildman: Move BuilderThread code to its own file
  buildman: Sort command line options
  buildman: Refactor output options
  buildman: Add verbose option to display errors as they happen
  buildman: Remove unused non-incremental build method code
  buildman: Add an option to specify the buildman config file
  buildman: Add a message indicating there are no errors
  buildman: Add a few more toolchain examples to the README
  buildman: Introduce an 'and' operator for board selection
  buildman: Allow selection of the number of commits to build
  patman: Move the 'git log' command into a function
  patman: Only use git's --no-decorate when available

 tools/buildman/README   | 159 +++--
 tools/buildman/board.py | 144 ---
 tools/buildman/builder.py   | 545
++--
 tools/buildman/builderthread.py | 434
+
 tools/buildman/buildman.py  |  16 ++-
 tools/buildman/control.py   | 108 ++-
 tools/buildman/test.py  |  56 +++-
 tools/patman/gitutil.py |  40 +-
 tools/patman/patchstream.py |  11 +-
 9 files changed, 947 insertions(+), 566 deletions(-)
 create mode 100644 tools/buildman/builderthread.py
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch buildman

2014-08-13 Thread Tom Rini
On Wed, Aug 13, 2014 at 08:46:48AM -0600, Simon Glass wrote:

 The following changes since commit 5b7d0027c2463101dabf337a7cccd768fc20b85e:
 
   Merge branch 'master' of git://git.denx.de/u-boot-blackfin
 (2014-08-12 16:54:55 -0400)
 
 are available in the git repository at:
 
   http://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to e49f14af1349eef94e41b636320bbfcace7403b5:

OK, the x86 and dm repositories have gotten mixed up I think with what
you've pushed:
$ git fetch git://git.denx.de/u-boot-x86.git master
$ git log --oneline origin/master..FETCH_HEAD
a193cc9 dm: Expand and improve the device lifecycle docs
8c0ce6f dm: Tidy up four minor code nits
eabbdc8 tegra: Enable driver model
bfab7d3 tegra: dts: Bring in GPIO bindings from linux
bb5d586 dm: Fix printf() strings in the 'dm' command
6a89571 dm: Allow driver model tests only for sandbox
7559956e dm: Cast away the const-ness of the global_data pointer
b40c4e4 dm: Add missing header files in lists and root
8bcde49 dm: Use case-insensitive comparison for GPIO banks
8a028ab dm: Update README to encourage conversion to driver model
e0db60d dm: Rename struct device_id to udevice_id
068dd6c Makefile: Support include files for .dts files
ff0ef4a sandbox: Support iotrace feature
83aece4 arm: Support iotrace feature
ddfccb1 Add an I/O tracing feature

Is what I see.  And it doesn't pull cleanly either :)

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch buildman

2014-08-13 Thread Simon Glass
Hi Tom,

On 13 August 2014 09:26, Tom Rini tr...@ti.com wrote:
 On Wed, Aug 13, 2014 at 08:46:48AM -0600, Simon Glass wrote:

 The following changes since commit 5b7d0027c2463101dabf337a7cccd768fc20b85e:

   Merge branch 'master' of git://git.denx.de/u-boot-blackfin
 (2014-08-12 16:54:55 -0400)

 are available in the git repository at:

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

 for you to fetch changes up to e49f14af1349eef94e41b636320bbfcace7403b5:

 OK, the x86 and dm repositories have gotten mixed up I think with what
 you've pushed:
 $ git fetch git://git.denx.de/u-boot-x86.git master
 $ git log --oneline origin/master..FETCH_HEAD
 a193cc9 dm: Expand and improve the device lifecycle docs
 8c0ce6f dm: Tidy up four minor code nits
 eabbdc8 tegra: Enable driver model
 bfab7d3 tegra: dts: Bring in GPIO bindings from linux
 bb5d586 dm: Fix printf() strings in the 'dm' command
 6a89571 dm: Allow driver model tests only for sandbox
 7559956e dm: Cast away the const-ness of the global_data pointer
 b40c4e4 dm: Add missing header files in lists and root
 8bcde49 dm: Use case-insensitive comparison for GPIO banks
 8a028ab dm: Update README to encourage conversion to driver model
 e0db60d dm: Rename struct device_id to udevice_id
 068dd6c Makefile: Support include files for .dts files
 ff0ef4a sandbox: Support iotrace feature
 83aece4 arm: Support iotrace feature
 ddfccb1 Add an I/O tracing feature

 Is what I see.  And it doesn't pull cleanly either :)

Those patches are already in mainline. Do you think that is because I
didn't update 'master' in that repo? I've done it now - can you please
retry the buildman branch?

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch buildman

2014-08-13 Thread Tom Rini
On Wed, Aug 13, 2014 at 09:31:58AM -0600, Simon Glass wrote:
 Hi Tom,
 
 On 13 August 2014 09:26, Tom Rini tr...@ti.com wrote:
  On Wed, Aug 13, 2014 at 08:46:48AM -0600, Simon Glass wrote:
 
  The following changes since commit 
  5b7d0027c2463101dabf337a7cccd768fc20b85e:
 
Merge branch 'master' of git://git.denx.de/u-boot-blackfin
  (2014-08-12 16:54:55 -0400)
 
  are available in the git repository at:
 
http://git.denx.de/u-boot-x86.git
 
  for you to fetch changes up to e49f14af1349eef94e41b636320bbfcace7403b5:
 
  OK, the x86 and dm repositories have gotten mixed up I think with what
  you've pushed:
  $ git fetch git://git.denx.de/u-boot-x86.git master
  $ git log --oneline origin/master..FETCH_HEAD
  a193cc9 dm: Expand and improve the device lifecycle docs
  8c0ce6f dm: Tidy up four minor code nits
  eabbdc8 tegra: Enable driver model
  bfab7d3 tegra: dts: Bring in GPIO bindings from linux
  bb5d586 dm: Fix printf() strings in the 'dm' command
  6a89571 dm: Allow driver model tests only for sandbox
  7559956e dm: Cast away the const-ness of the global_data pointer
  b40c4e4 dm: Add missing header files in lists and root
  8bcde49 dm: Use case-insensitive comparison for GPIO banks
  8a028ab dm: Update README to encourage conversion to driver model
  e0db60d dm: Rename struct device_id to udevice_id
  068dd6c Makefile: Support include files for .dts files
  ff0ef4a sandbox: Support iotrace feature
  83aece4 arm: Support iotrace feature
  ddfccb1 Add an I/O tracing feature
 
  Is what I see.  And it doesn't pull cleanly either :)
 
 Those patches are already in mainline. Do you think that is because I
 didn't update 'master' in that repo? I've done it now - can you please
 retry the buildman branch?

Ah, the URI didn't say 'buildman' so I guessed wrong on where to look.

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch patman

2014-07-28 Thread Tom Rini
On Mon, Jul 28, 2014 at 05:00:31AM +0100, Simon Glass wrote:

 Hi Tom,
 
 I think a few of these are ready to go in.
 
 The following changes since commit 772e173802627a1917a3f5878ad4b9b920089a33:
 
   Merge branch 'master' of git://git.denx.de/u-boot-sh (2014-07-25
 15:05:09 -0400)
 
 are available in the git repository at:
 
   http://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to ee860c60d2c5283c009f7ea740c6ee706da87cb7:
 
   patman: make No recipient checking more tolerant (2014-07-28 04:57:24 
 +0100)
 
 
 Masahiro Yamada (1):
   patman: make No recipient checking more tolerant
 
 Simon Glass (2):
   buildman: Add -C option to force a reconfigure for each commit
   buildman: Support in-tree builds
 
  tools/buildman/builder.py  | 24 +---
  tools/buildman/buildman.py |  6 ++
  tools/buildman/control.py  |  2 ++
  tools/patman/gitutil.py| 11 ---

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch patman

2014-07-27 Thread Simon Glass
Hi Tom,

I think a few of these are ready to go in.

The following changes since commit 772e173802627a1917a3f5878ad4b9b920089a33:

  Merge branch 'master' of git://git.denx.de/u-boot-sh (2014-07-25
15:05:09 -0400)

are available in the git repository at:

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

for you to fetch changes up to ee860c60d2c5283c009f7ea740c6ee706da87cb7:

  patman: make No recipient checking more tolerant (2014-07-28 04:57:24 +0100)


Masahiro Yamada (1):
  patman: make No recipient checking more tolerant

Simon Glass (2):
  buildman: Add -C option to force a reconfigure for each commit
  buildman: Support in-tree builds

 tools/buildman/builder.py  | 24 +---
 tools/buildman/buildman.py |  6 ++
 tools/buildman/control.py  |  2 ++
 tools/patman/gitutil.py| 11 ---
 4 files changed, 37 insertions(+), 6 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch tom

2014-07-07 Thread Simon Glass
Hi Tom,

I've pick up a few bugfixes for this release in case there is time to
pull these.


The following changes since commit 6ee3d00d1d9d9977e975bd72c3668ee4f210a99d:

  Merge branch 'master' of git://git.denx.de/u-boot-i2c (2014-07-07
10:10:52 -0400)

are available in the git repository at:

  x86-public/tom

for you to fetch changes up to 8708267f09fa99be8c12e103f2cbdc14a43623cc:

  buildman: fix toolchain priority_list (2014-07-07 17:22:54 -0600)


Masahiro Yamada (3):
  cosmetic: doc: update README.generic-board
  buildman: fix to display warning message for missing [toolchain] section
  buildman: fix toolchain priority_list

Simon Glass (1):
  patman: Only apply patches when we know the original HEAD

 doc/README.generic-board| 3 ++-
 tools/buildman/toolchain.py | 4 ++--
 tools/patman/gitutil.py | 4 
 3 files changed, 8 insertions(+), 3 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch tom

2014-07-07 Thread Tom Rini
On Mon, Jul 07, 2014 at 05:26:15PM -0600, Simon Glass wrote:

 Hi Tom,
 
 I've pick up a few bugfixes for this release in case there is time to
 pull these.
 
 
 The following changes since commit 6ee3d00d1d9d9977e975bd72c3668ee4f210a99d:
 
   Merge branch 'master' of git://git.denx.de/u-boot-i2c (2014-07-07
 10:10:52 -0400)
 
 are available in the git repository at:
 
   x86-public/tom
 
 for you to fetch changes up to 8708267f09fa99be8c12e103f2cbdc14a43623cc:
 
   buildman: fix toolchain priority_list (2014-07-07 17:22:54 -0600)
 
 
 Masahiro Yamada (3):
   cosmetic: doc: update README.generic-board
   buildman: fix to display warning message for missing [toolchain] section
   buildman: fix toolchain priority_list
 
 Simon Glass (1):
   patman: Only apply patches when we know the original HEAD
 
  doc/README.generic-board| 3 ++-
  tools/buildman/toolchain.py | 4 ++--
  tools/patman/gitutil.py | 4 
  3 files changed, 8 insertions(+), 3 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch sandbox

2014-06-24 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 06/23/2014 05:43 PM, Simon Glass wrote:
 Hi Tom,
 
 Here are some sandbox bug fixes and one for x86.
 
 
 The following changes since commit 038380597bc9b97378da2e18355cd7346d17b002:
 
   mpc8313: add CONFIG_SYS_GENERIC_BOARD to ids8313 board (2014-06-23
 09:11:41 -0400)
 
 are available in the git repository at:
 
   http://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 1638d98052e0d03e46d504b21ec1b88ecfcd87aa:
 
   sandbox: change local_irq_save() to macro (2014-06-23 15:37:24 -0600)
 
 
 Masahiro Yamada (1):
   sandbox: change local_irq_save() to macro
 
 Stephen Warren (2):
   sandbox: restore ability to access host fs through standard commands
   sandbox: terminate os_dirent_ls() result list
 
 Vasili Galka (1):
   x86: Enable 32-bit build using x86_64 multilib toolchain
 
  arch/sandbox/cpu/os.c |  1 +
  arch/sandbox/include/asm/bitops.h |  5 +++--
  arch/sandbox/include/asm/system.h |  5 +
  arch/x86/config.mk|  5 +++--
  arch/x86/cpu/config.mk|  2 +-
  common/cmd_sandbox.c  | 10 ++
  disk/part.c   | 19 +++
  test/command_ut.c |  8 
  test/vboot/vboot_test.sh  |  2 +-
  9 files changed, 39 insertions(+), 18 deletions(-)

Applied to u-boot/master, thanks!

- -- 
Tom
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJTqb5NAAoJENk4IS6UOR1WLbsP/0QIf3+A7pyDvFua2aD1ZmwA
/+3SL8vg1aV3/OS6OjzlMe5P5KHsCx0wrzz2RIdzPKig21fv3tDuzbGzfiJPw06P
ptUK4J4QH4j+4fQpcaA5okFs//bv95I5jejRUbgkWKyMFTf+3urPLmugYIPFS0rI
SC5BbvbJJ3D7TPGAQ1/gtXC04r5H1Q2MCTXIfRwWqt1d8/9+mBlhgzlI043PrpIZ
nzJPUSLWkQ3fBtDNt5jL5hjcGuv/U4yFdvai1PcVIDLaRbcB4N42xYHBKOrKWcKs
rsf2S6Q2Xa7ZbUWidu1mI+HJXekjNYrP1vETl0b5nxV346q8831amvTMB8cQWu0E
FMgyg6XEsmD3zChcchxsbdHHu0cRoxiWUm0Z4YKrv7KIiytysu39q7nDgPoSuIE/
4WEKeJeqjQQr0zhfvD3LCSnlH9kjCxBRnBUsazR6niQlcgVwfvxKUecqrTkK7VyT
b7fo8/emjrP8395Pxcpg+9IUQMsaLOciF7nTnUAMZlcRcOQq8EaUOvk3A6+uNdHJ
DobZdWXOw8idYXJN5noJnhuHlIozorIFH06Trqlhpg5DHpdtCX26JEagpsEbUgL2
BPsEvkwtUOjaK6UNhI23+06gF8nStBStJtNqrT7suSMO7AefoRu/8suFTi8Ysx+A
sFmM39OpX4YNaFQ6+Ksr
=0xh+
-END PGP SIGNATURE-
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch tom

2014-05-16 Thread Simon Glass
Hi Tom,

I collected these three fixes for pulling.

Regards,
Simon


The following changes since commit 2072e7262965bb48d7fffb1e283101e6ed8b21a8:

  mvtwsi: Remove unnecessary twsi_baud_rate and twsi_slave_address
globals (2014-05-14 12:59:12 +0200)

are available in the git repository at:

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

for you to fetch changes up to 6be6b6bcbac62e356d05bdde488fc9f0eef7084a:

  patman: Suppress duplicate signoffs only for real patches
(2014-05-16 11:42:29 -0700)


Masahiro Yamada (2):
  Revert sandbox: move source files from board/ to arch/sandbox/
  sandbox: set sandbox's vendor to null

Simon Glass (1):
  patman: Suppress duplicate signoffs only for real patches

 arch/sandbox/lib/Makefile | 2 +-
 board/sandbox/Makefile| 7 +++
 {doc = board/sandbox}/README.sandbox | 0
 {arch/sandbox/lib = board/sandbox}/sandbox.c | 0
 boards.cfg| 2 +-
 tools/patman/patchstream.py   | 3 ++-
 6 files changed, 11 insertions(+), 3 deletions(-)
 create mode 100644 board/sandbox/Makefile
 rename {doc = board/sandbox}/README.sandbox (100%)
 rename {arch/sandbox/lib = board/sandbox}/sandbox.c (100%)
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch tom

2014-05-16 Thread Tom Rini
On Fri, May 16, 2014 at 01:02:48PM -0600, Simon Glass wrote:

 Hi Tom,
 
 I collected these three fixes for pulling.
 
 Regards,
 Simon
 
 
 The following changes since commit 2072e7262965bb48d7fffb1e283101e6ed8b21a8:
 
   mvtwsi: Remove unnecessary twsi_baud_rate and twsi_slave_address
 globals (2014-05-14 12:59:12 +0200)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 6be6b6bcbac62e356d05bdde488fc9f0eef7084a:
 
   patman: Suppress duplicate signoffs only for real patches
 (2014-05-16 11:42:29 -0700)
 
 
 Masahiro Yamada (2):
   Revert sandbox: move source files from board/ to arch/sandbox/
   sandbox: set sandbox's vendor to null
 
 Simon Glass (1):
   patman: Suppress duplicate signoffs only for real patches
 
  arch/sandbox/lib/Makefile | 2 +-
  board/sandbox/Makefile| 7 +++
  {doc = board/sandbox}/README.sandbox | 0
  {arch/sandbox/lib = board/sandbox}/sandbox.c | 0
  boards.cfg| 2 +-
  tools/patman/patchstream.py   | 3 ++-
  6 files changed, 11 insertions(+), 3 deletions(-)
  create mode 100644 board/sandbox/Makefile
  rename {doc = board/sandbox}/README.sandbox (100%)
  rename {arch/sandbox/lib = board/sandbox}/sandbox.c (100%)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch 'tom'

2014-05-12 Thread Tom Rini
On Fri, May 09, 2014 at 04:36:01PM -0600, Simon Glass wrote:

 Hi Tom,
 
 This collects together the patches in my queue. I have taken the
 liberty of also adding 'Make 'run' use run_command_list() instead of
 run_command()' which is here:
 
 http://patchwork.ozlabs.org/patch/286250/
 
 - Simon
 
 The following changes since commit 146b468eb0203c9b1aa1de93723ffc82c85d1dc1:
 
   Merge branch 'master' of git://git.denx.de/u-boot-sparc (2014-05-09
 11:09:59 -0400)
 
 are available in the git repository at:
 
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 097c5de5f4a64d3b121dc1dbe020f7f2545dabdb:
 
   sandbox: ignore sandbox.dtb (2014-05-09 14:51:20 -0600)
 
 
 Masahiro Yamada (2):
   sandbox: move source files from board/ to arch/sandbox/
   sandbox: ignore sandbox.dtb
 
 Simon Glass (6):
   sandbox: Support 'env import' and 'env export'
   Make 'run' use run_command_list() instead of run_command()
   sandbox: Provide a build option to avoid using SDL
   sandbox: Update and expand the README
   patman: Deal with 'git apply' failures correctly
   patman: Avoid duplicate sign-offs
 
  README|  11 +++
  arch/sandbox/config.mk|   6 ++
  arch/sandbox/dts/.gitignore   |   1 +
  arch/sandbox/lib/Makefile |   2 +-
  {board/sandbox/sandbox = arch/sandbox/lib}/sandbox.c |   0
  board/sandbox/sandbox/Makefile|   7 --
  board/sandbox/sandbox/README.sandbox  |  91
 --
  boards.cfg|   2 +-
  common/cmd_nvedit.c   |  31 
  common/main.c |   2 +-
  doc/README.sandbox| 299
 ++
  include/configs/sandbox.h |  16 +++-
  tools/patman/README   |   1 +
  tools/patman/commit.py|  14 
  tools/patman/gitutil.py   |   6 +-
  tools/patman/patchstream.py   |  10 ++-
  16 files changed, 379 insertions(+), 120 deletions(-)
  create mode 100644 arch/sandbox/dts/.gitignore
  rename {board/sandbox/sandbox = arch/sandbox/lib}/sandbox.c (100%)
  delete mode 100644 board/sandbox/sandbox/Makefile
  delete mode 100644 board/sandbox/sandbox/README.sandbox
  create mode 100644 doc/README.sandbox

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git branch 'tom'

2014-05-09 Thread Simon Glass
Hi Tom,

This collects together the patches in my queue. I have taken the
liberty of also adding 'Make 'run' use run_command_list() instead of
run_command()' which is here:

http://patchwork.ozlabs.org/patch/286250/

- Simon

The following changes since commit 146b468eb0203c9b1aa1de93723ffc82c85d1dc1:

  Merge branch 'master' of git://git.denx.de/u-boot-sparc (2014-05-09
11:09:59 -0400)

are available in the git repository at:


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

for you to fetch changes up to 097c5de5f4a64d3b121dc1dbe020f7f2545dabdb:

  sandbox: ignore sandbox.dtb (2014-05-09 14:51:20 -0600)


Masahiro Yamada (2):
  sandbox: move source files from board/ to arch/sandbox/
  sandbox: ignore sandbox.dtb

Simon Glass (6):
  sandbox: Support 'env import' and 'env export'
  Make 'run' use run_command_list() instead of run_command()
  sandbox: Provide a build option to avoid using SDL
  sandbox: Update and expand the README
  patman: Deal with 'git apply' failures correctly
  patman: Avoid duplicate sign-offs

 README|  11 +++
 arch/sandbox/config.mk|   6 ++
 arch/sandbox/dts/.gitignore   |   1 +
 arch/sandbox/lib/Makefile |   2 +-
 {board/sandbox/sandbox = arch/sandbox/lib}/sandbox.c |   0
 board/sandbox/sandbox/Makefile|   7 --
 board/sandbox/sandbox/README.sandbox  |  91
--
 boards.cfg|   2 +-
 common/cmd_nvedit.c   |  31 
 common/main.c |   2 +-
 doc/README.sandbox| 299
++
 include/configs/sandbox.h |  16 +++-
 tools/patman/README   |   1 +
 tools/patman/commit.py|  14 
 tools/patman/gitutil.py   |   6 +-
 tools/patman/patchstream.py   |  10 ++-
 16 files changed, 379 insertions(+), 120 deletions(-)
 create mode 100644 arch/sandbox/dts/.gitignore
 rename {board/sandbox/sandbox = arch/sandbox/lib}/sandbox.c (100%)
 delete mode 100644 board/sandbox/sandbox/Makefile
 delete mode 100644 board/sandbox/sandbox/README.sandbox
 create mode 100644 doc/README.sandbox
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git misc

2014-03-28 Thread Tom Rini
On Sat, Mar 22, 2014 at 04:31:19PM -0700, Simon Glass wrote:

 Hi Tom,
 
 Here are a few more things from my patchwork queue. I have tested with 
 buildman.
 
 
 
 The following changes since commit 2c072c958bb544c72f0e848375803dbd6971f022:
 
   sandbox: config: Enable cros_ec emulation and related items
 (2014-03-17 20:05:50 -0600)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git
 
 for you to fetch changes up to 659c89da8e48d44395120aeb2dd0d02d3fb24b67:
 
   patman: Use Patch-cc: instead of Cc: (2014-03-22 14:47:30 -0600)
 
 
 Patrice Bouchand (2):
   Add lzmadec command
   sandbox: Enable CONFIG_CMD_LZMADEC in sandbox.h
 
 Simon Glass (1):
   patman: Use Patch-cc: instead of Cc:
 
  common/Makefile |  3 +++
  common/cmd_lzmadec.c| 52
 
  include/configs/sandbox.h   |  2 ++
  tools/patman/README | 21 -
  tools/patman/patchstream.py |  4 ++--
  5 files changed, 71 insertions(+), 11 deletions(-)
  create mode 100644 common/cmd_lzmadec.c

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Please pull u-boot-x86.git misc

2014-03-22 Thread Simon Glass
Hi Tom,

Here are a few more things from my patchwork queue. I have tested with buildman.



The following changes since commit 2c072c958bb544c72f0e848375803dbd6971f022:

  sandbox: config: Enable cros_ec emulation and related items
(2014-03-17 20:05:50 -0600)

are available in the git repository at:

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

for you to fetch changes up to 659c89da8e48d44395120aeb2dd0d02d3fb24b67:

  patman: Use Patch-cc: instead of Cc: (2014-03-22 14:47:30 -0600)


Patrice Bouchand (2):
  Add lzmadec command
  sandbox: Enable CONFIG_CMD_LZMADEC in sandbox.h

Simon Glass (1):
  patman: Use Patch-cc: instead of Cc:

 common/Makefile |  3 +++
 common/cmd_lzmadec.c| 52

 include/configs/sandbox.h   |  2 ++
 tools/patman/README | 21 -
 tools/patman/patchstream.py |  4 ++--
 5 files changed, 71 insertions(+), 11 deletions(-)
 create mode 100644 common/cmd_lzmadec.c

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git branch sandbox

2014-03-21 Thread Tom Rini
On Mon, Mar 17, 2014 at 08:15:54PM -0600, Simon Glass wrote:

 Hi Tom,
 
 This collects up all the remaining sandbox changes to get the
 LCD/keyboard emulation running in U-Boot. Most of this was submitted
 for the last release but I had to hold back because the LCD was
 enabled by default - I think it is better to have it disabled by
 default as mentioned at the time.
 
 buildman shows no new problems, although unfortunately between me
 running it and now, mainline is updated. So I'll start a new run now
 and advise tomorrow if anything comes to light.
 
 If it doesn't suit to pick these up now, let me know and I can re-issue later.
 
 
 
 The following changes since commit bf64035a159f114d0fb93391acb7f5e73eb020e6:
 
   mtd: spi: Fix page size for S25FL032P,S25FL064P (2014-03-17 21:54:57 +0530)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git sandbox
 
 for you to fetch changes up to 2c072c958bb544c72f0e848375803dbd6971f022:
 
   sandbox: config: Enable cros_ec emulation and related items
 (2014-03-17 20:05:50 -0600)
 
 
 Randall Spangler (2):
   cros_ec: Clean up multiple EC protocol support
   cros_ec: spi: Add support for EC protocol version 3
 
 Simon Glass (26):
   Use a const pointer for map_to_sysmem()
   sandbox: Increase memory size to 32MB
   sandbox: Use os functions to read host device tree
   sandbox: dts: Add display and keyboard to sandbox
   cros_ec: Add an enum for the number of flash regions
   cros_ec: Add a function for reading a flash map entry
   cros_ec: Add a function for decoding the Chrome OS EC flashmap
   cros_ec: Support systems with no EC interrupt
   cros_ec: Move #ifdef to permit flash region access
   cros_ec: Sync up with latest Chrome OS EC version
   cros_ec: Add base support for protocol v3
   cros_ec: Correct comparison between signed and unsigned numbers
   cros_ec: sandbox: Add Chrome OS EC emulation
   sandbox: Plumb in Chrome OS EC emulation
   cros_ec: Implement I2C pass-through
   sandbox: Add os_jump_to_image() to run another executable
   sandbox: Add -j option to indicate a jump from a previous U-Boot
   sandbox: Add SDL library for LCD, keyboard, audio
   sandbox: Add a simple sound driver
   sandbox: Add LCD driver
   sound: Move Samsung-specific code into its own file
   sandbox: Deal with conflicting getenv() for SDL
   sandbox: Allow Ctrl-C to work in sandbox
   sandbox: Add options to clean up temporary files
   sandbox: Add implementation of spi_setup_slave_fdt()
   sandbox: config: Enable cros_ec emulation and related items
 
 Vadim Bendebury (2):
   cros_ec: Move EC interface into common library
   cros_ec: Drop old EC version support from EC driver
 
  arch/sandbox/config.mk|   5 +
  arch/sandbox/cpu/Makefile |   3 +
  arch/sandbox/cpu/cpu.c|   2 +-
  arch/sandbox/cpu/os.c | 103 +++-
  arch/sandbox/cpu/sdl.c| 341 
  arch/sandbox/cpu/start.c  |  60 +
  arch/sandbox/cpu/state.c  |   6 +-
  arch/sandbox/dts/sandbox.dts  |  96 +++
  arch/sandbox/include/asm/arch-sandbox/sound.h |  14 +
  arch/sandbox/include/asm/sdl.h| 118 +
  arch/sandbox/include/asm/state.h  |  29 ++-
  arch/sandbox/include/asm/u-boot-sandbox.h |   3 +
  board/samsung/common/board.c  |  29 +--
  board/samsung/smdk5250/exynos5-dt.c   |   1 -
  board/sandbox/sandbox/sandbox.c   |  48 
  common/Makefile   |   1 +
  common/board_f.c  |  48 ++--
  common/cros_ec.c  |  44 
  common/lcd.c  |  21 +-
  disk/part.c   |  17 --
  doc/device-tree-bindings/video/sandbox-fb.txt |  13 +
  drivers/input/cros_ec_keyb.c  |  34 ++-
  drivers/misc/Makefile |   1 +
  drivers/misc/cros_ec.c| 611
 
  drivers/misc/cros_ec_i2c.c|  64 ++---
  drivers/misc/cros_ec_lpc.c|  80 +-
  drivers/misc/cros_ec_sandbox.c| 559
 
  drivers/misc/cros_ec_spi.c|  30 +++
  drivers/serial/sandbox.c  |  10 +-
  drivers/sound/Makefile|   4 +-
  drivers/sound/sandbox.c   |  23 ++
  drivers/sound/sound-i2s.c | 208 +++
  drivers/sound/sound.c | 221 +---
  drivers/spi/sandbox_spi.c |  13 +
  drivers/video/Makefile  

[U-Boot] Please pull u-boot-x86.git branch sandbox

2014-03-17 Thread Simon Glass
Hi Tom,

This collects up all the remaining sandbox changes to get the
LCD/keyboard emulation running in U-Boot. Most of this was submitted
for the last release but I had to hold back because the LCD was
enabled by default - I think it is better to have it disabled by
default as mentioned at the time.

buildman shows no new problems, although unfortunately between me
running it and now, mainline is updated. So I'll start a new run now
and advise tomorrow if anything comes to light.

If it doesn't suit to pick these up now, let me know and I can re-issue later.



The following changes since commit bf64035a159f114d0fb93391acb7f5e73eb020e6:

  mtd: spi: Fix page size for S25FL032P,S25FL064P (2014-03-17 21:54:57 +0530)

are available in the git repository at:

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

for you to fetch changes up to 2c072c958bb544c72f0e848375803dbd6971f022:

  sandbox: config: Enable cros_ec emulation and related items
(2014-03-17 20:05:50 -0600)


Randall Spangler (2):
  cros_ec: Clean up multiple EC protocol support
  cros_ec: spi: Add support for EC protocol version 3

Simon Glass (26):
  Use a const pointer for map_to_sysmem()
  sandbox: Increase memory size to 32MB
  sandbox: Use os functions to read host device tree
  sandbox: dts: Add display and keyboard to sandbox
  cros_ec: Add an enum for the number of flash regions
  cros_ec: Add a function for reading a flash map entry
  cros_ec: Add a function for decoding the Chrome OS EC flashmap
  cros_ec: Support systems with no EC interrupt
  cros_ec: Move #ifdef to permit flash region access
  cros_ec: Sync up with latest Chrome OS EC version
  cros_ec: Add base support for protocol v3
  cros_ec: Correct comparison between signed and unsigned numbers
  cros_ec: sandbox: Add Chrome OS EC emulation
  sandbox: Plumb in Chrome OS EC emulation
  cros_ec: Implement I2C pass-through
  sandbox: Add os_jump_to_image() to run another executable
  sandbox: Add -j option to indicate a jump from a previous U-Boot
  sandbox: Add SDL library for LCD, keyboard, audio
  sandbox: Add a simple sound driver
  sandbox: Add LCD driver
  sound: Move Samsung-specific code into its own file
  sandbox: Deal with conflicting getenv() for SDL
  sandbox: Allow Ctrl-C to work in sandbox
  sandbox: Add options to clean up temporary files
  sandbox: Add implementation of spi_setup_slave_fdt()
  sandbox: config: Enable cros_ec emulation and related items

Vadim Bendebury (2):
  cros_ec: Move EC interface into common library
  cros_ec: Drop old EC version support from EC driver

 arch/sandbox/config.mk|   5 +
 arch/sandbox/cpu/Makefile |   3 +
 arch/sandbox/cpu/cpu.c|   2 +-
 arch/sandbox/cpu/os.c | 103 +++-
 arch/sandbox/cpu/sdl.c| 341 
 arch/sandbox/cpu/start.c  |  60 +
 arch/sandbox/cpu/state.c  |   6 +-
 arch/sandbox/dts/sandbox.dts  |  96 +++
 arch/sandbox/include/asm/arch-sandbox/sound.h |  14 +
 arch/sandbox/include/asm/sdl.h| 118 +
 arch/sandbox/include/asm/state.h  |  29 ++-
 arch/sandbox/include/asm/u-boot-sandbox.h |   3 +
 board/samsung/common/board.c  |  29 +--
 board/samsung/smdk5250/exynos5-dt.c   |   1 -
 board/sandbox/sandbox/sandbox.c   |  48 
 common/Makefile   |   1 +
 common/board_f.c  |  48 ++--
 common/cros_ec.c  |  44 
 common/lcd.c  |  21 +-
 disk/part.c   |  17 --
 doc/device-tree-bindings/video/sandbox-fb.txt |  13 +
 drivers/input/cros_ec_keyb.c  |  34 ++-
 drivers/misc/Makefile |   1 +
 drivers/misc/cros_ec.c| 611

 drivers/misc/cros_ec_i2c.c|  64 ++---
 drivers/misc/cros_ec_lpc.c|  80 +-
 drivers/misc/cros_ec_sandbox.c| 559

 drivers/misc/cros_ec_spi.c|  30 +++
 drivers/serial/sandbox.c  |  10 +-
 drivers/sound/Makefile|   4 +-
 drivers/sound/sandbox.c   |  23 ++
 drivers/sound/sound-i2s.c | 208 +++
 drivers/sound/sound.c | 221 +---
 drivers/spi/sandbox_spi.c |  13 +
 drivers/video/Makefile|   1 +
 drivers/video/sandbox_sdl.c   |  79 ++
 include/common.h  |   6 +
 

Re: [U-Boot] Please pull u-boot-x86.git branch sandbox2

2014-01-10 Thread Tom Rini
On Wed, Jan 08, 2014 at 07:28:12PM -0700, Simon Glass wrote:

 Hi Tom,
 
 These are the first half of the sandbox enhancements. The second half
 may not make it before the release as I have found a few grey areas I
 want to check.
 
 
 ./tools/buildman/buildman -b x86-push -s
 Summary of 14 commits for 1195 boards (32 threads, 1 job per thread)
 01: Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
   blackfin: +   bf561-acvilon cm-bf561 blackstamp br4 bct-brettl2
 cm-bf527 dnp5370 bf506f-ezkit ip04 bf527-sdp bf609-ezkit bf537-stamp
 bf527-ezkit-v2 cm-bf537e tcm-bf518 cm-bf537u bf537-pnav cm-bf533 pr1
 bf533-ezkit ibf-dsp561 bf537-srv1 cm-bf548 bf537-minotaur bf538f-ezkit
 bf548-ezkit bf525-ucr2 blackvme bf527-ezkit tcm-bf537 bf533-stamp
 bf518f-ezbrd bf527-ad7160-eval bf526-ezbrd bf561-ezkit
   m68k: +   M54455EVB_a66 M5329AFEE M5249EVB idmr M5208EVBE
 eb_cpu5282 M5475FFE M54451EVB astro_mcf5373l M54418TWR_serial_rmii
 M54455EVB_intel M5282EVB M54455EVB_i66 M5475GFE M5253DEMO
 M54455EVB_stm33 M5485BFE M5485DFE TASREG M5329BFEE M52277EVB M5475EFE
 M5475CFE cobra5272 M5485AFE M53017EVB M5485HFE M5235EVB M5253EVBE
 M54418TWR_nand_mii M54418TWR_nand_rmii_lowfreq M5475BFE M5475DFE
 M5275EVB M52277EVB_stmicro eb_cpu5282_internal M54451EVB_stmicro
 M5271EVB M5485GFE M5373EVB M5485EFE M5485FFE M54418TWR
 M5235EVB_Flash32 M54418TWR_nand_rmii M54418TWR_serial_mii M5485CFE
 M54455EVB M5475AFE M5272C3
powerpc: +   MVBLM7 MVSMR
  sparc: +   grsim grsim_leon2 gr_cpci_ax2000 gr_xc3s_1500 gr_ep2s60
 sh: +   rsk7269 rsk7264 rsk7203
 microblaze: +   microblaze-generic
   openrisc: +   openrisc-generic
arm: +   nitrogen6dl2g palmtc zipitz2 omap3_zoom2 mx6slevk
 nitrogen6s nitrogen6q wandboard_solo mini2440 titanium nitrogen6q2g
 wandboard_dl wandboard_quad mx6dlsabresd nitrogen6dl mx6qarm2
 mx6qsabrelite mx6qsabresd mx6qsabreauto udoo_quad cam_enc_4xx
 nitrogen6s1g scb9328 cgtqmx6qeval balloon3 palmld mx1ads
 02: Add crc8 routine
 03: sandbox: block driver using host file/device as backing store
 04: sandbox: Improve/augment memory allocation functions
 05: sandbox: Correct help message arg garbling
 06: sandbox: Allow return from board_init_f()
 07: sandbox: Implement the bootm command for sandbox
 08: sandbox: Allow the console to work earlier
 09: sandbox: Add -i option to enter interactive mode
 10: sandbox: Allow reading/writing of RAM buffer
 11: sandbox: Add facility to save/restore sandbox state
 12: sandbox: tpm: Add TPM emulation
 13: sandbox: Add a prototype for cleanup_before_linux()
 14: sandbox: tpm: Fix nvwrite command
 
 
 
 The following changes since commit e7be18225fbea76d1f0034b224f0d1e60f07cfcf:
 
   Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
 (2014-01-06 14:07:08 -0500)
 
 are available in the git repository at:
 
 
   ssh://gu-...@git.denx.de/u-boot-x86.git sandbox2
 
 for you to fetch changes up to 2c30af8f1861f09f217097460bfbea5ea691f8b8:
 
   sandbox: tpm: Fix nvwrite command (2014-01-08 17:26:17 -0700)
 
 
 Che-Liang Chiou (1):
   sandbox: tpm: Fix nvwrite command
 
 Henrik Nordström (1):
   sandbox: block driver using host file/device as backing store
 
 Simon Glass (11):
   Add crc8 routine
   sandbox: Improve/augment memory allocation functions
   sandbox: Correct help message arg garbling
   sandbox: Allow return from board_init_f()
   sandbox: Implement the bootm command for sandbox
   sandbox: Allow the console to work earlier
   sandbox: Add -i option to enter interactive mode
   sandbox: Allow reading/writing of RAM buffer
   sandbox: Add facility to save/restore sandbox state
   sandbox: tpm: Add TPM emulation
   sandbox: Add a prototype for cleanup_before_linux()
 
  arch/sandbox/cpu/cpu.c|  21 +++-
  arch/sandbox/cpu/os.c |  95 +-
  arch/sandbox/cpu/start.c  |  96 +++---
  arch/sandbox/cpu/state.c  | 353
 ++
  arch/sandbox/include/asm/global_data.h|   2 +-
  arch/sandbox/include/asm/state.h  | 128 
  arch/sandbox/include/asm/u-boot-sandbox.h |   2 +
  common/board_f.c  |  15 ++-
  common/cmd_sandbox.c  |  64 
  common/console.c  |  16 ++-
  disk/part.c   |   6 ++
  drivers/block/Makefile|   1 +
  drivers/block/sandbox.c   | 124 +++
  drivers/tpm/Makefile  |   1 +
  drivers/tpm/tpm_tis_sandbox.c | 260
 
  include/config_fallbacks.h|   3 +-
  include/configs/sandbox.h |   5 +
  include/linux/crc8.h  |  23 +
  include/os.h 

[U-Boot] Please pull u-boot-x86.git branch sandbox2

2014-01-08 Thread Simon Glass
Hi Tom,

These are the first half of the sandbox enhancements. The second half
may not make it before the release as I have found a few grey areas I
want to check.


./tools/buildman/buildman -b x86-push -s
Summary of 14 commits for 1195 boards (32 threads, 1 job per thread)
01: Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
  blackfin: +   bf561-acvilon cm-bf561 blackstamp br4 bct-brettl2
cm-bf527 dnp5370 bf506f-ezkit ip04 bf527-sdp bf609-ezkit bf537-stamp
bf527-ezkit-v2 cm-bf537e tcm-bf518 cm-bf537u bf537-pnav cm-bf533 pr1
bf533-ezkit ibf-dsp561 bf537-srv1 cm-bf548 bf537-minotaur bf538f-ezkit
bf548-ezkit bf525-ucr2 blackvme bf527-ezkit tcm-bf537 bf533-stamp
bf518f-ezbrd bf527-ad7160-eval bf526-ezbrd bf561-ezkit
  m68k: +   M54455EVB_a66 M5329AFEE M5249EVB idmr M5208EVBE
eb_cpu5282 M5475FFE M54451EVB astro_mcf5373l M54418TWR_serial_rmii
M54455EVB_intel M5282EVB M54455EVB_i66 M5475GFE M5253DEMO
M54455EVB_stm33 M5485BFE M5485DFE TASREG M5329BFEE M52277EVB M5475EFE
M5475CFE cobra5272 M5485AFE M53017EVB M5485HFE M5235EVB M5253EVBE
M54418TWR_nand_mii M54418TWR_nand_rmii_lowfreq M5475BFE M5475DFE
M5275EVB M52277EVB_stmicro eb_cpu5282_internal M54451EVB_stmicro
M5271EVB M5485GFE M5373EVB M5485EFE M5485FFE M54418TWR
M5235EVB_Flash32 M54418TWR_nand_rmii M54418TWR_serial_mii M5485CFE
M54455EVB M5475AFE M5272C3
   powerpc: +   MVBLM7 MVSMR
 sparc: +   grsim grsim_leon2 gr_cpci_ax2000 gr_xc3s_1500 gr_ep2s60
sh: +   rsk7269 rsk7264 rsk7203
microblaze: +   microblaze-generic
  openrisc: +   openrisc-generic
   arm: +   nitrogen6dl2g palmtc zipitz2 omap3_zoom2 mx6slevk
nitrogen6s nitrogen6q wandboard_solo mini2440 titanium nitrogen6q2g
wandboard_dl wandboard_quad mx6dlsabresd nitrogen6dl mx6qarm2
mx6qsabrelite mx6qsabresd mx6qsabreauto udoo_quad cam_enc_4xx
nitrogen6s1g scb9328 cgtqmx6qeval balloon3 palmld mx1ads
02: Add crc8 routine
03: sandbox: block driver using host file/device as backing store
04: sandbox: Improve/augment memory allocation functions
05: sandbox: Correct help message arg garbling
06: sandbox: Allow return from board_init_f()
07: sandbox: Implement the bootm command for sandbox
08: sandbox: Allow the console to work earlier
09: sandbox: Add -i option to enter interactive mode
10: sandbox: Allow reading/writing of RAM buffer
11: sandbox: Add facility to save/restore sandbox state
12: sandbox: tpm: Add TPM emulation
13: sandbox: Add a prototype for cleanup_before_linux()
14: sandbox: tpm: Fix nvwrite command



The following changes since commit e7be18225fbea76d1f0034b224f0d1e60f07cfcf:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
(2014-01-06 14:07:08 -0500)

are available in the git repository at:


  ssh://gu-...@git.denx.de/u-boot-x86.git sandbox2

for you to fetch changes up to 2c30af8f1861f09f217097460bfbea5ea691f8b8:

  sandbox: tpm: Fix nvwrite command (2014-01-08 17:26:17 -0700)


Che-Liang Chiou (1):
  sandbox: tpm: Fix nvwrite command

Henrik Nordström (1):
  sandbox: block driver using host file/device as backing store

Simon Glass (11):
  Add crc8 routine
  sandbox: Improve/augment memory allocation functions
  sandbox: Correct help message arg garbling
  sandbox: Allow return from board_init_f()
  sandbox: Implement the bootm command for sandbox
  sandbox: Allow the console to work earlier
  sandbox: Add -i option to enter interactive mode
  sandbox: Allow reading/writing of RAM buffer
  sandbox: Add facility to save/restore sandbox state
  sandbox: tpm: Add TPM emulation
  sandbox: Add a prototype for cleanup_before_linux()

 arch/sandbox/cpu/cpu.c|  21 +++-
 arch/sandbox/cpu/os.c |  95 +-
 arch/sandbox/cpu/start.c  |  96 +++---
 arch/sandbox/cpu/state.c  | 353
++
 arch/sandbox/include/asm/global_data.h|   2 +-
 arch/sandbox/include/asm/state.h  | 128 
 arch/sandbox/include/asm/u-boot-sandbox.h |   2 +
 common/board_f.c  |  15 ++-
 common/cmd_sandbox.c  |  64 
 common/console.c  |  16 ++-
 disk/part.c   |   6 ++
 drivers/block/Makefile|   1 +
 drivers/block/sandbox.c   | 124 +++
 drivers/tpm/Makefile  |   1 +
 drivers/tpm/tpm_tis_sandbox.c | 260

 include/config_fallbacks.h|   3 +-
 include/configs/sandbox.h |   5 +
 include/linux/crc8.h  |  23 +
 include/os.h  |  65 
 include/part.h|   5 +
 include/sandboxblockdev.h |  18 
 lib/Makefile   

Re: [U-Boot] Please pull u-boot-x86.git

2013-12-11 Thread Tom Rini
On Mon, Dec 09, 2013 at 01:27:38PM -0700, Simon Glass wrote:

 Hi Tom,
 
 Here is the sandbox SPI interface code. Buildman is clean:
 
 $ ./tools/buildman/buildman -b x86-push -s
 Summary of 7 commits for 1187 boards (32 threads, 1 job per thread)
 01: Merge branch 'serial' of git://git.denx.de/u-boot-microblaze
   blackfin: +   bf561-acvilon cm-bf561 blackstamp br4 bct-brettl2
 cm-bf527 dnp5370 bf506f-ezkit ip04 bf527-sdp bf609-ezkit bf537-stamp
 bf527-ezkit-v2 cm-bf537e tcm-bf518 cm-bf537u bf537-pnav cm-bf533 pr1
 bf533-ezkit ibf-dsp561 bf537-srv1 cm-bf548 bf537-minotaur bf538f-ezkit
 bf548-ezkit bf525-ucr2 blackvme bf527-ezkit tcm-bf537 bf533-stamp
 bf518f-ezbrd bf527-ad7160-eval bf526-ezbrd bf561-ezkit
   m68k: +   M54455EVB_a66 M5329AFEE M5249EVB idmr M5208EVBE
 eb_cpu5282 M5475FFE M54451EVB astro_mcf5373l M54418TWR_serial_rmii
 M54455EVB_intel M5282EVB M54455EVB_i66 M5475GFE M5253DEMO
 M54455EVB_stm33 M5485BFE M5485DFE TASREG M5329BFEE M52277EVB M5475EFE
 M5475CFE cobra5272 M5485AFE M53017EVB M5485HFE M5235EVB M5253EVBE
 M54418TWR_nand_mii M54418TWR_nand_rmii_lowfreq M5475BFE M5475DFE
 M5275EVB M52277EVB_stmicro eb_cpu5282_internal M54451EVB_stmicro
 M5271EVB M5485GFE M5485EFE M5485FFE M54418TWR M5235EVB_Flash32
 M5373EVB M54418TWR_nand_rmii M54418TWR_serial_mii M5485CFE M54455EVB
 M5475AFE M5272C3
powerpc: +   T2080QDS_SPIFLASH T2080QDS MVBLM7 T2080QDS_SDCARD
 linkstation_HGLAN T2080QDS_NAND MVSMR lcd4_lwmon5
  sparc: +   grsim grsim_leon2 gr_cpci_ax2000 gr_xc3s_1500 gr_ep2s60
 sh: +   rsk7269 rsk7264 rsk7203
 microblaze: +   microblaze-generic
   openrisc: +   openrisc-generic
arm: +   pm9g45 qong nitrogen6dl2g palmtc zipitz2 omap3_zoom2
 omap3_zoom1 omap3_overo goflexhome mx6slevk nitrogen6s nitrogen6q
 wandboard_solo davinci_sonata VCMA9 mini2440 omap730p2_cs3boot
 iconnect km_kirkwood_pci titanium ib62x0 lubbock ethernut5 zynq_dcc
 vpac270_nor_128 nitrogen6q2g colibri_pxa270 sheevaplug kzm9g
 wandboard_dl wandboard_quad am3517_crane mx6dlsabresd zynq
 tnetv107x_evm xaeniax devkit8000 nitrogen6dl mx6qarm2 magnesium
 mx6qsabrelite mx6qsabresd palmtreo680 kmsuv31 polaris omap3_sdp3430
 imx27lite mgcoge3un mx6qsabreauto vpac270_nor_256 pxa255_idp udoo_quad
 kmnusa omap730p2_cs0boot kmcoge5un am3517_evm nhk8815_onenand
 openrd_client omap730p2 openrd_base nhk8815 km_kirkwood dns325 mcx
 lp8x4x vpac270_ond_256 smdk2410 cam_enc_4xx h2200 nitrogen6s1g scb9328
 jornada cgtqmx6qeval balloon3 omap3_evm omap3_logic dockstar portl2
 palmld openrd_ultimate trizepsiv pogo_e02 pm9263 mx1ads
 02: sandbox: Rename sb_cmdline_option to sandbox_cmdline_option
 03: spi_flash: Add spi_flash_probe_fdt() to locate SPI by FDT node
 04: spi: Add device tree binding for SPI bus
 05: sandbox: spi: Add SPI emulation bus
 06: sandbox: spi: Add new SPI flash driver
 07: sandbox: spi: Enable new spi/sf layers
 
 
 The following changes since commit f44483b57c49282299da0e5c10073b909cdad979:
 
   Merge branch 'serial' of git://git.denx.de/u-boot-microblaze
 (2013-12-02 08:48:02 -0500)
 
 are available in the git repository at:
 
 
   ssh://gu-...@git.denx.de/u-boot-x86.git spi
 
 for you to fetch changes up to ca9a501953ce945da8e76d86a0ddf070a7f729b8:
 
   sandbox: spi: Enable new spi/sf layers (2013-12-09 12:22:42 -0700)
 
 
 Mike Frysinger (3):
   sandbox: spi: Add SPI emulation bus
   sandbox: spi: Add new SPI flash driver
   sandbox: spi: Enable new spi/sf layers
 
 Simon Glass (3):
   sandbox: Rename sb_cmdline_option to sandbox_cmdline_option
   spi_flash: Add spi_flash_probe_fdt() to locate SPI by FDT node
   spi: Add device tree binding for SPI bus
 
  arch/sandbox/cpu/os.c|   2 +-
  arch/sandbox/cpu/start.c |  17 +-
  arch/sandbox/include/asm/config.h|   8 +
  arch/sandbox/include/asm/getopt.h|  23 +-
  arch/sandbox/include/asm/sections.h  |   4 +-
  arch/sandbox/include/asm/spi.h   |  58 
  arch/sandbox/include/asm/state.h |   9 +
  board/sandbox/sandbox/README.sandbox |  54 
  doc/SPI/README.sandbox-spi   |  64 
  doc/device-tree-bindings/spi/spi-bus.txt |  92 ++
  drivers/misc/cros_ec_spi.c   |   3 +-
  drivers/mtd/spi/Makefile |   1 +
  drivers/mtd/spi/sandbox.c| 483 
 +++
  drivers/mtd/spi/sf_internal.h|   1 +
  drivers/mtd/spi/sf_probe.c   |  28 +-
  drivers/spi/Makefile |   1 +
  drivers/spi/exynos_spi.c |  10 +-
  drivers/spi/sandbox_spi.c| 204 +
  drivers/spi/spi.c|  19 ++
  include/configs/exynos5250-dt.h  |   1 +
  include/configs/sandbox.h|  10 +
  include/spi.h|  23 +-
  include/spi_flash.h  |  13 +
  23 files changed, 1088 insertions(+), 

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

2013-12-09 Thread Simon Glass
Hi Tom,

Here is the sandbox SPI interface code. Buildman is clean:

$ ./tools/buildman/buildman -b x86-push -s
Summary of 7 commits for 1187 boards (32 threads, 1 job per thread)
01: Merge branch 'serial' of git://git.denx.de/u-boot-microblaze
  blackfin: +   bf561-acvilon cm-bf561 blackstamp br4 bct-brettl2
cm-bf527 dnp5370 bf506f-ezkit ip04 bf527-sdp bf609-ezkit bf537-stamp
bf527-ezkit-v2 cm-bf537e tcm-bf518 cm-bf537u bf537-pnav cm-bf533 pr1
bf533-ezkit ibf-dsp561 bf537-srv1 cm-bf548 bf537-minotaur bf538f-ezkit
bf548-ezkit bf525-ucr2 blackvme bf527-ezkit tcm-bf537 bf533-stamp
bf518f-ezbrd bf527-ad7160-eval bf526-ezbrd bf561-ezkit
  m68k: +   M54455EVB_a66 M5329AFEE M5249EVB idmr M5208EVBE
eb_cpu5282 M5475FFE M54451EVB astro_mcf5373l M54418TWR_serial_rmii
M54455EVB_intel M5282EVB M54455EVB_i66 M5475GFE M5253DEMO
M54455EVB_stm33 M5485BFE M5485DFE TASREG M5329BFEE M52277EVB M5475EFE
M5475CFE cobra5272 M5485AFE M53017EVB M5485HFE M5235EVB M5253EVBE
M54418TWR_nand_mii M54418TWR_nand_rmii_lowfreq M5475BFE M5475DFE
M5275EVB M52277EVB_stmicro eb_cpu5282_internal M54451EVB_stmicro
M5271EVB M5485GFE M5485EFE M5485FFE M54418TWR M5235EVB_Flash32
M5373EVB M54418TWR_nand_rmii M54418TWR_serial_mii M5485CFE M54455EVB
M5475AFE M5272C3
   powerpc: +   T2080QDS_SPIFLASH T2080QDS MVBLM7 T2080QDS_SDCARD
linkstation_HGLAN T2080QDS_NAND MVSMR lcd4_lwmon5
 sparc: +   grsim grsim_leon2 gr_cpci_ax2000 gr_xc3s_1500 gr_ep2s60
sh: +   rsk7269 rsk7264 rsk7203
microblaze: +   microblaze-generic
  openrisc: +   openrisc-generic
   arm: +   pm9g45 qong nitrogen6dl2g palmtc zipitz2 omap3_zoom2
omap3_zoom1 omap3_overo goflexhome mx6slevk nitrogen6s nitrogen6q
wandboard_solo davinci_sonata VCMA9 mini2440 omap730p2_cs3boot
iconnect km_kirkwood_pci titanium ib62x0 lubbock ethernut5 zynq_dcc
vpac270_nor_128 nitrogen6q2g colibri_pxa270 sheevaplug kzm9g
wandboard_dl wandboard_quad am3517_crane mx6dlsabresd zynq
tnetv107x_evm xaeniax devkit8000 nitrogen6dl mx6qarm2 magnesium
mx6qsabrelite mx6qsabresd palmtreo680 kmsuv31 polaris omap3_sdp3430
imx27lite mgcoge3un mx6qsabreauto vpac270_nor_256 pxa255_idp udoo_quad
kmnusa omap730p2_cs0boot kmcoge5un am3517_evm nhk8815_onenand
openrd_client omap730p2 openrd_base nhk8815 km_kirkwood dns325 mcx
lp8x4x vpac270_ond_256 smdk2410 cam_enc_4xx h2200 nitrogen6s1g scb9328
jornada cgtqmx6qeval balloon3 omap3_evm omap3_logic dockstar portl2
palmld openrd_ultimate trizepsiv pogo_e02 pm9263 mx1ads
02: sandbox: Rename sb_cmdline_option to sandbox_cmdline_option
03: spi_flash: Add spi_flash_probe_fdt() to locate SPI by FDT node
04: spi: Add device tree binding for SPI bus
05: sandbox: spi: Add SPI emulation bus
06: sandbox: spi: Add new SPI flash driver
07: sandbox: spi: Enable new spi/sf layers


The following changes since commit f44483b57c49282299da0e5c10073b909cdad979:

  Merge branch 'serial' of git://git.denx.de/u-boot-microblaze
(2013-12-02 08:48:02 -0500)

are available in the git repository at:


  ssh://gu-...@git.denx.de/u-boot-x86.git spi

for you to fetch changes up to ca9a501953ce945da8e76d86a0ddf070a7f729b8:

  sandbox: spi: Enable new spi/sf layers (2013-12-09 12:22:42 -0700)


Mike Frysinger (3):
  sandbox: spi: Add SPI emulation bus
  sandbox: spi: Add new SPI flash driver
  sandbox: spi: Enable new spi/sf layers

Simon Glass (3):
  sandbox: Rename sb_cmdline_option to sandbox_cmdline_option
  spi_flash: Add spi_flash_probe_fdt() to locate SPI by FDT node
  spi: Add device tree binding for SPI bus

 arch/sandbox/cpu/os.c|   2 +-
 arch/sandbox/cpu/start.c |  17 +-
 arch/sandbox/include/asm/config.h|   8 +
 arch/sandbox/include/asm/getopt.h|  23 +-
 arch/sandbox/include/asm/sections.h  |   4 +-
 arch/sandbox/include/asm/spi.h   |  58 
 arch/sandbox/include/asm/state.h |   9 +
 board/sandbox/sandbox/README.sandbox |  54 
 doc/SPI/README.sandbox-spi   |  64 
 doc/device-tree-bindings/spi/spi-bus.txt |  92 ++
 drivers/misc/cros_ec_spi.c   |   3 +-
 drivers/mtd/spi/Makefile |   1 +
 drivers/mtd/spi/sandbox.c| 483 +++
 drivers/mtd/spi/sf_internal.h|   1 +
 drivers/mtd/spi/sf_probe.c   |  28 +-
 drivers/spi/Makefile |   1 +
 drivers/spi/exynos_spi.c |  10 +-
 drivers/spi/sandbox_spi.c| 204 +
 drivers/spi/spi.c|  19 ++
 include/configs/exynos5250-dt.h  |   1 +
 include/configs/sandbox.h|  10 +
 include/spi.h|  23 +-
 include/spi_flash.h  |  13 +
 23 files changed, 1088 insertions(+), 40 deletions(-)
 create mode 100644 arch/sandbox/include/asm/spi.h
 create mode 100644 doc/SPI/README.sandbox-spi
 create mode 100644 

Re: [U-Boot] Please pull u-boot-x86.git

2013-11-25 Thread Tom Rini
On Thu, Nov 21, 2013 at 01:40:17PM -0700, Simon Glass wrote:

 The following changes since commit c2e5e802ecb7ab668ce9911b210ed68c804b349f:
 
   Merge branch 'master' of git://git.denx.de/u-boot-mips (2013-11-17
 14:11:34 -0500)
 
 are available in the git repository at:
 
 
   http://git.denx.de/u-boot-x86.git buildpatman
 
 for you to fetch changes up to 8426d8b0899eb6a9845b3468662512a8da236241:
 
   buildman: make board selector argument a regex (2013-11-21 13:35:58 -0700)
 
 
 Albert ARIBAUD (1):
   patman: add Commit-notes tag and section
 
 Andreas Bie?mann (1):
   buildman: fix README
 
 Stephen Warren (1):
   buildman: make board selector argument a regex
 
  tools/buildman/README   | 16 +++-
  tools/buildman/board.py | 12 +++-
  tools/patman/README | 10 +-
  tools/patman/commit.py  |  2 ++
  tools/patman/patchstream.py | 43
 ---
  5 files changed, 69 insertions(+), 14 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2013-11-21 Thread Simon Glass
The following changes since commit c2e5e802ecb7ab668ce9911b210ed68c804b349f:

  Merge branch 'master' of git://git.denx.de/u-boot-mips (2013-11-17
14:11:34 -0500)

are available in the git repository at:


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

for you to fetch changes up to 8426d8b0899eb6a9845b3468662512a8da236241:

  buildman: make board selector argument a regex (2013-11-21 13:35:58 -0700)


Albert ARIBAUD (1):
  patman: add Commit-notes tag and section

Andreas Bießmann (1):
  buildman: fix README

Stephen Warren (1):
  buildman: make board selector argument a regex

 tools/buildman/README   | 16 +++-
 tools/buildman/board.py | 12 +++-
 tools/patman/README | 10 +-
 tools/patman/commit.py  |  2 ++
 tools/patman/patchstream.py | 43
---
 5 files changed, 69 insertions(+), 14 deletions(-)
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-05-14 Thread Tom Rini
On Mon, May 13, 2013 at 03:02:08PM -0700, Simon Glass wrote:

 Hi Tom,
 
 The following changes since commit bbd0f7e3ba66d288a2f146f1c7797801e04598ae:
 
   Move FDT_RAMDISK_OVERHEAD from fdt.h to libfdt_env.h (2013-05-10
 19:04:50 -0400)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git master
 
 for you to fetch changes up to 8f0278eab4410de57ea6a32a8e5a50614a28084f:
 
   x86: Add coreboot timestamps (2013-05-13 13:33:22 -0700)
 
 
 Doug Anderson (2):
   bootstage: Copy bootstage strings post-relocation
   Call bootstage_relocate() after malloc is initted
 
 Simon Glass (17):
   x86: Remove unused bios/pci code
   x86: Remove unused portion of link script
   x86: Remove legacy board init code
   x86: Declare global_data pointer when it is used
   x86: Implement panic output for coreboot
   x86: Rationalise kernel booting logic and bootstage
   x86: Add TSC timer
   x86: Remove old broken timer implementation
   x86: Remove ISR timer
   x86: Re-enable PCAT timer 2 for beeping
   bootstage: Add stubs for new bootstage functions
   x86: Enable bootstage for coreboot
   bootstage: Allow marking a particular line of code
   x86: Fix warning in cmd_ximg.c when CONFIG_GZIP is not defined
   x86: config: Enable LZO for coreboot, remove zlib, gzip
   x86: Support adding coreboot timestanps to bootstage
   x86: Add coreboot timestamps
 
  arch/x86/cpu/Makefile  |   2 +-
  arch/x86/cpu/coreboot/coreboot.c   |  13 
  arch/x86/cpu/coreboot/timestamp.c  |  42 +++-
  arch/x86/cpu/cpu.c |   5 ++
  arch/x86/cpu/interrupts.c  |   2 +
  arch/x86/cpu/timer.c   |  17 -
  arch/x86/cpu/u-boot.lds|  12 
  arch/x86/include/asm/arch-coreboot/timestamp.h |   7 ++
  arch/x86/include/asm/init_helpers.h|   9 ---
  arch/x86/include/asm/init_wrappers.h   |  42 
  arch/x86/include/asm/pci.h |   4 --
  arch/x86/include/asm/u-boot-x86.h  |   4 ++
  arch/x86/include/asm/u-boot.h  |  32 --
  arch/x86/lib/Makefile  |  10 +--
  arch/x86/lib/bios.h| 170
 
  arch/x86/lib/board.c   | 266
 
  arch/x86/lib/bootm.c   |   8 ---
  arch/x86/lib/cmd_boot.c|   2 +
  arch/x86/lib/init_helpers.c|  98
 
  arch/x86/lib/init_wrappers.c   | 164
 ---
  arch/x86/lib/pcat_timer.c  |  69 +---
  arch/x86/lib/pci.c | 188
 --
  arch/x86/lib/physmem.c |   2 +
  arch/x86/lib/relocate.c|   2 +
  arch/x86/lib/timer.c   | 116
 -
  arch/x86/lib/tsc_timer.c   | 107
 +++
  arch/x86/lib/zimage.c  |  11 ++--
  common/board_r.c   |   1 +
  common/bootstage.c |  44 +
  common/cmd_ximg.c  |   2 +
  include/bootstage.h|  54 
  include/configs/coreboot.h |  18 +-
  32 files changed, 314 insertions(+), 1209 deletions(-)
  delete mode 100644 arch/x86/cpu/timer.c
  delete mode 100644 arch/x86/include/asm/init_wrappers.h
  delete mode 100644 arch/x86/lib/bios.h
  delete mode 100644 arch/x86/lib/board.c
  delete mode 100644 arch/x86/lib/init_wrappers.c
  delete mode 100644 arch/x86/lib/pci.c
  delete mode 100644 arch/x86/lib/timer.c
  create mode 100644 arch/x86/lib/tsc_timer.c

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2013-05-13 Thread Simon Glass
Hi Tom,

The following changes since commit bbd0f7e3ba66d288a2f146f1c7797801e04598ae:

  Move FDT_RAMDISK_OVERHEAD from fdt.h to libfdt_env.h (2013-05-10
19:04:50 -0400)

are available in the git repository at:

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

for you to fetch changes up to 8f0278eab4410de57ea6a32a8e5a50614a28084f:

  x86: Add coreboot timestamps (2013-05-13 13:33:22 -0700)


Doug Anderson (2):
  bootstage: Copy bootstage strings post-relocation
  Call bootstage_relocate() after malloc is initted

Simon Glass (17):
  x86: Remove unused bios/pci code
  x86: Remove unused portion of link script
  x86: Remove legacy board init code
  x86: Declare global_data pointer when it is used
  x86: Implement panic output for coreboot
  x86: Rationalise kernel booting logic and bootstage
  x86: Add TSC timer
  x86: Remove old broken timer implementation
  x86: Remove ISR timer
  x86: Re-enable PCAT timer 2 for beeping
  bootstage: Add stubs for new bootstage functions
  x86: Enable bootstage for coreboot
  bootstage: Allow marking a particular line of code
  x86: Fix warning in cmd_ximg.c when CONFIG_GZIP is not defined
  x86: config: Enable LZO for coreboot, remove zlib, gzip
  x86: Support adding coreboot timestanps to bootstage
  x86: Add coreboot timestamps

 arch/x86/cpu/Makefile  |   2 +-
 arch/x86/cpu/coreboot/coreboot.c   |  13 
 arch/x86/cpu/coreboot/timestamp.c  |  42 +++-
 arch/x86/cpu/cpu.c |   5 ++
 arch/x86/cpu/interrupts.c  |   2 +
 arch/x86/cpu/timer.c   |  17 -
 arch/x86/cpu/u-boot.lds|  12 
 arch/x86/include/asm/arch-coreboot/timestamp.h |   7 ++
 arch/x86/include/asm/init_helpers.h|   9 ---
 arch/x86/include/asm/init_wrappers.h   |  42 
 arch/x86/include/asm/pci.h |   4 --
 arch/x86/include/asm/u-boot-x86.h  |   4 ++
 arch/x86/include/asm/u-boot.h  |  32 --
 arch/x86/lib/Makefile  |  10 +--
 arch/x86/lib/bios.h| 170

 arch/x86/lib/board.c   | 266

 arch/x86/lib/bootm.c   |   8 ---
 arch/x86/lib/cmd_boot.c|   2 +
 arch/x86/lib/init_helpers.c|  98

 arch/x86/lib/init_wrappers.c   | 164
---
 arch/x86/lib/pcat_timer.c  |  69 +---
 arch/x86/lib/pci.c | 188
--
 arch/x86/lib/physmem.c |   2 +
 arch/x86/lib/relocate.c|   2 +
 arch/x86/lib/timer.c   | 116
-
 arch/x86/lib/tsc_timer.c   | 107
+++
 arch/x86/lib/zimage.c  |  11 ++--
 common/board_r.c   |   1 +
 common/bootstage.c |  44 +
 common/cmd_ximg.c  |   2 +
 include/bootstage.h|  54 
 include/configs/coreboot.h |  18 +-
 32 files changed, 314 insertions(+), 1209 deletions(-)
 delete mode 100644 arch/x86/cpu/timer.c
 delete mode 100644 arch/x86/include/asm/init_wrappers.h
 delete mode 100644 arch/x86/lib/bios.h
 delete mode 100644 arch/x86/lib/board.c
 delete mode 100644 arch/x86/lib/init_wrappers.c
 delete mode 100644 arch/x86/lib/pci.c
 delete mode 100644 arch/x86/lib/timer.c
 create mode 100644 arch/x86/lib/tsc_timer.c

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-05-10 Thread Tom Rini
On Thu, May 09, 2013 at 02:30:22PM -0700, Simon Glass wrote:

 Hi Tom,
 
 I left out the one that is not yet reviewed.
 
 The following changes since commit 4e779ad2e54e39d5343c8c83b4fc686a7bb16859:
 
   gpio: Add support for microblaze xilinx GPIO (2013-05-09 11:20:08 +0200)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git patman
 
 for you to fetch changes up to e85707570cf44f7b2d1da5ae92af3684c72c28f2:
 
   patman: Do not hardcode python path (2013-05-09 14:27:41 -0700)
 
 
 Michal Simek (1):
   patman: Do not hardcode python path
 
 Simon Glass (1):
   buildman: Allow conflicting tags to avoid spurious errors
 
  tools/buildman/control.py | 5 +
  tools/patman/patman.py| 2 +-
  tools/patman/series.py| 4 +++-
  3 files changed, 9 insertions(+), 2 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2013-05-09 Thread Simon Glass
Hi Tom,

I left out the one that is not yet reviewed.

The following changes since commit 4e779ad2e54e39d5343c8c83b4fc686a7bb16859:

  gpio: Add support for microblaze xilinx GPIO (2013-05-09 11:20:08 +0200)

are available in the git repository at:

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

for you to fetch changes up to e85707570cf44f7b2d1da5ae92af3684c72c28f2:

  patman: Do not hardcode python path (2013-05-09 14:27:41 -0700)


Michal Simek (1):
  patman: Do not hardcode python path

Simon Glass (1):
  buildman: Allow conflicting tags to avoid spurious errors

 tools/buildman/control.py | 5 +
 tools/patman/patman.py| 2 +-
 tools/patman/series.py| 4 +++-
 3 files changed, 9 insertions(+), 2 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2013-04-16 Thread Simon Glass
Hi Tom,

[sorry, take 2]

Unfortunately I found some problems in x86 that I had not picked up on earlier.


The following changes since commit cba6494f24d711ba63afb22b1ee691a41fee121c:

  Prepare v2013.04-rc3 (2013-04-15 11:47:10 -0400)

are available in the git repository at:

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

for you to fetch changes up to 054fcf6b562cd80a5e8cbf0fa61db9e8695fe3e4:

  x86: Fix wrong 4G filtering (2013-04-15 16:39:57 -0700)


Simon Glass (3):
  x86: Fix DRAM bank size init with generic board
  x86: Allow setup code to manage its own global data
  x86: config: Init PCI before SPI

Vladimir 'φ-coder/phcoder' Serbinenko (1):
  x86: Fix wrong 4G filtering

 arch/x86/cpu/coreboot/sdram.c | 12 ++--
 common/board_f.c  |  5 ++---
 common/board_r.c  |  3 ---
 include/configs/coreboot.h|  1 +
 4 files changed, 13 insertions(+), 8 deletions(-)
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-04-16 Thread Tom Rini
On Tue, Apr 16, 2013 at 12:15:36PM -0700, Simon Glass wrote:

 Vladimir '?-coder/phcoder' Serbinenko (1):
   x86: Fix wrong 4G filtering

Two problems.  First, this is missing a signed-off-by line.  Second,
nicnames in the author field are frowned upon to not allowed here.
Thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-04-16 Thread Simon Glass
Hi Tom,

[Trying again with the offending patch removed for now]

The following changes since commit cba6494f24d711ba63afb22b1ee691a41fee121c:

  Prepare v2013.04-rc3 (2013-04-15 11:47:10 -0400)

are available in the git repository at:

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

for you to fetch changes up to 617c246f3c123d4a2d4dba9d08a4a2dd324cb407:

  x86: config: Init PCI before SPI (2013-04-15 16:26:43 -0700)


Simon Glass (3):
  x86: Fix DRAM bank size init with generic board
  x86: Allow setup code to manage its own global data
  x86: config: Init PCI before SPI

 arch/x86/cpu/coreboot/sdram.c | 7 ++-
 common/board_f.c  | 5 ++---
 common/board_r.c  | 3 ---
 include/configs/coreboot.h| 1 +
 4 files changed, 9 insertions(+), 7 deletions(-)

Regards,
Simon


On Tue, Apr 16, 2013 at 12:53 PM, Tom Rini tr...@ti.com wrote:
 On Tue, Apr 16, 2013 at 12:15:36PM -0700, Simon Glass wrote:

 Vladimir '?-coder/phcoder' Serbinenko (1):
   x86: Fix wrong 4G filtering

 Two problems.  First, this is missing a signed-off-by line.  Second,
 nicnames in the author field are frowned upon to not allowed here.
 Thanks!

 --
 Tom
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-04-16 Thread Tom Rini
On Tue, Apr 16, 2013 at 01:07:33PM -0700, Simon Glass wrote:

 Hi Tom,
 
 [Trying again with the offending patch removed for now]
 
 The following changes since commit cba6494f24d711ba63afb22b1ee691a41fee121c:
 
   Prepare v2013.04-rc3 (2013-04-15 11:47:10 -0400)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git master
 
 for you to fetch changes up to 617c246f3c123d4a2d4dba9d08a4a2dd324cb407:
 
   x86: config: Init PCI before SPI (2013-04-15 16:26:43 -0700)
 
 
 Simon Glass (3):
   x86: Fix DRAM bank size init with generic board
   x86: Allow setup code to manage its own global data
   x86: config: Init PCI before SPI
 
  arch/x86/cpu/coreboot/sdram.c | 7 ++-
  common/board_f.c  | 5 ++---
  common/board_r.c  | 3 ---
  include/configs/coreboot.h| 1 +
  4 files changed, 9 insertions(+), 7 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-03-08 Thread Tom Rini
On Mon, Mar 04, 2013 at 04:01:52PM -0800, Simon Glass wrote:

 Hi Tom,
 
 Great to see the previous lot made it in. Here is the next x86 series.
 
 The following changes since commit 2536850d7cd90bdb75bf3ff86838f913392b68db:
 
   Prepare v2013.04-rc1 (2013-03-04 16:29:17 -0500)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git master
 
 for you to fetch changes up to fc959081d41aab2d6f4614c5fb3dd1b77ffcdcf4:
 
   x86: Enable CONFIG_OF_CONTROL on coreboot (2013-03-04 15:57:52 -0800)
 
 
 Simon Glass (9):
   x86: Add function to get top of usable ram
   x86: Add basic cache operations
   x86: Permit bootstage and timer data to be used prior to relocation
   x86: Add an __end symbol to signal the end of the U-Boot binary
   x86: Rearrange the output input to remove BSS
   x86: Support relocation of FDT on start-up
   x86: Add error checking to x86 relocation code
   x86: Adjust link device tree include file
   x86: Enable CONFIG_OF_CONTROL on coreboot
 
  arch/x86/cpu/coreboot/coreboot.c| 15 +---
  arch/x86/cpu/coreboot/sdram.c   | 18 +++---
  arch/x86/cpu/cpu.c  | 23 +
  arch/x86/cpu/interrupts.c   |  7 +++---
  arch/x86/cpu/u-boot.lds | 21 ++--
  arch/x86/include/asm/global_data.h  |  4 +++
  arch/x86/include/asm/init_helpers.h |  2 ++
  arch/x86/include/asm/relocate.h |  1 +
  arch/x86/include/asm/u-boot-x86.h   |  1 +
  arch/x86/lib/board.c|  3 +++
  arch/x86/lib/init_helpers.c | 49 
 -
  arch/x86/lib/init_wrappers.c|  1 +
  arch/x86/lib/relocate.c | 37 ++--
  arch/x86/lib/timer.c|  9 +++
  board/chromebook-x86/dts/link.dts   |  2 +-
  include/configs/coreboot.h  |  6 +
  16 files changed, 146 insertions(+), 53 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-03-04 Thread Tom Rini
On Thu, Feb 28, 2013 at 07:55:39PM -0800, Simon Glass wrote:

[snip]
 The following changes since commit a1eac57a2001ecf86a46f520cd85ef8e9c8b3687:
 
   common/env_nand.c: calculate crc only when readenv was OK
 (2013-02-22 19:59:53 -0600)
 
 are available in the git repository at:
 
   git://git.denx.de/u-boot-x86.git mem
 
 for you to fetch changes up to 218da0f35f4b5e5bf13d3dba6d975d4d5d65516f:
 
   hash: Use lower case for hash algorithm names (2013-02-28 19:49:13 -0800)
 
 
 Allen Martin (1):
   sandbox: fix compiler warning
 
 Simon Glass (21):
   Tidy up error checking and fix bug in hash command
   Update print_buffer() to use const
   sandbox: Add un/map_sysmen() to deal with sandbox's ram_buf
   sandbox: Change memory commands to use map_physmem
   Split out the memory tests into separate functions
   Use common mtest iteration counting
   Fix mtest indenting
   Bring mtest putc() into common code
   Reduce casting in mtest
   Update set_working_fdt_addr() to use setenv_addr()
   common: Use new numeric setenv functions
   fs: Use new numeric setenv functions
   net: Use new numeric setenv functions
   image: Use crc header file instead of C prototypes
   hash: Add a flag to support saving hashes in the environment
   Roll crc32 into hash infrastructure
   sandbox: config: Enable hash functions and mtest
   Move CONFIG_SYS_MEMTEST_SCRATCH #ifdef to top of file
   sandbox: Update mtest to fix crashes
   sandbox: Allow hash functions to work correctly
   hash: Use lower case for hash algorithm names
 
 Taylor Hutt (1):
   sandbox: Improve sandbox serial port keyboard interface
 
  README|   9 +
  arch/sandbox/config.mk|   1 +
  arch/sandbox/cpu/os.c |   8 +
  arch/sandbox/cpu/start.c  |   3 +
  arch/sandbox/include/asm/io.h |  10 +
  common/cmd_bootm.c|  11 +-
  common/cmd_cbfs.c |   4 +-
  common/cmd_cramfs.c   |   4 +-
  common/cmd_fdos.c |   4 +-
  common/cmd_fdt.c  |  11 +-
  common/cmd_hash.c |  14 +-
  common/cmd_jffs2.c|   4 +-
  common/cmd_load.c |  12 +-
  common/cmd_mem.c  | 809
 
  common/cmd_mtdparts.c |   4 +-
  common/cmd_nand.c |  12 +-
  common/cmd_nvedit.c   |  11 +-
  common/cmd_reiser.c   |   4 +-
  common/cmd_setexpr.c  |  39 +++-
  common/cmd_sha1sum.c  |   6 +-
  common/cmd_unzip.c|   4 +-
  common/cmd_ximg.c |   7 +-
  common/cmd_zfs.c  |   3 +-
  common/cmd_zip.c  |   4 +-
  common/hash.c | 194 +++-
  common/image.c|   4 +-
  drivers/net/fm/fm.c   |   4 +-
  drivers/serial/sandbox.c  |  44 +++-
  fs/fs.c   |   4 +-
  fs/ubifs/ubifs.c  |   4 +-
  include/common.h  |  29 ++-
  include/configs/sandbox.h |   9 +-
  include/hash.h|  13 +-
  include/os.h  |  10 +
  include/u-boot/crc.h  |  11 +
  lib/crc32.c   |   9 +
  lib/display_options.c |   3 +-
  net/net.c |   8 +-
  38 files changed, 761 insertions(+), 583 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2013-03-04 Thread Simon Glass
Hi Tom,

Great to see the previous lot made it in. Here is the next x86 series.

The following changes since commit 2536850d7cd90bdb75bf3ff86838f913392b68db:

  Prepare v2013.04-rc1 (2013-03-04 16:29:17 -0500)

are available in the git repository at:

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

for you to fetch changes up to fc959081d41aab2d6f4614c5fb3dd1b77ffcdcf4:

  x86: Enable CONFIG_OF_CONTROL on coreboot (2013-03-04 15:57:52 -0800)


Simon Glass (9):
  x86: Add function to get top of usable ram
  x86: Add basic cache operations
  x86: Permit bootstage and timer data to be used prior to relocation
  x86: Add an __end symbol to signal the end of the U-Boot binary
  x86: Rearrange the output input to remove BSS
  x86: Support relocation of FDT on start-up
  x86: Add error checking to x86 relocation code
  x86: Adjust link device tree include file
  x86: Enable CONFIG_OF_CONTROL on coreboot

 arch/x86/cpu/coreboot/coreboot.c| 15 +---
 arch/x86/cpu/coreboot/sdram.c   | 18 +++---
 arch/x86/cpu/cpu.c  | 23 +
 arch/x86/cpu/interrupts.c   |  7 +++---
 arch/x86/cpu/u-boot.lds | 21 ++--
 arch/x86/include/asm/global_data.h  |  4 +++
 arch/x86/include/asm/init_helpers.h |  2 ++
 arch/x86/include/asm/relocate.h |  1 +
 arch/x86/include/asm/u-boot-x86.h   |  1 +
 arch/x86/lib/board.c|  3 +++
 arch/x86/lib/init_helpers.c | 49 -
 arch/x86/lib/init_wrappers.c|  1 +
 arch/x86/lib/relocate.c | 37 ++--
 arch/x86/lib/timer.c|  9 +++
 board/chromebook-x86/dts/link.dts   |  2 +-
 include/configs/coreboot.h  |  6 +
 16 files changed, 146 insertions(+), 53 deletions(-)

Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-03-01 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 02/28/2013 10:55 PM, Simon Glass wrote:
 Hi Tom,
 
 On Thu, Feb 28, 2013 at 4:22 PM, Simon Glass s...@chromium.org
 wrote:
 Hi Tom,
 
 On Thu, Feb 28, 2013 at 3:00 PM, Tom Rini tr...@ti.com wrote:
 On Wed, Feb 27, 2013 at 01:18:23PM -0800, Simon Glass wrote:
 
 Hi Tom,
 
 I have pulled the latest series into a branch in the x86
 tree. You can also get it from patchwork. If you are happy
 with it, please see below. I haven't seen any comments for a
 few days.
 
 OK, building with ELDK4.2 for a number of ARM boards such as
 igep0030: cmd_mem.c: In function 'do_mem_mtest': cmd_mem.c:979:
 warning: passing argument 1 of 'unmap_sysmem' discards 
 qualifiers from pointer target type cmd_mem.c:980: warning:
 passing argument 1 of 'unmap_sysmem' discards qualifiers from
 pointer target type
 
 
 Strange - there is even an explicit cast,. But mine is gcc 4.4.1
 so may be a bit later. I could just remove those two lines since
 they are only there for semantic correctness and compile to
 nothing anyway. But I will track down that tool chain and see if
 I can work out a fix.
 
 OK I have repeated this - it seems that the compiler does not like
 a direct 'cast away' of volatile in a function argument. I have
 added a work-around, and sent out an updated patch 20. You can
 either pull this in from patchwork, or I have updated the pull
 information below.

Thanks, I'll give it a day or two in public before re-pulling.

 Rather ominously this might mean that I need to start building
 with multiple tool chains for each architecture. I was rather
 hoping to avoid that...
 
 Thanks for spotting it.

Sadly, it's a must.  ELDK4.2 is the oldest toolchain we support, but
we do support it for ARM (except when THUMB is required, those fail
gracefully tho).  My build loops include ELDK4.2/arm, ELDK5.2/arm and
whatever Linaro PPA has up, for ARM (and eldk5.2 for powerpc).

- -- 
Tom
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJRMLkvAAoJENk4IS6UOR1W5SUQAJ8a/lgm4/0IC3iQidTuhYr7
7/Xp3lwZkFvcIYYcV3hlMwejHwEZ6+YLynCNwRaRcLu2rPjrO2VrCyezFF0lXBRB
+REFPzPelUWRmzNlJNE95rlf1R1Oj+NMalou/BLtP6UYP/BDsYqEO1DSg+b+xAzU
1ynx4Jbz/elszgII8On/rn6fjbLn1Nx8r+GvEd/EoZQNb4ykgp/P23FY5n1SpDav
QgLsOBnoGNh3t+iM/d1Uqkp9SxaCmgVkgCVjWMYBsLrDB0lQKS92P3cXPQ7eYPPu
wW3mlKxJI3E42X+XLxk961BmGvyzWDxs92/YW+ctTZ52jKmbBciD1+Yk7p7jlKLP
inBPKmBChswzpZOyyg/aOCJ3DENc6ad8JQA5kELtn3wOlJJcwUDJdEzvaRFwvbQV
qUqSO+aUjL6Kd7lvn72MI40sqgPxleP84fCy3ZjqFISGPtcFGrsc9NVteJM4k59R
S6FEwYdWYarMhJq+1Q25tyfEMjUzvLLARdPx88nh97Ew4D7d3ZGt8ma6ClfO0/Ku
dzS0bBhlRn2ZUfSHjPRl8SvoyjjRT19VO5zrucIupnU5Zx+wU4g1h/bMoGlDxTVw
3Yf8OhFCAXWnhPtsIQTj7KM5Asgl1waX5jc4afiEyTt+SqT2BNtcShjyfUR2c3gh
pI2LEszwK0iD7K0E6p5m
=oihH
-END PGP SIGNATURE-
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-02-28 Thread Tom Rini
On Wed, Feb 27, 2013 at 01:18:23PM -0800, Simon Glass wrote:

 Hi Tom,
 
 I have pulled the latest series into a branch in the x86 tree. You can
 also get it from patchwork. If you are happy with it, please see
 below. I haven't seen any comments for a few days.

OK, building with ELDK4.2 for a number of ARM boards such as igep0030:
cmd_mem.c: In function 'do_mem_mtest':
cmd_mem.c:979: warning: passing argument 1 of 'unmap_sysmem' discards
qualifiers from pointer target type
cmd_mem.c:980: warning: passing argument 1 of 'unmap_sysmem' discards
qualifiers from pointer target type

Please fix and re-submit, thanks.

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-02-28 Thread Simon Glass
Hi Tom,

On Thu, Feb 28, 2013 at 3:00 PM, Tom Rini tr...@ti.com wrote:
 On Wed, Feb 27, 2013 at 01:18:23PM -0800, Simon Glass wrote:

 Hi Tom,

 I have pulled the latest series into a branch in the x86 tree. You can
 also get it from patchwork. If you are happy with it, please see
 below. I haven't seen any comments for a few days.

 OK, building with ELDK4.2 for a number of ARM boards such as igep0030:
 cmd_mem.c: In function 'do_mem_mtest':
 cmd_mem.c:979: warning: passing argument 1 of 'unmap_sysmem' discards
 qualifiers from pointer target type
 cmd_mem.c:980: warning: passing argument 1 of 'unmap_sysmem' discards
 qualifiers from pointer target type


Strange - there is even an explicit cast,. But mine is gcc 4.4.1 so
may be a bit later. I could just remove those two lines since they are
only there for semantic correctness and compile to nothing anyway. But
I will track down that tool chain and see if I can work out a fix.

Regards,
Simon

 Please fix and re-submit, thanks.

 --
 Tom
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-02-28 Thread Simon Glass
Hi Tom,

On Thu, Feb 28, 2013 at 4:22 PM, Simon Glass s...@chromium.org wrote:
 Hi Tom,

 On Thu, Feb 28, 2013 at 3:00 PM, Tom Rini tr...@ti.com wrote:
 On Wed, Feb 27, 2013 at 01:18:23PM -0800, Simon Glass wrote:

 Hi Tom,

 I have pulled the latest series into a branch in the x86 tree. You can
 also get it from patchwork. If you are happy with it, please see
 below. I haven't seen any comments for a few days.

 OK, building with ELDK4.2 for a number of ARM boards such as igep0030:
 cmd_mem.c: In function 'do_mem_mtest':
 cmd_mem.c:979: warning: passing argument 1 of 'unmap_sysmem' discards
 qualifiers from pointer target type
 cmd_mem.c:980: warning: passing argument 1 of 'unmap_sysmem' discards
 qualifiers from pointer target type


 Strange - there is even an explicit cast,. But mine is gcc 4.4.1 so
 may be a bit later. I could just remove those two lines since they are
 only there for semantic correctness and compile to nothing anyway. But
 I will track down that tool chain and see if I can work out a fix.

OK I have repeated this - it seems that the compiler does not like a
direct 'cast away' of volatile in a function argument. I have added a
work-around, and sent out an updated patch 20. You can either pull
this in from patchwork, or I have updated the pull information below.

Rather ominously this might mean that I need to start building with
multiple tool chains for each architecture. I was rather hoping to
avoid that...

Thanks for spotting it.

Regards,
Simon


 Please fix and re-submit, thanks.


The following changes since commit a1eac57a2001ecf86a46f520cd85ef8e9c8b3687:

  common/env_nand.c: calculate crc only when readenv was OK
(2013-02-22 19:59:53 -0600)

are available in the git repository at:

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

for you to fetch changes up to 218da0f35f4b5e5bf13d3dba6d975d4d5d65516f:

  hash: Use lower case for hash algorithm names (2013-02-28 19:49:13 -0800)


Allen Martin (1):
  sandbox: fix compiler warning

Simon Glass (21):
  Tidy up error checking and fix bug in hash command
  Update print_buffer() to use const
  sandbox: Add un/map_sysmen() to deal with sandbox's ram_buf
  sandbox: Change memory commands to use map_physmem
  Split out the memory tests into separate functions
  Use common mtest iteration counting
  Fix mtest indenting
  Bring mtest putc() into common code
  Reduce casting in mtest
  Update set_working_fdt_addr() to use setenv_addr()
  common: Use new numeric setenv functions
  fs: Use new numeric setenv functions
  net: Use new numeric setenv functions
  image: Use crc header file instead of C prototypes
  hash: Add a flag to support saving hashes in the environment
  Roll crc32 into hash infrastructure
  sandbox: config: Enable hash functions and mtest
  Move CONFIG_SYS_MEMTEST_SCRATCH #ifdef to top of file
  sandbox: Update mtest to fix crashes
  sandbox: Allow hash functions to work correctly
  hash: Use lower case for hash algorithm names

Taylor Hutt (1):
  sandbox: Improve sandbox serial port keyboard interface

 README|   9 +
 arch/sandbox/config.mk|   1 +
 arch/sandbox/cpu/os.c |   8 +
 arch/sandbox/cpu/start.c  |   3 +
 arch/sandbox/include/asm/io.h |  10 +
 common/cmd_bootm.c|  11 +-
 common/cmd_cbfs.c |   4 +-
 common/cmd_cramfs.c   |   4 +-
 common/cmd_fdos.c |   4 +-
 common/cmd_fdt.c  |  11 +-
 common/cmd_hash.c |  14 +-
 common/cmd_jffs2.c|   4 +-
 common/cmd_load.c |  12 +-
 common/cmd_mem.c  | 809

 common/cmd_mtdparts.c |   4 +-
 common/cmd_nand.c |  12 +-
 common/cmd_nvedit.c   |  11 +-
 common/cmd_reiser.c   |   4 +-
 common/cmd_setexpr.c  |  39 +++-
 common/cmd_sha1sum.c  |   6 +-
 common/cmd_unzip.c|   4 +-
 common/cmd_ximg.c |   7 +-
 common/cmd_zfs.c  |   3 +-
 common/cmd_zip.c  |   4 +-
 common/hash.c | 194 +++-
 common/image.c|   4 +-
 drivers/net/fm/fm.c   |   4 +-
 drivers/serial/sandbox.c  |  44 +++-
 fs/fs.c   |   4 +-
 fs/ubifs/ubifs.c  |   4 +-
 include/common.h  |  29 ++-
 include/configs/sandbox.h |   9 +-
 include/hash.h|  13 +-
 include/os.h  |  10 +
 include/u-boot/crc.h  |  11 +
 lib/crc32.c   |   9 +
 lib/display_options.c |   3 +-
 net/net.c |   8 +-
 38 files changed, 761 insertions(+), 583 deletions(-)
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-02-27 Thread Simon Glass
Hi Tom,

I have pulled the latest series into a branch in the x86 tree. You can
also get it from patchwork. If you are happy with it, please see
below. I haven't seen any comments for a few days.


The following changes since commit 47104c37de076e2be35ae1b3d144614f4d24a766:

  MAKEALL: add support for per architecture toolchains (2013-02-20
09:40:34 -0500)

are available in the git repository at:

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

for you to fetch changes up to dc63c7ccecee7b22fdc06f2c9d62d53bd5511b00:

  hash: Use lower case for hash algorithm names (2013-02-27 13:13:16 -0800)


Allen Martin (1):
  sandbox: fix compiler warning

Simon Glass (21):
  Tidy up error checking and fix bug in hash command
  Update print_buffer() to use const
  sandbox: Add un/map_sysmen() to deal with sandbox's ram_buf
  sandbox: Change memory commands to use map_physmem
  Split out the memory tests into separate functions
  Use common mtest iteration counting
  Fix mtest indenting
  Bring mtest putc() into common code
  Reduce casting in mtest
  Update set_working_fdt_addr() to use setenv_addr()
  common: Use new numeric setenv functions
  fs: Use new numeric setenv functions
  net: Use new numeric setenv functions
  image: Use crc header file instead of C prototypes
  hash: Add a flag to support saving hashes in the environment
  Roll crc32 into hash infrastructure
  sandbox: config: Enable hash functions and mtest
  Move CONFIG_SYS_MEMTEST_SCRATCH #ifdef to top of file
  sandbox: Update mtest to fix crashes
  sandbox: Allow hash functions to work correctly
  hash: Use lower case for hash algorithm names

Taylor Hutt (1):
  sandbox: Improve sandbox serial port keyboard interface

 README|   9 +
 arch/sandbox/config.mk|   1 +
 arch/sandbox/cpu/os.c |   8 +
 arch/sandbox/cpu/start.c  |   3 +
 arch/sandbox/include/asm/io.h |  10 +
 common/cmd_bootm.c|  11 +-
 common/cmd_cbfs.c |   4 +-
 common/cmd_cramfs.c   |   4 +-
 common/cmd_fdos.c |   4 +-
 common/cmd_fdt.c  |  11 +-
 common/cmd_hash.c |  14 +-
 common/cmd_jffs2.c|   4 +-
 common/cmd_load.c |  12 +-
 common/cmd_mem.c  | 798 +-
 common/cmd_mtdparts.c |   4 +-
 common/cmd_nand.c |  12 +-
 common/cmd_nvedit.c   |  11 +-
 common/cmd_reiser.c   |   4 +-
 common/cmd_setexpr.c  |  39 ++-
 common/cmd_sha1sum.c  |   6 +-
 common/cmd_unzip.c|   4 +-
 common/cmd_ximg.c |   7 +-
 common/cmd_zfs.c  |   3 +-
 common/cmd_zip.c  |   4 +-
 common/hash.c | 194 +++---
 common/image.c|   4 +-
 drivers/net/fm/fm.c   |   4 +-
 drivers/serial/sandbox.c  |  44 ++-
 fs/fs.c   |   4 +-
 fs/ubifs/ubifs.c  |   4 +-
 include/common.h  |  29 +-
 include/configs/sandbox.h |   9 +-
 include/hash.h|  13 +-
 include/os.h  |  10 +
 include/u-boot/crc.h  |  11 +
 lib/crc32.c   |   9 +
 lib/display_options.c |   3 +-
 net/net.c |   8 +-
 38 files changed, 750 insertions(+), 583 deletions(-)


Regards,
Simon

On Mon, Feb 18, 2013 at 9:22 PM, Simon Glass s...@chromium.org wrote:
 Hi Tom,

 On Mon, Feb 18, 2013 at 2:52 PM, Tom Rini tr...@ti.com wrote:
 On Sun, Feb 17, 2013 at 01:32:58PM -0800, Simon Glass wrote:
 Hi Wolfgang,

 On Sun, Feb 17, 2013 at 12:58 PM, Wolfgang Denk w...@denx.de wrote:
  Dear Simon Glass,
 
  In message 
  capnjgz2p6sbdxiwxw2tecdjadmhkn5inbgrpzbtvwmqutyv...@mail.gmail.com you 
  wrote:
  Hi Tom,
 
  This series includes the sandbox map_sysmem() feature, and gets the
  memory and hashing functions running on sandbox to allow testing/code
  coverage. I have run it through buildman and it seems clean, with the
  proviso that I don't have fully-working toolchains for all
  architectures.
 
  NAK. It is not correct to push changes that affect global code
  through a arch-specific custodian tree, especially if the submitter
  of the patche(es) is identical to the custodian of the very tree, and
  even more so if there have been not ANY independent Acked-by: or at
  least Tested-by: messages.
 
  This is NOT how the peer review process is supposed to work!!
 
  Especially as a custodian you must not do such things.

 OK, I was not quite sure what to do, so may have misunderstood Tom's
 instructions - there is a short thread here
 http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/153342

 I have created a patchwork bundle instead.

 http://patchwork.ozlabs.org/bundle/sjg/sandbox-mem/

 OK, I thought I said, but maybe I didn't, I'm OK with re-using the tree,
 but _not_ 

Re: [U-Boot] Please pull u-boot-x86.git

2013-02-18 Thread Tom Rini
On Sun, Feb 17, 2013 at 01:32:58PM -0800, Simon Glass wrote:
 Hi Wolfgang,
 
 On Sun, Feb 17, 2013 at 12:58 PM, Wolfgang Denk w...@denx.de wrote:
  Dear Simon Glass,
 
  In message 
  capnjgz2p6sbdxiwxw2tecdjadmhkn5inbgrpzbtvwmqutyv...@mail.gmail.com you 
  wrote:
  Hi Tom,
 
  This series includes the sandbox map_sysmem() feature, and gets the
  memory and hashing functions running on sandbox to allow testing/code
  coverage. I have run it through buildman and it seems clean, with the
  proviso that I don't have fully-working toolchains for all
  architectures.
 
  NAK. It is not correct to push changes that affect global code
  through a arch-specific custodian tree, especially if the submitter
  of the patche(es) is identical to the custodian of the very tree, and
  even more so if there have been not ANY independent Acked-by: or at
  least Tested-by: messages.
 
  This is NOT how the peer review process is supposed to work!!
 
  Especially as a custodian you must not do such things.
 
 OK, I was not quite sure what to do, so may have misunderstood Tom's
 instructions - there is a short thread here
 http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/153342
 
 I have created a patchwork bundle instead.
 
 http://patchwork.ozlabs.org/bundle/sjg/sandbox-mem/

OK, I thought I said, but maybe I didn't, I'm OK with re-using the tree,
but _not_ the master branch,  u-boot-x86/sandbox would have been fine.

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-02-18 Thread Otavio Salvador
On Mon, Feb 18, 2013 at 7:52 PM, Tom Rini tr...@ti.com wrote:
 OK, I thought I said, but maybe I didn't, I'm OK with re-using the tree,
 but _not_ the master branch,  u-boot-x86/sandbox would have been fine.

Personally I'd prefer another tree as done for other custodians. It
makes life of new developers easier.

-- 
Otavio Salvador O.S. Systems
E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854  http://projetos.ossystems.com.br
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Please pull u-boot-x86.git

2013-02-18 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 02/18/2013 06:30 PM, Otavio Salvador wrote:
 On Mon, Feb 18, 2013 at 7:52 PM, Tom Rini tr...@ti.com wrote:
 OK, I thought I said, but maybe I didn't, I'm OK with re-using
 the tree, but _not_ the master branch,  u-boot-x86/sandbox would
 have been fine.
 
 Personally I'd prefer another tree as done for other custodians.
 It makes life of new developers easier.

It doesn't scale, however.  If I had my wish and we were starting this
afresh, I'd go with user repositories rather than subject
repositories.  Using Simon as the example, I don't think he needs one
for sandbox, one for patman (and other tools) and one for x86.  I'd
rather pull .../sjc/for-trini/x86-whatever-vs-something.

- -- 
Tom
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJRIr00AAoJENk4IS6UOR1W5BsP/0XxGgvNqvp/Od5k1JnrR9EW
mqf6xRV7IZ6MXwPBAK7/WBaAerEZ79vx2KSezQxejkxzJlTYVgiltJHf9GNCM3xh
aenk/RGsyjjPmvZXTY/kR79x3/tMMdEu3xHaLb9F2a62qWfOAjQAcjqWtfwN1mSP
TOgnEenxYovihC8hqQA+Qo6PjRwTQJStGapUCwxWinXAD1CWxcp3QdlHr8I2T6Ib
TYIBSzT5iM/9LSdexh0Z8HOqQ0Mdu91znbJZCROkSWN5E9PM/oRaiXoWfSF6zWZy
mjhmI9V+Egl9SOhJU3XL6Q2Zjs98jsnQMIELczHrHFxidWjbdopYD5GOEfx59A+z
R8zZc59TSe1ocWdoJOkToy33iiXhWSUJR3ig6fmofVV7IXF/i9yO07GrlpW+CUip
GVxAUaZdSgPfNtIKXQ10zwzO3VGRgxk2eLs5zb+cMR/wc/gy8cqQY9J9GJwF/k7t
cysCzTW+iaSBaXwYSgVIscO7e7B9x+rt7Py+1MkkYegVE5N5Z2Igh8J5Z/tHe1Fi
A+GuvkcX9aytvSiBtKjqBbe0pSc10h1EfsmAfhH1F/Go94RA+58cPMNPmzN9KkBj
6+TahbMkzk5vsHcLosio6Oj0ZNS0Xo6w/XAZGyhep0gl61YSZNwUGx5pBbcQ6OPi
2I6hs4o9GUZV2id6IZU9
=dJRp
-END PGP SIGNATURE-
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


  1   2   >