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

ppc: Enable generic board support


This enables generic board support so that ppc boards can define
CONFIG_SYS_GENERIC_BOARD.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent c2240d4d
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,9 @@ PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections ...@@ -29,6 +29,9 @@ PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections
PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__ PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__
PLATFORM_LDFLAGS += -n PLATFORM_LDFLAGS += -n
# Support generic board on PPC
__HAVE_ARCH_GENERIC_BOARD := y
# #
# When cross-compiling on NetBSD, we have to define __PPC__ or else we # When cross-compiling on NetBSD, we have to define __PPC__ or else we
# will pick up a va_list declaration that is incompatible with the # will pick up a va_list declaration that is incompatible with the
......
...@@ -34,6 +34,11 @@ ...@@ -34,6 +34,11 @@
* include/asm-ppc/u-boot.h * include/asm-ppc/u-boot.h
*/ */
#ifdef CONFIG_SYS_GENERIC_BOARD
/* Use the generic board which requires a unified bd_info */
#include <asm-generic/u-boot.h>
#else
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
typedef struct bd_info { typedef struct bd_info {
...@@ -144,6 +149,8 @@ typedef struct bd_info { ...@@ -144,6 +149,8 @@ typedef struct bd_info {
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
#endif /* !CONFIG_SYS_GENERIC_BOARD */
/* For image.h:image_check_target_arch() */ /* For image.h:image_check_target_arch() */
#define IH_ARCH_DEFAULT IH_ARCH_PPC #define IH_ARCH_DEFAULT IH_ARCH_PPC
......
...@@ -59,8 +59,10 @@ SOBJS-y += reloc.o ...@@ -59,8 +59,10 @@ SOBJS-y += reloc.o
COBJS-$(CONFIG_BAT_RW) += bat_rw.o COBJS-$(CONFIG_BAT_RW) += bat_rw.o
ifndef CONFIG_SPL_BUILD ifndef CONFIG_SPL_BUILD
ifndef CONFIG_SYS_GENERIC_BOARD
COBJS-y += board.o COBJS-y += board.o
endif endif
endif
COBJS-y += bootm.o COBJS-y += bootm.o
COBJS-y += cache.o COBJS-y += cache.o
COBJS-y += extable.o COBJS-y += extable.o
......
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