public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] Update for 5329
@ 2007-08-01 16:13 Liew Tsi Chung-r5aahp
  2007-08-01 17:28 ` Craig Day
  2007-08-02  5:56 ` Stefan Roese
  0 siblings, 2 replies; 12+ messages in thread
From: Liew Tsi Chung-r5aahp @ 2007-08-01 16:13 UTC (permalink / raw)
  To: u-boot

Stefan,

Here is the updates:
1. Update-CONFIG_MCFUART.patch
2. Added-common-define-CONFIG_CF_MII-for-do_mii.patch
3. Moved-sync-from-m5329evb.c-to-include-asm-m68k-io.patch
4. Added-uart_gpio_conf-for-port-configuration.patch
5. Update-timer.patch
6. Added-fsl_i2c-header-file.patch
7. Added-NAND-Flash-support-and-I2C-support.patch
8. Added-GPIO-enabled-for-I2C-signals.patch

Note: NAND support still partially incomplete, unable to read/write.
Erase, bad, markbad, lock, unlock and info seems working.

Thanks,

Regards,
TsiChung
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0002-Added-common-define-CONFIG_CF_MII-for-do_mii.patch
Type: application/octet-stream
Size: 1178 bytes
Desc: 0002-Added-common-define-CONFIG_CF_MII-for-do_mii.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070801/18a99170/attachment.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Update-CONFIG_MCFUART.patch
Type: application/octet-stream
Size: 1478 bytes
Desc: 0001-Update-CONFIG_MCFUART.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070801/18a99170/attachment-0001.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Moved-sync-from-m5329evb.c-to-include-asm-m68k-io.patch
Type: application/octet-stream
Size: 1419 bytes
Desc: 0001-Moved-sync-from-m5329evb.c-to-include-asm-m68k-io.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070801/18a99170/attachment-0002.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Added-uart_gpio_conf-for-port-configuration.patch
Type: application/octet-stream
Size: 3492 bytes
Desc: 0001-Added-uart_gpio_conf-for-port-configuration.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070801/18a99170/attachment-0003.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Update-timer.patch
Type: application/octet-stream
Size: 1257 bytes
Desc: 0001-Update-timer.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070801/18a99170/attachment-0004.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Added-fsl_i2c-header-file.patch
Type: application/octet-stream
Size: 3048 bytes
Desc: 0001-Added-fsl_i2c-header-file.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070801/18a99170/attachment-0005.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0002-Added-NAND-Flash-support-and-I2C-support.patch
Type: application/octet-stream
Size: 15739 bytes
Desc: 0002-Added-NAND-Flash-support-and-I2C-support.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070801/18a99170/attachment-0006.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0003-Added-GPIO-enabled-for-I2C-signals.patch
Type: application/octet-stream
Size: 733 bytes
Desc: 0003-Added-GPIO-enabled-for-I2C-signals.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070801/18a99170/attachment-0007.obj 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329
  2007-08-01 16:13 [U-Boot-Users] Update for 5329 Liew Tsi Chung-r5aahp
@ 2007-08-01 17:28 ` Craig Day
  2007-08-02  5:23   ` Stefan Roese
  2007-08-02  5:56 ` Stefan Roese
  1 sibling, 1 reply; 12+ messages in thread
From: Craig Day @ 2007-08-01 17:28 UTC (permalink / raw)
  To: u-boot

Hi TsiChung,

I've ported u-boot 1.1.6 over to the LPC3180 (arm926ejs core) and have
included NAND support.  The nand_write_ecc function in
drivers/nand/nand_base.c appears to be writing pages correctly, but the
pointer to the source data in memory for nand_verify_pages does not seem to
be updated correctly. Specifically, line 1707 in nand_base.c contains:
this->data_poi = bufstart; However, the problem is that bufstart is never
updated, and always points to the beginning of the data source, causing all
nand_page_verify calls to compare the newest written pages in NAND flash to
the beginning of the data source. After the first block NAND writing fails
due to nand_verify_pages failing. To fix this I added in:
bufstart += (1 << this->phys_erase_shift);

Have you seen this problem? Or has anyone else run into this problem? Or is
there something I'm missing?

cheers,
Craig

-----Original Message-----
From: u-boot-users-bounces@lists.sourceforge.net
[mailto:u-boot-users-bounces at lists.sourceforge.net] On Behalf Of Liew Tsi
Chung-r5aahp
Sent: Wednesday, August 01, 2007 9:13 AM
To: u-boot-users at lists.sourceforge.net
Cc: Stefan Roese; Wilson Callan
Subject: [U-Boot-Users] Update for 5329

Stefan,

Here is the updates:
1. Update-CONFIG_MCFUART.patch
2. Added-common-define-CONFIG_CF_MII-for-do_mii.patch
3. Moved-sync-from-m5329evb.c-to-include-asm-m68k-io.patch
4. Added-uart_gpio_conf-for-port-configuration.patch
5. Update-timer.patch
6. Added-fsl_i2c-header-file.patch
7. Added-NAND-Flash-support-and-I2C-support.patch
8. Added-GPIO-enabled-for-I2C-signals.patch

Note: NAND support still partially incomplete, unable to read/write.
Erase, bad, markbad, lock, unlock and info seems working.

Thanks,

Regards,
TsiChung

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329
  2007-08-01 17:28 ` Craig Day
@ 2007-08-02  5:23   ` Stefan Roese
  2007-08-02 15:14     ` Craig Day
  0 siblings, 1 reply; 12+ messages in thread
From: Stefan Roese @ 2007-08-02  5:23 UTC (permalink / raw)
  To: u-boot

Hi Craig,

On Wednesday 01 August 2007, Craig Day wrote:
> I've ported u-boot 1.1.6 over to the LPC3180 (arm926ejs core) and have
> included NAND support.  The nand_write_ecc function in
> drivers/nand/nand_base.c appears to be writing pages correctly, but the
> pointer to the source data in memory for nand_verify_pages does not seem to
> be updated correctly. Specifically, line 1707 in nand_base.c contains:
> this->data_poi = bufstart; However, the problem is that bufstart is never
> updated, and always points to the beginning of the data source, causing all
> nand_page_verify calls to compare the newest written pages in NAND flash to
> the beginning of the data source. After the first block NAND writing fails
> due to nand_verify_pages failing. To fix this I added in:
> bufstart += (1 << this->phys_erase_shift);

Thanks for the detailed explanation. But even better would be to send a patch 
(best with a signed-off line etc.). A patch sometimes explains a problem 
betten than such an explanation. And if you are correct and it fixes a real 
problem, the patch could be applied directly.

> Have you seen this problem? Or has anyone else run into this problem? Or is
> there something I'm missing?

We are using the current NAND driver successfully on multiple boards.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329
  2007-08-01 16:13 [U-Boot-Users] Update for 5329 Liew Tsi Chung-r5aahp
  2007-08-01 17:28 ` Craig Day
@ 2007-08-02  5:56 ` Stefan Roese
  2007-08-06 20:52   ` [U-Boot-Users] Update for 5329 - part I Liew Tsi Chung-r5aahp
  2007-08-06 20:53   ` [U-Boot-Users] Update for 5329 - part II Liew Tsi Chung-r5aahp
  1 sibling, 2 replies; 12+ messages in thread
From: Stefan Roese @ 2007-08-02  5:56 UTC (permalink / raw)
  To: u-boot

Hi TsiChung,

please find some comments below.

On Wednesday 01 August 2007, Liew Tsi Chung-r5aahp wrote:
> Here is the updates:
> 1. Update-CONFIG_MCFUART.patch
> 2. Added-common-define-CONFIG_CF_MII-for-do_mii.patch

> diff --git a/common/cmd_mii.c b/common/cmd_mii.c
> index c3f43d7..181f2e7 100644
> --- a/common/cmd_mii.c
> +++ b/common/cmd_mii.c
> @@ -438,7 +438,7 @@ int do_mii (cmd_tbl_t * cmdtp, int flag, int argc, char
> *argv[]) int		rcode = 0;
>  	char		*devname;
>
> -#if defined(CONFIG_8xx) || defined(CONFIG_MCF532x)
> +#if defined(CONFIG_8xx) || defined(CONFIG_CF_DOMII)

Please add either a generic define name (not ColdFire specific) or even better 
add declare this mii_init() function as __weak__:

void __mii_init(void)
{
}
int mii_init(void) __attribute__((weak, alias("__mii_init")));

This way we can get rid of these #defines completely.

> 3. Moved-sync-from-m5329evb.c-to-include-asm-m68k-io.patch

Does not apply. I did some cleanup on your original patches, so please rebase 
your work on the u-boot-coldfire custodian repository.

> 4. Added-uart_gpio_conf-for-port-configuration.patch
> 5. Update-timer.patch
> 6. Added-fsl_i2c-header-file.patch
> 7. Added-NAND-Flash-support-and-I2C-support.patch

> diff --git a/board/freescale/m5329evb/m5329evb.c
> b/board/freescale/m5329evb/m5329evb.c index 242eb1a..d23b1c2 100644
> --- a/board/freescale/m5329evb/m5329evb.c
> +++ b/board/freescale/m5329evb/m5329evb.c
> @@ -26,6 +26,7 @@
>
>  #include <config.h>
>  #include <common.h>
> +#include <asm/io.h>
>  #include <asm/immap.h>
>
>  DECLARE_GLOBAL_DATA_PTR;
> @@ -86,3 +87,85 @@ int testdram(void)
>
>  	return (0);
>  }
> +
> +#if (CONFIG_COMMANDS & CFG_CMD_NAND)
> +#include <nand.h>
> +#include <linux/mtd/mtd.h>
> +
> +#define SET_CLE	0x10
> +#define CLR_CLE	~SET_CLE
> +#define SET_ALE	0x08
> +#define CLR_ALE	~SET_ALE
> +
> +static void nand_hwcontrol(struct mtd_info *mtdinfo, int cmd)
> +{

Please move this NAND support into a separate file 
(board/freescale/m5329evb/nand.c).

> 8. Added-GPIO-enabled-for-I2C-signals.patch

As already mentioned above, could you please rebase you patches on the current 
u-boot-coldfire repository? And please address the comments above and 
resubmit. I'll try to merge the patches soon, so that they can be applied to 
mainline before the new merge window closes.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329
  2007-08-02  5:23   ` Stefan Roese
@ 2007-08-02 15:14     ` Craig Day
  2007-08-02 15:22       ` Stefan Roese
  0 siblings, 1 reply; 12+ messages in thread
From: Craig Day @ 2007-08-02 15:14 UTC (permalink / raw)
  To: u-boot

Hi Stefan,

Thanks for the tips (submitting patches). I took a look at the U-Boot 1.2.0
nand_base.c source file and it does have this fix implemented (slightly
different code, but it's updating bufstart like it needs to be), so
apparently someone else has run into the same issue. Are you using 1.2.0 or
1.1.6 (like I am)?

cheers,
Craig

-----Original Message-----
From: Stefan Roese [mailto:sr at denx.de] 
Sent: Wednesday, August 01, 2007 10:23 PM
To: u-boot-users at lists.sourceforge.net
Cc: Craig Day; 'Liew Tsi Chung-r5aahp'; 'Wilson Callan'
Subject: Re: [U-Boot-Users] Update for 5329

Hi Craig,

On Wednesday 01 August 2007, Craig Day wrote:
> I've ported u-boot 1.1.6 over to the LPC3180 (arm926ejs core) and have
> included NAND support.  The nand_write_ecc function in
> drivers/nand/nand_base.c appears to be writing pages correctly, but the
> pointer to the source data in memory for nand_verify_pages does not seem
to
> be updated correctly. Specifically, line 1707 in nand_base.c contains:
> this->data_poi = bufstart; However, the problem is that bufstart is never
> updated, and always points to the beginning of the data source, causing
all
> nand_page_verify calls to compare the newest written pages in NAND flash
to
> the beginning of the data source. After the first block NAND writing fails
> due to nand_verify_pages failing. To fix this I added in:
> bufstart += (1 << this->phys_erase_shift);

Thanks for the detailed explanation. But even better would be to send a
patch 
(best with a signed-off line etc.). A patch sometimes explains a problem 
betten than such an explanation. And if you are correct and it fixes a real 
problem, the patch could be applied directly.

> Have you seen this problem? Or has anyone else run into this problem? Or
is
> there something I'm missing?

We are using the current NAND driver successfully on multiple boards.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329
  2007-08-02 15:14     ` Craig Day
@ 2007-08-02 15:22       ` Stefan Roese
  0 siblings, 0 replies; 12+ messages in thread
From: Stefan Roese @ 2007-08-02 15:22 UTC (permalink / raw)
  To: u-boot

Hi Craig,

On Thursday 02 August 2007, Craig Day wrote:
> Thanks for the tips (submitting patches). I took a look at the U-Boot 1.2.0
> nand_base.c source file and it does have this fix implemented

Ufff. ;)

> (slightly 
> different code, but it's updating bufstart like it needs to be), so
> apparently someone else has run into the same issue. Are you using 1.2.0 or
> 1.1.6 (like I am)?

Later and greatest of course.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329 - part I
  2007-08-02  5:56 ` Stefan Roese
@ 2007-08-06 20:52   ` Liew Tsi Chung-r5aahp
  2007-08-08  8:02     ` Stefan Roese
  2007-08-06 20:53   ` [U-Boot-Users] Update for 5329 - part II Liew Tsi Chung-r5aahp
  1 sibling, 1 reply; 12+ messages in thread
From: Liew Tsi Chung-r5aahp @ 2007-08-06 20:52 UTC (permalink / raw)
  To: u-boot

Stefan,

Attached are the patches based on u-boot-coldfire custodian repository.

Thanks.

Regards,
TsiChung
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Renamed-CONFIG_MCFSERIAL-to-CONFIG_MCFUART.patch
Type: application/octet-stream
Size: 1445 bytes
Desc: 0001-Renamed-CONFIG_MCFSERIAL-to-CONFIG_MCFUART.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070806/ce645ea2/attachment.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0002-Declared-attributes-of-void-__mii_init-void-as-an-a.patch
Type: application/octet-stream
Size: 1809 bytes
Desc: 0002-Declared-attributes-of-void-__mii_init-void-as-an-a.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070806/ce645ea2/attachment-0001.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0003-Moved-sync-from-board-file-to-include-asm-m68k-io.patch
Type: application/octet-stream
Size: 1407 bytes
Desc: 0003-Moved-sync-from-board-file-to-include-asm-m68k-io.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070806/ce645ea2/attachment-0002.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0004-Added-uart_gpio_conf-in-serial_init-seperated-u.patch
Type: application/octet-stream
Size: 2170 bytes
Desc: 0004-Added-uart_gpio_conf-in-serial_init-seperated-u.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070806/ce645ea2/attachment-0003.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0005-Changed-CFG_CLK-to-gd-bus_clk-for-CFG_TIMER_PRESCAL.patch
Type: application/octet-stream
Size: 1235 bytes
Desc: 0005-Changed-CFG_CLK-to-gd-bus_clk-for-CFG_TIMER_PRESCAL.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070806/ce645ea2/attachment-0004.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0006-Added-I2C-support.patch
Type: application/octet-stream
Size: 6849 bytes
Desc: 0006-Added-I2C-support.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070806/ce645ea2/attachment-0005.obj 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329 - part II
  2007-08-02  5:56 ` Stefan Roese
  2007-08-06 20:52   ` [U-Boot-Users] Update for 5329 - part I Liew Tsi Chung-r5aahp
@ 2007-08-06 20:53   ` Liew Tsi Chung-r5aahp
  2007-08-08  8:03     ` Stefan Roese
  1 sibling, 1 reply; 12+ messages in thread
From: Liew Tsi Chung-r5aahp @ 2007-08-06 20:53 UTC (permalink / raw)
  To: u-boot

Stefan,

Attached are the patches based on u-boot-coldfire custodian repository.

Thanks.

Regards,
TsiChung
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0007-Added-NAND-support.patch
Type: application/octet-stream
Size: 14320 bytes
Desc: 0007-Added-NAND-support.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070806/f5585f24/attachment.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0008-Port-enabled-for-I2C-signals-and-chipselects-port-co.patch
Type: application/octet-stream
Size: 2089 bytes
Desc: 0008-Port-enabled-for-I2C-signals-and-chipselects-port-co.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070806/f5585f24/attachment-0001.obj 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329 - part I
  2007-08-06 20:52   ` [U-Boot-Users] Update for 5329 - part I Liew Tsi Chung-r5aahp
@ 2007-08-08  8:02     ` Stefan Roese
  0 siblings, 0 replies; 12+ messages in thread
From: Stefan Roese @ 2007-08-08  8:02 UTC (permalink / raw)
  To: u-boot

On Monday 06 August 2007, Liew Tsi Chung-r5aahp wrote:
> Attached are the patches based on u-boot-coldfire custodian repository.

Applied to the ColdFire repository.

Thanks.

One remark: Could you please add a "ColdFire" note to your first commit line 
in future patches? Like:

ColdFire: Added NAND support

instead of just:

Added NAND support

Thanks.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329 - part II
  2007-08-06 20:53   ` [U-Boot-Users] Update for 5329 - part II Liew Tsi Chung-r5aahp
@ 2007-08-08  8:03     ` Stefan Roese
  2007-08-08  8:08       ` Liew Tsi Chung-r5aahp
  2007-08-14 17:27       ` [U-Boot-Users] ColdFire: Timer and MCF52x2 update Liew Tsi Chung-r5aahp
  0 siblings, 2 replies; 12+ messages in thread
From: Stefan Roese @ 2007-08-08  8:03 UTC (permalink / raw)
  To: u-boot

On Monday 06 August 2007, Liew Tsi Chung-r5aahp wrote:
> Attached are the patches based on u-boot-coldfire custodian repository.

Applied to the ColdFire repository.

Thanks.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Update for 5329 - part II
  2007-08-08  8:03     ` Stefan Roese
@ 2007-08-08  8:08       ` Liew Tsi Chung-r5aahp
  2007-08-14 17:27       ` [U-Boot-Users] ColdFire: Timer and MCF52x2 update Liew Tsi Chung-r5aahp
  1 sibling, 0 replies; 12+ messages in thread
From: Liew Tsi Chung-r5aahp @ 2007-08-08  8:08 UTC (permalink / raw)
  To: u-boot

Stefan,

Thanks! I will add ColdFire to my message subject and patch comments in
the future.

Regards,
TsiChung

-----Original Message-----
From: Stefan Roese [mailto:sr at denx.de] 
Sent: Wednesday, August 08, 2007 3:03 AM
To: u-boot-users at lists.sourceforge.net
Cc: Liew Tsi Chung-r5aahp; Wilson Callan
Subject: Re: [U-Boot-Users] Update for 5329 - part II

On Monday 06 August 2007, Liew Tsi Chung-r5aahp wrote:
> Attached are the patches based on u-boot-coldfire custodian
repository.

Applied to the ColdFire repository.

Thanks.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] ColdFire: Timer and MCF52x2 update
  2007-08-08  8:03     ` Stefan Roese
  2007-08-08  8:08       ` Liew Tsi Chung-r5aahp
@ 2007-08-14 17:27       ` Liew Tsi Chung-r5aahp
  1 sibling, 0 replies; 12+ messages in thread
From: Liew Tsi Chung-r5aahp @ 2007-08-14 17:27 UTC (permalink / raw)
  To: u-boot

Stefan,

	Here are the first patches for all CF timer update and MCF52x2 update.

Regards,
TsiChung
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-ColdFire-Add-timer-struct-for-M5235-and-M5249-and.patch
Type: application/octet-stream
Size: 3128 bytes
Desc: 0001-ColdFire-Add-timer-struct-for-M5235-and-M5249-and.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070814/68af36c8/attachment.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0002-ColdFire-M5272-Add-fec-structure.patch
Type: application/octet-stream
Size: 1702 bytes
Desc: 0002-ColdFire-M5272-Add-fec-structure.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070814/68af36c8/attachment-0001.obj 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0003-ColdFire-Add-new-support-for-uart-fec-and-timer-in.patch
Type: application/octet-stream
Size: 22270 bytes
Desc: 0003-ColdFire-Add-new-support-for-uart-fec-and-timer-in.patch
Url : http://lists.denx.de/pipermail/u-boot/attachments/20070814/68af36c8/attachment-0002.obj 

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2007-08-14 17:27 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-01 16:13 [U-Boot-Users] Update for 5329 Liew Tsi Chung-r5aahp
2007-08-01 17:28 ` Craig Day
2007-08-02  5:23   ` Stefan Roese
2007-08-02 15:14     ` Craig Day
2007-08-02 15:22       ` Stefan Roese
2007-08-02  5:56 ` Stefan Roese
2007-08-06 20:52   ` [U-Boot-Users] Update for 5329 - part I Liew Tsi Chung-r5aahp
2007-08-08  8:02     ` Stefan Roese
2007-08-06 20:53   ` [U-Boot-Users] Update for 5329 - part II Liew Tsi Chung-r5aahp
2007-08-08  8:03     ` Stefan Roese
2007-08-08  8:08       ` Liew Tsi Chung-r5aahp
2007-08-14 17:27       ` [U-Boot-Users] ColdFire: Timer and MCF52x2 update Liew Tsi Chung-r5aahp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox