1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * 440SPe's DMA engines support header file
5 * 2006-2009 (C) DENX Software Engineering.
7 * Author: Yuri Tikhonov <yur@emcraft.com>
10 #ifndef _PPC440SPE_DMA_H
11 #define _PPC440SPE_DMA_H
13 #include <linux/types.h>
15 /* Number of elements in the array with statical CDBs */
16 #define MAX_STAT_DMA_CDBS 16
17 /* Number of DMA engines available on the controller */
18 #define DMA_ENGINES_NUM 2
20 /* Maximum h/w supported number of destinations */
21 #define DMA_DEST_MAX_NUM 2
24 #define DMA0_FIFO_SIZE 0x1000
25 #define DMA1_FIFO_SIZE 0x1000
26 #define DMA_FIFO_ENABLE (1<<12)
28 /* DMA Configuration Register. Data Transfer Engine PLB Priority: */
29 #define DMA_CFG_DXEPR_LP (0<<26)
30 #define DMA_CFG_DXEPR_HP (3<<26)
31 #define DMA_CFG_DXEPR_HHP (2<<26)
32 #define DMA_CFG_DXEPR_HHHP (1<<26)
34 /* DMA Configuration Register. DMA FIFO Manager PLB Priority: */
35 #define DMA_CFG_DFMPP_LP (0<<23)
36 #define DMA_CFG_DFMPP_HP (3<<23)
37 #define DMA_CFG_DFMPP_HHP (2<<23)
38 #define DMA_CFG_DFMPP_HHHP (1<<23)
40 /* DMA Configuration Register. Force 64-byte Alignment */
41 #define DMA_CFG_FALGN (1 << 19)
44 #define D0CPF_INT (1<<12)
45 #define D0CSF_INT (1<<11)
46 #define D1CPF_INT (1<<10)
47 #define D1CSF_INT (1<<9)
49 #define DMAE_INT (1<<9)
51 /* I2O IOP Interrupt Mask Register */
52 #define I2O_IOPIM_P0SNE (1<<3)
53 #define I2O_IOPIM_P0EM (1<<5)
54 #define I2O_IOPIM_P1SNE (1<<6)
55 #define I2O_IOPIM_P1EM (1<<8)
58 #define DMA_CDB_MSK (0xF)
59 #define DMA_CDB_64B_ADDR (1<<2)
60 #define DMA_CDB_NO_INT (1<<3)
61 #define DMA_CDB_STATUS_MSK (0x3)
62 #define DMA_CDB_ADDR_MSK (0xFFFFFFF0)
65 #define DMA_CDB_OPC_NO_OP (0x00)
66 #define DMA_CDB_OPC_MV_SG1_SG2 (0x01)
67 #define DMA_CDB_OPC_MULTICAST (0x05)
68 #define DMA_CDB_OPC_DFILL128 (0x24)
69 #define DMA_CDB_OPC_DCHECK128 (0x23)
71 #define DMA_CUED_XOR_BASE (0x10000000)
72 #define DMA_CUED_XOR_HB (0x00000008)
75 #define DMA_CUED_MULT1_OFF 0
76 #define DMA_CUED_MULT2_OFF 8
77 #define DMA_CUED_MULT3_OFF 16
78 #define DMA_CUED_REGION_OFF 24
79 #define DMA_CUED_XOR_WIN_MSK (0xFC000000)
81 #define DMA_CUED_MULT1_OFF 2
82 #define DMA_CUED_MULT2_OFF 10
83 #define DMA_CUED_MULT3_OFF 18
84 #define DMA_CUED_REGION_OFF 26
85 #define DMA_CUED_XOR_WIN_MSK (0xF0000000)
88 #define DMA_CUED_REGION_MSK 0x3
89 #define DMA_RXOR123 0x0
90 #define DMA_RXOR124 0x1
91 #define DMA_RXOR125 0x2
92 #define DMA_RXOR12 0x3
95 #define DMA_CDB_SG_SRC 1
96 #define DMA_CDB_SG_DST1 2
97 #define DMA_CDB_SG_DST2 3
100 * DMAx engines Command Descriptor Block Type
104 * Basic CDB structure (Table 20-17, p.499, 440spe_um_1_22.pdf)
106 u8 pad0
[2]; /* reserved */
107 u8 attr
; /* attributes */
109 u32 sg1u
; /* upper SG1 address */
110 u32 sg1l
; /* lower SG1 address */
111 u32 cnt
; /* SG count, 3B used */
112 u32 sg2u
; /* upper SG2 address */
113 u32 sg2l
; /* lower SG2 address */
114 u32 sg3u
; /* upper SG3 address */
115 u32 sg3l
; /* lower SG3 address */
119 * DMAx hardware registers (p.515 in 440SPe UM 1.22)
153 * I2O hardware registers (p.528 in 440SPe UM 1.22)
220 #endif /* _PPC440SPE_DMA_H */