#ifndef __DMA_SHDMA_H
#define __DMA_SHDMA_H
#include <linux/dmaengine.h>
#include <linux/interrupt.h>
#include <linux/list.h>
#define SH_DMAC_MAX_CHANNELS 20
#define SH_DMA_SLAVE_NUMBER 256
#define SH_DMA_TCR_MAX 0x00FFFFFF
struct device;
struct sh_dmae_chan {
dma_cookie_t completed_cookie;
spinlock_t desc_lock;
struct list_head ld_queue;
struct list_head ld_free;
struct dma_chan common;
struct device *dev;
struct tasklet_struct tasklet;
int descs_allocated;
int xmit_shift;
int irq;
int id;
u32 __iomem *base;
char dev_id[16];
int pm_error;
};
struct sh_dmae_device {
struct dma_device common;
struct sh_dmae_chan *chan[SH_DMAC_MAX_CHANNELS];
struct sh_dmae_pdata *pdata;
struct list_head node;
u32 __iomem *chan_reg;
u16 __iomem *dmars;
};
#define to_sh_chan(chan) container_of(chan, struct sh_dmae_chan, common)
#define to_sh_desc(lh) container_of(lh, struct sh_desc, node)
#define tx_to_sh_desc(tx) container_of(tx, struct sh_desc, async_tx)
#endif