From 043eb0e35f93b41348eb69061a6aa0355ef544bc Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Fri, 10 May 2013 16:21:58 -0700 Subject: Wield battle axe at ARM port This patch unfortunately incorporates a number of changes, all of which are making future ARM ports easier. - drop cruft that came in with u-boot - move serial console from mainboard Kconfig to Exynos Kconfig - factor out non-board specific wakeup code - move generic bootblock code from mainboard to Exynos - actually call arch_cpu_init() - remove dead code - fix up copyright messages - remove snow_ prefix from a lot of code to reduce the noise when creating a new mainboard based on that code. Change-Id: Ic05326edf5a7e1a691c5ff841a604cb9e351b562 Signed-off-by: Stefan Reinauer Signed-off-by: Gabe Black Reviewed-on: http://review.coreboot.org/3640 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/arch/armv7/include/common.h | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/arch/armv7') diff --git a/src/arch/armv7/include/common.h b/src/arch/armv7/include/common.h index c02581338f..9cb9e47de2 100644 --- a/src/arch/armv7/include/common.h +++ b/src/arch/armv7/include/common.h @@ -285,9 +285,6 @@ int checkicache (void); int checkdcache (void); void upmconfig (unsigned int, unsigned int *, unsigned int); unsigned long get_tbclk (void); -#if defined (CONFIG_OF_LIBFDT) && defined (CONFIG_OF_BOARD_SETUP) -void ft_cpu_setup(void *blob, bd_t *bd); -#endif /* $(CPU)/serial.c */ @@ -412,9 +409,6 @@ int strcmp_compar(const void *, const void *); /* lib/time.c */ void udelay (unsigned long); -/* lib/strmhz.c */ -char * strmhz(char *buf, unsigned long hz); - /* Multicore arch functions */ #ifdef CONFIG_MP int cpu_status(int nr); @@ -427,13 +421,6 @@ int cpu_release(int nr, int argc, char * const argv[]); /* Put only stuff here that the assembler can digest */ -#ifdef CONFIG_POST -#define CONFIG_HAS_POST -#ifndef CONFIG_POST_ALT_LIST -#define CONFIG_POST_STD_LIST -#endif -#endif - #define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1)) #define DIV_ROUND(n,d) (((n) + ((d)/2)) / (d)) #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) -- cgit v1.2.3