These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / vme / bridges / vme_tsi148.c
index 895c2a3..6052483 100644 (file)
@@ -169,7 +169,7 @@ static u32 tsi148_VERR_irqhandler(struct vme_bridge *tsi148_bridge)
        unsigned int error_addr_high, error_addr_low;
        unsigned long long error_addr;
        u32 error_attrib;
-       struct vme_bus_error *error = NULL;
+       int error_am;
        struct tsi148_driver *bridge;
 
        bridge = tsi148_bridge->driver_priv;
@@ -177,6 +177,7 @@ static u32 tsi148_VERR_irqhandler(struct vme_bridge *tsi148_bridge)
        error_addr_high = ioread32be(bridge->base + TSI148_LCSR_VEAU);
        error_addr_low = ioread32be(bridge->base + TSI148_LCSR_VEAL);
        error_attrib = ioread32be(bridge->base + TSI148_LCSR_VEAT);
+       error_am = (error_attrib & TSI148_LCSR_VEAT_AM_M) >> 8;
 
        reg_join(error_addr_high, error_addr_low, &error_addr);
 
@@ -186,23 +187,12 @@ static u32 tsi148_VERR_irqhandler(struct vme_bridge *tsi148_bridge)
                        "Occurred\n");
        }
 
-       if (err_chk) {
-               error = kmalloc(sizeof(struct vme_bus_error), GFP_ATOMIC);
-               if (error) {
-                       error->address = error_addr;
-                       error->attributes = error_attrib;
-                       list_add_tail(&error->list, &tsi148_bridge->vme_errors);
-               } else {
-                       dev_err(tsi148_bridge->parent,
-                               "Unable to alloc memory for VMEbus Error reporting\n");
-               }
-       }
-
-       if (!error) {
+       if (err_chk)
+               vme_bus_error_handler(tsi148_bridge, error_addr, error_am);
+       else
                dev_err(tsi148_bridge->parent,
                        "VME Bus Error at address: 0x%llx, attributes: %08x\n",
                        error_addr, error_attrib);
-       }
 
        /* Clear Status */
        iowrite32be(TSI148_LCSR_VEAT_VESCL, bridge->base + TSI148_LCSR_VEAT);
@@ -324,8 +314,7 @@ static int tsi148_irq_init(struct vme_bridge *tsi148_bridge)
 
        bridge = tsi148_bridge->driver_priv;
 
-       /* Initialise list for VME bus errors */
-       INIT_LIST_HEAD(&tsi148_bridge->vme_errors);
+       INIT_LIST_HEAD(&tsi148_bridge->vme_error_handlers);
 
        mutex_init(&tsi148_bridge->irq_mtx);
 
@@ -482,73 +471,6 @@ static int tsi148_irq_generate(struct vme_bridge *tsi148_bridge, int level,
        return 0;
 }
 
-/*
- * Find the first error in this address range
- */
-static struct vme_bus_error *tsi148_find_error(struct vme_bridge *tsi148_bridge,
-       u32 aspace, unsigned long long address, size_t count)
-{
-       struct list_head *err_pos;
-       struct vme_bus_error *vme_err, *valid = NULL;
-       unsigned long long bound;
-
-       bound = address + count;
-
-       /*
-        * XXX We are currently not looking at the address space when parsing
-        *     for errors. This is because parsing the Address Modifier Codes
-        *     is going to be quite resource intensive to do properly. We
-        *     should be OK just looking at the addresses and this is certainly
-        *     much better than what we had before.
-        */
-       err_pos = NULL;
-       /* Iterate through errors */
-       list_for_each(err_pos, &tsi148_bridge->vme_errors) {
-               vme_err = list_entry(err_pos, struct vme_bus_error, list);
-               if ((vme_err->address >= address) &&
-                       (vme_err->address < bound)) {
-
-                       valid = vme_err;
-                       break;
-               }
-       }
-
-       return valid;
-}
-
-/*
- * Clear errors in the provided address range.
- */
-static void tsi148_clear_errors(struct vme_bridge *tsi148_bridge,
-       u32 aspace, unsigned long long address, size_t count)
-{
-       struct list_head *err_pos, *temp;
-       struct vme_bus_error *vme_err;
-       unsigned long long bound;
-
-       bound = address + count;
-
-       /*
-        * XXX We are currently not looking at the address space when parsing
-        *     for errors. This is because parsing the Address Modifier Codes
-        *     is going to be quite resource intensive to do properly. We
-        *     should be OK just looking at the addresses and this is certainly
-        *     much better than what we had before.
-        */
-       err_pos = NULL;
-       /* Iterate through errors */
-       list_for_each_safe(err_pos, temp, &tsi148_bridge->vme_errors) {
-               vme_err = list_entry(err_pos, struct vme_bus_error, list);
-
-               if ((vme_err->address >= address) &&
-                       (vme_err->address < bound)) {
-
-                       list_del(err_pos);
-                       kfree(vme_err);
-               }
-       }
-}
-
 /*
  * Initialize a slave window with the requested attributes.
  */
@@ -846,7 +768,7 @@ static int tsi148_alloc_resource(struct vme_master_resource *image,
        image->bus_resource.flags = IORESOURCE_MEM;
 
        retval = pci_bus_alloc_resource(pdev->bus,
-               &image->bus_resource, size, size, PCIBIOS_MIN_MEM,
+               &image->bus_resource, size, 0x10000, PCIBIOS_MIN_MEM,
                0, NULL, NULL);
        if (retval) {
                dev_err(tsi148_bridge->parent, "Failed to allocate mem "
@@ -1264,7 +1186,7 @@ static ssize_t tsi148_master_read(struct vme_master_resource *image, void *buf,
        int retval, enabled;
        unsigned long long vme_base, size;
        u32 aspace, cycle, dwidth;
-       struct vme_bus_error *vme_err = NULL;
+       struct vme_error_handler *handler = NULL;
        struct vme_bridge *tsi148_bridge;
        void __iomem *addr = image->kern_base + offset;
        unsigned int done = 0;
@@ -1274,6 +1196,17 @@ static ssize_t tsi148_master_read(struct vme_master_resource *image, void *buf,
 
        spin_lock(&image->lock);
 
+       if (err_chk) {
+               __tsi148_master_get(image, &enabled, &vme_base, &size, &aspace,
+                                   &cycle, &dwidth);
+               handler = vme_register_error_handler(tsi148_bridge, aspace,
+                                                    vme_base + offset, count);
+               if (!handler) {
+                       spin_unlock(&image->lock);
+                       return -ENOMEM;
+               }
+       }
+
        /* The following code handles VME address alignment. We cannot use
         * memcpy_xxx here because it may cut data transfers in to 8-bit
         * cycles when D16 or D32 cycles are required on the VME bus.
@@ -1317,24 +1250,16 @@ static ssize_t tsi148_master_read(struct vme_master_resource *image, void *buf,
 out:
        retval = count;
 
-       if (!err_chk)
-               goto skip_chk;
-
-       __tsi148_master_get(image, &enabled, &vme_base, &size, &aspace, &cycle,
-               &dwidth);
-
-       vme_err = tsi148_find_error(tsi148_bridge, aspace, vme_base + offset,
-               count);
-       if (vme_err != NULL) {
-               dev_err(image->parent->parent, "First VME read error detected "
-                       "an at address 0x%llx\n", vme_err->address);
-               retval = vme_err->address - (vme_base + offset);
-               /* Clear down save errors in this address range */
-               tsi148_clear_errors(tsi148_bridge, aspace, vme_base + offset,
-                       count);
+       if (err_chk) {
+               if (handler->num_errors) {
+                       dev_err(image->parent->parent,
+                               "First VME read error detected an at address 0x%llx\n",
+                               handler->first_error);
+                       retval = handler->first_error - (vme_base + offset);
+               }
+               vme_unregister_error_handler(handler);
        }
 
-skip_chk:
        spin_unlock(&image->lock);
 
        return retval;
@@ -1351,7 +1276,7 @@ static ssize_t tsi148_master_write(struct vme_master_resource *image, void *buf,
        unsigned int done = 0;
        unsigned int count32;
 
-       struct vme_bus_error *vme_err = NULL;
+       struct vme_error_handler *handler = NULL;
        struct vme_bridge *tsi148_bridge;
        struct tsi148_driver *bridge;
 
@@ -1361,6 +1286,17 @@ static ssize_t tsi148_master_write(struct vme_master_resource *image, void *buf,
 
        spin_lock(&image->lock);
 
+       if (err_chk) {
+               __tsi148_master_get(image, &enabled, &vme_base, &size, &aspace,
+                                   &cycle, &dwidth);
+               handler = vme_register_error_handler(tsi148_bridge, aspace,
+                                                    vme_base + offset, count);
+               if (!handler) {
+                       spin_unlock(&image->lock);
+                       return -ENOMEM;
+               }
+       }
+
        /* Here we apply for the same strategy we do in master_read
         * function in order to assure the correct cycles.
         */
@@ -1410,30 +1346,18 @@ out:
         * We check for saved errors in the written address range/space.
         */
 
-       if (!err_chk)
-               goto skip_chk;
-
-       /*
-        * Get window info first, to maximise the time that the buffers may
-        * fluch on their own
-        */
-       __tsi148_master_get(image, &enabled, &vme_base, &size, &aspace, &cycle,
-               &dwidth);
-
-       ioread16(bridge->flush_image->kern_base + 0x7F000);
+       if (err_chk) {
+               ioread16(bridge->flush_image->kern_base + 0x7F000);
 
-       vme_err = tsi148_find_error(tsi148_bridge, aspace, vme_base + offset,
-               count);
-       if (vme_err != NULL) {
-               dev_warn(tsi148_bridge->parent, "First VME write error detected"
-                       " an at address 0x%llx\n", vme_err->address);
-               retval = vme_err->address - (vme_base + offset);
-               /* Clear down save errors in this address range */
-               tsi148_clear_errors(tsi148_bridge, aspace, vme_base + offset,
-                       count);
+               if (handler->num_errors) {
+                       dev_warn(tsi148_bridge->parent,
+                                "First VME write error detected an at address 0x%llx\n",
+                                handler->first_error);
+                       retval = handler->first_error - (vme_base + offset);
+               }
+               vme_unregister_error_handler(handler);
        }
 
-skip_chk:
        spin_unlock(&image->lock);
 
        return retval;
@@ -1833,24 +1757,29 @@ static int tsi148_dma_list_add(struct vme_dma_list *list,
        /* Add to list */
        list_add_tail(&entry->list, &list->entries);
 
+       entry->dma_handle = dma_map_single(tsi148_bridge->parent,
+               &entry->descriptor,
+               sizeof(struct tsi148_dma_descriptor), DMA_TO_DEVICE);
+       if (dma_mapping_error(tsi148_bridge->parent, entry->dma_handle)) {
+               dev_err(tsi148_bridge->parent, "DMA mapping error\n");
+               retval = -EINVAL;
+               goto err_dma;
+       }
+
        /* Fill out previous descriptors "Next Address" */
        if (entry->list.prev != &list->entries) {
-               prev = list_entry(entry->list.prev, struct tsi148_dma_entry,
-                       list);
-               /* We need the bus address for the pointer */
-               entry->dma_handle = dma_map_single(tsi148_bridge->parent,
-                       &entry->descriptor,
-                       sizeof(struct tsi148_dma_descriptor), DMA_TO_DEVICE);
-
                reg_split((unsigned long long)entry->dma_handle, &address_high,
                        &address_low);
-               entry->descriptor.dnlau = cpu_to_be32(address_high);
-               entry->descriptor.dnlal = cpu_to_be32(address_low);
+               prev = list_entry(entry->list.prev, struct tsi148_dma_entry,
+                                 list);
+               prev->descriptor.dnlau = cpu_to_be32(address_high);
+               prev->descriptor.dnlal = cpu_to_be32(address_low);
 
        }
 
        return 0;
 
+err_dma:
 err_dest:
 err_source:
 err_align:
@@ -1887,7 +1816,7 @@ static int tsi148_dma_busy(struct vme_bridge *tsi148_bridge, int channel)
 static int tsi148_dma_list_exec(struct vme_dma_list *list)
 {
        struct vme_dma_resource *ctrlr;
-       int channel, retval = 0;
+       int channel, retval;
        struct tsi148_dma_entry *entry;
        u32 bus_addr_high, bus_addr_low;
        u32 val, dctlreg = 0;
@@ -1921,10 +1850,6 @@ static int tsi148_dma_list_exec(struct vme_dma_list *list)
        entry = list_first_entry(&list->entries, struct tsi148_dma_entry,
                list);
 
-       entry->dma_handle = dma_map_single(tsi148_bridge->parent,
-               &entry->descriptor,
-               sizeof(struct tsi148_dma_descriptor), DMA_TO_DEVICE);
-
        mutex_unlock(&ctrlr->mtx);
 
        reg_split(entry->dma_handle, &bus_addr_high, &bus_addr_low);
@@ -1941,9 +1866,19 @@ static int tsi148_dma_list_exec(struct vme_dma_list *list)
        iowrite32be(dctlreg | TSI148_LCSR_DCTL_DGO, bridge->base +
                TSI148_LCSR_DMA[channel] + TSI148_LCSR_OFFSET_DCTL);
 
-       wait_event_interruptible(bridge->dma_queue[channel],
+       retval = wait_event_interruptible(bridge->dma_queue[channel],
                tsi148_dma_busy(ctrlr->parent, channel));
 
+       if (retval) {
+               iowrite32be(dctlreg | TSI148_LCSR_DCTL_ABT, bridge->base +
+                       TSI148_LCSR_DMA[channel] + TSI148_LCSR_OFFSET_DCTL);
+               /* Wait for the operation to abort */
+               wait_event(bridge->dma_queue[channel],
+                          tsi148_dma_busy(ctrlr->parent, channel));
+               retval = -EINTR;
+               goto exit;
+       }
+
        /*
         * Read status register, this register is valid until we kick off a
         * new transfer.
@@ -1956,6 +1891,7 @@ static int tsi148_dma_list_exec(struct vme_dma_list *list)
                retval = -EIO;
        }
 
+exit:
        /* Remove list from running list */
        mutex_lock(&ctrlr->mtx);
        list_del(&list->list);