]> git.sur5r.net Git - u-boot/commitdiff
* Patch by Gleb Natapov, 14 Sep 2003:
authorwdenk <wdenk>
Sun, 14 Sep 2003 19:08:39 +0000 (19:08 +0000)
committerwdenk <wdenk>
Sun, 14 Sep 2003 19:08:39 +0000 (19:08 +0000)
  enable watchdog support for all MPC824x boards that have a watchdog

* On MPC5200, restrict FEC to a maximum of 10 Mbps to work around the
  "Non-octet Aligned Frame" errors we see at 100 Mbps

* Patch by Sharad Gupta, 14 Sep 2003:
  fix SPR numbers for upper BAT register ([ID]BAT[4-7][UL])

CHANGELOG
cpu/mpc5xxx/fec.c
cpu/mpc5xxx/pci_mpc5200.c
cpu/mpc5xxx/start.S
cpu/mpc824x/interrupts.c
include/asm-ppc/processor.h
include/configs/IceCube.h

index 20c6cf27a7340ed524ce8b15e163b4938fb2d2a2..93e7c7f83ed9d03a8e1a2172eaace61bb5593792 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,15 @@
 Changes for U-Boot 1.0.0:
 ======================================================================
 
+* Patch by Gleb Natapov, 14 Sep 2003:
+  enable watchdog support for all MPC824x boards that have a watchdog
+
+* On MPC5200, restrict FEC to a maximum of 10 Mbps to work around the
+  "Non-octet Aligned Frame" errors we see at 100 Mbps
+
+* Patch by Sharad Gupta, 14 Sep 2003:
+  fix SPR numbers for upper BAT register ([ID]BAT[4-7][UL])
+
 * Patch by llandre, 11 Sep 2003:
   update configuration for PPChameleonEVB board
 
index 06dd56fc5049c18e37f47996b7055d73a19317b2..634698bf68db68042d6edf7c19d02949a1765648 100644 (file)
@@ -427,7 +427,11 @@ static int mpc5xxx_fec_init(struct eth_device *dev, bd_t * bis)
                        /*
                         * Set the auto-negotiation advertisement register bits
                         */
+#ifndef CONFIG_FEC_10MBIT
                        miiphy_write(phyAddr, 0x4, 0x01e1);
+#else
+                       miiphy_write(phyAddr, 0x4, 0x061);/* Advertise 10FDX */
+#endif
 
                        /*
                         * Set MDIO bit 0.12 = 1(&& bit 0.9=1?) to enable auto-negotiation
index a890a6d0a73c6c5e0258ffb7e06e4a4f08629d5f..a54c5f4b2a9548a2ec8f3927d0ced6562c305fe3 100644 (file)
@@ -48,9 +48,11 @@ static int mpc5200_read_config_dword(struct pci_controller *hose,
 {
        *(volatile u32 *)MPC5XXX_PCI_CAR = (1 << 31) | dev | offset;
        eieio();
+       udelay(10);
        *value = in_le32((volatile u32 *)CONFIG_PCI_IO_PHYS);
        eieio();
        *(volatile u32 *)MPC5XXX_PCI_CAR = 0;
+       udelay(10);
        return 0;
 }
 
@@ -59,9 +61,11 @@ static int mpc5200_write_config_dword(struct pci_controller *hose,
 {
        *(volatile u32 *)MPC5XXX_PCI_CAR = (1 << 31) | dev | offset;
        eieio();
+       udelay(10);
        out_le32((volatile u32 *)CONFIG_PCI_IO_PHYS, value);
        eieio();
        *(volatile u32 *)MPC5XXX_PCI_CAR = 0;
+       udelay(10);
        return 0;
 }
 
index 216c1c88f39013e4e923099ccc9cf2295108c79e..0557909e19d42a639d6cabb94523e49cbc5565f4 100644 (file)
@@ -382,6 +382,14 @@ init_5xxx_core:
        mtspr   DBAT2L, r0
        mtspr   DBAT3U, r0
        mtspr   DBAT3L, r0
+       mtspr   DBAT4U, r0
+       mtspr   DBAT4L, r0
+       mtspr   DBAT5U, r0
+       mtspr   DBAT5L, r0
+       mtspr   DBAT6U, r0
+       mtspr   DBAT6L, r0
+       mtspr   DBAT7U, r0
+       mtspr   DBAT7L, r0
        mtspr   IBAT0U, r0
        mtspr   IBAT0L, r0
        mtspr   IBAT1U, r0
@@ -390,6 +398,14 @@ init_5xxx_core:
        mtspr   IBAT2L, r0
        mtspr   IBAT3U, r0
        mtspr   IBAT3L, r0
+       mtspr   IBAT4U, r0
+       mtspr   IBAT4L, r0
+       mtspr   IBAT5U, r0
+       mtspr   IBAT5L, r0
+       mtspr   IBAT6U, r0
+       mtspr   IBAT6L, r0
+       mtspr   IBAT7U, r0
+       mtspr   IBAT7L, r0
        SYNC
 
        /* invalidate all tlb's                                         */
index 753575f8687ca4a1ca87d1a285e4d76ad8701633..825857b05482af6465bb37c9b720bafc2f37b47e 100644 (file)
@@ -27,6 +27,7 @@
 #include <asm/processor.h>
 #include <asm/pci_io.h>
 #include <commproc.h>
+#include <watchdog.h>
 #include "drivers/epic.h"
 
 /****************************************************************************/
@@ -149,15 +150,9 @@ void timer_interrupt (struct pt_regs *regs)
 
        timestamp++;
 
-#if defined(CONFIG_WATCHDOG)
+#if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
        if ((timestamp % (CFG_HZ / 2)) == 0) {
-#if defined(CONFIG_OXC)
-               {
-                       extern void oxc_wdt_reset (void);
-
-                       oxc_wdt_reset ();
-               }
-#endif
+               WATCHDOG_RESET ();
        }
 #endif                                                 /* CONFIG_WATCHDOG */
 #if defined(CONFIG_SHOW_ACTIVITY) && defined(CONFIG_OXC)
index feaff9468efc19646bdd569f60a480791bf1711f..73a8a554f710da8818b3a02cf3ef84601cba5056 100644 (file)
 #define        SPRN_DBAT2U     0x21C   /* Data BAT 2 Upper Register */
 #define        SPRN_DBAT3L     0x21F   /* Data BAT 3 Lower Register */
 #define        SPRN_DBAT3U     0x21E   /* Data BAT 3 Upper Register */
-#define        SPRN_DBAT4L     0x238   /* Data BAT 4 Lower Register */
-#define        SPRN_DBAT4U     0x239   /* Data BAT 4 Upper Register */
-#define        SPRN_DBAT5L     0x23A   /* Data BAT 5 Lower Register */
-#define        SPRN_DBAT5U     0x23B   /* Data BAT 5 Upper Register */
-#define        SPRN_DBAT6L     0x23C   /* Data BAT 6 Lower Register */
-#define        SPRN_DBAT6U     0x23D   /* Data BAT 6 Upper Register */
-#define        SPRN_DBAT7L     0x23E   /* Data BAT 7 Lower Register */
-#define        SPRN_DBAT7U     0x23F   /* Data BAT 7 Lower Register */
+#define        SPRN_DBAT4L     0x239   /* Data BAT 4 Lower Register */
+#define        SPRN_DBAT4U     0x238   /* Data BAT 4 Upper Register */
+#define        SPRN_DBAT5L     0x23B   /* Data BAT 5 Lower Register */
+#define        SPRN_DBAT5U     0x23A   /* Data BAT 5 Upper Register */
+#define        SPRN_DBAT6L     0x23D   /* Data BAT 6 Lower Register */
+#define        SPRN_DBAT6U     0x23C   /* Data BAT 6 Upper Register */
+#define        SPRN_DBAT7L     0x23F   /* Data BAT 7 Lower Register */
+#define        SPRN_DBAT7U     0x23E   /* Data BAT 7 Lower Register */
 #define        SPRN_DBCR       0x3F2   /* Debug Control Regsiter */
 #define          DBCR_EDM      0x80000000
 #define          DBCR_IDM      0x40000000
 #define        SPRN_IBAT2U     0x214   /* Instruction BAT 2 Upper Register */
 #define        SPRN_IBAT3L     0x217   /* Instruction BAT 3 Lower Register */
 #define        SPRN_IBAT3U     0x216   /* Instruction BAT 3 Upper Register */
-#define        SPRN_IBAT4L     0x230   /* Instruction BAT 4 Lower Register */
-#define        SPRN_IBAT4U     0x231   /* Instruction BAT 4 Upper Register */
-#define        SPRN_IBAT5L     0x232   /* Instruction BAT 5 Lower Register */
-#define        SPRN_IBAT5U     0x233   /* Instruction BAT 5 Upper Register */
-#define        SPRN_IBAT6L     0x234   /* Instruction BAT 6 Lower Register */
-#define        SPRN_IBAT6U     0x235   /* Instruction BAT 6 Upper Register */
-#define        SPRN_IBAT7L     0x236   /* Instruction BAT 7 Lower Register */
-#define        SPRN_IBAT7U     0x237   /* Instruction BAT 7 Lower Register */
+#define        SPRN_IBAT4L     0x231   /* Instruction BAT 4 Lower Register */
+#define        SPRN_IBAT4U     0x230   /* Instruction BAT 4 Upper Register */
+#define        SPRN_IBAT5L     0x233   /* Instruction BAT 5 Lower Register */
+#define        SPRN_IBAT5U     0x232   /* Instruction BAT 5 Upper Register */
+#define        SPRN_IBAT6L     0x235   /* Instruction BAT 6 Lower Register */
+#define        SPRN_IBAT6U     0x234   /* Instruction BAT 6 Upper Register */
+#define        SPRN_IBAT7L     0x237   /* Instruction BAT 7 Lower Register */
+#define        SPRN_IBAT7U     0x236   /* Instruction BAT 7 Upper Register */
 #define        SPRN_ICCR       0x3FB   /* Instruction Cache Cacheability Register */
 #define          ICCR_NOCACHE          0       /* Noncacheable */
 #define          ICCR_CACHE            1       /* Cacheable */
index c2c398c75f47bdd27051b5a7b8a99ecc0fd2d372..64fc6fe8962ecb1d13e9c738d705f3834bd2cce4 100644 (file)
  * Ethernet configuration
  */
 #define CONFIG_MPC5XXX_FEC     1
+#define CONFIG_FEC_10MBIT 1 /* Workaround for FEC 100Mbit problem */
 
 /*
  * GPIO configuration