Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Renesas SuperH DMA Engine support |
| 3 | * |
| 4 | * Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> |
| 5 | * Copyright (C) 2009 Renesas Solutions, Inc. All rights reserved. |
| 6 | * |
| 7 | * This is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | */ |
| 13 | #ifndef __DMA_SHDMA_H |
| 14 | #define __DMA_SHDMA_H |
| 15 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 16 | #include <linux/dmaengine.h> |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/list.h> |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 19 | |
Magnus Damm | b2623a6 | 2010-03-19 04:47:10 +0000 | [diff] [blame] | 20 | #define SH_DMAC_MAX_CHANNELS 6 |
Magnus Damm | 02ca508 | 2010-03-19 04:46:47 +0000 | [diff] [blame] | 21 | #define SH_DMA_SLAVE_NUMBER 256 |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 22 | #define SH_DMA_TCR_MAX 0x00FFFFFF /* 16MB */ |
| 23 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 24 | struct device; |
| 25 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 26 | struct sh_dmae_chan { |
| 27 | dma_cookie_t completed_cookie; /* The maximum cookie completed */ |
Guennadi Liakhovetski | 86d61b3 | 2009-12-10 18:35:07 +0100 | [diff] [blame] | 28 | spinlock_t desc_lock; /* Descriptor operation lock */ |
| 29 | struct list_head ld_queue; /* Link descriptors queue */ |
| 30 | struct list_head ld_free; /* Link descriptors free */ |
| 31 | struct dma_chan common; /* DMA common channel */ |
| 32 | struct device *dev; /* Channel device */ |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 33 | struct tasklet_struct tasklet; /* Tasklet */ |
Guennadi Liakhovetski | 86d61b3 | 2009-12-10 18:35:07 +0100 | [diff] [blame] | 34 | int descs_allocated; /* desc count */ |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 35 | int xmit_shift; /* log_2(bytes_per_xfer) */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 36 | int irq; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 37 | int id; /* Raw id of this channel */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 38 | u32 __iomem *base; |
Guennadi Liakhovetski | 86d61b3 | 2009-12-10 18:35:07 +0100 | [diff] [blame] | 39 | char dev_id[16]; /* unique name per DMAC of channel */ |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 40 | }; |
| 41 | |
| 42 | struct sh_dmae_device { |
| 43 | struct dma_device common; |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 44 | struct sh_dmae_chan *chan[SH_DMAC_MAX_CHANNELS]; |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 45 | struct sh_dmae_pdata *pdata; |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 46 | struct list_head node; |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 47 | u32 __iomem *chan_reg; |
| 48 | u16 __iomem *dmars; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | #define to_sh_chan(chan) container_of(chan, struct sh_dmae_chan, common) |
| 52 | #define to_sh_desc(lh) container_of(lh, struct sh_desc, node) |
| 53 | #define tx_to_sh_desc(tx) container_of(tx, struct sh_desc, async_tx) |
| 54 | |
| 55 | #endif /* __DMA_SHDMA_H */ |