Skip to content
Snippets Groups Projects
Commit e5fb573f authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

powerpc: Move setup_board_extra() into a PPC file


We don't need this PPC-specific function in generic code. Move it to
the powerpc directory.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarStefan Roese <sr@denx.de>
parent 056285fd
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ MINIMAL=y ...@@ -17,6 +17,7 @@ MINIMAL=y
endif endif
endif endif
obj-$(CONFIG_SYS_EXTBDINFO) += setup.o
ifdef MINIMAL ifdef MINIMAL
obj-y += cache.o time.o obj-y += cache.o time.o
obj-y += ticks.o obj-y += ticks.o
......
/*
* Copyright (c) 2017 Google, Inc
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <version.h>
DECLARE_GLOBAL_DATA_PTR;
int setup_board_extra(void)
{
bd_t *bd = gd->bd;
strncpy((char *)bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
strncpy((char *)bd->bi_r_version, U_BOOT_VERSION,
sizeof(bd->bi_r_version));
bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
bd->bi_plb_busfreq = gd->bus_clk;
#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
bd->bi_pci_busfreq = get_PCI_freq();
bd->bi_opbfreq = get_OPB_freq();
#elif defined(CONFIG_XILINX_405)
bd->bi_pci_busfreq = get_PCI_freq();
#endif
return 0;
}
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
*/ */
#include <common.h> #include <common.h>
#include <version.h>
#include <console.h> #include <console.h>
#include <environment.h> #include <environment.h>
#include <dm.h> #include <dm.h>
...@@ -607,30 +606,6 @@ static int setup_board_part2(void) ...@@ -607,30 +606,6 @@ static int setup_board_part2(void)
} }
#endif #endif
#ifdef CONFIG_SYS_EXTBDINFO
static int setup_board_extra(void)
{
bd_t *bd = gd->bd;
strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
sizeof(bd->bi_r_version));
bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
bd->bi_plb_busfreq = gd->bus_clk;
#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
bd->bi_pci_busfreq = get_PCI_freq();
bd->bi_opbfreq = get_OPB_freq();
#elif defined(CONFIG_XILINX_405)
bd->bi_pci_busfreq = get_PCI_freq();
#endif
return 0;
}
#endif
#ifdef CONFIG_POST #ifdef CONFIG_POST
static int init_post(void) static int init_post(void)
{ {
......
...@@ -302,6 +302,13 @@ int print_cpuinfo(void); ...@@ -302,6 +302,13 @@ int print_cpuinfo(void);
int update_flash_size(int flash_size); int update_flash_size(int flash_size);
int arch_early_init_r(void); int arch_early_init_r(void);
/*
* setup_board_extra() - Fill in extra details in the bd_t structure
*
* @return 0 if OK, -ve on error
*/
int setup_board_extra(void);
/** /**
* arch_fsp_init() - perform firmware support package init * arch_fsp_init() - perform firmware support package init
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment