2009-09-07 11:26:23 +08:00
|
|
|
/*
|
|
|
|
* Renesas SuperH DMA Engine support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
|
|
|
|
* Copyright (C) 2009 Renesas Solutions, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* This is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef __DMA_SHDMA_H
|
|
|
|
#define __DMA_SHDMA_H
|
|
|
|
|
2012-07-05 18:29:40 +08:00
|
|
|
#include <linux/sh_dma.h>
|
2012-05-09 23:09:21 +08:00
|
|
|
#include <linux/shdma-base.h>
|
2009-09-07 11:26:23 +08:00
|
|
|
#include <linux/dmaengine.h>
|
2009-12-18 00:41:39 +08:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/list.h>
|
2009-09-07 11:26:23 +08:00
|
|
|
|
2012-05-09 23:09:21 +08:00
|
|
|
#define SH_DMAE_MAX_CHANNELS 20
|
|
|
|
#define SH_DMAE_TCR_MAX 0x00FFFFFF /* 16MB */
|
2009-09-07 11:26:23 +08:00
|
|
|
|
2009-12-18 00:41:39 +08:00
|
|
|
struct device;
|
|
|
|
|
2009-09-07 11:26:23 +08:00
|
|
|
struct sh_dmae_chan {
|
2012-05-09 23:09:21 +08:00
|
|
|
struct shdma_chan shdma_chan;
|
2012-07-05 18:29:40 +08:00
|
|
|
const struct sh_dmae_slave_config *config; /* Slave DMA configuration */
|
2010-02-03 22:46:41 +08:00
|
|
|
int xmit_shift; /* log_2(bytes_per_xfer) */
|
2013-07-02 23:46:01 +08:00
|
|
|
void __iomem *base;
|
2009-12-11 01:35:07 +08:00
|
|
|
char dev_id[16]; /* unique name per DMAC of channel */
|
2011-04-30 01:09:25 +08:00
|
|
|
int pm_error;
|
2013-08-02 22:50:36 +08:00
|
|
|
dma_addr_t slave_addr;
|
2009-09-07 11:26:23 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sh_dmae_device {
|
2012-05-09 23:09:21 +08:00
|
|
|
struct shdma_dev shdma_dev;
|
|
|
|
struct sh_dmae_chan *chan[SH_DMAE_MAX_CHANNELS];
|
2013-08-02 22:18:09 +08:00
|
|
|
const struct sh_dmae_pdata *pdata;
|
2010-12-17 18:16:10 +08:00
|
|
|
struct list_head node;
|
2013-07-02 23:46:01 +08:00
|
|
|
void __iomem *chan_reg;
|
|
|
|
void __iomem *dmars;
|
2011-06-17 16:20:40 +08:00
|
|
|
unsigned int chcr_offset;
|
2011-06-17 16:20:51 +08:00
|
|
|
u32 chcr_ie_bit;
|
2009-09-07 11:26:23 +08:00
|
|
|
};
|
|
|
|
|
2012-05-09 23:09:21 +08:00
|
|
|
struct sh_dmae_regs {
|
|
|
|
u32 sar; /* SAR / source address */
|
|
|
|
u32 dar; /* DAR / destination address */
|
|
|
|
u32 tcr; /* TCR / transfer count */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sh_dmae_desc {
|
|
|
|
struct sh_dmae_regs hw;
|
|
|
|
struct shdma_desc shdma_desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define to_sh_chan(chan) container_of(chan, struct sh_dmae_chan, shdma_chan)
|
2009-09-07 11:26:23 +08:00
|
|
|
#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)
|
2012-05-09 23:09:21 +08:00
|
|
|
#define to_sh_dev(chan) container_of(chan->shdma_chan.dma_chan.device,\
|
|
|
|
struct sh_dmae_device, shdma_dev.dma_dev)
|
2009-09-07 11:26:23 +08:00
|
|
|
|
2013-08-02 22:50:39 +08:00
|
|
|
#ifdef CONFIG_SHDMA_R8A73A4
|
|
|
|
extern const struct sh_dmae_pdata r8a73a4_dma_pdata;
|
|
|
|
#define r8a73a4_shdma_devid (&r8a73a4_dma_pdata)
|
|
|
|
#else
|
|
|
|
#define r8a73a4_shdma_devid NULL
|
|
|
|
#endif
|
|
|
|
|
2009-09-07 11:26:23 +08:00
|
|
|
#endif /* __DMA_SHDMA_H */
|