ppc4xx: Fix PMC405DE support
[oweals/u-boot.git] / board / innokom / innokom.c
index 17f6353d2ef17f58448c690707dd995fbc0a171a..c2b88ae16ad20467ee2477f78101436a8b7b8783 100644 (file)
@@ -27,6 +27,8 @@
 #include <asm/arch/pxa-regs.h>
 #include <asm/mach-types.h>
 
+DECLARE_GLOBAL_DATA_PTR;
+
 #ifdef CONFIG_SHOW_BOOT_PROGRESS
 # define SHOW_BOOT_PROGRESS(arg)        show_boot_progress(arg)
 #else
  */
 int i2c_init_board(void)
 {
-       int i;
+       int i, icr;
+
+       /* disable I2C controller first, otherwhise it thinks we want to    */
+       /* talk to the slave port...                                        */
+       icr = ICR; ICR &= ~(ICR_SCLE | ICR_IUE);
 
-       /* set gpio pin to output */
-        GPDR(70) |= GPIO_bit(70);
-       for (i = 0; i < 11; i++) {
-               GPCR(70) = GPIO_bit(70);
+       /* set gpio pin low _before_ we change direction to output          */
+       GPCR(70) = GPIO_bit(70);
+
+       /* now toggle between output=low and high-impedance                 */
+       for (i = 0; i < 20; i++) {
+               GPDR(70) |= GPIO_bit(70);  /* output */
                udelay(10);
-               GPSR(70)  = GPIO_bit(70);
+               GPDR(70) &= ~GPIO_bit(70); /* input  */
                udelay(10);
        }
-        /* set gpio pin to input */
-        GPDR(70) &= ~GPIO_bit(70);
+
+       ICR = icr;
 
        return 0;
 }
@@ -64,7 +72,7 @@ int i2c_init_board(void)
 
 int misc_init_r(void)
 {
-       uchar *str;
+       char *str;
 
        /* determine if the software update key is pressed during startup   */
        if (GPLR0 & 0x00000800) {
@@ -89,16 +97,12 @@ int misc_init_r(void)
 
 int board_init (void)
 {
-       DECLARE_GLOBAL_DATA_PTR;
-
        /* memory and cpu-speed are setup before relocation */
        /* so we do _nothing_ here */
 
-       /* arch number of Innokom board */
        gd->bd->bi_arch_number = MACH_TYPE_INNOKOM;
-
-       /* adress of boot parameters */
        gd->bd->bi_boot_params = 0xa0000100;
+       gd->bd->bi_baudrate = CONFIG_BAUDRATE;
 
        return 0;
 }
@@ -112,8 +116,6 @@ int board_init (void)
 
 int dram_init (void)
 {
-       DECLARE_GLOBAL_DATA_PTR;
-
        gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
        gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
 
@@ -140,18 +142,18 @@ void innokom_set_led(int led, int state)
                        break;
 
                case 1: if (state==1) {
-                                GPCR0 |= CSB226_USER_LED1;
-                        } else if (state==0) {
-                                GPSR0 |= CSB226_USER_LED1;
-                        }
-                        break;
+                               GPCR0 |= CSB226_USER_LED1;
+                       } else if (state==0) {
+                               GPSR0 |= CSB226_USER_LED1;
+                       }
+                       break;
 
                case 2: if (state==1) {
-                                GPCR0 |= CSB226_USER_LED2;
-                        } else if (state==0) {
-                                GPSR0 |= CSB226_USER_LED2;
-                        }
-                        break;
+                               GPCR0 |= CSB226_USER_LED2;
+                       } else if (state==0) {
+                               GPSR0 |= CSB226_USER_LED2;
+                       }
+                       break;
 */
        }
 
@@ -180,4 +182,3 @@ void show_boot_progress (int status)
 
        return;
 }
-