
-----Original Message----- From: angelo [mailto:angelo70@gmail.com] Sent: Thursday, September 22, 2011 4:06 AM To: U-Boot@lists.denx.de; Jin Zhengxiong-R64188 Subject: [PATCH v4 1/1] add support for mcf5307
Add support for mcf5307 cpu.
Signed-off-by: Angelo Dureghello sysamfw@gmail.com
Changes for v4: - all previous patches was wrong, some files was missing, for an improper usage of git.
arch/m68k/cpu/mcf530x/Makefile | 48 +++++++ arch/m68k/cpu/mcf530x/config.mk | 25 ++++ arch/m68k/cpu/mcf530x/cpu.c | 48 +++++++ arch/m68k/cpu/mcf530x/cpu.h | 33 +++++ arch/m68k/cpu/mcf530x/cpu_init.c | 162 +++++++++++++++++++++++ arch/m68k/cpu/mcf530x/interrupts.c | 42 ++++++ arch/m68k/cpu/mcf530x/speed.c | 36 +++++ arch/m68k/cpu/mcf530x/start.S | 253 ++++++++++++++++++++++++++++++++++++ arch/m68k/include/asm/cache.h | 2 +- arch/m68k/include/asm/immap.h | 22 +++ arch/m68k/include/asm/immap_5307.h | 78 +++++++++++ arch/m68k/include/asm/m5307.h | 124 ++++++++++++++++++ arch/m68k/include/asm/timer.h | 2 +- include/common.h | 6 +- 14 files changed, 876 insertions(+), 5 deletions(-)
Hi, Angelo, I suggest to send all the patchset including the board file changes so that we can at least test the building. Thanks.
Jason