[U-Boot] [PATCH v1 0/2] Rename DDR4 target names

Freescale T1 series supports both DDR3 and DDR4. We have boards for each type of memory. To make the naming consistence and easy to understand, use _DDR4 instead of _D4 for the names. The same applies to Layerscape LS1 series, which already has _ddr4 in the name. LS2 series doesn't support DDR3, so the emulator target for DDR3 is dropped.
York Sun (2): armv8/ls2085a_emu: Drop DDR3 emulation target powerpc/defconfig: Rename defconfig file for DDR4 targets
board/freescale/ls2085a/MAINTAINERS | 1 - board/freescale/t102xqds/MAINTAINERS | 4 ++-- board/freescale/t1040qds/MAINTAINERS | 2 +- board/freescale/t104xrdb/MAINTAINERS | 20 ++++++++++---------- ...fconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} | 0 ...040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} | 0 ...NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} | 0 ...1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} | 0 ...NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} | 0 ...1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} | 0 configs/ls2085a_emu_D4_defconfig | 14 -------------- configs/ls2085a_emu_defconfig | 2 +- 18 files changed, 14 insertions(+), 29 deletions(-) rename configs/{T1024QDS_D4_SECURE_BOOT_defconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} (100%) rename configs/{T1040D4RDB_NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1040D4RDB_SDCARD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1040D4RDB_SECURE_BOOT_defconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040D4RDB_SPIFLASH_defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} (100%) rename configs/{T1042D4RDB_NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1042D4RDB_SDCARD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1042D4RDB_SECURE_BOOT_defconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1042D4RDB_SPIFLASH_defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} (100%) delete mode 100644 configs/ls2085a_emu_D4_defconfig

The emulator with DDR3 model was used during model bringup. DDR4 controllers are used with ls2085a. Drop the DDR4 target defconfig and enable DDR4 in ls2085a_emu_defconfig.
Signed-off-by: York Sun yorksun@freescale.com ---
board/freescale/ls2085a/MAINTAINERS | 1 - configs/ls2085a_emu_D4_defconfig | 14 -------------- configs/ls2085a_emu_defconfig | 2 +- 3 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 configs/ls2085a_emu_D4_defconfig
diff --git a/board/freescale/ls2085a/MAINTAINERS b/board/freescale/ls2085a/MAINTAINERS index 572c4b8..90b4e47 100644 --- a/board/freescale/ls2085a/MAINTAINERS +++ b/board/freescale/ls2085a/MAINTAINERS @@ -4,6 +4,5 @@ S: Maintained F: board/freescale/ls2085a/ F: include/configs/ls2085a_emu.h F: configs/ls2085a_emu_defconfig -F: configs/ls2085a_emu_D4_defconfig F: include/configs/ls2085a_simu.h F: configs/ls2085a_simu_defconfig diff --git a/configs/ls2085a_emu_D4_defconfig b/configs/ls2085a_emu_D4_defconfig deleted file mode 100644 index 9c82e17..0000000 --- a/configs/ls2085a_emu_D4_defconfig +++ /dev/null @@ -1,14 +0,0 @@ -CONFIG_ARM=y -CONFIG_TARGET_LS2085A_EMU=y -CONFIG_SYS_EXTRA_OPTIONS="EMU,SYS_FSL_DDR4" -# CONFIG_CMD_CONSOLE is not set -# CONFIG_CMD_IMLS is not set -# CONFIG_CMD_XIMG is not set -# CONFIG_CMD_EDITENV is not set -# CONFIG_CMD_ENV_EXISTS is not set -# CONFIG_CMD_LOADS is not set -# CONFIG_CMD_FPGA is not set -# CONFIG_CMD_ITEST is not set -# CONFIG_CMD_SETEXPR is not set -# CONFIG_CMD_NFS is not set -# CONFIG_CMD_MISC is not set diff --git a/configs/ls2085a_emu_defconfig b/configs/ls2085a_emu_defconfig index fa4a44e..9c82e17 100644 --- a/configs/ls2085a_emu_defconfig +++ b/configs/ls2085a_emu_defconfig @@ -1,6 +1,6 @@ CONFIG_ARM=y CONFIG_TARGET_LS2085A_EMU=y -CONFIG_SYS_EXTRA_OPTIONS="EMU" +CONFIG_SYS_EXTRA_OPTIONS="EMU,SYS_FSL_DDR4" # CONFIG_CMD_CONSOLE is not set # CONFIG_CMD_IMLS is not set # CONFIG_CMD_XIMG is not set

Previously the DDR4 targets were named with _D4. Rename them with _DDR4 for consistency.
Signed-off-by: York Sun yorksun@freescale.com
---
board/freescale/t102xqds/MAINTAINERS | 4 ++-- board/freescale/t1040qds/MAINTAINERS | 2 +- board/freescale/t104xrdb/MAINTAINERS | 20 ++++++++++---------- ...fconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} | 0 ...040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} | 0 ...NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} | 0 ...1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} | 0 ...NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} | 0 ...1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} | 0 15 files changed, 13 insertions(+), 13 deletions(-) rename configs/{T1024QDS_D4_SECURE_BOOT_defconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} (100%) rename configs/{T1040D4RDB_NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1040D4RDB_SDCARD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1040D4RDB_SECURE_BOOT_defconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040D4RDB_SPIFLASH_defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} (100%) rename configs/{T1042D4RDB_NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1042D4RDB_SDCARD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1042D4RDB_SECURE_BOOT_defconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1042D4RDB_SPIFLASH_defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} (100%)
diff --git a/board/freescale/t102xqds/MAINTAINERS b/board/freescale/t102xqds/MAINTAINERS index 1ffccc4..23480e2 100644 --- a/board/freescale/t102xqds/MAINTAINERS +++ b/board/freescale/t102xqds/MAINTAINERS @@ -7,6 +7,6 @@ F: configs/T1024QDS_defconfig F: configs/T1024QDS_NAND_defconfig F: configs/T1024QDS_SDCARD_defconfig F: configs/T1024QDS_SPIFLASH_defconfig -F: configs/T1024QDS_D4_defconfig +F: configs/T1024QDS_DDR4_defconfig F: configs/T1024QDS_SECURE_BOOT_defconfig -F: configs/T1024QDS_D4_SECURE_BOOT_defconfig +F: configs/T1024QDS_DDR4_SECURE_BOOT_defconfig diff --git a/board/freescale/t1040qds/MAINTAINERS b/board/freescale/t1040qds/MAINTAINERS index 83f6b3c..640538f 100644 --- a/board/freescale/t1040qds/MAINTAINERS +++ b/board/freescale/t1040qds/MAINTAINERS @@ -4,7 +4,7 @@ S: Maintained F: board/freescale/t1040qds/ F: include/configs/T1040QDS.h F: configs/T1040QDS_defconfig -F: configs/T1040QDS_D4_defconfig +F: configs/T1040QDS_DDR4_defconfig
T1040QDS_SECURE_BOOT BOARD M: Aneesh Bansal aneesh.bansal@freescale.com diff --git a/board/freescale/t104xrdb/MAINTAINERS b/board/freescale/t104xrdb/MAINTAINERS index 7597800..cdd060f 100644 --- a/board/freescale/t104xrdb/MAINTAINERS +++ b/board/freescale/t104xrdb/MAINTAINERS @@ -6,13 +6,13 @@ F: include/configs/T104xRDB.h F: configs/T1040RDB_defconfig F: configs/T1040RDB_NAND_defconfig F: configs/T1040RDB_SPIFLASH_defconfig -F: configs/T1040D4RDB_defconfig -F: configs/T1040D4RDB_NAND_defconfig -F: configs/T1040D4RDB_SPIFLASH_defconfig +F: configs/T1040RDB_DDR4_defconfig +F: configs/T1040RDB_DDR4_NAND_defconfig +F: configs/T1040RDB_DDR4_SPIFLASH_defconfig F: configs/T1042RDB_defconfig -F: configs/T1042D4RDB_defconfig -F: configs/T1042D4RDB_NAND_defconfig -F: configs/T1042D4RDB_SPIFLASH_defconfig +F: configs/T1042RDB_DDR4_defconfig +F: configs/T1042RDB_DDR4_NAND_defconfig +F: configs/T1042RDB_DDR4_SPIFLASH_defconfig F: configs/T1042RDB_PI_defconfig F: configs/T1042RDB_PI_NAND_defconfig F: configs/T1042RDB_PI_SPIFLASH_defconfig @@ -21,14 +21,14 @@ T1040RDB_SDCARD BOARD #M: - S: Maintained F: configs/T1040RDB_SDCARD_defconfig -F: configs/T1040D4RDB_SDCARD_defconfig -F: configs/T1042D4RDB_SDCARD_defconfig +F: configs/T1040RDB_DDR4_SDCARD_defconfig +F: configs/T1042RDB_DDR4_SDCARD_defconfig F: configs/T1042RDB_PI_SDCARD_defconfig
T1040RDB_SECURE_BOOT BOARD M: Aneesh Bansal aneesh.bansal@freescale.com S: Maintained F: configs/T1040RDB_SECURE_BOOT_defconfig -F: configs/T1040D4RDB_SECURE_BOOT_defconfig +F: configs/T1040RDB_DDR4_SECURE_BOOT_defconfig F: configs/T1042RDB_SECURE_BOOT_defconfig -F: configs/T1042D4RDB_SECURE_BOOT_defconfig +F: configs/T1042RDB_DDR4_SECURE_BOOT_defconfig diff --git a/configs/T1024QDS_D4_SECURE_BOOT_defconfig b/configs/T1024QDS_DDR4_SECURE_BOOT_defconfig similarity index 100% rename from configs/T1024QDS_D4_SECURE_BOOT_defconfig rename to configs/T1024QDS_DDR4_SECURE_BOOT_defconfig diff --git a/configs/T1040QDS_D4_defconfig b/configs/T1040QDS_DDR4_defconfig similarity index 100% rename from configs/T1040QDS_D4_defconfig rename to configs/T1040QDS_DDR4_defconfig diff --git a/configs/T1040D4RDB_NAND_defconfig b/configs/T1040RDB_DDR4_NAND_defconfig similarity index 100% rename from configs/T1040D4RDB_NAND_defconfig rename to configs/T1040RDB_DDR4_NAND_defconfig diff --git a/configs/T1040D4RDB_SDCARD_defconfig b/configs/T1040RDB_DDR4_SDCARD_defconfig similarity index 100% rename from configs/T1040D4RDB_SDCARD_defconfig rename to configs/T1040RDB_DDR4_SDCARD_defconfig diff --git a/configs/T1040D4RDB_SECURE_BOOT_defconfig b/configs/T1040RDB_DDR4_SECURE_BOOT_defconfig similarity index 100% rename from configs/T1040D4RDB_SECURE_BOOT_defconfig rename to configs/T1040RDB_DDR4_SECURE_BOOT_defconfig diff --git a/configs/T1040D4RDB_SPIFLASH_defconfig b/configs/T1040RDB_DDR4_SPIFLASH_defconfig similarity index 100% rename from configs/T1040D4RDB_SPIFLASH_defconfig rename to configs/T1040RDB_DDR4_SPIFLASH_defconfig diff --git a/configs/T1040D4RDB_defconfig b/configs/T1040RDB_DDR4_defconfig similarity index 100% rename from configs/T1040D4RDB_defconfig rename to configs/T1040RDB_DDR4_defconfig diff --git a/configs/T1042D4RDB_NAND_defconfig b/configs/T1042RDB_DDR4_NAND_defconfig similarity index 100% rename from configs/T1042D4RDB_NAND_defconfig rename to configs/T1042RDB_DDR4_NAND_defconfig diff --git a/configs/T1042D4RDB_SDCARD_defconfig b/configs/T1042RDB_DDR4_SDCARD_defconfig similarity index 100% rename from configs/T1042D4RDB_SDCARD_defconfig rename to configs/T1042RDB_DDR4_SDCARD_defconfig diff --git a/configs/T1042D4RDB_SECURE_BOOT_defconfig b/configs/T1042RDB_DDR4_SECURE_BOOT_defconfig similarity index 100% rename from configs/T1042D4RDB_SECURE_BOOT_defconfig rename to configs/T1042RDB_DDR4_SECURE_BOOT_defconfig diff --git a/configs/T1042D4RDB_SPIFLASH_defconfig b/configs/T1042RDB_DDR4_SPIFLASH_defconfig similarity index 100% rename from configs/T1042D4RDB_SPIFLASH_defconfig rename to configs/T1042RDB_DDR4_SPIFLASH_defconfig diff --git a/configs/T1042D4RDB_defconfig b/configs/T1042RDB_DDR4_defconfig similarity index 100% rename from configs/T1042D4RDB_defconfig rename to configs/T1042RDB_DDR4_defconfig

Hello York,
T1040D4RDB/T1042D4RDB boards have other difference as well apart from DDR4 w.r.t old T1040RDB/T1042RDB. T1040D4RDB/T1042D4RDB is the naming convection that has been used to distinguished new T1040RDB/T1042RDB board with DDR4 memory, new serdes protocol support , new muxes , etc.
If the only difference would have been DDR4, then we could have renamed to T1040RDB_DDR4 board.
But at this moment, the name T1040D4RDB is printed on the new boards and has been used in all board, SDK related documentation for these new boards. I think renaming them to T1040RDB_DDR4 will create confusion.
Regards Priyanka
-----Original Message----- From: York Sun [mailto:yorksun@freescale.com] Sent: Friday, August 07, 2015 5:00 AM To: U-Boot Mailing List Cc: Wood Scott-B07421; Sun York-R58495; Stephen Warren; Masahiro Yamada; Tom Rini; Joe Hershberger; Aggrwal Poonam-B10812; Jain Priyanka- B32167; Liu Shengzhou-B36685 Subject: [PATCH v1 0/2] Rename DDR4 target names
Freescale T1 series supports both DDR3 and DDR4. We have boards for each type of memory. To make the naming consistence and easy to understand, use _DDR4 instead of _D4 for the names. The same applies to Layerscape LS1 series, which already has _ddr4 in the name. LS2 series doesn't support DDR3, so the emulator target for DDR3 is dropped.
York Sun (2): armv8/ls2085a_emu: Drop DDR3 emulation target powerpc/defconfig: Rename defconfig file for DDR4 targets
board/freescale/ls2085a/MAINTAINERS | 1 - board/freescale/t102xqds/MAINTAINERS | 4 ++-- board/freescale/t1040qds/MAINTAINERS | 2 +- board/freescale/t104xrdb/MAINTAINERS | 20 ++++++++++---------- ...fconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} | 0 ...040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} | 0 ...NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} | 0 ...1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} | 0 ...NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} | 0 ...1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} | 0 configs/ls2085a_emu_D4_defconfig | 14 -------------- configs/ls2085a_emu_defconfig | 2 +- 18 files changed, 14 insertions(+), 29 deletions(-) rename configs/{T1024QDS_D4_SECURE_BOOT_defconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} (100%) rename configs/{T1040D4RDB_NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1040D4RDB_SDCARD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1040D4RDB_SECURE_BOOT_defconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040D4RDB_SPIFLASH_defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} (100%) rename configs/{T1042D4RDB_NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1042D4RDB_SDCARD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1042D4RDB_SECURE_BOOT_defconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1042D4RDB_SPIFLASH_defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} (100%) delete mode 100644 configs/ls2085a_emu_D4_defconfig
-- 1.7.9.5

Priyanka,
If the boards have been officially named T1040D4RDB/T1042D4RDB, we can keep the names. How about QDS and T1024 boards?
York
-------- Original message -------- From: Jain Priyanka-B32167 Date:08/09/2015 22:01 (GMT-08:00) To: Sun York-R58495 , U-Boot Mailing List Cc: Wood Scott-B07421 , Sun York-R58495 , Stephen Warren , Masahiro Yamada , Tom Rini , Joe Hershberger , Aggrwal Poonam-B10812 , Liu Shengzhou-B36685 Subject: RE: [PATCH v1 0/2] Rename DDR4 target names
Hello York,
T1040D4RDB/T1042D4RDB boards have other difference as well apart from DDR4 w.r.t old T1040RDB/T1042RDB. T1040D4RDB/T1042D4RDB is the naming convection that has been used to distinguished new T1040RDB/T1042RDB board with DDR4 memory, new serdes protocol support , new muxes , etc.
If the only difference would have been DDR4, then we could have renamed to T1040RDB_DDR4 board.
But at this moment, the name T1040D4RDB is printed on the new boards and has been used in all board, SDK related documentation for these new boards. I think renaming them to T1040RDB_DDR4 will create confusion.
Regards Priyanka
-----Original Message----- From: York Sun [mailto:yorksun@freescale.com] Sent: Friday, August 07, 2015 5:00 AM To: U-Boot Mailing List Cc: Wood Scott-B07421; Sun York-R58495; Stephen Warren; Masahiro Yamada; Tom Rini; Joe Hershberger; Aggrwal Poonam-B10812; Jain Priyanka- B32167; Liu Shengzhou-B36685 Subject: [PATCH v1 0/2] Rename DDR4 target names
Freescale T1 series supports both DDR3 and DDR4. We have boards for each type of memory. To make the naming consistence and easy to understand, use _DDR4 instead of _D4 for the names. The same applies to Layerscape LS1 series, which already has _ddr4 in the name. LS2 series doesn't support DDR3, so the emulator target for DDR3 is dropped.
York Sun (2): armv8/ls2085a_emu: Drop DDR3 emulation target powerpc/defconfig: Rename defconfig file for DDR4 targets
board/freescale/ls2085a/MAINTAINERS | 1 - board/freescale/t102xqds/MAINTAINERS | 4 ++-- board/freescale/t1040qds/MAINTAINERS | 2 +- board/freescale/t104xrdb/MAINTAINERS | 20 ++++++++++---------- ...fconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} | 0 ...040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} | 0 ...NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} | 0 ...1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} | 0 ...NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} | 0 ...1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} | 0 configs/ls2085a_emu_D4_defconfig | 14 -------------- configs/ls2085a_emu_defconfig | 2 +- 18 files changed, 14 insertions(+), 29 deletions(-) rename configs/{T1024QDS_D4_SECURE_BOOT_defconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} (100%) rename configs/{T1040D4RDB_NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1040D4RDB_SDCARD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1040D4RDB_SECURE_BOOT_defconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040D4RDB_SPIFLASH_defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} (100%) rename configs/{T1042D4RDB_NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1042D4RDB_SDCARD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1042D4RDB_SECURE_BOOT_defconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1042D4RDB_SPIFLASH_defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} (100%) delete mode 100644 configs/ls2085a_emu_D4_defconfig
-- 1.7.9.5

Hello York,
For T1040QDS, we can change the name. For T1024 also, I think there should not be any issue. Shengzhou please confirm.
Regards Priyanka
From: Sun York-R58495 Sent: Monday, August 10, 2015 8:18 PM To: Jain Priyanka-B32167; Sun York-R58495; U-Boot Mailing List Cc: Wood Scott-B07421; Stephen Warren; Masahiro Yamada; Tom Rini; Joe Hershberger; Aggrwal Poonam-B10812; Liu Shengzhou-B36685 Subject: RE: [PATCH v1 0/2] Rename DDR4 target names
Priyanka,
If the boards have been officially named T1040D4RDB/T1042D4RDB, we can keep the names. How about QDS and T1024 boards?
York
-------- Original message -------- From: Jain Priyanka-B32167 Date:08/09/2015 22:01 (GMT-08:00) To: Sun York-R58495 , U-Boot Mailing List Cc: Wood Scott-B07421 , Sun York-R58495 , Stephen Warren , Masahiro Yamada , Tom Rini , Joe Hershberger , Aggrwal Poonam-B10812 , Liu Shengzhou-B36685 Subject: RE: [PATCH v1 0/2] Rename DDR4 target names
Hello York,
T1040D4RDB/T1042D4RDB boards have other difference as well apart from DDR4 w.r.t old T1040RDB/T1042RDB. T1040D4RDB/T1042D4RDB is the naming convection that has been used to distinguished new T1040RDB/T1042RDB board with DDR4 memory, new serdes protocol support , new muxes , etc.
If the only difference would have been DDR4, then we could have renamed to T1040RDB_DDR4 board.
But at this moment, the name T1040D4RDB is printed on the new boards and has been used in all board, SDK related documentation for these new boards. I think renaming them to T1040RDB_DDR4 will create confusion.
Regards Priyanka
-----Original Message----- From: York Sun [mailto:yorksun@freescale.com] Sent: Friday, August 07, 2015 5:00 AM To: U-Boot Mailing List Cc: Wood Scott-B07421; Sun York-R58495; Stephen Warren; Masahiro Yamada; Tom Rini; Joe Hershberger; Aggrwal Poonam-B10812; Jain Priyanka- B32167; Liu Shengzhou-B36685 Subject: [PATCH v1 0/2] Rename DDR4 target names
Freescale T1 series supports both DDR3 and DDR4. We have boards for each type of memory. To make the naming consistence and easy to understand, use _DDR4 instead of _D4 for the names. The same applies to Layerscape LS1 series, which already has _ddr4 in the name. LS2 series doesn't support DDR3, so the emulator target for DDR3 is dropped.
York Sun (2): armv8/ls2085a_emu: Drop DDR3 emulation target powerpc/defconfig: Rename defconfig file for DDR4 targets
board/freescale/ls2085a/MAINTAINERS | 1 - board/freescale/t102xqds/MAINTAINERS | 4 ++-- board/freescale/t1040qds/MAINTAINERS | 2 +- board/freescale/t104xrdb/MAINTAINERS | 20 ++++++++++---------- ...fconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} | 0 ...040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} | 0 ...NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} | 0 ...1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} | 0 ...NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} | 0 ...RD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} | 0 ...fconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} | 0 ..._defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} | 0 ...1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} | 0 configs/ls2085a_emu_D4_defconfig | 14 -------------- configs/ls2085a_emu_defconfig | 2 +- 18 files changed, 14 insertions(+), 29 deletions(-) rename configs/{T1024QDS_D4_SECURE_BOOT_defconfig => T1024QDS_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040QDS_D4_defconfig => T1040QDS_DDR4_defconfig} (100%) rename configs/{T1040D4RDB_NAND_defconfig => T1040RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1040D4RDB_SDCARD_defconfig => T1040RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1040D4RDB_SECURE_BOOT_defconfig => T1040RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1040D4RDB_SPIFLASH_defconfig => T1040RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1040D4RDB_defconfig => T1040RDB_DDR4_defconfig} (100%) rename configs/{T1042D4RDB_NAND_defconfig => T1042RDB_DDR4_NAND_defconfig} (100%) rename configs/{T1042D4RDB_SDCARD_defconfig => T1042RDB_DDR4_SDCARD_defconfig} (100%) rename configs/{T1042D4RDB_SECURE_BOOT_defconfig => T1042RDB_DDR4_SECURE_BOOT_defconfig} (100%) rename configs/{T1042D4RDB_SPIFLASH_defconfig => T1042RDB_DDR4_SPIFLASH_defconfig} (100%) rename configs/{T1042D4RDB_defconfig => T1042RDB_DDR4_defconfig} (100%) delete mode 100644 configs/ls2085a_emu_D4_defconfig
-- 1.7.9.5
participants (2)
-
Priyanka Jain
-
York Sun