]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
* Patch by Travis Sawyer, 05 Apr 2005:
authorstroese <stroese>
Thu, 7 Apr 2005 05:32:44 +0000 (05:32 +0000)
committerstroese <stroese>
Thu, 7 Apr 2005 05:32:44 +0000 (05:32 +0000)
  - Change timer frequency for ppc 440 from 10 ms to 1 ms.
    Problem found by Andrew Wozniak.

cpu/ppc4xx/interrupts.c

index 7fa2f7760038275483d11c242b29a055642e4d32..90899dd1e5d9c0fdb1de3737ce79a1f61ca81614 100644 (file)
@@ -134,7 +134,7 @@ int interrupt_init_cpu (unsigned *decrementer_count)
        mtspr( dec, 0 );                /* Prevent exception after TSR clear*/
        mtspr( decar, 0 );              /* clear reload */
        mtspr( tsr, 0x08000000 );       /* clear DEC status */
-       val = gd->bd->bi_intfreq/100;   /* 10 msec */
+       val = gd->bd->bi_intfreq/1000;  /* 1 msec */
        mtspr( decar, val );            /* Set auto-reload value */
        mtspr( dec, val );              /* Set inital val */
 #else