blob: 9f79806085f5ecd32b5532725d555cfb5eda9b60 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Magnus Dammb2623a62010-03-19 04:47:10 +00002/*
3 * Header for the new SH dmaengine driver
4 *
5 * Copyright (C) 2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Magnus Dammb2623a62010-03-19 04:47:10 +00006 */
7#ifndef SH_DMA_H
8#define SH_DMA_H
9
Magnus Dammb2623a62010-03-19 04:47:10 +000010#include <linux/dmaengine.h>
Guennadi Liakhovetski5902c9a2012-05-09 17:09:14 +020011#include <linux/list.h>
12#include <linux/shdma-base.h>
Guennadi Liakhovetskice3a1ab2012-05-09 17:09:21 +020013#include <linux/types.h>
14
15struct device;
Magnus Dammb2623a62010-03-19 04:47:10 +000016
17/* Used by slave DMA clients to request DMA to/from a specific peripheral */
18struct sh_dmae_slave {
Guennadi Liakhovetskice3a1ab2012-05-09 17:09:21 +020019 struct shdma_slave shdma_slave; /* Set by the platform */
Magnus Dammb2623a62010-03-19 04:47:10 +000020};
21
Guennadi Liakhovetskice3a1ab2012-05-09 17:09:21 +020022/*
23 * Supplied by platforms to specify, how a DMA channel has to be configured for
24 * a certain peripheral
25 */
Magnus Dammb2623a62010-03-19 04:47:10 +000026struct sh_dmae_slave_config {
Guennadi Liakhovetskic2cdb7e2012-07-05 12:29:41 +020027 int slave_id;
28 dma_addr_t addr;
29 u32 chcr;
30 char mid_rid;
Magnus Dammb2623a62010-03-19 04:47:10 +000031};
32
Guennadi Liakhovetskica8b3872013-07-10 12:09:47 +020033/**
34 * struct sh_dmae_channel - DMAC channel platform data
35 * @offset: register offset within the main IOMEM resource
36 * @dmars: channel DMARS register offset
37 * @chclr_offset: channel CHCLR register offset
38 * @dmars_bit: channel DMARS field offset within the register
39 * @chclr_bit: bit position, to be set to reset the channel
40 */
Magnus Dammb2623a62010-03-19 04:47:10 +000041struct sh_dmae_channel {
42 unsigned int offset;
43 unsigned int dmars;
Guennadi Liakhovetskic11b46c322012-01-04 15:34:17 +010044 unsigned int chclr_offset;
Guennadi Liakhovetskica8b3872013-07-10 12:09:47 +020045 unsigned char dmars_bit;
46 unsigned char chclr_bit;
Magnus Dammb2623a62010-03-19 04:47:10 +000047};
48
Guennadi Liakhovetskica8b3872013-07-10 12:09:47 +020049/**
50 * struct sh_dmae_pdata - DMAC platform data
51 * @slave: array of slaves
52 * @slave_num: number of slaves in the above array
53 * @channel: array of DMA channels
54 * @channel_num: number of channels in the above array
55 * @ts_low_shift: shift of the low part of the TS field
56 * @ts_low_mask: low TS field mask
57 * @ts_high_shift: additional shift of the high part of the TS field
58 * @ts_high_mask: high TS field mask
59 * @ts_shift: array of Transfer Size shifts, indexed by TS value
60 * @ts_shift_num: number of shifts in the above array
61 * @dmaor_init: DMAOR initialisation value
62 * @chcr_offset: CHCR address offset
63 * @chcr_ie_bit: CHCR Interrupt Enable bit
64 * @dmaor_is_32bit: DMAOR is a 32-bit register
65 * @needs_tend_set: the TEND register has to be set
66 * @no_dmars: DMAC has no DMARS registers
67 * @chclr_present: DMAC has one or several CHCLR registers
68 * @chclr_bitwise: channel CHCLR registers are bitwise
69 * @slave_only: DMAC cannot be used for MEMCPY
70 */
Magnus Dammb2623a62010-03-19 04:47:10 +000071struct sh_dmae_pdata {
Guennadi Liakhovetski5bac9422010-04-21 15:36:49 +000072 const struct sh_dmae_slave_config *slave;
Magnus Dammb2623a62010-03-19 04:47:10 +000073 int slave_num;
Guennadi Liakhovetski5bac9422010-04-21 15:36:49 +000074 const struct sh_dmae_channel *channel;
Magnus Dammb2623a62010-03-19 04:47:10 +000075 int channel_num;
76 unsigned int ts_low_shift;
77 unsigned int ts_low_mask;
78 unsigned int ts_high_shift;
79 unsigned int ts_high_mask;
Guennadi Liakhovetski5bac9422010-04-21 15:36:49 +000080 const unsigned int *ts_shift;
Magnus Dammb2623a62010-03-19 04:47:10 +000081 int ts_shift_num;
82 u16 dmaor_init;
Kuninori Morimoto5899a722011-06-17 08:20:40 +000083 unsigned int chcr_offset;
Kuninori Morimoto67c62692011-06-17 08:20:51 +000084 u32 chcr_ie_bit;
Kuninori Morimotoe76c3af2011-06-17 08:20:56 +000085
86 unsigned int dmaor_is_32bit:1;
Kuninori Morimoto260bf2c2011-06-17 08:21:05 +000087 unsigned int needs_tend_set:1;
88 unsigned int no_dmars:1;
Guennadi Liakhovetskic11b46c322012-01-04 15:34:17 +010089 unsigned int chclr_present:1;
Guennadi Liakhovetskica8b3872013-07-10 12:09:47 +020090 unsigned int chclr_bitwise:1;
Guennadi Liakhovetskie9c8d7a02012-01-18 10:14:25 +010091 unsigned int slave_only:1;
Magnus Dammb2623a62010-03-19 04:47:10 +000092};
93
Magnus Dammb2623a62010-03-19 04:47:10 +000094/* DMAOR definitions */
Geert Uytterhoeven6b32faf2014-06-20 14:37:38 +020095#define DMAOR_AE 0x00000004 /* Address Error Flag */
Magnus Dammb2623a62010-03-19 04:47:10 +000096#define DMAOR_NMIF 0x00000002
Geert Uytterhoeven6b32faf2014-06-20 14:37:38 +020097#define DMAOR_DME 0x00000001 /* DMA Master Enable */
Magnus Dammb2623a62010-03-19 04:47:10 +000098
99/* Definitions for the SuperH DMAC */
Geert Uytterhoeven6b32faf2014-06-20 14:37:38 +0200100#define DM_INC 0x00004000 /* Destination addresses are incremented */
101#define DM_DEC 0x00008000 /* Destination addresses are decremented */
102#define DM_FIX 0x0000c000 /* Destination address is fixed */
103#define SM_INC 0x00001000 /* Source addresses are incremented */
104#define SM_DEC 0x00002000 /* Source addresses are decremented */
105#define SM_FIX 0x00003000 /* Source address is fixed */
106#define RS_AUTO 0x00000400 /* Auto Request */
107#define RS_ERS 0x00000800 /* DMA extended resource selector */
108#define CHCR_DE 0x00000001 /* DMA Enable */
109#define CHCR_TE 0x00000002 /* Transfer End Flag */
110#define CHCR_IE 0x00000004 /* Interrupt Enable */
Magnus Dammb2623a62010-03-19 04:47:10 +0000111
Magnus Dammb2623a62010-03-19 04:47:10 +0000112#endif