]> xenbits.xensource.com Git - xen.git/commitdiff
arm: Add Kconfig entry to select CONFIG_DTB_FILE
authorMichal Orzel <michal.orzel@arm.com>
Mon, 22 Mar 2021 08:17:15 +0000 (09:17 +0100)
committerJulien Grall <jgrall@amazon.com>
Thu, 1 Apr 2021 16:12:05 +0000 (17:12 +0100)
Currently in order to link existing DTB into Xen image
we need to either specify option CONFIG_DTB_FILE on the
command line or manually add it into .config.
Add Kconfig entry: CONFIG_DTB_FILE
to be able to provide the path to DTB we want to embed
into Xen image. If no path provided - the dtb will not
be embedded.

Remove the line: AFLAGS-y += -DCONFIG_DTB_FILE=\"$(CONFIG_DTB_FILE)\"
as it is not needed since Kconfig will define it in a header
with all the other config options.

Move definition of _sdtb into dtb.S to prevent defining it
if there is no reference to it or if someone protects
_sdtb with #ifdef rather than with .ifnes. If the latter,
we will get a compiler error.

Signed-off-by: Michal Orzel <michal.orzel@arm.com>
Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>
Reviewed-by: Julien Grall <jgrall@amazon.com>
xen/arch/arm/Makefile
xen/arch/arm/arm32/head.S
xen/arch/arm/arm64/head.S
xen/arch/arm/dtb.S
xen/arch/arm/xen.lds.S
xen/common/Kconfig

index 16e6523e2cc6072b7d4cbcdeaf4726b7a9b1d381..46e6a95fec981b45c3120b5b6346340720062400 100644 (file)
@@ -68,9 +68,8 @@ extra-y += $(TARGET_SUBARCH)/head.o
 
 #obj-bin-y += ....o
 
-ifdef CONFIG_DTB_FILE
+ifneq ($(CONFIG_DTB_FILE),"")
 obj-y += dtb.o
-AFLAGS-y += -DCONFIG_DTB_FILE=\"$(CONFIG_DTB_FILE)\"
 endif
 
 ALL_OBJS := $(TARGET_SUBARCH)/head.o $(ALL_OBJS)
@@ -137,7 +136,7 @@ asm-offsets.s: $(TARGET_SUBARCH)/asm-offsets.c
 xen.lds: xen.lds.S
        $(CPP) -P $(a_flags) -MQ $@ -o $@ $<
 
-dtb.o: $(CONFIG_DTB_FILE)
+dtb.o: $(patsubst "%",%,$(CONFIG_DTB_FILE))
 
 .PHONY: clean
 clean::
index c404fa973e9bdbb480499caf73b017d00b1817fe..50f019ed98eaeebadb7fab73c4eb89d08080c12c 100644 (file)
@@ -156,10 +156,10 @@ past_zImage:
         sub   r10, r9, r0            /* r10 := phys-offset */
 
         /* Using the DTB in the .dtb section? */
-#ifdef CONFIG_DTB_FILE
+.ifnes CONFIG_DTB_FILE,""
         ldr   r8, =_sdtb
         add   r8, r10                /* r8 := paddr(DTB) */
-#endif
+.endif
 
         /* Initialize the UART if earlyprintk has been enabled. */
 #ifdef CONFIG_EARLY_PRINTK
index 5d44667bd89dc1677adee6e295e49c7b6e6bf741..f38a8dfca7dc62d6afbd3ffb99bf56179d7c9d14 100644 (file)
@@ -296,9 +296,9 @@ real_start_efi:
         sub   x20, x19, x0           /* x20 := phys-offset */
 
         /* Using the DTB in the .dtb section? */
-#ifdef CONFIG_DTB_FILE
+.ifnes CONFIG_DTB_FILE,""
         load_paddr x21, _sdtb
-#endif
+.endif
 
         /* Initialize the UART if earlyprintk has been enabled. */
 #ifdef CONFIG_EARLY_PRINTK
index c703aef12bf1751b905fb5320f9b74a47e1b10c5..c39f3a095c5831bde9eff5eac2015b764441ea81 100644 (file)
@@ -1,2 +1,3 @@
         .section .dtb,#alloc
+        GLOBAL(_sdtb)
         .incbin CONFIG_DTB_FILE
index 004b182acba68f4dc79296d4ca9987dd346806a0..fc1d39a8861229d7860d639c8d43a47da48013c4 100644 (file)
@@ -220,11 +220,8 @@ SECTIONS
   } :text
   _end = . ;
 
-#ifdef CONFIG_DTB_FILE
   /* Section for the device tree blob (if any). */
-  _sdtb = .;
   .dtb : { *(.dtb) } :text
-#endif
 
   /* Sections to be discarded */
   /DISCARD/ : {
index eb953d171eb22661781dc78c1e3d89e89c1e19e4..a1755cd3807b8e155b9c4578b652727fad3269bc 100644 (file)
@@ -400,6 +400,16 @@ config DOM0_MEM
 
          Leave empty if you are not sure what to specify.
 
+config DTB_FILE
+       string "Absolute path to device tree blob"
+       depends on HAS_DEVICE_TREE
+       help
+         When using a bootloader that has no device tree support or when there
+         is no bootloader at all, use this option to specify the absolute path
+         to a device tree that will be linked directly inside Xen binary.
+
+         This is an optional config. Leave empty if not needed.
+
 config TRACEBUFFER
        bool "Enable tracing infrastructure" if EXPERT
        default y