]> git.karo-electronics.de Git - linux-beck.git/commitdiff
dmaengine: vdma: Add 64 bit addressing support for the axi cdma
authorKedareswara rao Appana <appana.durga.rao@xilinx.com>
Tue, 7 Jun 2016 13:51:16 +0000 (19:21 +0530)
committerVinod Koul <vinod.koul@intel.com>
Tue, 21 Jun 2016 05:35:23 +0000 (11:05 +0530)
The AXI CDMA is a soft ip, which can be programmed to support
32 bit addressing or greater than 32 bit addressing.

When the AXI CDMA ip is configured for 32 bit address space
in simple dma mode the source/destination buffer address is
specified by a single register(18h for Source buffer address and
20h for Destination buffer address). When configured in SG mode
the current descriptor and tail descriptor are specified by a
Single register(08h for curdesc 10h for tail desc).

When the  AXI CDMA core is configured for an address space greater
than 32 then each buffer address or descriptor address is specified by
a combination of two registers.

The first register specifies the LSB 32 bits of address,
while the next register specifies the MSB 32 bits of address.

For example, 08h will specify the LSB 32 bits while 0Ch will
specify the MSB 32 bits of the first start address.
So we need to program two registers at a time.

This patch adds the 64 bit addressing support to the axicdma
IP in the driver.

Signed-off-by: Kedareswara rao Appana <appanad@xilinx.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/xilinx/xilinx_vdma.c

index 40509a44aae102081d21d3010708912849e413bd..40f754b93c57316fbd4d0a3c12c533b769830acf 100644 (file)
@@ -220,21 +220,21 @@ struct xilinx_axidma_desc_hw {
 /**
  * struct xilinx_cdma_desc_hw - Hardware Descriptor
  * @next_desc: Next Descriptor Pointer @0x00
- * @pad1: Reserved @0x04
+ * @next_descmsb: Next Descriptor Pointer MSB @0x04
  * @src_addr: Source address @0x08
- * @pad2: Reserved @0x0C
+ * @src_addrmsb: Source address MSB @0x0C
  * @dest_addr: Destination address @0x10
- * @pad3: Reserved @0x14
+ * @dest_addrmsb: Destination address MSB @0x14
  * @control: Control field @0x18
  * @status: Status field @0x1C
  */
 struct xilinx_cdma_desc_hw {
        u32 next_desc;
-       u32 pad1;
+       u32 next_desc_msb;
        u32 src_addr;
-       u32 pad2;
+       u32 src_addr_msb;
        u32 dest_addr;
-       u32 pad3;
+       u32 dest_addr_msb;
        u32 control;
        u32 status;
 } __aligned(64);
@@ -1137,12 +1137,12 @@ static void xilinx_cdma_start_transfer(struct xilinx_dma_chan *chan)
        }
 
        if (chan->has_sg) {
-               dma_ctrl_write(chan, XILINX_DMA_REG_CURDESC,
-                          head_desc->async_tx.phys);
+               xilinx_write(chan, XILINX_DMA_REG_CURDESC,
+                            head_desc->async_tx.phys);
 
                /* Update tail ptr register which will start the transfer */
-               dma_ctrl_write(chan, XILINX_DMA_REG_TAILDESC,
-                              tail_segment->phys);
+               xilinx_write(chan, XILINX_DMA_REG_TAILDESC,
+                            tail_segment->phys);
        } else {
                /* In simple mode */
                struct xilinx_cdma_tx_segment *segment;
@@ -1154,8 +1154,8 @@ static void xilinx_cdma_start_transfer(struct xilinx_dma_chan *chan)
 
                hw = &segment->hw;
 
-               dma_ctrl_write(chan, XILINX_CDMA_REG_SRCADDR, hw->src_addr);
-               dma_ctrl_write(chan, XILINX_CDMA_REG_DSTADDR, hw->dest_addr);
+               xilinx_write(chan, XILINX_CDMA_REG_SRCADDR, hw->src_addr);
+               xilinx_write(chan, XILINX_CDMA_REG_DSTADDR, hw->dest_addr);
 
                /* Start the transfer */
                dma_ctrl_write(chan, XILINX_DMA_REG_BTT,
@@ -1626,6 +1626,10 @@ xilinx_cdma_prep_memcpy(struct dma_chan *dchan, dma_addr_t dma_dst,
        hw->control = len;
        hw->src_addr = dma_src;
        hw->dest_addr = dma_dst;
+       if (chan->ext_addr) {
+               hw->src_addr_msb = upper_32_bits(dma_src);
+               hw->dest_addr_msb = upper_32_bits(dma_dst);
+       }
 
        /* Fill the previous next descriptor with current */
        prev = list_last_entry(&desc->segments,