Hi, Dmitry
DCD table will be copied to OCRAM within the first 4K copy from SD/MMC. And the "dcd" and "self" will be used to count the "offset" of DCD table address, and ROM will read DCD table using this offset from OCRAM. For your case, the offset will be "0x10000430 - 0x10000000 = 0x430". I just dump my uboot, I can see the "dcd" is 0x2780042c, and "self" is 0x27800400, so the offset would be 0x2c = 44, which means the real dcd table is at the 44 / 4 + 1= 12nd data of the first 4K data(containing the IVT offset) copied to OCRAM, below is my ivt header definition, you can see the dcd table is at 12nd. So, ROM will use these two value to count the offset, so there will be no DDR address accessed before DCD table is executed.
43 ivt_header: .word 0x402000D1 /* Tag=0xD1, Len=0x0020, Ver=0x40 */
44 app_code_jump_v: .word _start
45 reserv1: .word 0x0
46 dcd_ptr: .word dcd_hdr
47 boot_data_ptr: .word boot_data
48 self_ptr: .word ivt_header
49 #ifdef CONFIG_SECURE_BOOT
50 app_code_csf: .word __hab_data
51 #else
52 app_code_csf: .word 0x0
53 #endif
54 reserv2: .word 0x0
55
56 boot_data: .word TEXT_BASE
57 #ifdef CONFIG_SECURE_BOOT
58 image_len: .word __hab_data_end - TEXT_BASE + CONFIG_FLASH_HEADER_OFFSET
59 #else
60 image_len: .word _end_of_copy - TEXT_BASE + CONFIG_FLASH_HEADER_OFFSET
61 #endif
62 plugin: .word 0x0
63
64 #if defined CONFIG_MX6DL_DDR3
65 #if defined CONFIG_DDR_32BIT
66 dcd_hdr: .word 0x40E001D2 /* Tag=0xD2, Len=59*8 + 4 + 4, Ver=0x40 */