mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
7bdfe85929
enable DTS support for keymile mpc83xx based boards.
get rid of compile warning:
===================== WARNING ======================
This board does not use CONFIG_DM_ETH (Driver Model
for Ethernet drivers). Please update the board to use
CONFIG_DM_ETH before the v2020.07 release. Failure to
update by the deadline may result in board removal.
See doc/driver-model/migration.rst for more info.
====================================================
Therefore done:
- add DTS for all mpc83xx based boards from keymile
mainly they are not mainlined to linux.
- add u-boot specific dtsi
- add stdout-path
- add missing ucc4 par_io definitions, which were
in board code, but not in linux DTS
- remove not used ethernet nodes
Signed-off-by: Heiko Schocher <hs@denx.de>
Patch-cc: Mario Six <mario.six@gdsys.cc>
Patch-cc: Qiang Zhao <qiang.zhao@nxp.com>
Series-to: u-boot
Series-version: 3
Series-changes: 3
- rebase patchset to current mainline commit
c0192950df
- update defconfig files
Series-changes: 2
- add patch which fixes Codingstyle errors in drivers/qe
- add patch which converts the mpc83xx based boards from
keymile to DM_ETH
Cover-letter:
powerpc, mpc83xx: add DM_ETH support
This patch series adds DM ethernet support for mpc83xx based
keymile boards.
Travis build:
END
39 lines
1.5 KiB
Makefile
39 lines
1.5 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
dtb-$(CONFIG_TARGET_KMCOGE5NE) += kmcoge5ne.dtb
|
|
dtb-$(CONFIG_TARGET_KMETER1) += kmeter1.dtb
|
|
dtb-$(CONFIG_TARGET_KMOPTI2) += kmopti2.dtb
|
|
dtb-$(CONFIG_TARGET_KMSUPX5) += kmsupc5.dtb kmsupm5.dtb
|
|
dtb-$(CONFIG_TARGET_KMTEGR1) += kmtegr1.dtb
|
|
dtb-$(CONFIG_TARGET_KMTEPR2) += kmtepr2.dtb
|
|
dtb-$(CONFIG_TARGET_MPC8548CDS) += mpc8548cds.dtb mpc8548cds_36b.dtb
|
|
dtb-$(CONFIG_TARGET_P1010RDB_PA) += p1010rdb-pa.dtb p1010rdb-pa_36b.dtb
|
|
dtb-$(CONFIG_TARGET_P1010RDB_PB) += p1010rdb-pb.dtb p1010rdb-pb_36b.dtb
|
|
dtb-$(CONFIG_TARGET_P1020RDB_PC) += p1020rdb-pc.dtb p1020rdb-pc_36b.dtb
|
|
dtb-$(CONFIG_TARGET_P1020RDB_PD) += p1020rdb-pd.dtb
|
|
dtb-$(CONFIG_TARGET_P2020RDB) += p2020rdb-pc.dtb p2020rdb-pc_36b.dtb
|
|
dtb-$(CONFIG_TARGET_P2041RDB) += p2041rdb.dtb
|
|
dtb-$(CONFIG_TARGET_P3041DS) += p3041ds.dtb
|
|
dtb-$(CONFIG_TARGET_P4080DS) += p4080ds.dtb
|
|
dtb-$(CONFIG_TARGET_P5040DS) += p5040ds.dtb
|
|
dtb-$(CONFIG_TARGET_SOCRATES) += socrates.dtb
|
|
dtb-$(CONFIG_TARGET_T1024RDB) += t1024rdb.dtb
|
|
dtb-$(CONFIG_TARGET_T1042D4RDB) += t1042d4rdb.dtb
|
|
dtb-$(CONFIG_TARGET_T2080QDS) += t2080qds.dtb
|
|
dtb-$(CONFIG_TARGET_T2080RDB) += t2080rdb.dtb
|
|
dtb-$(CONFIG_TARGET_T4240RDB) += t4240rdb.dtb
|
|
dtb-$(CONFIG_TARGET_TUGE1) += kmtuge1.dtb
|
|
dtb-$(CONFIG_TARGET_TUXX1) += kmtuxa1.dtb
|
|
dtb-$(CONFIG_TARGET_MCR3000) += mcr3000.dtb
|
|
dtb-$(CONFIG_TARGET_GAZERBEAM) += gazerbeam.dtb
|
|
|
|
targets += $(dtb-y)
|
|
|
|
# Add any required device tree compiler flags here
|
|
DTC_FLAGS +=
|
|
|
|
PHONY += dtbs
|
|
dtbs: $(addprefix $(obj)/, $(dtb-y))
|
|
@:
|
|
|
|
clean-files := *.dtb
|