mbox

[Xen-devel,v2,0/9] xen: arm: Refactor/improve early DT parsing and multiboot module support

Message ID 1403801178.31742.2.camel@kazak.uk.xensource.com
State New
Headers show

Pull-request

git://xenbits.xen.org/people/ianc/xen.git multiboot-improvements-v2

Message

Ian Campbell June 26, 2014, 4:46 p.m. UTC
On Thu, 2014-06-26 at 17:45 +0100, Ian Campbell wrote:
> The following

I meant to include these git tree details too:

The following changes since commit 1c9d2acad014e997771c09d75bc071db754d2f4b:

  QEMU_TAG update (2014-06-25 15:58:02 +0100)

are available in the git repository at:

  git://xenbits.xen.org/people/ianc/xen.git multiboot-improvements-v2

for you to fetch changes up to ea5a15a9430ee42e18453f3c825c2847d3b1afb2:

  xen: arm: update multiboot device tree bindings. (2014-06-26 17:41:47 +0100)

----------------------------------------------------------------
Ian Campbell (9):
      xen: arm: implement generic multiboot compatibility strings
      xen: arm: /chosen/module@N/bootargs bootprotcol node is not deprecated
      xen: arm: prefer typesafe max()/min() over MAX()/MIN()
      xen: arm: rename early_info structs
      xen: arm: move boot time fdt parsing into separate file.
      xen: arm: move device_tree_bootargs to bootfdt.c, renaming to boot_fdt_cmdline
      xen: arm: store per-boot module type instead of relying on index
      xen: arm: support bootmodule type detection by ordering
      xen: arm: update multiboot device tree bindings.

 docs/misc/arm/device-tree/booting.txt |   59 ++++-
 xen/arch/arm/Makefile                 |    1 +
 xen/arch/arm/bootfdt.c                |  368 +++++++++++++++++++++++++++++++
 xen/arch/arm/domain_build.c           |   21 +-
 xen/arch/arm/kernel.c                 |   15 +-
 xen/arch/arm/kernel.h                 |    3 +-
 xen/arch/arm/p2m.c                    |    4 +-
 xen/arch/arm/setup.c                  |  112 +++++++---
 xen/common/device_tree.c              |  386 +--------------------------------
 xen/include/asm-arm/setup.h           |   53 +++++
 xen/include/xen/device_tree.h         |   44 ----
 xen/xsm/xsm_policy.c                  |   19 +-
 12 files changed, 599 insertions(+), 486 deletions(-)
 create mode 100644 xen/arch/arm/bootfdt.c

Comments

Fu Wei Fu June 27, 2014, 11:58 a.m. UTC | #1
Hi Ian,
Great thanks for your update,
I have tested it with my new patch(including the new compatible streams), this branch works well. :-)
I will submit a new multiboot patch for GRUB ASAP! :-)

On 06/27/2014 12:46 AM, Ian Campbell wrote:
> On Thu, 2014-06-26 at 17:45 +0100, Ian Campbell wrote:
>> The following
> 
> I meant to include these git tree details too:
> 
> The following changes since commit 1c9d2acad014e997771c09d75bc071db754d2f4b:
> 
>   QEMU_TAG update (2014-06-25 15:58:02 +0100)
> 
> are available in the git repository at:
> 
>   git://xenbits.xen.org/people/ianc/xen.git multiboot-improvements-v2
> 
> for you to fetch changes up to ea5a15a9430ee42e18453f3c825c2847d3b1afb2:
> 
>   xen: arm: update multiboot device tree bindings. (2014-06-26 17:41:47 +0100)
> 
> ----------------------------------------------------------------
> Ian Campbell (9):
>       xen: arm: implement generic multiboot compatibility strings
>       xen: arm: /chosen/module@N/bootargs bootprotcol node is not deprecated
>       xen: arm: prefer typesafe max()/min() over MAX()/MIN()
>       xen: arm: rename early_info structs
>       xen: arm: move boot time fdt parsing into separate file.
>       xen: arm: move device_tree_bootargs to bootfdt.c, renaming to boot_fdt_cmdline
>       xen: arm: store per-boot module type instead of relying on index
>       xen: arm: support bootmodule type detection by ordering
>       xen: arm: update multiboot device tree bindings.
> 
>  docs/misc/arm/device-tree/booting.txt |   59 ++++-
>  xen/arch/arm/Makefile                 |    1 +
>  xen/arch/arm/bootfdt.c                |  368 +++++++++++++++++++++++++++++++
>  xen/arch/arm/domain_build.c           |   21 +-
>  xen/arch/arm/kernel.c                 |   15 +-
>  xen/arch/arm/kernel.h                 |    3 +-
>  xen/arch/arm/p2m.c                    |    4 +-
>  xen/arch/arm/setup.c                  |  112 +++++++---
>  xen/common/device_tree.c              |  386 +--------------------------------
>  xen/include/asm-arm/setup.h           |   53 +++++
>  xen/include/xen/device_tree.h         |   44 ----
>  xen/xsm/xsm_policy.c                  |   19 +-
>  12 files changed, 599 insertions(+), 486 deletions(-)
>  create mode 100644 xen/arch/arm/bootfdt.c
> 
>