All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/15] Add support for XSM
@ 2014-03-17 14:05 Julien Grall
  2014-03-17 14:05 ` [PATCH v2 01/15] xen/arm: kernel: Don't hardcode flash address Julien Grall
                   ` (15 more replies)
  0 siblings, 16 replies; 28+ messages in thread
From: Julien Grall @ 2014-03-17 14:05 UTC (permalink / raw)
  To: xen-devel
  Cc: stefano.stabellini, Daniel De Graaf, Julien Grall, tim,
	ian.campbell

Hello all,

This patch series aims to add support for XSM on ARM.
I've tried to boot Xen on my board with the policy provided in the repository
(see tools/flask/policy). It boots with few warnings because some hypercall
are not describe in the policy.

The series is divided following:
    - #1-2: It's unrelated to this series, but the function copy_paddr
    will be used later
    - #3: Define correctly size_t on ARM
    - #4: Bug fix when xen is booting with XSM blob and without initrd
    - #5-6: XSM movement to be able to use it on ARM
    - #7-11: Compilation fix for ARM
    - #12-14: Rework XSM initialization
    - #15: Add XSM support for ARM

Major changes in v2:
    - Fix various typo in commit message
    - Fix compilation on ARM64
    - Add xsm_core_init (patch #14) to avoid code duplication

A working tree can be found here:
    git://xenbits.xen.org/people/julieng/xen-unstable.git branch xsm-v2

Sincerely yours,

Cc: Daniel De Graaf <dgdegra@tycho.nsa.gov>
*** BLURB HERE ***

Julien Grall (15):
  xen/arm: kernel: Don't hardcode flash address
  xen/arm: Remove the parameter "attrindx" in copy_from_paddr
  xen/arm: Correctly define size_t
  xen/arm: next_module: Skip module if the size is 0
  xen/xsm: xsm functions for PCI passthrough is not x86 specific
  xen/xsm: xsm_do_mca is x86 specific
  xen/xsm: flask: Fix compilation when CONFIG_COMPAT=n
  xen/xsm: flask: Rename variable "bool" in "b"
  xen/xsm: flask: MSI is PCI specific
  xen/xsm: flask: flask_copying_string is taking a XEN_GUEST_HANDLE as
    first param
  xen/xsm: flask: Add missing header in hooks.c
  xen/xsm: Don't use multiboot by default to initialize XSM
  xen/xsm: Add xsm_core_init function
  xen/xsm: Add support for device tree
  xen/arm: Add support for XSM

 docs/misc/arm/device-tree/booting.txt |    1 +
 xen/arch/arm/domain_build.c           |    2 +-
 xen/arch/arm/kernel.c                 |   40 +++---
 xen/arch/arm/kernel.h                 |    1 -
 xen/arch/arm/setup.c                  |    9 +-
 xen/arch/arm/traps.c                  |    1 +
 xen/arch/x86/setup.c                  |    2 +-
 xen/common/device_tree.c              |    2 +
 xen/include/asm-arm/setup.h           |    2 +-
 xen/include/asm-arm/types.h           |    4 +
 xen/include/asm-x86/config.h          |    2 +
 xen/include/xen/device_tree.h         |    3 +-
 xen/include/xsm/dummy.h               |   15 ++-
 xen/include/xsm/xsm.h                 |   51 ++++++--
 xen/xsm/dummy.c                       |    4 +-
 xen/xsm/flask/flask_op.c              |    4 +-
 xen/xsm/flask/hooks.c                 |  228 +++++++++++++++++++--------------
 xen/xsm/flask/include/conditional.h   |    4 +-
 xen/xsm/flask/ss/services.c           |   14 +-
 xen/xsm/xsm_core.c                    |   60 +++++++--
 xen/xsm/xsm_policy.c                  |   47 ++++++-
 21 files changed, 323 insertions(+), 173 deletions(-)

-- 
1.7.10.4

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2014-03-21 12:14 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-17 14:05 [PATCH v2 00/15] Add support for XSM Julien Grall
2014-03-17 14:05 ` [PATCH v2 01/15] xen/arm: kernel: Don't hardcode flash address Julien Grall
2014-03-17 14:05 ` [PATCH v2 02/15] xen/arm: Remove the parameter "attrindx" in copy_from_paddr Julien Grall
2014-03-18 17:18   ` Ian Campbell
2014-03-17 14:05 ` [PATCH v2 03/15] xen/arm: Correctly define size_t Julien Grall
2014-03-17 14:05 ` [PATCH v2 04/15] xen/arm: next_module: Skip module if the size is 0 Julien Grall
2014-03-17 14:05 ` [PATCH v2 05/15] xen/xsm: xsm functions for PCI passthrough is not x86 specific Julien Grall
2014-03-17 14:05 ` [PATCH v2 06/15] xen/xsm: xsm_do_mca is " Julien Grall
2014-03-17 14:05 ` [PATCH v2 07/15] xen/xsm: flask: Fix compilation when CONFIG_COMPAT=n Julien Grall
2014-03-18 17:20   ` Ian Campbell
2014-03-17 14:05 ` [PATCH v2 08/15] xen/xsm: flask: Rename variable "bool" in "b" Julien Grall
2014-03-17 14:05 ` [PATCH v2 09/15] xen/xsm: flask: MSI is PCI specific Julien Grall
2014-03-18 17:22   ` Ian Campbell
2014-03-17 14:06 ` [PATCH v2 10/15] xen/xsm: flask: flask_copying_string is taking a XEN_GUEST_HANDLE as first param Julien Grall
2014-03-17 15:39   ` Jan Beulich
2014-03-17 15:46     ` Julien Grall
2014-03-17 16:33       ` Jan Beulich
2014-03-17 17:00     ` Stefano Stabellini
2014-03-17 14:06 ` [PATCH v2 11/15] xen/xsm: flask: Add missing header in hooks.c Julien Grall
2014-03-17 14:06 ` [PATCH v2 12/15] xen/xsm: Don't use multiboot by default to initialize XSM Julien Grall
2014-03-17 14:06 ` [PATCH v2 13/15] xen/xsm: Add xsm_core_init function Julien Grall
2014-03-18 17:23   ` Ian Campbell
2014-03-17 14:06 ` [PATCH v2 14/15] xen/xsm: Add support for device tree Julien Grall
2014-03-18 17:24   ` Ian Campbell
2014-03-18 17:34     ` Andrew Cooper
2014-03-18 20:52       ` Julien Grall
2014-03-17 14:06 ` [PATCH v2 15/15] xen/arm: Add support for XSM Julien Grall
2014-03-21 12:14 ` [PATCH v2 00/15] " Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.