Re: [PATCH 0/7] microblaze: fix various problems in building boot images

From: Masahiro Yamada
Date: Fri Dec 07 2018 - 06:30:03 EST


On Thu, Dec 6, 2018 at 11:55 PM Michal Simek <monstr@xxxxxxxxx> wrote:
>
> On 03. 12. 18 8:50, Masahiro Yamada wrote:
> > This patch set fixes various issues in microblaze Makefiles.
> >
> > BTW, "simpleImage.<dt>" works like a phony target to generate the
> > following four images, where the first three are just aliases.
> >
> > - arch/microblaze/boot/simpleImage.<dt>:
> > identical to arch/microblaze/boot/linux.bin
> >
> > - arch/microblaze/boot/simpleImage.<dt>.unstrip:
> > identical to vmlinux
> >
> > - arch/microblaze/boot/simpleImage.<dt>.ub:
> > identical to arch/microblaze/boot/linux.bin.ub
> >
> > - arch/microblaze/boot/simpleImage.<dt>.strip:
> > stripped vmlinux
> >
> > I am not sure how much useful those copies are,
> > but, I tried my best to keep the same behavior.
> >
> > IMHO, I guess DTB=<dt> would be more sensible,
> > but it is up to Michal.
> >
> >
> >
> > Masahiro Yamada (7):
> > microblaze: fix cleaning of boot images
> > microblaze: adjust the help to the real behavior
> > microblaze: move "... is ready" message to arch/microblaze/Makefile
> > microblaze: fix multiple bugs in arch/microblaze/boot/Makefile
> > microblaze: add linux.bin* and simpleImage.* to PHONY
> > microblaze: fix race condition in building boot images
> > microblaze: remove the unneeded code just in case file copy fails
> >
> > arch/microblaze/Makefile | 14 +++++++++-----
> > arch/microblaze/boot/Makefile | 33 +++++++++++++++++----------------
> > arch/microblaze/boot/dts/Makefile | 5 +----
> > 3 files changed, 27 insertions(+), 25 deletions(-)
> >
>
> One more thing I have in my mind for a while is that will be good to
> configure kernel build flags from DT and completely get rid of these
> symbols.
>
> XILINX_MICROBLAZE0_USE_MSR_INSTR
> XILINX_MICROBLAZE0_USE_PCMP_INSTR
> XILINX_MICROBLAZE0_USE_BARREL
> XILINX_MICROBLAZE0_USE_DIV
> XILINX_MICROBLAZE0_USE_HW_MUL
> XILINX_MICROBLAZE0_USE_FPU
>
> It means setup CPUFLAGS based on extracting that values from DT that it
> all the time match the hardware.
> It will also simplify all the CPUFLAGS logic which is in
> arch/microblaze/Makefile.
>
> Do you have any idea how this can be done?


I have no idea.

Parsing DTS with sed or something would be possible, but ugly.

In my opinion, the kernel should be multi platform image,
in other words, it is the least common denominator
of supported platforms.

So, the kernel should enable all features that may or may not be used
depending on platform.

I do not know if this works for MB.


--
Best Regards
Masahiro Yamada