]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: rtd520: use plx register map from plx9080.h
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 26 Mar 2013 21:58:08 +0000 (14:58 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 28 Mar 2013 23:16:21 +0000 (16:16 -0700)
Use the register map defines for the PLX9080 found in plx9080.h
instead of the custom named defines in rtd520.h.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/rtd520.c
drivers/staging/comedi/drivers/rtd520.h

index b1d888eb61f7bf4f8fbeb420cd140f6f948cb7fd..c5ef79e1c5a41dd499dd52e8c59c43f5563aec86 100644 (file)
@@ -1210,7 +1210,7 @@ static void rtd_reset(struct comedi_device *dev)
 
        writel(0, devpriv->las0 + LAS0_BOARD_RESET);
        udelay(100);            /* needed? */
-       writel(0, devpriv->lcfg + LCFG_ITCSR);
+       writel(0, devpriv->lcfg + PLX_INTRCS_REG);
        devpriv->intMask = 0;
        writew(devpriv->intMask, devpriv->las0 + LAS0_IT);
        devpriv->intClearMask = ~0;
@@ -1362,7 +1362,7 @@ static int rtd_auto_attach(struct comedi_device *dev,
        devpriv->fifoLen = ret;
 
        if (dev->irq)
-               writel(ICS_PIE | ICS_PLIE, devpriv->lcfg + LCFG_ITCSR);
+               writel(ICS_PIE | ICS_PLIE, devpriv->lcfg + PLX_INTRCS_REG);
 
        dev_info(dev->class_dev, "%s attached\n", dev->board_name);
 
@@ -1378,9 +1378,9 @@ static void rtd_detach(struct comedi_device *dev)
                if (devpriv->las0 && devpriv->lcfg)
                        rtd_reset(dev);
                if (dev->irq) {
-                       writel(readl(devpriv->lcfg + LCFG_ITCSR) &
+                       writel(readl(devpriv->lcfg + PLX_INTRCS_REG) &
                                ~(ICS_PLIE | ICS_DMA0_E | ICS_DMA1_E),
-                               devpriv->lcfg + LCFG_ITCSR);
+                               devpriv->lcfg + PLX_INTRCS_REG);
                        free_irq(dev->irq, dev);
                }
                if (devpriv->las0)
index 25188a581455989422ea6dd7cfe441c57ceee471..bfb34378dcd9e449dfc1bd2c9da5f331127a98b1 100644 (file)
 #define LAS1_DAC1_FIFO         0x0008  /* D/A1 FIFO (16bit) */
 #define LAS1_DAC2_FIFO         0x000c  /* D/A2 FIFO (16bit) */
 
-/*
- * PLX 9080 local config & runtime registers
- */
-#define LCFG_ITCSR             0x0068  /* Interrupt Control/Status */
-#define LCFG_DMAMODE0          0x0080  /* DMA0 Mode */
-#define LCFG_DMAPADR0          0x0084  /* DMA0 PCI Address */
-#define LCFG_DMALADR0          0x0088  /* DMA0 Local Address */
-#define LCFG_DMASIZ0           0x008c  /* DMA0 Transfer Size (Bytes) */
-#define LCFG_DMADPR0           0x0090  /* DMA0 Descriptor Pointer */
-#define LCFG_DMAMODE1          0x0094  /* DMA1 Mode */
-#define LCFG_DMAPADR1          0x0098  /* DMA1 PCI Address */
-#define LCFG_DMALADR1          0x009c  /* DMA1 Local Address */
-#define LCFG_DMASIZ1           0x00a0  /* DMA1 Transfer Size (Bytes) */
-#define LCFG_DMADPR1           0x00a4  /* DMA1 Descriptor Pointer */
-#define LCFG_DMACSR0           0x00a8  /* DMA0 Command/Status */
-#define LCFG_DMACSR1           0x00a9  /* DMA0 Command/Status */
-#define LCFG_DMAARB            0x00ac  /* DMA Arbitration */
-#define LCFG_DMATHR            0x00b0  /* DMA Threshold */
-
 /*  FIFO Status Word Bits (RtdFifoStatus) */
 #define FS_DAC1_NOT_EMPTY      (1 << 0)  /* DAC1 FIFO not empty */
 #define FS_DAC1_HEMPTY         (1 << 1)  /* DAC1 FIFO half empty */