Changes for U-Boot 1.1.3:
 ======================================================================
 
+* Fixes for TQM8560 board:
+  - fix clock rates
+  - remove debug messages
+  - fix flash sector protection
+
 * Patch by Steven Scholz, 07 Apr 2005:
   Add i2c_reg_write() and i2c_reg_write() for at91rm9200 I2C
 
-* Patch by Steven Scholz, 07 Apr 2005:
+* Patches by Steven Scholz, 07 Apr 2005:
   Fix compiler warning in altera.c
+  Fix warning in cpu/arm920t/at91rm9200/i2c.c
 
 * Patch by Ladislav Michl, 06 Apr 2005:
   Fix voiceblue configuration.
 
 stage-2 loader which in turn loads and then invokes the kernel
 proper. Loader sources will eventually appear in the NetBSD source
 tree (probably in sys/arc/mpc8xx/stand/u-boot_stage2/); in the
-meantime, send mail to bruno@exet-ag.de and/or wd@denx.de for
-details.
+meantime, see ftp://ftp.denx.de/pub/u-boot/ppcboot_stage2.tar.gz
 
 
 Implementation Internals:
 
 
 int
 i2c_write(unsigned char chip, unsigned int addr, int alen,
-                                                       unsigned char *buffer, int len)
+         unsigned char *buffer, int len)
 {
+#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW
        int i;
        unsigned char *buf;
 
-#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW
        /* we only allow one address byte */
        if (alen > 1)
                return 1;
 
        sys_info_t  sys_info;
 
        get_sys_info(&sys_info);
-       return ((sys_info.freqSystemBus + 3L) / 4L);
+       return ((sys_info.freqSystemBus + 7L) / 8L);
 }
 
 
 
 #error "rtx must be 64-bit aligned"
 #endif
 
-#define ET_DEBUG
+#undef ET_DEBUG
 
 static int fec_send(struct eth_device* dev, volatile void *packet, int length)
 {
 
 #include <asm/processor.h>
 #include <asm/byteorder.h>
 #include <linux/byteorder/swab.h>
+#include <environment.h>
 #ifdef CFG_FLASH_CFI_DRIVER
 
 /*