All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/9] Devicetree build consolidation
@ 2018-09-05 23:53 ` Rob Herring
  0 siblings, 0 replies; 56+ messages in thread
From: Rob Herring @ 2018-09-05 23:53 UTC (permalink / raw)
  To: devicetree, linux-kernel, Masahiro Yamada
  Cc: Frank Rowand, Michal Marek, Vineet Gupta, Russell King,
	Catalin Marinas, Will Deacon, Yoshinori Sato, Michal Simek,
	Ralf Baechle, Paul Burton, James Hogan, Ley Foon Tan,
	Benjamin Herrenschmidt, Paul Mackerras, Michael Ellerman,
	Chris Zankel, Max Filippov, linux-kbuild, linux-snps-arc,
	linux-arm-kernel, uclinux-h8-devel, linux-mips, nios2-dev,
	linuxppc-dev, linux-xtensa

This series addresses a couple of issues I have with building dts files.

First, the ability to build all the dts files in the tree. This has been
supported on most arches for some time with powerpc being the main
exception. The reason powerpc wasn't supported was it needed a change
in the location built dtb files are put.

Secondly, it's a pain to acquire all the cross-compilers needed to build
dtbs for each arch. There's no reason to build with the cross compiler and
the host compiler is perfectly fine as we only need the pre-processor.

I started addressing just those 2 problems, but kept finding small
differences such as target dependencies and dtbs_install support across
architectures. Instead of trying to align all these, I've consolidated the
build targets moving them out of the arch makefiles.

I'd like to take the series via the DT tree.

Rob

v2:
 - Fix $arch/boot/dts path check for out of tree builds
 - Fix dtc dependency for building built-in dtbs
 - Fix microblaze built-in dtb building
 - Add dtbs target for microblaze

Rob Herring (9):
  powerpc: build .dtb files in dts directory
  nios2: build .dtb files in dts directory
  nios2: use common rules to build built-in dtb
  nios2: fix building all dtbs
  c6x: use common built-in dtb support
  kbuild: consolidate Devicetree dtb build rules
  powerpc: enable building all dtbs
  c6x: enable building all dtbs
  microblaze: enable building all dtbs

 Makefile                           | 32 +++++++++++++++++++
 arch/arc/Makefile                  |  6 ----
 arch/arm/Makefile                  | 20 +-----------
 arch/arm64/Makefile                | 17 +----------
 arch/c6x/Makefile                  |  2 --
 arch/c6x/boot/dts/Makefile         | 17 +++++------
 arch/c6x/boot/dts/linked_dtb.S     |  2 --
 arch/c6x/include/asm/sections.h    |  1 -
 arch/c6x/kernel/setup.c            |  4 +--
 arch/c6x/kernel/vmlinux.lds.S      | 10 ------
 arch/h8300/Makefile                | 11 +------
 arch/microblaze/Makefile           |  4 +--
 arch/microblaze/boot/dts/Makefile  |  4 +++
 arch/mips/Makefile                 | 15 +--------
 arch/nds32/Makefile                |  2 +-
 arch/nios2/Makefile                | 11 +------
 arch/nios2/boot/Makefile           | 22 --------------
 arch/nios2/boot/dts/Makefile       |  6 ++++
 arch/nios2/boot/linked_dtb.S       | 19 ------------
 arch/powerpc/Makefile              |  3 --
 arch/powerpc/boot/Makefile         | 49 ++++++++++++++----------------
 arch/powerpc/boot/dts/Makefile     |  6 ++++
 arch/powerpc/boot/dts/fsl/Makefile |  4 +++
 arch/xtensa/Makefile               | 12 +-------
 scripts/Makefile.lib               |  2 +-
 25 files changed, 93 insertions(+), 188 deletions(-)
 delete mode 100644 arch/c6x/boot/dts/linked_dtb.S
 create mode 100644 arch/nios2/boot/dts/Makefile
 delete mode 100644 arch/nios2/boot/linked_dtb.S
 create mode 100644 arch/powerpc/boot/dts/Makefile
 create mode 100644 arch/powerpc/boot/dts/fsl/Makefile

--
2.17.1

^ permalink raw reply	[flat|nested] 56+ messages in thread

end of thread, other threads:[~2018-09-12  3:21 UTC | newest]

Thread overview: 56+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-05 23:53 [PATCH v2 0/9] Devicetree build consolidation Rob Herring
2018-09-05 23:53 ` Rob Herring
2018-09-05 23:53 ` Rob Herring
2018-09-05 23:53 ` Rob Herring
2018-09-05 23:53 ` [PATCH v2 1/9] powerpc: build .dtb files in dts directory Rob Herring
2018-09-05 23:53 ` [PATCH v2 2/9] nios2: " Rob Herring
2018-09-07  2:21   ` Ley Foon Tan
2018-09-07 18:09     ` Rob Herring
2018-09-12  3:18       ` Ley Foon Tan
2018-09-05 23:53 ` [PATCH v2 3/9] nios2: use common rules to build built-in dtb Rob Herring
2018-09-05 23:53 ` [PATCH v2 4/9] nios2: fix building all dtbs Rob Herring
2018-09-05 23:53 ` [PATCH v2 5/9] c6x: use common built-in dtb support Rob Herring
2018-09-05 23:53 ` [PATCH v2 6/9] kbuild: consolidate Devicetree dtb build rules Rob Herring
2018-09-05 23:53   ` Rob Herring
2018-09-05 23:53   ` Rob Herring
2018-09-05 23:53   ` Rob Herring
2018-09-06 10:05   ` Will Deacon
2018-09-06 10:05     ` Will Deacon
2018-09-06 10:05     ` Will Deacon
2018-09-06 10:05     ` Will Deacon
2018-09-06 17:11   ` Paul Burton
2018-09-06 17:11     ` Paul Burton
2018-09-06 17:11     ` Paul Burton
2018-09-06 17:11     ` Paul Burton
2018-09-07  2:08   ` Ley Foon Tan
2018-09-07  2:08     ` Ley Foon Tan
2018-09-07  2:08     ` Ley Foon Tan
2018-09-07  2:08     ` Ley Foon Tan
2018-09-07  2:08     ` Ley Foon Tan
2018-09-07 10:32   ` Masahiro Yamada
2018-09-07 10:32     ` Masahiro Yamada
2018-09-07 10:32     ` Masahiro Yamada
2018-09-07 10:32     ` Masahiro Yamada
2018-09-07 12:17     ` Rob Herring
2018-09-07 12:17       ` Rob Herring
2018-09-07 12:17       ` Rob Herring
2018-09-07 12:17       ` Rob Herring
2018-09-07 12:17       ` Rob Herring
2018-09-07 16:47       ` Masahiro Yamada
2018-09-07 16:47         ` Masahiro Yamada
2018-09-07 16:47         ` Masahiro Yamada
2018-09-07 16:47         ` Masahiro Yamada
2018-09-07 16:47         ` Masahiro Yamada
2018-09-09 23:27   ` Masahiro Yamada
2018-09-09 23:27     ` Masahiro Yamada
2018-09-09 23:27     ` Masahiro Yamada
2018-09-09 23:27     ` Masahiro Yamada
2018-09-09 23:27     ` Masahiro Yamada
2018-09-10 14:35     ` Rob Herring
2018-09-10 14:35       ` Rob Herring
2018-09-10 14:35       ` Rob Herring
2018-09-10 14:35       ` Rob Herring
2018-09-10 14:35       ` Rob Herring
2018-09-05 23:53 ` [PATCH v2 7/9] powerpc: enable building all dtbs Rob Herring
2018-09-05 23:53 ` [PATCH v2 8/9] c6x: " Rob Herring
2018-09-05 23:53 ` [PATCH v2 9/9] microblaze: " Rob Herring

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.