]> git.proxmox.com Git - qemu.git/commitdiff
omap_gpmc: Fix handling of FIFOTHRESHOLDSTATUS bit
authorPeter Maydell <peter.maydell@linaro.org>
Sun, 28 Aug 2011 16:22:19 +0000 (16:22 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Sun, 28 Aug 2011 16:37:12 +0000 (16:37 +0000)
The OMAP3 TRM is inconsistent about whether the GPMC FIFOTHRESHOLDSTATUS
bit should be set when FIFOPOINTER > FIFOTHRESHOLD or when it is >=
FIFOTHRESHOLD. Apparently the underlying functional spec from which
the TRM was created states that the behaviour is ">=", and this also
makes more conceptual sense.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
hw/omap_gpmc.c

index b728397c3f1d2df0456d47d2e43a90ff19b927c2..9da8491943eb7a94ee3d8a29715b26ddf6c44fa7 100644 (file)
@@ -222,7 +222,7 @@ static uint64_t omap_gpmc_read(void *opaque, target_phys_addr_t addr,
         return s->prefcontrol;
     case 0x1f0:        /* GPMC_PREFETCH_STATUS */
         return (s->preffifo << 24) |
-                ((s->preffifo >
+                ((s->preffifo >=
                   ((s->prefconfig[0] >> 8) & 0x7f) ? 1 : 0) << 16) |
                 s->prefcount;