staging: comedi: ni_mio_common: introduce NI_STC_DMA_CHAN_SEL()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Thu, 14 Apr 2016 16:58:07 +0000 (09:58 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Apr 2016 05:17:28 +0000 (22:17 -0700)
The inline helper ni_stc_dma_channel_select_bitfield() returns the
bits needed to select a MITE channel to use for DMA. The MITE code
is setup to handle up to 8 channels but in reality only channels 0
to 3 are used by most of the drivers. The PCI-6032E and PCI-6033E
boards can also use channels 4 and 5.

For aesthetics, convert this inline function into a macro and
remove the BUG() which will never occur.

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/ni_mio_common.c

index d3313866ec09f9d73d62b044b4032e90d874957f..081ed3f378174dc4f5149ff0e2400ca9c18955d0 100644 (file)
@@ -560,20 +560,13 @@ static inline void ni_set_bitfield(struct comedi_device *dev, int reg,
 }
 
 #ifdef PCIDMA
-/* DMA channel setup */
-static inline unsigned int
-ni_stc_dma_channel_select_bitfield(unsigned int channel)
-{
-       if (channel < 4)
-               return 1 << channel;
-       if (channel == 4)
-               return 0x3;
-       if (channel == 5)
-               return 0x5;
-       BUG();
-       return 0;
-}
 
+/* selects the MITE channel to use for DMA */
+#define NI_STC_DMA_CHAN_SEL(x) (((x) < 4) ? BIT(x) :   \
+                                ((x) == 4) ? 0x3 :     \
+                                ((x) == 5) ? 0x5 : 0x0)
+
+/* DMA channel setup */
 static int ni_request_ai_mite_channel(struct comedi_device *dev)
 {
        struct ni_private *devpriv = dev->private;
@@ -592,7 +585,7 @@ static int ni_request_ai_mite_channel(struct comedi_device *dev)
        mite_chan->dir = COMEDI_INPUT;
        devpriv->ai_mite_chan = mite_chan;
 
-       bits = ni_stc_dma_channel_select_bitfield(mite_chan->channel);
+       bits = NI_STC_DMA_CHAN_SEL(mite_chan->channel);
        ni_set_bitfield(dev, NI_E_DMA_AI_AO_SEL_REG,
                        NI_E_DMA_AI_SEL_MASK, NI_E_DMA_AI_SEL(bits));
 
@@ -618,7 +611,7 @@ static int ni_request_ao_mite_channel(struct comedi_device *dev)
        mite_chan->dir = COMEDI_OUTPUT;
        devpriv->ao_mite_chan = mite_chan;
 
-       bits = ni_stc_dma_channel_select_bitfield(mite_chan->channel);
+       bits = NI_STC_DMA_CHAN_SEL(mite_chan->channel);
        ni_set_bitfield(dev, NI_E_DMA_AI_AO_SEL_REG,
                        NI_E_DMA_AO_SEL_MASK, NI_E_DMA_AO_SEL(bits));
 
@@ -648,7 +641,7 @@ static int ni_request_gpct_mite_channel(struct comedi_device *dev,
        mite_chan->dir = direction;
        ni_tio_set_mite_channel(counter, mite_chan);
 
-       bits = ni_stc_dma_channel_select_bitfield(mite_chan->channel);
+       bits = NI_STC_DMA_CHAN_SEL(mite_chan->channel);
        ni_set_bitfield(dev, NI_E_DMA_G0_G1_SEL_REG,
                        NI_E_DMA_G0_G1_SEL_MASK(gpct_index),
                        NI_E_DMA_G0_G1_SEL(gpct_index, bits));
@@ -676,12 +669,12 @@ static int ni_request_cdo_mite_channel(struct comedi_device *dev)
        devpriv->cdo_mite_chan = mite_chan;
 
        /*
-        * XXX just guessing ni_stc_dma_channel_select_bitfield()
+        * XXX just guessing NI_STC_DMA_CHAN_SEL()
         * returns the right bits, under the assumption the cdio dma
         * selection works just like ai/ao/gpct.
         * Definitely works for dma channels 0 and 1.
         */
-       bits = ni_stc_dma_channel_select_bitfield(mite_chan->channel);
+       bits = NI_STC_DMA_CHAN_SEL(mite_chan->channel);
        ni_set_bitfield(dev, NI_M_CDIO_DMA_SEL_REG,
                        NI_M_CDIO_DMA_SEL_CDO_MASK,
                        NI_M_CDIO_DMA_SEL_CDO(bits));
This page took 0.035306 seconds and 5 git commands to generate.