From 6d04828b45202312c93892b4be834809c795d4d2 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Sun, 2 Nov 2025 14:08:12 -0600 Subject: dm: Remove pre-schema tag support Support for using "u-boot,dm-..." rather than "bootph-..." has been deprecated since February 2023. Any platforms using this have had a console message saying to migrate by 2023.07. Go and remove all support here now, for the v2026.01 release. The results of this change that aren't clear from the above are that we still have a checkpatch.pl error message, and document in doc/develop/spl.rst that they have been migrated since 2023. We also change the key2dtsi.py tool to use the correct bootph phase rather than the legacy phase. Signed-off-by: Tom Rini --- include/asm-generic/global_data.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 506ee51cdb0..745d2c3a966 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -671,10 +671,10 @@ enum gd_flags { * @GD_FLG_FDT_CHANGED: Device tree change has been detected by tests */ GD_FLG_FDT_CHANGED = 0x100000, - /** - * @GD_FLG_OF_TAG_MIGRATE: Device tree has old u-boot,dm- tags + /* + * @GD_FLG_OF_TAG_MIGRATE: Previously had the value of 0x200000 but was + * freed when migration support was removed. */ - GD_FLG_OF_TAG_MIGRATE = 0x200000, /** * @GD_FLG_DM_DEAD: Driver model is not accessible. This can be set when * the memory used to holds its tables has been mapped out. -- cgit v1.3.1