diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2013-08-02 10:50:38 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-08-27 04:56:14 -0400 |
commit | 8eb742a0914cd79053d092a14bfac5315993dd61 (patch) | |
tree | 4a81b28432cce0c1eb331db8820597b8e331bd82 /drivers/dma/sh | |
parent | 4620ad5419612fcd9ab412410440d3a7e8a9a90a (diff) |
DMA: shdma: add a header with common for ARM SoCs defines
All shdma DMACs on ARM SoCs share certain register layout patterns, which
are currently defined in arch/arm/mach-shmobile/include/mach/dma-register.h.
That header is included by SoC-specific setup-*.c files to be used in DMAC
platform data. That header, however, cannot be directly used by the driver.
This patch copies those defines into a driver-local header to be used by
Device Tree configurations.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/sh')
-rw-r--r-- | drivers/dma/sh/shdma-arm.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/drivers/dma/sh/shdma-arm.h b/drivers/dma/sh/shdma-arm.h new file mode 100644 index 000000000000..a2b8258426c9 --- /dev/null +++ b/drivers/dma/sh/shdma-arm.h | |||
@@ -0,0 +1,51 @@ | |||
1 | /* | ||
2 | * Renesas SuperH DMA Engine support | ||
3 | * | ||
4 | * Copyright (C) 2013 Renesas Electronics, Inc. | ||
5 | * | ||
6 | * This is free software; you can redistribute it and/or modify it under the | ||
7 | * terms of version 2 the GNU General Public License as published by the Free | ||
8 | * Software Foundation. | ||
9 | */ | ||
10 | |||
11 | #ifndef SHDMA_ARM_H | ||
12 | #define SHDMA_ARM_H | ||
13 | |||
14 | #include "shdma.h" | ||
15 | |||
16 | /* Transmit sizes and respective CHCR register values */ | ||
17 | enum { | ||
18 | XMIT_SZ_8BIT = 0, | ||
19 | XMIT_SZ_16BIT = 1, | ||
20 | XMIT_SZ_32BIT = 2, | ||
21 | XMIT_SZ_64BIT = 7, | ||
22 | XMIT_SZ_128BIT = 3, | ||
23 | XMIT_SZ_256BIT = 4, | ||
24 | XMIT_SZ_512BIT = 5, | ||
25 | }; | ||
26 | |||
27 | /* log2(size / 8) - used to calculate number of transfers */ | ||
28 | #define SH_DMAE_TS_SHIFT { \ | ||
29 | [XMIT_SZ_8BIT] = 0, \ | ||
30 | [XMIT_SZ_16BIT] = 1, \ | ||
31 | [XMIT_SZ_32BIT] = 2, \ | ||
32 | [XMIT_SZ_64BIT] = 3, \ | ||
33 | [XMIT_SZ_128BIT] = 4, \ | ||
34 | [XMIT_SZ_256BIT] = 5, \ | ||
35 | [XMIT_SZ_512BIT] = 6, \ | ||
36 | } | ||
37 | |||
38 | #define TS_LOW_BIT 0x3 /* --xx */ | ||
39 | #define TS_HI_BIT 0xc /* xx-- */ | ||
40 | |||
41 | #define TS_LOW_SHIFT (3) | ||
42 | #define TS_HI_SHIFT (20 - 2) /* 2 bits for shifted low TS */ | ||
43 | |||
44 | #define TS_INDEX2VAL(i) \ | ||
45 | ((((i) & TS_LOW_BIT) << TS_LOW_SHIFT) |\ | ||
46 | (((i) & TS_HI_BIT) << TS_HI_SHIFT)) | ||
47 | |||
48 | #define CHCR_TX(xmit_sz) (DM_FIX | SM_INC | 0x800 | TS_INDEX2VAL((xmit_sz))) | ||
49 | #define CHCR_RX(xmit_sz) (DM_INC | SM_FIX | 0x800 | TS_INDEX2VAL((xmit_sz))) | ||
50 | |||
51 | #endif | ||