diff mbox series

[U-Boot,v2] x86: zImage: pass device tree setup data to the kernel

Message ID 20180316173836.GA1813@intel.com
State Superseded
Headers show
Series [U-Boot,v2] x86: zImage: pass device tree setup data to the kernel | expand

Commit Message

Ivan Gorinov March 16, 2018, 5:38 p.m. UTC
On x86 platforms, U-Boot does not provide Device Tree data to the kernel.
This prevents the kernel from using the same hardware description.

Make a copy of DTB data with setup_data header and insert new item
into the the setup data linked list.

Signed-off-by: Ivan Gorinov <ivan.gorinov@intel.com>
---
 arch/x86/include/asm/bootparam.h |  1 +
 arch/x86/lib/zimage.c            | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

Comments

Andy Shevchenko March 16, 2018, 5:52 p.m. UTC | #1
On Fri, 2018-03-16 at 10:38 -0700, Ivan Gorinov wrote:
> On x86 platforms, U-Boot does not provide Device Tree data to the
> kernel.
> This prevents the kernel from using the same hardware description.
> 
> Make a copy of DTB data with setup_data header and insert new item
> into the the setup data linked list.

So, now is the question, what to do with x86 hardware that has DTS in U-
Boot, but uses ACPI tables, generated by U-Boot.

Would it work properly?

I would try to test it on Intel Edison (I hope you may do this yourself
as well), though I don't know when, have not much time to work with
Edison right now.

> Signed-off-by: Ivan Gorinov <ivan.gorinov@intel.com>
> ---
>  arch/x86/include/asm/bootparam.h |  1 +
>  arch/x86/lib/zimage.c            | 32
> ++++++++++++++++++++++++++++++++
>  2 files changed, 33 insertions(+)
> 
> diff --git a/arch/x86/include/asm/bootparam.h
> b/arch/x86/include/asm/bootparam.h
> index 90768a9..ea25cf7 100644
> --- a/arch/x86/include/asm/bootparam.h
> +++ b/arch/x86/include/asm/bootparam.h
> @@ -12,6 +12,7 @@
>  /* setup data types */
>  #define SETUP_NONE			0
>  #define SETUP_E820_EXT			1
> +#define SETUP_DTB			2
>  
>  /* extensible setup data list node */
>  struct setup_data {
> diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c
> index 2a82bc8..41ad4c7 100644
> --- a/arch/x86/lib/zimage.c
> +++ b/arch/x86/lib/zimage.c
> @@ -14,6 +14,8 @@
>   */
>  
>  #include <common.h>
> +#include <malloc.h>
> +#include <asm/global_data.h>
>  #include <asm/acpi_table.h>
>  #include <asm/io.h>
>  #include <asm/ptrace.h>
> @@ -95,6 +97,35 @@ static int get_boot_protocol(struct setup_header
> *hdr)
>  	}
>  }
>  
> +static int setup_device_tree(struct setup_header *hdr)
> +{
> +	const void *fdt_blob = gd->fdt_blob;
> +	struct setup_data *sd;
> +	int size;
> +
> +	if (!fdt_blob)
> +		return 0;
> +
> +	size = fdt_totalsize(fdt_blob);
> +	if (size < 0)
> +		return -EINVAL;
> +
> +	size += sizeof(struct setup_data);
> +	sd = (struct setup_data *)malloc(size);
> +	if (!sd) {
> +		printf("Not enough memory for DTB setup data\n");
> +		return -ENOMEM;
> +	}
> +
> +	sd->next = hdr->setup_data;
> +	sd->type = SETUP_DTB;
> +	sd->len = fdt_totalsize(fdt_blob);
> +	memcpy(sd->data, fdt_blob, sd->len);
> +	hdr->setup_data = (unsigned long)sd;
> +
> +	return 0;
> +}
> +
>  struct boot_params *load_zimage(char *image, unsigned long
> kernel_size,
>  				ulong *load_addressp)
>  {
> @@ -262,6 +293,7 @@ int setup_zimage(struct boot_params *setup_base,
> char *cmd_line, int auto_boot,
>  #endif
>  
>  	setup_video(&setup_base->screen_info);
> +	setup_device_tree(hdr);
>  
>  	return 0;
>  }
Andy Shevchenko March 16, 2018, 5:55 p.m. UTC | #2
On Fri, 2018-03-16 at 19:52 +0200, Andy Shevchenko wrote:
> On Fri, 2018-03-16 at 10:38 -0700, Ivan Gorinov wrote:
> > On x86 platforms, U-Boot does not provide Device Tree data to the
> > kernel.
> > This prevents the kernel from using the same hardware description.
> > 
> > Make a copy of DTB data with setup_data header and insert new item
> > into the the setup data linked list.
> 
> So, now is the question, what to do with x86 hardware that has DTS in
> U-
> Boot, but uses ACPI tables, generated by U-Boot.
> 
> Would it work properly?
> 
> I would try to test it on Intel Edison (I hope you may do this
> yourself
> as well), though I don't know when, have not much time to work with
> Edison right now.

Perhaps for now you may use CONFIG_ACPI_GENERATE (or how it's called?).

> >  #include <common.h>
> > +#include <malloc.h>

> > +#include <asm/global_data.h>
> >  #include <asm/acpi_table.h>

Not in order.
Simon Glass March 16, 2018, 7:40 p.m. UTC | #3
On 16 March 2018 at 11:38, Ivan Gorinov <ivan.gorinov@intel.com> wrote:
>
> On x86 platforms, U-Boot does not provide Device Tree data to the kernel.
> This prevents the kernel from using the same hardware description.
>
> Make a copy of DTB data with setup_data header and insert new item
> into the the setup data linked list.
>
> Signed-off-by: Ivan Gorinov <ivan.gorinov@intel.com>
> ---
>  arch/x86/include/asm/bootparam.h |  1 +
>  arch/x86/lib/zimage.c            | 32 ++++++++++++++++++++++++++++++++
>  2 files changed, 33 insertions(+)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

See below

> diff --git a/arch/x86/include/asm/bootparam.h b/arch/x86/include/asm/bootparam.h
> index 90768a9..ea25cf7 100644
> --- a/arch/x86/include/asm/bootparam.h
> +++ b/arch/x86/include/asm/bootparam.h
> @@ -12,6 +12,7 @@
>  /* setup data types */
>  #define SETUP_NONE                     0
>  #define SETUP_E820_EXT                 1
> +#define SETUP_DTB                      2

Make that an enum?

>
>  /* extensible setup data list node */
>  struct setup_data {
> diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c
> index 2a82bc8..41ad4c7 100644
> --- a/arch/x86/lib/zimage.c
> +++ b/arch/x86/lib/zimage.c
> @@ -14,6 +14,8 @@
>   */
>
>  #include <common.h>
> +#include <malloc.h>
> +#include <asm/global_data.h>
>  #include <asm/acpi_table.h>
>  #include <asm/io.h>
>  #include <asm/ptrace.h>
> @@ -95,6 +97,35 @@ static int get_boot_protocol(struct setup_header *hdr)
>         }
>  }
>
> +static int setup_device_tree(struct setup_header *hdr)
> +{
> +       const void *fdt_blob = gd->fdt_blob;
> +       struct setup_data *sd;
> +       int size;
> +
> +       if (!fdt_blob)
> +               return 0;
> +
> +       size = fdt_totalsize(fdt_blob);
> +       if (size < 0)
> +               return -EINVAL;
> +
> +       size += sizeof(struct setup_data);
> +       sd = (struct setup_data *)malloc(size);
> +       if (!sd) {
> +               printf("Not enough memory for DTB setup data\n");
> +               return -ENOMEM;
> +       }
> +
> +       sd->next = hdr->setup_data;
> +       sd->type = SETUP_DTB;
> +       sd->len = fdt_totalsize(fdt_blob);
> +       memcpy(sd->data, fdt_blob, sd->len);
> +       hdr->setup_data = (unsigned long)sd;
> +
> +       return 0;
> +}
> +
>  struct boot_params *load_zimage(char *image, unsigned long kernel_size,
>                                 ulong *load_addressp)
>  {
> @@ -262,6 +293,7 @@ int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
>  #endif
>
>         setup_video(&setup_base->screen_info);
> +       setup_device_tree(hdr);
>
>         return 0;
>  }
> --
> 2.7.4
>
Ivan Gorinov March 17, 2018, 12:16 a.m. UTC | #4
On Fri, 2018-03-16 at 19:52 +0200, Andy Shevchenko wrote:
> On x86 platforms, U-Boot does not provide Device Tree data to the
> > kernel.
> > This prevents the kernel from using the same hardware description.
> > 
> > Make a copy of DTB data with setup_data header and insert new item
> > into the the setup data linked list.
> So, now is the question, what to do with x86 hardware that has DTS in U-
> Boot, but uses ACPI tables, generated by U-Boot.
> 
> Would it work properly?

It will work because CONFIG_OF is disabled in most x86 kernel configurations.

> I would try to test it on Intel Edison (I hope you may do this yourself
> as well), though I don't know when, have not much time to work with
> Edison right now.

I am going to try that on a Minnowboard.
Andy Shevchenko March 19, 2018, 9:19 a.m. UTC | #5
On Fri, 2018-03-16 at 17:16 -0700, Ivan Gorinov wrote:
> On Fri, 2018-03-16 at 19:52 +0200, Andy Shevchenko wrote:
> > On x86 platforms, U-Boot does not provide Device Tree data to the
> > > kernel.
> > > This prevents the kernel from using the same hardware description.
> > > 
> > > Make a copy of DTB data with setup_data header and insert new item
> > > into the the setup data linked list.
> > 
> > So, now is the question, what to do with x86 hardware that has DTS
> > in U-
> > Boot, but uses ACPI tables, generated by U-Boot.
> > 
> > Would it work properly?
> 
> It will work because CONFIG_OF is disabled in most x86 kernel
> configurations.

No one prevents to put CONFIG_OF=y into kernel configuration.

> > I would try to test it on Intel Edison (I hope you may do this
> > yourself
> > as well), though I don't know when, have not much time to work with
> > Edison right now.
> 
> I am going to try that on a Minnowboard.

Yes, please.
diff mbox series

Patch

diff --git a/arch/x86/include/asm/bootparam.h b/arch/x86/include/asm/bootparam.h
index 90768a9..ea25cf7 100644
--- a/arch/x86/include/asm/bootparam.h
+++ b/arch/x86/include/asm/bootparam.h
@@ -12,6 +12,7 @@ 
 /* setup data types */
 #define SETUP_NONE			0
 #define SETUP_E820_EXT			1
+#define SETUP_DTB			2
 
 /* extensible setup data list node */
 struct setup_data {
diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c
index 2a82bc8..41ad4c7 100644
--- a/arch/x86/lib/zimage.c
+++ b/arch/x86/lib/zimage.c
@@ -14,6 +14,8 @@ 
  */
 
 #include <common.h>
+#include <malloc.h>
+#include <asm/global_data.h>
 #include <asm/acpi_table.h>
 #include <asm/io.h>
 #include <asm/ptrace.h>
@@ -95,6 +97,35 @@  static int get_boot_protocol(struct setup_header *hdr)
 	}
 }
 
+static int setup_device_tree(struct setup_header *hdr)
+{
+	const void *fdt_blob = gd->fdt_blob;
+	struct setup_data *sd;
+	int size;
+
+	if (!fdt_blob)
+		return 0;
+
+	size = fdt_totalsize(fdt_blob);
+	if (size < 0)
+		return -EINVAL;
+
+	size += sizeof(struct setup_data);
+	sd = (struct setup_data *)malloc(size);
+	if (!sd) {
+		printf("Not enough memory for DTB setup data\n");
+		return -ENOMEM;
+	}
+
+	sd->next = hdr->setup_data;
+	sd->type = SETUP_DTB;
+	sd->len = fdt_totalsize(fdt_blob);
+	memcpy(sd->data, fdt_blob, sd->len);
+	hdr->setup_data = (unsigned long)sd;
+
+	return 0;
+}
+
 struct boot_params *load_zimage(char *image, unsigned long kernel_size,
 				ulong *load_addressp)
 {
@@ -262,6 +293,7 @@  int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
 #endif
 
 	setup_video(&setup_base->screen_info);
+	setup_device_tree(hdr);
 
 	return 0;
 }