blackfin: Move cpu/blackfin/* to arch/blackfin/cpu/*
authorPeter Tyser <ptyser@xes-inc.com>
Tue, 13 Apr 2010 03:28:13 +0000 (22:28 -0500)
committerWolfgang Denk <wd@denx.de>
Tue, 13 Apr 2010 07:13:25 +0000 (09:13 +0200)
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29 files changed:
Makefile
arch/blackfin/cpu/.gitignore [moved from cpu/blackfin/.gitignore with 100% similarity]
arch/blackfin/cpu/Makefile [moved from cpu/blackfin/Makefile with 100% similarity]
arch/blackfin/cpu/bootrom-asm-offsets.awk [moved from cpu/blackfin/bootrom-asm-offsets.awk with 100% similarity]
arch/blackfin/cpu/bootrom-asm-offsets.c.in [moved from cpu/blackfin/bootrom-asm-offsets.c.in with 100% similarity]
arch/blackfin/cpu/cache.S [moved from cpu/blackfin/cache.S with 100% similarity]
arch/blackfin/cpu/cpu.c [moved from cpu/blackfin/cpu.c with 100% similarity]
arch/blackfin/cpu/cpu.h [moved from cpu/blackfin/cpu.h with 100% similarity]
arch/blackfin/cpu/initcode.c [moved from cpu/blackfin/initcode.c with 100% similarity]
arch/blackfin/cpu/interrupt.S [moved from cpu/blackfin/interrupt.S with 100% similarity]
arch/blackfin/cpu/interrupts.c [moved from cpu/blackfin/interrupts.c with 100% similarity]
arch/blackfin/cpu/jtag-console.c [moved from cpu/blackfin/jtag-console.c with 100% similarity]
arch/blackfin/cpu/os_log.c [moved from cpu/blackfin/os_log.c with 100% similarity]
arch/blackfin/cpu/reset.c [moved from cpu/blackfin/reset.c with 100% similarity]
arch/blackfin/cpu/serial.c [moved from cpu/blackfin/serial.c with 100% similarity]
arch/blackfin/cpu/serial.h [moved from cpu/blackfin/serial.h with 100% similarity]
arch/blackfin/cpu/start.S [moved from cpu/blackfin/start.S with 100% similarity]
arch/blackfin/cpu/traps.c [moved from cpu/blackfin/traps.c with 100% similarity]
arch/blackfin/cpu/watchdog.c [moved from cpu/blackfin/watchdog.c with 100% similarity]
arch/blackfin/lib/u-boot.lds.S
include/configs/bf533-stamp.h
include/configs/bf537-pnav.h
include/configs/bf537-stamp.h
include/configs/bf538f-ezkit.h
include/configs/bf561-ezkit.h
include/configs/cm-bf537e.h
include/configs/cm-bf537u.h
include/configs/ibf-dsp561.h
include/configs/tcm-bf537.h

index e922ec3..0381c81 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3745,7 +3745,7 @@ clean:
               $(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds  \
               $(obj)arch/blackfin/lib/u-boot.lds                                 \
               $(obj)u-boot.lds                                           \
-              $(obj)cpu/blackfin/bootrom-asm-offsets.[chs]
+              $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs]
        @rm -f $(obj)include/bmp_logo.h
        @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,System.map}
        @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
similarity index 100%
rename from cpu/blackfin/cpu.c
rename to arch/blackfin/cpu/cpu.c
similarity index 100%
rename from cpu/blackfin/cpu.h
rename to arch/blackfin/cpu/cpu.h
index 2b23d8b..9163d20 100644 (file)
@@ -73,14 +73,14 @@ SECTIONS
 {
        .text.pre :
        {
-               cpu/blackfin/start.o (.text .text.*)
+               arch/blackfin/cpu/start.o (.text .text.*)
 
                LDS_BOARD_TEXT
        } >ram_code
 
        .text.init :
        {
-               cpu/blackfin/initcode.o (.text .text.*)
+               arch/blackfin/cpu/initcode.o (.text .text.*)
        } >ram_code
        __initcode_lma = LOADADDR(.text.init);
        __initcode_len = SIZEOF(.text.init);
index 0b94f55..80c4884 100644 (file)
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        . = DEFINED(env_offset) ? env_offset : .; \
index 8038c40..cf40d06 100644 (file)
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        . = DEFINED(env_offset) ? env_offset : .; \
index 0f8679b..92ceb38 100644 (file)
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        . = DEFINED(env_offset) ? env_offset : .; \
index 696fe29..59e0565 100644 (file)
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        . = DEFINED(env_offset) ? env_offset : .; \
index fca6e43..1e3fdef 100644 (file)
@@ -96,9 +96,9 @@
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        lib/zlib.o              (.text .text.*); \
index d86409f..8d0bc12 100644 (file)
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        . = DEFINED(env_offset) ? env_offset : .; \
index 6be9dba..bbea3ab 100644 (file)
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        . = DEFINED(env_offset) ? env_offset : .; \
index 6fa8cf7..2eef5ef 100644 (file)
@@ -84,9 +84,9 @@
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        lib/zlib.o              (.text .text.*); \
index e9dfcc9..409a042 100644 (file)
  * it linked after the configuration sector.
  */
 # define LDS_BOARD_TEXT \
-       cpu/blackfin/traps.o            (.text .text.*); \
-       cpu/blackfin/interrupt.o        (.text .text.*); \
-       cpu/blackfin/serial.o           (.text .text.*); \
+       arch/blackfin/cpu/traps.o               (.text .text.*); \
+       arch/blackfin/cpu/interrupt.o   (.text .text.*); \
+       arch/blackfin/cpu/serial.o              (.text .text.*); \
        common/dlmalloc.o               (.text .text.*); \
        lib/crc32.o             (.text .text.*); \
        . = DEFINED(env_offset) ? env_offset : .; \