[U-Boot-Users] [PATCH] Fix compilation issue caused by a missing function

2008-07-31 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Implement usec2ticks() which is used by fsl_i2c.c in lib_m68k/time.c Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- lib_m68k/time.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/lib_m68k/time.c b/lib_m68k/time.c index 2

[U-Boot-Users] [PATCH] Fix compilation error for TASREG

2008-07-31 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> TASREG is ColdFire platform, the include ppc4xx.h in board/esd/common/flash.c causes conflict. Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- board/esd/common/flash.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/board/esd

[U-Boot-Users] [PATCH] Fix compilation error for MCF5275

2008-07-31 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Rename OBJ to COBJ in board/platform/Makefile Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- board/freescale/m5275evb/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/freescale/m5275evb/Makefile b/board/freesc

[U-Boot-Users] [PATCH] Fix compile error caused by incorrect function return type 2

2008-07-31 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Rename int mii_init(void) to void mii_init(void) for idmr ColdFire platform Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- board/idmr/mii.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/idmr/mii.c b/board/idmr/mii.c

[U-Boot-Users] [PATCH] ColdFire: Fix FB CS not setup properly for Mcf5282

2008-07-09 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If CFG_CSn_RO is defined as 0, the chipselect will not be assigned. Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- cpu/mcf52x2/cpu_init.c | 12 1 files changed, 4 insertions(+), 8 deleti

[U-Boot-Users] [PATCH] ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC

2008-07-09 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time clock module in cpu//cpu_init.c Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- cpu/mcf5227x/cpu_init.c |2 +- cpu/mcf5445x/cpu_init.c |2 +- 2 files changed, 2 insertions(+), 2 deleti

[U-Boot-Users] [PATCH] ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE

2008-07-09 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- MAKEALL |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/MAKEALL b/MAKEALL index 9f80b3d..0522d1b 100755 --- a/MAKEALL +++ b/MAKEALL @@ -701,7 +701,7 @@ LIST_coldfire="

[U-Boot-Users] [PATCH] Fix compile error caused by missing timer function

2008-07-09 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- include/configs/EB+MCF-EV123.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/EB+MCF-EV123.h b/in

[U-Boot-Users] [PATCH] Fix compile error caused by incorrect function return type

2008-07-09 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Rename int mii_init(void) to void mii_init(void) Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- board/BuS/EB+MCF-EV123/mii.c |2 +- board/cobra5272/mii.c|2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/BuS/E

[U-Boot-Users] [PATCH] Fix dm9000 receive status and len little endian issue

2008-06-25 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> The received status and len was in little endian format and caused the ethernet unable to proceed further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit(). Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/net/dm9000x.c | 16 ++---

[U-Boot-Users] [PATCH] Fix dm9000 receive status and len little endian issue

2008-06-25 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> The received status and len was in little endian format and caused the ethernet unable to proceed further. Add __le16_to_cpu() in dm9000_rx_status_16bit(). Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/net/dm9000x.c |4 ++-- 1 files chan

[U-Boot-Users] [PATCH] Fix dm9000 receive status and len little endian issue

2008-06-25 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> The received status and len was in little endian format and caused the ethernet unable to proceed further. Add define CFG_DM9000_BYTESWAP_STATUS_LEN in dm9000_rx_status_16bit() to byte swap RxStatus and RxLen Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]>

[U-Boot-Users] [PATCH] ColdFire: Fix power up issue for MCF5235

2008-06-24 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- board/freescale/m5235evb/m5235evb.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/board/freescale/m5235evb/m5235evb.c b/board/freescale/m5235evb/m5235evb.c index c2c8fe8..bd8

[U-Boot-Users] [PATCH] ColdFire: Fix compiling error for MCF5275

2008-06-24 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> The compiling error was caused by missing a closed parentheses in speed.c Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- cpu/mcf52x2/speed.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cpu/mcf52x2/speed.c b/cpu/mcf52x2/s

[U-Boot-Users] [PATCH] ColdFire: Fix timer issue for MCF5272

2008-06-24 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> The timer was assigned to wrong timer memory mapped which caused udelay() and timer() not working properly. Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- include/asm-m68k/timer.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --gi

[U-Boot-Users] [PATCH] ColdFire: Fix warning messages by passing correct data type in board.c

2008-06-24 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- lib_m68k/board.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib_m68k/board.c b/lib_m68k/board.c index ae942e5..d27c89c 100644 --- a/lib_m68k/board.c +++ b/lib_m68k/board

[U-Boot-Users] [PATCH] ColdFire: Fix ethernet hang issue for mcf547x_8x

2008-04-30 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> The ethernet hang is caused by receiving buffer in DRAM is not yet ready due to access cycles require longer time in DRAM. Relocate DMA buffer descriptors from DRAM to internal SRAM. Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/net/fsl_mcdm

[U-Boot-Users] [PATCH] ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c

2008-04-30 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Signed-off-by: Luigi Comio Mantellini <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- include/asm-m68k/global_data.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/asm-m68k/global_data.h b/includ

[U-Boot-Users] [PATCH] ColdFire: Get information from the correct GCC

2008-04-30 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Signed-off-by: Kurt Mahan <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- cpu/mcf5227x/config.mk |2 +- cpu/mcf523x/config.mk|2 +- cpu/mcf52x2/config.mk|2 +- cpu/mcf532x/config.mk|2 +- cpu/mcf5445x/c

[U-Boot-Users] [PATCH] Add CONFIG_MII_INIT support to related boards

2008-03-29 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in cmd_init.c. Add CONFIG_MII_INIT to board configuration files that use mii_init() in cmd_init.c. Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- board/fads/fads.h |1 + common

[U-Boot-Users] [PATCH] Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards

2008-03-29 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Remove CONFIG_MPC5200 and define CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files. Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/pci/pci_auto.c |2 +- include/configs/BC3450.h|1 + include/configs/IceCube

[U-Boot-Users] [PATCH][resend] ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S

2008-03-28 Thread Tsi-Chung Liew
When the version_string function in start.S is not 4-byte align, it will cause the compiler generates "unaligned opcodes detected in executable segment". This issue affects all ColdFire CPUs. By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if it is not aligned. Signed-off-by: TsiChun

[U-Boot-Users] [PATCH] ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S

2008-03-28 Thread Tsi-Chung Liew
When the version_string function in start.S is not 4-byte align, it will cause the compiler generates "unaligned opcodes detected in executable segment". This issue affects all ColdFire CPUs. By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if it is not aligned. Signed-off-by: TsiChun

[U-Boot-Users] [PATCH] ColdFire: Assign version_string as data section in start.S

2008-03-26 Thread Tsi-Chung Liew
The compiler does not place the .ascii in start.S to data section, instead it put in under text section. This is an issue where it never gets notice and causes error until an update for tools/setlocalversion has been applied. A label of .data before .globl version_string will force to put under dat

[U-Boot-Users] [PATCH] ColdFire: Add dspi and serial flash support for MCF5445x

2008-03-25 Thread Tsi-Chung Liew
Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- board/freescale/m54455evb/flash.c | 449 +++-- cpu/mcf5445x/Makefile |2 +- cpu/mcf5445x/dspi.c | 73 ++ include/asm-m68k/coldfire/dspi.h | 10 + include/configs/M54455EVB.h

[U-Boot-Users] [PATCH] Add brackets to if condition in tools/setlocalversion

2008-03-20 Thread Tsi-Chung Liew
The long condition in the script causes all ColdFire platforms unable to compile correctly. By adding square brackets, all compile without error. Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- tools/setlocalversion |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/

[U-Boot-Users] [PATCH] Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards

2008-03-20 Thread Tsi-Chung Liew
Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/pci/pci_auto.c |2 +- include/configs/BC3450.h|1 + include/configs/M54455EVB.h |2 +- include/configs/M5475EVB.h |2 +- include/configs/M5485EVB.h |1 + include/configs/PM520.h |1 + include/config

[U-Boot-Users] [PATCH] Add CONFIG_MII_INIT in cmd_mii.c

2008-03-20 Thread Tsi-Chung Liew
From: TsiChung Liew <[EMAIL PROTECTED]> Provide common configuration in do_mii() to execute mii_init() for all cpu architectures Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- common/cmd_mii.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_mii.c b/comm

[U-Boot-Users] [PATCH] Add support CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in pci_auto.c

2008-03-19 Thread Tsi-Chung Liew
Provide common configuration in pciauto_config_device() usable for all architectures Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> Acked-by: Stefan Roese <[EMAIL PROTECTED]> --- drivers/pci/pci_auto.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/pci/pci_aut

[U-Boot-Users] [PATCH] ColdFire: Fix FEC transmit issue for MCF5275

2008-03-19 Thread Tsi-Chung Liew
Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/net/mcffec.c | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/drivers/net/mcffec.c b/drivers/net/mcffec.c index 3b81258..10afa93 100644 --- a/drivers/net/mcffec.c +++ b/drivers/net/mcffec.c @@ -166,6 +

[U-Boot-Users] [PATCH] ColdFire: Remove R5200 board

2008-03-19 Thread Tsi-Chung Liew
This board never went into production Signed-off-by: Zachary P. Landau <[EMAIL PROTECTED]> Acked-by: TsiChung Liew <[EMAIL PROTECTED]> --- MAINTAINERS |4 - MAKEALL |1 - Makefile|3 - board/r5200/Makefile| 44 --- board/r5200/conf

[U-Boot-Users] [PATCH] ColdFire: Fix FEC transmit issue for MCF5275

2008-03-18 Thread Tsi-Chung Liew
Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/net/mcffec.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/net/mcffec.c b/drivers/net/mcffec.c index 3b81258..40d7bf2 100644 --- a/drivers/net/mcffec.c +++ b/drivers/net/mcffec.c @@ -166,6 +166,1

[U-Boot-Users] [PATCH] Add support CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in pci_auto.c

2008-03-17 Thread Tsi-Chung Liew
Provide common configuration in pciauto_config_device() usable for all architectures Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/pci/pci_auto.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/pci/pci_auto.c b/drivers/pci/pci_auto.c index acfda83.

[U-Boot-Users] [PATCH] Add CONFIG_MII_INIT in cmd_mii.c

2008-03-17 Thread Tsi-Chung Liew
Provide common configuration in do_mii() to execute mii_init() for all cpu architectures Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- common/cmd_mii.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_mii.c b/common/cmd_mii.c index 31ac43d..8ca5af5 10064

[U-Boot-Users] [PATCH] ColdFire: Fix FEC transmit issue for MCF5275

2008-03-17 Thread Tsi-Chung Liew
Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- drivers/net/mcffec.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/net/mcffec.c b/drivers/net/mcffec.c index 3b81258..71d1960 100644 --- a/drivers/net/mcffec.c +++ b/drivers/net/mcffec.c @@ -166,6 +166,13

[U-Boot-Users] [PATCH 2/2][resend] ColdFire: Added M5275EVB support.

2008-03-17 Thread Tsi-Chung Liew
Signed-off-by: Matthew Fettke <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- MAKEALL |1 + Makefile|3 + board/freescale/m5275evb/Makefile | 40 + board/freescale/m5275evb/config.mk | 25 +++ board

[U-Boot-Users] [PATCH 1/2][resend] ColdFire: Added MCF5275 cpu support.

2008-03-17 Thread Tsi-Chung Liew
Signed-off-by: Matthew Fettke <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- CREDITS |1 + cpu/mcf52x2/config.mk |4 + cpu/mcf52x2/cpu.c | 66 ++ cpu/mcf52x2/cpu_init.c| 111 ++ cpu/mcf52x2/interrupt

[U-Boot-Users] [PATCH] ColdFire: Define bootdelay in configuration file for M52277EVB

2008-03-17 Thread Tsi-Chung Liew
Signed-off-by: Matt Wadel <[EMAIL PROTECTED]> Acked-by: TsiChung Liew <[EMAIL PROTECTED]> --- include/configs/M52277EVB.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/M52277EVB.h b/include/configs/M52277EVB.h index a3d7bc4..3d28913 100644 --- a/include/c

[U-Boot-Users] [PATCH] ColdFire: Fix second memory Chipselect for M5475EVB

2008-03-17 Thread Tsi-Chung Liew
Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- board/freescale/m547xevb/m547xevb.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/board/freescale/m547xevb/m547xevb.c b/board/freescale/m547xevb/m547xevb.c index 0286084..539da78 100644 --- a/board/freescale/m547xev

[U-Boot-Users] [PATCH] ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282

2008-03-17 Thread Tsi-Chung Liew
Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- cpu/mcf52x2/start.S |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/mcf52x2/start.S b/cpu/mcf52x2/start.S index 260a09a..c086ca7 100644 --- a/cpu/mcf52x2/start.S +++ b/cpu/mcf52x2/start.S @@ -160,7 +160,7 @@ _copy

[U-Boot-Users] [PATCH] ColdFire: Fix missing code flash size for M5485EVB

2008-01-30 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: James Mahan <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 0f6cc59..30fda62 100644 --- a/Makefile +++ b/Make

[U-Boot-Users] [PATCH] ColdFire: Fix 5282 and 5271 interrupt mask bit

2008-01-30 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChung Liew <[EMAIL PROTECTED]> --- cpu/mcf52x2/interrupts.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cpu/mcf52x2/interrupts.c b/cpu/mcf52x2/interrupts.c index 2ccbde5..9167cec 100644 --- a/cpu/mcf52x2/interr

[U-Boot-Users] resend#4 [PATCH 2/8] ColdFire: Add MCF547x_8x related header files

2008-01-19 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/fec.h | 145 ++-- include/asm-m68k/fsl_mcdmafec.h | 176 + include/asm-m68k/immap.h | 93 +++ include/asm-m68k/immap_547x_8x.h | 297 ++ include/asm-m68k/m547x_8

[U-Boot-Users] resend#4 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-18 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/net/Makefile |1 + drivers/net/fsl_mcdmafec.c | 571 net/eth.c |4 + 3 files changed, 576 insertions(+), 0 deletions(-) create mode 100644 drivers/net/fsl_mcdma

[U-Boot-Users] resend#5 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-17 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/net/Makefile |1 + drivers/net/fsl_mcdmafec.c | 571 net/eth.c |4 + 3 files changed, 576 insertions(+), 0 deletions(-) create mode 100644 drivers/net/fsl_mcdma

[U-Boot-Users] [PATCH] ColdFire: Add MCF547x_8x FEC driver

2008-01-16 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/net/Makefile |1 + drivers/net/fsl_mcdmafec.c | 583 net/eth.c |4 + 3 files changed, 588 insertions(+), 0 deletions(-)

[U-Boot-Users] resend#3 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-16 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/net/Makefile |1 + drivers/net/fsl_mcdmafec.c | 583 net/eth.c |4 + 3 files changed, 588 insertions(+), 0 deletions(-) create mode 100644 drivers/net/fsl_mcdma

[U-Boot-Users] resend#2 [PATCH 2/8] ColdFire: Add MCF547x_8x related header files

2008-01-16 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/fec.h | 145 ++-- include/asm-m68k/fsl_mcdmafec.h | 167 + include/asm-m68k/immap.h | 93 +++ include/asm-m68k/immap_547x_8x.h | 297 ++ include/asm-m68k/m547x_8

[U-Boot-Users] resend#2 [PATCH 8/8] ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- CREDITS|2 +- MAINTAINERS|2 + MAKEALL|2 + Makefile | 71 ++ README |1 + doc/README.m5475evb| 279 +

[U-Boot-Users] resend#2 [PATCH 7/8] ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- board/freescale/m547xevb/Makefile | 44 + board/freescale/m547xevb/config.mk | 25 +++ board/freescale/m547xevb/m547xevb.c | 115 + board/freescale/m547xevb/mii.c | 322 +++ board/free

[U-Boot-Users] resend#2 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/net/Makefile |1 + drivers/net/fsl_mcdmafec.c | 582 net/eth.c |4 + 3 files changed, 587 insertions(+), 0 deletions(-) create mode 100644 drivers/net/fsl_mcdma

[U-Boot-Users] resend#2 [PATCH 5/8] ColdFire: Add MCF547x_8x dma code and header files

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/dma/MCD_tasksInit.c | 247 +++ drivers/dma/Makefile| 46 + include/MCD_dma.h | 386 +++ include/MCD_progCheck.h | 27 +++ include/MCD_tasksIni

[U-Boot-Users] resend#2 [PATCH 4/8] ColdFire: Add MCF547x_8x dma code - 2

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/dma/MCD_dmaApi.c | 1026 ++ 1 files changed, 1026 insertions(+), 0 deletions(-) create mode 100644 drivers/dma/MCD_dmaApi.c diff --git a/drivers/dma/MCD_dmaApi.c b/drivers/dma/MCD_dmaApi.c new

[U-Boot-Users] resend#2 [PATCH 3/8] ColdFire: Add MCF547x_8x dma code - 1

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/dma/MCD_tasks.c | 2428 +++ 1 files changed, 2428 insertions(+), 0 deletions(-) create mode 100644 drivers/dma/MCD_tasks.c diff --git a/drivers/dma/MCD_tasks.c b/drivers/dma/MCD_tasks.c new fi

[U-Boot-Users] resend#2 [PATCH 3/3] ColdFire: Add MCF5227x cpu and M52277EVB support-3

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/m5227x.h | 796 + 1 files changed, 796 insertions(+), 0 deletions(-) create mode 100644 include/asm-m68k/m5227x.h diff --git a/include/asm-m68k/m5227x.h b/include/asm-m68k/m5227x.h n

[U-Boot-Users] resend#2 [PATCH 1/8] ColdFire: Add MCF547x_8x cpu arch

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- cpu/mcf547x_8x/Makefile | 48 ++ cpu/mcf547x_8x/config.mk| 31 cpu/mcf547x_8x/cpu.c| 143 + cpu/mcf547x_8x/cpu_init.c | 132 cpu/mcf547x_8x/interrupts.c | 50 ++ cpu/mcf547x_

[U-Boot-Users] resend#2 [PATCH 2/3] ColdFire: Add MCF5227x cpu and MCF52277EVB support-2

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- cpu/mcf5227x/Makefile | 48 ++ cpu/mcf5227x/config.mk | 31 cpu/mcf5227x/cpu.c | 75 + cpu/mcf5227x/cpu_init.c| 146 cpu/mcf5227x/interrupts.c | 52 ++ cpu/m

[U-Boot-Users] resend#2 [PATCH 1/3] ColdFire: Add MCF5227x cpu and M52277EVB support-1

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |1 + Makefile |3 + README|1 + board/freescale/m52277evb/Makefile| 44 ++ b

[U-Boot-Users] resend#2 [PATCH 2/2] ColdFire: Add M5373EVB platform support - 2

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |3 +- Makefile | 10 ++ cpu/mcf532x/cpu.c | 20 +++- doc/README.m5373evb | 333 + i

[U-Boot-Users] resend#2 [PATCH] ColdFire: Fix CFI Flash low level Read/Write macro

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/io.h | 22 -- 1 files changed, 8 insertions(+), 14 deletions(-) diff --git a/include/asm-m68k/io.h b/include/asm-m68k/io.h index 91d7592..33c454a 100644 --- a/include/asm-m68k/io.h +++ b/include/asm-m68k/io

[U-Boot-Users] resend#2 [PATCH 1/2] ColdFire: Add M5373EVB platform support - 1

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- board/freescale/m5373evb/Makefile | 44 + board/freescale/m5373evb/config.mk | 25 +++ board/freescale/m5373evb/m5373evb.c | 88 ++ board/freescale/m5373evb/mii.c | 306 +++ board/freesca

[U-Boot-Users] resend#2 [PATCH] ColdFire: PCI and misc updates for MCF5445x

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- cpu/mcf5445x/cpu_init.c |1 - cpu/mcf5445x/pci.c | 61 -- cpu/mcf5445x/start.S| 25 ++--- include/asm-m68k/immap.h|8 +++--- include/asm-m68k/m5445x.h |

[U-Boot-Users] resend#2 [PATCH] ColdFire: MCF532x header files cleanup

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/immap_5329.h | 193 +--- include/asm-m68k/m5329.h | 281 - 2 files changed, 6 insertions(+), 468 deletions(-) diff --git a/include/asm-m68k/immap_5329.h b/in

[U-Boot-Users] resend#2 [PATCH] ColdFire: MCF5445x header files cleanup

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/immap_5445x.h | 521 include/asm-m68k/m5445x.h | 302 +--- 2 files changed, 46 insertions(+), 777 deletions(-) diff --git a/include/asm-m68k/immap_5445x.h b/inc

[U-Boot-Users] resend#2 [PATCH] ColdFire: Update FlexBus CS for MCF532x

2008-01-15 Thread Tsi-Chung Liew
Definition update and change from 16bit to 32bit Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- board/freescale/m5329evb/nand.c |4 ++-- include/configs/M5329EVB.h |8 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/board/freescale/m5329evb/nand.c b/board

[U-Boot-Users] resend#2 [PATCH] ColdFire: Add modules header files

2008-01-15 Thread Tsi-Chung Liew
Add CF specific modules header files Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/coldfire/crossbar.h | 79 + include/asm-m68k/coldfire/dspi.h | 156 + include/asm-m68k/coldfire/edma.h | 177 incl

[U-Boot-Users] resend [PATCH 7/8] ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- board/freescale/m547xevb/Makefile | 44 + board/freescale/m547xevb/config.mk | 25 +++ board/freescale/m547xevb/m547xevb.c | 115 + board/freescale/m547xevb/mii.c | 322 +++ board/free

[U-Boot-Users] resend [PATCH 8/8] ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- CREDITS|2 +- MAINTAINERS|2 + MAKEALL|2 + Makefile | 71 ++ README |1 + doc/README.m5475evb| 279 +

[U-Boot-Users] resend [PATCH 3/8] ColdFire: Add MCF547x_8x dma code - 1

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/dma/MCD_tasks.c | 2428 +++ 1 files changed, 2428 insertions(+), 0 deletions(-) create mode 100644 drivers/dma/MCD_tasks.c diff --git a/drivers/dma/MCD_tasks.c b/drivers/dma/MCD_tasks.c new fi

[U-Boot-Users] resend [PATCH 4/8] ColdFire: Add MCF547x_8x dma code - 2

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/dma/MCD_dmaApi.c | 1026 ++ 1 files changed, 1026 insertions(+), 0 deletions(-) create mode 100644 drivers/dma/MCD_dmaApi.c diff --git a/drivers/dma/MCD_dmaApi.c b/drivers/dma/MCD_dmaApi.c new

[U-Boot-Users] resend [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/net/Makefile |1 + drivers/net/fsl_mcdmafec.c | 582 net/eth.c |4 + 3 files changed, 587 insertions(+), 0 deletions(-) create mode 100644 drivers/net/fsl_mcdma

[U-Boot-Users] resend [PATCH 2/8] ColdFire: Add MCF547x_8x related header files

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/fec.h |7 +- include/asm-m68k/fsl_mcdmafec.h | 167 + include/asm-m68k/immap.h | 93 +++ include/asm-m68k/immap_547x_8x.h | 297 ++ include/asm-m68k/m547x_8x.h |

[U-Boot-Users] resend [PATCH 5/8] ColdFire: Add MCF547x_8x dma code and header files

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/dma/MCD_tasksInit.c | 247 +++ drivers/dma/Makefile| 46 + include/MCD_dma.h | 386 +++ include/MCD_progCheck.h | 27 +++ include/MCD_tasksIni

[U-Boot-Users] resend [PATCH 1/8] ColdFire: Add MCF547x_8x cpu arch

2008-01-15 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- cpu/mcf547x_8x/Makefile | 48 ++ cpu/mcf547x_8x/config.mk| 31 cpu/mcf547x_8x/cpu.c| 143 + cpu/mcf547x_8x/cpu_init.c | 132 cpu/mcf547x_8x/interrupts.c | 50 ++ cpu/mcf547x_

[U-Boot-Users] [PATCH] ColdFire: Add MCF5227x cpu and MCF52277EVB support-2

2008-01-15 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- cpu/mcf5227x/Makefile | 48 ++ cpu/mcf5227x/config.mk | 31 cpu/mcf5227x/cpu.c | 75 + cpu/mcf5227x/cpu_init.c| 146 cpu/mcf5227

[U-Boot-Users] [PATCH] ColdFire: Add M5373EVB platform support - 2

2008-01-15 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |3 +- Makefile | 10 ++ cpu/mcf532x/cpu.c | 20 +++- doc/README.m5373evb | 333

[U-Boot-Users] [PATCH] ColdFire: Add MCF5227x cpu and M52277EVB support-1

2008-01-15 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |1 + Makefile |3 + README|1 + board/freescal

[U-Boot-Users] [PATCH] ColdFire: Add MCF5227x cpu and M52277EVB support-3

2008-01-15 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/m5227x.h | 796 + 1 files changed, 796 insertions(+), 0 deletions(-) create mode 100644 include/asm-m68k/m5227x.h diff --git a/include/asm-m68

[U-Boot-Users] [PATCH] ColdFire: Fix CFI Flash low level Read/Write macro

2008-01-14 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/io.h | 22 -- 1 files changed, 8 insertions(+), 14 deletions(-) diff --git a/include/asm-m68k/io.h b/include/asm-m68k/io.h index 91d7592..33c454a 100644 --- a/include/asm-m68k/io.h +++ b/include/asm-m68k/io

[U-Boot-Users] [PATCH 1/2] ColdFire: Add M5373EVB platform support - 1

2008-01-14 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- board/freescale/m5373evb/Makefile | 44 + board/freescale/m5373evb/config.mk | 25 +++ board/freescale/m5373evb/m5373evb.c | 88 ++ board/freescale/m5373evb/mii.c | 306 +++ board/freesca

[U-Boot-Users] [PATCH] ColdFire: Update FlexBus CS for MCF532x

2008-01-14 Thread Tsi-Chung Liew
Definition update and change from 16bit to 32bit Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- board/freescale/m5329evb/nand.c |4 ++-- include/configs/M5329EVB.h |8 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/board/freescale/m5329evb/nand.c b/board

[U-Boot-Users] [PATCH 2/2] ColdFire: Add M5373EVB platform support - 2

2008-01-14 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |3 +- Makefile | 10 ++ cpu/mcf532x/cpu.c | 20 +++- doc/README.m5373evb | 334 + i

[U-Boot-Users] [PATCH] ColdFire: Add modules header files

2008-01-14 Thread Tsi-Chung Liew
Add CF specific modules header files Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/coldfire/crossbar.h | 79 + include/asm-m68k/coldfire/dspi.h | 156 + include/asm-m68k/coldfire/edma.h | 177 incl

[U-Boot-Users] [PATCH] ColdFire: PCI and misc updates for MCF5445x

2008-01-14 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- cpu/mcf5445x/cpu_init.c |1 - cpu/mcf5445x/pci.c | 61 -- cpu/mcf5445x/start.S| 25 ++--- include/asm-m68k/immap.h|8 +++--- include/asm-m68k/m5445x.h |

[U-Boot-Users] [PATCH] ColdFire: MCF5445x header files cleanup

2008-01-14 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/immap_5445x.h | 521 include/asm-m68k/m5445x.h | 302 +--- 2 files changed, 46 insertions(+), 777 deletions(-) diff --git a/include/asm-m68k/immap_5445x.h b/inc

[U-Boot-Users] [PATCH] ColdFire: MCF532x header files cleanup

2008-01-14 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/immap_5329.h | 193 +--- include/asm-m68k/m5329.h | 281 - 2 files changed, 6 insertions(+), 468 deletions(-) diff --git a/include/asm-m68k/immap_5329.h b/in

[U-Boot-Users] [PATCH] ColdFire: Add modules header files

2008-01-14 Thread Tsi-Chung Liew
Add CF specific modules header files Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/coldfire/crossbar.h | 79 + include/asm-m68k/coldfire/dspi.h | 156 + include/asm-m68k/coldfire/edma.h | 177 incl

[U-Boot-Users] [PATCH 2/2] ColdFire: Add M5373EVB platform support - 2

2008-01-14 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |3 +- Makefile | 10 ++ cpu/mcf532x/cpu.c | 20 +++- doc/README.m5373evb | 334 + i

[U-Boot-Users] [PATCH 1/2] ColdFire: Add M5373EVB platform support - 1

2008-01-14 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- board/freescale/m5373evb/Makefile | 44 + board/freescale/m5373evb/config.mk | 25 +++ board/freescale/m5373evb/m5373evb.c | 88 ++ board/freescale/m5373evb/mii.c | 306 +++ board/freesca

[U-Boot-Users] [PATCH] ColdFire: MCF5445x header files cleanup

2008-01-14 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/immap_5445x.h | 521 include/asm-m68k/m5445x.h | 302 +--- 2 files changed, 46 insertions(+), 777 deletions(-) diff --gi

[U-Boot-Users] [PATCH] ColdFire: MCF532x header files cleanup

2008-01-14 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/immap_5329.h | 193 +--- include/asm-m68k/m5329.h | 281 - 2 files changed, 6 insertions(+), 468 deletions(-) diff --

[U-Boot-Users] [PATCH] ColdFire: Add modules header files

2008-01-14 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Add CF specific modules header files Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/coldfire/crossbar.h | 79 + include/asm-m68k/coldfire/dspi.h | 156 + include/asm-m68k/coldfire/edma.h |