Re: [U-Boot] [PATCH v3] x86: zImage: pass device tree setup data to the kernel

2018-03-19 Thread Simon Glass
On 18 March 2018 at 21:38, Bin Meng wrote: > Hi Ivan, > > On Sat, Mar 17, 2018 at 8:32 AM, 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

Re: [U-Boot] [PATCH v3] x86: zImage: pass device tree setup data to the kernel

2018-03-18 Thread Bin Meng
Hi Ivan, On Sat, Mar 17, 2018 at 8:32 AM, 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

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

2018-03-16 Thread Ivan Gorinov
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