diff options
| author | Aubrey.Li <aubrey.adi@gmail.com> | 2007-03-09 13:40:56 +0800 | 
|---|---|---|
| committer | Aubrey.Li <aubrey.adi@gmail.com> | 2007-03-09 13:40:56 +0800 | 
| commit | ef26a08fef928b7bc11ae2c109e638dc3a016d91 (patch) | |
| tree | ca1fad50363cb05c7a62f0d4701d93a6671ab485 | |
| parent | 3f0606ad0b5639f7f22848fe5b4574e754d0470f (diff) | |
| download | olio-uboot-2014.01-ef26a08fef928b7bc11ae2c109e638dc3a016d91.tar.xz olio-uboot-2014.01-ef26a08fef928b7bc11ae2c109e638dc3a016d91.zip | |
[Blackfin][PATCH-2/2] Common files changed to support bf533 platform
| -rwxr-xr-x | MAKEALL | 9 | ||||
| -rw-r--r-- | Makefile | 16 | ||||
| -rw-r--r-- | blackfin_config.mk | 2 | ||||
| -rw-r--r-- | common/cmd_bootm.c | 3 | ||||
| -rw-r--r-- | config.mk | 2 | ||||
| -rw-r--r-- | examples/stubs.c | 2 | ||||
| -rw-r--r-- | include/linux/stat.h | 2 | 
7 files changed, 22 insertions, 14 deletions
| @@ -312,6 +312,14 @@ LIST_coldfire="	\  LIST_avr32="atstk1002" +######################################################################### +## Blackfin Systems +######################################################################### + +LIST_blackfin=" \ +	bf533-ezkit	bf533-stamp					\ +" +  #-----------------------------------------------------------------------  #----- for now, just run PPC by default ----- @@ -345,6 +353,7 @@ do  	nios|nios2| \  	x86|I486| \  	coldfire| \ +	blackfin| \  	avr32)  			for target in `eval echo '$LIST_'${arg}`  			do @@ -146,7 +146,7 @@ ifeq ($(ARCH),microblaze)  CROSS_COMPILE = mb-  endif  ifeq ($(ARCH),blackfin) -CROSS_COMPILE = bfin-elf- +CROSS_COMPILE = bfin-uclinux-  endif  ifeq ($(ARCH),avr32)  CROSS_COMPILE = avr32- @@ -178,7 +178,7 @@ OBJS += cpu/$(CPU)/resetvec.o  endif  ifeq ($(CPU),bf533)  OBJS += cpu/$(CPU)/start1.o	cpu/$(CPU)/interrupt.o	cpu/$(CPU)/cache.o -OBJS += cpu/$(CPU)/cplbhdlr.o	cpu/$(CPU)/cplbmgr.o	cpu/$(CPU)/flush.o +OBJS += cpu/$(CPU)/flush.o	cpu/$(CPU)/init_sdram.o  endif  OBJS := $(addprefix $(obj),$(OBJS)) @@ -2350,14 +2350,11 @@ suzaku_config:	unconfig  #########################################################################  ## Blackfin  ######################################################################### -ezkit533_config	:	unconfig -	@$(MKCONFIG) $(@:_config=) blackfin bf533 ezkit533 +bf533-ezkit_config:	unconfig +	@$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-ezkit -stamp_config	:	unconfig -	@$(MKCONFIG) $(@:_config=) blackfin bf533 stamp - -dspstamp_config	:	unconfig -	@$(MKCONFIG) $(@:_config=) blackfin bf533 dsp_stamp +bf533-stamp_config:	unconfig +	@$(MKCONFIG) $(@:_config=) blackfin bf533 bf533-stamp  #========================================================================  # AVR32 @@ -2394,6 +2391,7 @@ clean:  	rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin  	rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom  	rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds +	rm -f $(obj)board/bf*/u-boot.lds  	rm -f $(obj)include/bmp_logo.h  	rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map diff --git a/blackfin_config.mk b/blackfin_config.mk index e2747aafe..df324b7ef 100644 --- a/blackfin_config.mk +++ b/blackfin_config.mk @@ -21,4 +21,4 @@  # MA 02111-1307 USA  # -PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN -D__blackfin__ +PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 7aae8a6d1..727b8726f 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -258,7 +258,7 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	if (hdr->ih_arch != IH_CPU_MICROBLAZE)  #elif defined(__nios2__)  	if (hdr->ih_arch != IH_CPU_NIOS2) -#elif defined(__blackfin__) +#elif defined(__bfin__)  	if (hdr->ih_arch != IH_CPU_BLACKFIN)  #elif defined(__avr32__)  	if (hdr->ih_arch != IH_CPU_AVR32) @@ -1367,6 +1367,7 @@ print_type (image_header_t *hdr)  	case IH_CPU_MICROBLAZE:	arch = "Microblaze"; 		break;  	case IH_CPU_NIOS:	arch = "Nios";			break;  	case IH_CPU_NIOS2:	arch = "Nios-II";		break; +	case IH_CPU_BLACKFIN:	arch = "Blackfin";		break;  	default:		arch = "Unknown Architecture";	break;  	} @@ -70,7 +70,7 @@ endif  endif  ifeq ($(ARCH),blackfin) -PLATFORM_CPPFLAGS+= -D__BLACKFIN__ -mno-underscore +PLATFORM_CPPFLAGS+= -D__BLACKFIN__  endif  ifdef	ARCH diff --git a/examples/stubs.c b/examples/stubs.c index ffd314e6b..26df6e06a 100644 --- a/examples/stubs.c +++ b/examples/stubs.c @@ -132,7 +132,7 @@ gd_t *global_data;   */  #define EXPORT_FUNC(x)			\  	asm volatile (			\ -"       .globl " #x "\n"		\ +"       .globl _" #x "\n_"		\  #x ":\n"				\  "	P0 = [P5 + %0]\n"		\  "	P0 = [P0 + %1]\n"		\ diff --git a/include/linux/stat.h b/include/linux/stat.h index f9422cb1f..4d05aa92d 100644 --- a/include/linux/stat.h +++ b/include/linux/stat.h @@ -67,7 +67,7 @@ struct stat {  #endif	/* __PPC__ */ -#if defined (__ARM__) || defined (__I386__) || defined (__M68K__) || defined (__blackfin__) +#if defined (__ARM__) || defined (__I386__) || defined (__M68K__) || defined (__bfin__)  struct stat {  	unsigned short st_dev; |