Merge branch '2022-01-08-further-important-updates'
[platform/kernel/u-boot.git] / common / board_f.c
index 62473ab..f7ea7c7 100644 (file)
@@ -49,6 +49,7 @@
 #if defined(CONFIG_MP) && defined(CONFIG_PPC)
 #include <asm/mp.h>
 #endif
+#include <asm/global_data.h>
 #include <asm/io.h>
 #include <asm/sections.h>
 #include <dm/root.h>
@@ -243,7 +244,7 @@ __weak int dram_init_banksize(void)
        return 0;
 }
 
-#if defined(CONFIG_SYS_I2C)
+#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
 static int init_func_i2c(void)
 {
        puts("I2C:   ");
@@ -264,7 +265,9 @@ static int setup_mon_len(void)
 {
 #if defined(__ARM__) || defined(__MICROBLAZE__)
        gd->mon_len = (ulong)&__bss_end - (ulong)_start;
-#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
+#elif defined(CONFIG_SANDBOX)
+       gd->mon_len = 0;
+#elif defined(CONFIG_EFI_APP)
        gd->mon_len = (ulong)&_end - (ulong)_init;
 #elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
        gd->mon_len = CONFIG_SYS_MONITOR_LEN;
@@ -392,6 +395,8 @@ static int reserve_video(void)
        ret = video_reserve(&addr);
        if (ret)
                return ret;
+       debug("Reserving %luk for video at: %08lx\n",
+             ((unsigned long)gd->relocaddr - addr) >> 10, addr);
        gd->relocaddr = addr;
 #elif defined(CONFIG_LCD)
 #  ifdef CONFIG_FB_ADDR
@@ -501,14 +506,6 @@ static int reserve_board(void)
        return 0;
 }
 
-static int setup_machine(void)
-{
-#ifdef CONFIG_MACH_TYPE
-       gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
-#endif
-       return 0;
-}
-
 static int reserve_global_data(void)
 {
        gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
@@ -520,21 +517,21 @@ static int reserve_global_data(void)
 
 static int reserve_fdt(void)
 {
-#ifndef CONFIG_OF_EMBED
-       /*
-        * If the device tree is sitting immediately above our image then we
-        * must relocate it. If it is embedded in the data section, then it
-        * will be relocated with other data.
-        */
-       if (gd->fdt_blob) {
-               gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
+       if (!IS_ENABLED(CONFIG_OF_EMBED)) {
+               /*
+                * If the device tree is sitting immediately above our image
+                * then we must relocate it. If it is embedded in the data
+                * section, then it will be relocated with other data.
+                */
+               if (gd->fdt_blob) {
+                       gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
 
-               gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
-               gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
-               debug("Reserving %lu Bytes for FDT at: %08lx\n",
-                     gd->fdt_size, gd->start_addr_sp);
+                       gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
+                       gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
+                       debug("Reserving %lu Bytes for FDT at: %08lx\n",
+                             gd->fdt_size, gd->start_addr_sp);
+               }
        }
-#endif
 
        return 0;
 }
@@ -573,8 +570,11 @@ static int reserve_stacks(void)
 static int reserve_bloblist(void)
 {
 #ifdef CONFIG_BLOBLIST
-       gd->start_addr_sp = reserve_stack_aligned(CONFIG_BLOBLIST_SIZE);
-       gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
+       /* Align to a 4KB boundary for easier reading of addresses */
+       gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
+                                      CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
+       gd->new_bloblist = map_sysmem(gd->start_addr_sp,
+                                     CONFIG_BLOBLIST_SIZE_RELOC);
 #endif
 
        return 0;
@@ -601,6 +601,10 @@ int setup_bdinfo(void)
                bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE;  /* size  of SRAM */
        }
 
+#ifdef CONFIG_MACH_TYPE
+       bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
+#endif
+
        return arch_setup_bdinfo();
 }
 
@@ -616,14 +620,15 @@ static int init_post(void)
 
 static int reloc_fdt(void)
 {
-#ifndef CONFIG_OF_EMBED
-       if (gd->flags & GD_FLG_SKIP_RELOC)
-               return 0;
-       if (gd->new_fdt) {
-               memcpy(gd->new_fdt, gd->fdt_blob, fdt_totalsize(gd->fdt_blob));
-               gd->fdt_blob = gd->new_fdt;
+       if (!IS_ENABLED(CONFIG_OF_EMBED)) {
+               if (gd->flags & GD_FLG_SKIP_RELOC)
+                       return 0;
+               if (gd->new_fdt) {
+                       memcpy(gd->new_fdt, gd->fdt_blob,
+                              fdt_totalsize(gd->fdt_blob));
+                       gd->fdt_blob = gd->new_fdt;
+               }
        }
-#endif
 
        return 0;
 }
@@ -657,7 +662,8 @@ static int reloc_bloblist(void)
 
                debug("Copying bloblist from %p to %p, size %x\n",
                      gd->bloblist, gd->new_bloblist, size);
-               memcpy(gd->new_bloblist, gd->bloblist, size);
+               bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC,
+                              gd->bloblist, size);
                gd->bloblist = gd->new_bloblist;
        }
 #endif
@@ -667,30 +673,32 @@ static int reloc_bloblist(void)
 
 static int setup_reloc(void)
 {
-       if (gd->flags & GD_FLG_SKIP_RELOC) {
-               debug("Skipping relocation due to flag\n");
-               return 0;
-       }
-
+       if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
 #ifdef CONFIG_SYS_TEXT_BASE
 #ifdef ARM
-       gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
+               gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
 #elif defined(CONFIG_M68K)
-       /*
-        * On all ColdFire arch cpu, monitor code starts always
-        * just after the default vector table location, so at 0x400
-        */
-       gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
+               /*
+                * On all ColdFire arch cpu, monitor code starts always
+                * just after the default vector table location, so at 0x400
+                */
+               gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
 #elif !defined(CONFIG_SANDBOX)
-       gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
+               gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
 #endif
 #endif
+       }
+
        memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
 
-       debug("Relocation Offset is: %08lx\n", gd->reloc_off);
-       debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
-             gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
-             gd->start_addr_sp);
+       if (gd->flags & GD_FLG_SKIP_RELOC) {
+               debug("Skipping relocation due to flag\n");
+       } else {
+               debug("Relocation Offset is: %08lx\n", gd->reloc_off);
+               debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
+                     gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
+                     gd->start_addr_sp);
+       }
 
        return 0;
 }
@@ -761,15 +769,6 @@ static int initf_bootstage(void)
        return 0;
 }
 
-static int initf_console_record(void)
-{
-#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
-       return console_record_init();
-#else
-       return 0;
-#endif
-}
-
 static int initf_dm(void)
 {
 #if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
@@ -780,11 +779,12 @@ static int initf_dm(void)
        bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
        if (ret)
                return ret;
-#endif
-#ifdef CONFIG_TIMER_EARLY
-       ret = dm_timer_init();
-       if (ret)
-               return ret;
+
+       if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
+               ret = dm_timer_init();
+               if (ret)
+                       return ret;
+       }
 #endif
 
        return 0;
@@ -826,7 +826,9 @@ static const init_fnc_t init_sequence_f[] = {
        bloblist_init,
 #endif
        setup_spl_handoff,
-       initf_console_record,
+#if defined(CONFIG_CONSOLE_RECORD_INIT_F)
+       console_record_init,
+#endif
 #if defined(CONFIG_HAVE_FSP)
        arch_fsp_init,
 #endif
@@ -871,7 +873,7 @@ static const init_fnc_t init_sequence_f[] = {
        misc_init_f,
 #endif
        INIT_FUNC_WATCHDOG_RESET
-#if defined(CONFIG_SYS_I2C)
+#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
        init_func_i2c,
 #endif
 #if defined(CONFIG_VID) && !defined(CONFIG_SPL)
@@ -918,7 +920,6 @@ static const init_fnc_t init_sequence_f[] = {
        reserve_uboot,
        reserve_malloc,
        reserve_board,
-       setup_machine,
        reserve_global_data,
        reserve_fdt,
        reserve_bootstage,