Hi,
This RFC patch series is for introducing dynamic programming i.e. add/remove the
devices during run time. Using "xl dt_overlay" a device can be added/removed
with dtbo.
For adding a node using dynamic programming:
1. flatten device tree overlay node will be added to a fdt
2. Updated fdt will be unflattened to a new dt_host_new
3. Extract the newly added node information from dt_host_new
4. Add the added node under correct parent in original dt_host.
3. Map/Permit interrupt and iomem region as required.
For removing a node:
1. Find the node with given path.
2. Check if the node is used by any of domus. Removes the node only when
it's not used by any domain.
3. Removes IRQ permissions and MMIO access.
5. Find the node in dt_host and delete the device node entry from dt_host.
6. Free the overlay_tracker entry which means free dt_host_new also(created
in adding node step).
Change Log:
v3 -> v4:
Add support for adding node's children.
Add rwlock to dt_host functions.
Corrected fdt size issue when applying overlay into it.
Add memory allocation fail handling for unflatten_device_tree().
Changed xl overlay to xl dt_overlay.
Correct commit messages.
Addressed code issue from v3 review.
v2 -> v3:
Moved overlay functionalities to dt_overlay.c file.
Renamed XEN_SYSCTL_overlay to XEN_SYSCTL_dt_overlay.
Add dt_* prefix to overlay_add/remove_nodes.
Added dtdevs_lock to protect iommu_add_dt_device().
For iommu, moved spin_lock to caller.
Address code issue from v2 review.
v1 -> v2:
Add support for multiple node addition/removal using dtbo.
Replaced fpga-add and fpga-remove with one hypercall overlay_op.
Moved common domain_build.c function to device.c
Add OVERLAY_DTB configuration.
Renamed overlay_get_target() to fdt_overlay_get_target().
Split remove_device patch into two patches.
Moved overlay_add/remove code to sysctl and changed it from domctl to sysctl.
Added all overlay code under CONFIG_OVERLAY_DTB
Renamed all tool domains fpga function to overlay
Addressed code issues from v1 review.
Regards,
Vikram
Vikram Garhwal (16):
xen/arm/device: Remove __init from function type
xen/arm: Add CONFIG_OVERLAY_DTB
libfdt: Keep fdt functions after init for CONFIG_OVERLAY_DTB.
libfdt: overlay: change overlay_get_target()
xen/device-tree: Add _dt_find_node_by_path() to find nodes in device
tree
xen/smmu: Add remove_device callback for smmu_iommu ops
xen/iommu: Move spin_lock from iommu_dt_device_is_assigned to caller
xen/iommu: protect iommu_add_dt_device() with dtdevs_lock
xen/iommu: Introduce iommu_remove_dt_device()
asm/smp.h: move cpu related function to asm/cpu.h
common/device_tree: Add rwlock for dt_host
xen/arm: Implement device tree node removal functionalities
xen/arm: Implement device tree node addition functionalities
tools/libs/ctrl: Implement new xc interfaces for dt overlay
tools/libs/light: Implement new libxl functions for device tree
overlay ops
tools/xl: Add new xl command overlay for device tree overlay support
tools/include/libxl.h | 8 +
tools/include/xenctrl.h | 3 +
tools/libs/ctrl/Makefile.common | 1 +
tools/libs/ctrl/xc_dt_overlay.c | 51 ++
tools/libs/light/Makefile | 3 +
tools/libs/light/libxl_dt_overlay.c | 72 +++
tools/xl/xl.h | 1 +
tools/xl/xl_cmdtable.c | 6 +
tools/xl/xl_vmcontrol.c | 48 ++
xen/arch/arm/Kconfig | 5 +
xen/arch/arm/device.c | 145 +++++
xen/arch/arm/domain_build.c | 142 -----
xen/arch/arm/efi/efi-boot.h | 1 +
xen/arch/arm/include/asm/cpu.h | 35 +
xen/arch/arm/include/asm/domain.h | 1 +
xen/arch/arm/include/asm/psci.h | 1 +
xen/arch/arm/include/asm/setup.h | 3 +
xen/arch/arm/include/asm/smp.h | 24 -
xen/common/Makefile | 1 +
xen/common/device_tree.c | 59 +-
xen/common/dt_overlay.c | 876 ++++++++++++++++++++++++++
xen/common/libfdt/Makefile | 4 +
xen/common/libfdt/fdt_overlay.c | 29 +-
xen/common/libfdt/version.lds | 1 +
xen/common/sysctl.c | 5 +
xen/drivers/passthrough/arm/smmu.c | 56 ++
xen/drivers/passthrough/device_tree.c | 70 +-
xen/include/public/sysctl.h | 19 +
xen/include/xen/cpu.h | 4 +
xen/include/xen/device_tree.h | 27 +-
xen/include/xen/dt_overlay.h | 55 ++
xen/include/xen/iommu.h | 2 +
xen/include/xen/libfdt/libfdt.h | 18 +
xen/include/xen/softirq.h | 4 +
34 files changed, 1573 insertions(+), 207 deletions(-)
create mode 100644 tools/libs/ctrl/xc_dt_overlay.c
create mode 100644 tools/libs/light/libxl_dt_overlay.c
create mode 100644 xen/arch/arm/include/asm/cpu.h
create mode 100644 xen/common/dt_overlay.c
create mode 100644 xen/include/xen/dt_overlay.h
--
2.17.1