]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
* Patch by Steven Scholz, 07 Apr 2005:
authorwdenk <wdenk>
Thu, 7 Apr 2005 22:36:40 +0000 (22:36 +0000)
committerwdenk <wdenk>
Thu, 7 Apr 2005 22:36:40 +0000 (22:36 +0000)
  Add i2c_reg_write() and i2c_reg_write() for at91rm9200 I2C

* Patch by Steven Scholz, 07 Apr 2005:
  Fix compiler warning in altera.c

* Patch by Ladislav Michl, 06 Apr 2005:
  Fix voiceblue configuration.

CHANGELOG
common/altera.c
cpu/arm920t/at91rm9200/i2c.c
include/configs/voiceblue.h

index b0cdfc6dabfd06b0cdb89debaa741c07ce6864f4..e53b7c50070480ce747a98884faac7b13952c05b 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,15 @@
 Changes for U-Boot 1.1.3:
 ======================================================================
 
+* 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:
+  Fix compiler warning in altera.c
+
+* Patch by Ladislav Michl, 06 Apr 2005:
+  Fix voiceblue configuration.
+
 * Patch by Stefan Roese, 06 Apr 2005:
   Updates for OCOTEA board:
   - Changed U-Boot size from 512kByte to 256kByte
index 31b3728ef5ce0d9d4edd24729c630e5da2d9de14..ebd50382c63225eedf2dedc2b1ec06db43a19489 100644 (file)
@@ -158,6 +158,7 @@ int altera_info( Altera_desc *desc )
                                /* Add new family types here */
                        default:
                                /* we don't need a message here - we give one up above */
+                               break;
                        }
                } else {
                        printf ("No Device Function Table.\n");
index 433dd32a23112057fcc3602a20f6a50e573db798..274327548b4fc8696c83b33629e5bb59805b8f38 100644 (file)
@@ -189,4 +189,19 @@ i2c_init(int speed, int slaveaddr)
        debug ("Found AT91 i2c\n");
        return;
 }
+
+uchar i2c_reg_read(uchar i2c_addr, uchar reg)
+{
+       char buf;
+
+       i2c_read(i2c_addr, reg, 1, &buf, 1);
+
+       return(buf);
+}
+
+void i2c_reg_write(uchar i2c_addr, uchar reg, uchar val)
+{
+       i2c_write(i2c_addr, reg, 1, &val, 1);
+}
+
 #endif /* CONFIG_HARD_I2C */
index 53dbf827226e2d7e2a5520c59b91829ce2307e90..1640163cd4d8c490827b3a4f389dd2a9bbdd0200 100644 (file)
 #endif
 
 /*
- * Size of malloc() pool
+ * Size of malloc() pool and stack
  */
 #define CFG_GBL_DATA_SIZE      128     /* size in bytes reserved for initial data */
 #ifdef VOICEBLUE_SMALL_FLASH
 #define CFG_MALLOC_LEN         (SZ_64K - CFG_GBL_DATA_SIZE)
+#define CONFIG_STACKSIZE       SZ_8K
 #else
-#define CFG_MALLOC_LEN         (SZ_4M - CFG_GBL_DATA_SIZE)
+#define CFG_MALLOC_LEN         SZ_4M
+#define CONFIG_STACKSIZE       SZ_1M
 #endif
 
-/*
- * The stack size is set up in start.S using the settings below
- */
-#define CONFIG_STACKSIZE       SZ_8K   /* regular stack */
-
 /*
  * Hardware drivers
  */
 #ifdef VOICEBLUE_SMALL_FLASH
 #define CONFIG_BOOTDELAY       0
 #undef  CONFIG_BOOTARGS                /* the preboot command will set bootargs*/
-#define CFG_AUTOLOAD           "n"     /* No autoload */
+#define CFG_AUTOLOAD           "n"     /* no autoload */
 #define CONFIG_PREBOOT         "run setup"
 #define        CONFIG_EXTRA_ENV_SETTINGS                               \
        "setup=setenv bootargs console=ttyS0,$(baudrate) "      \
                "cp.b 10400000 c000000 $(filesize)\0"
 #else
 #define CONFIG_BOOTDELAY       3
-#undef  CONFIG_BOOTARGS                /* the boot command will set bootargs*/
-#define CFG_AUTOLOAD           "n"     /* No autoload */
+#undef  CONFIG_BOOTARGS                /* boot command will set bootargs */
+#define CFG_AUTOLOAD           "n"     /* no autoload */
 #define CONFIG_BOOTCOMMAND     "run nboot"
 #define CONFIG_PREBOOT         "run setup"
 #define        CONFIG_EXTRA_ENV_SETTINGS                               \
        "fi\0"                                                  \
        "setup=setenv bootargs console=ttyS0,$baudrate "        \
                "mtdparts=$mtdparts\0"                          \
-       "nfsargs=setenv bootargs $bootargs "                    \
-               "root=/dev/nfs ip=dhcp; run setpart\0"                  \
-       "flashargs=setenv bootargs $bootargs "                  \
-               "root=/dev/mtdblock$partition "                 \
-               "rootfstype=jffs2; run setpart\0"                               \
+       "nfsargs=run setpart; setenv bootargs $bootargs "       \
+               "root=/dev/nfs ip=dhcp\0"                       \
+       "flashargs=run setpart; setenv bootargs $bootargs "     \
+               "root=/dev/mtdblock$partition ro "              \
+               "rootfstype=jffs2\0"                            \
        "nboot=run nfsargs; bootp; tftp; bootm\0"               \
        "fboot=run flashargs; fsload /boot/uImage; bootm\0"
 #endif