1
2
3
4
5
6
7
8
9#ifndef __QE_H__
10#define __QE_H__
11
12#include "common.h"
13#ifdef CONFIG_U_QE
14#include <linux/immap_qe.h>
15#endif
16
17#define QE_NUM_OF_BRGS 16
18#define UCC_MAX_NUM 8
19
20#define QE_DATAONLY_BASE 0
21#define QE_DATAONLY_SIZE (QE_MURAM_SIZE - QE_DATAONLY_BASE)
22
23
24
25typedef enum qe_snum_state {
26 QE_SNUM_STATE_USED,
27 QE_SNUM_STATE_FREE
28} qe_snum_state_e;
29
30typedef struct qe_snum {
31 u8 num;
32 qe_snum_state_e state;
33} qe_snum_t;
34
35
36
37#define QE_RISC_ALLOCATION_RISC1 0x1
38#define QE_RISC_ALLOCATION_RISC2 0x2
39#define QE_RISC_ALLOCATION_RISC3 0x4
40#define QE_RISC_ALLOCATION_RISC4 0x8
41#define QE_RISC_ALLOCATION_RISC1_AND_RISC2 (QE_RISC_ALLOCATION_RISC1 | \
42 QE_RISC_ALLOCATION_RISC2)
43#define QE_RISC_ALLOCATION_FOUR_RISCS (QE_RISC_ALLOCATION_RISC1 | \
44 QE_RISC_ALLOCATION_RISC2 | \
45 QE_RISC_ALLOCATION_RISC3 | \
46 QE_RISC_ALLOCATION_RISC4)
47
48
49
50#define QE_CR_FLG 0x00010000
51#define QE_RESET 0x80000000
52#define QE_INIT_TX_RX 0x00000000
53#define QE_INIT_RX 0x00000001
54#define QE_INIT_TX 0x00000002
55#define QE_ENTER_HUNT_MODE 0x00000003
56#define QE_STOP_TX 0x00000004
57#define QE_GRACEFUL_STOP_TX 0x00000005
58#define QE_RESTART_TX 0x00000006
59#define QE_SWITCH_COMMAND 0x00000007
60#define QE_SET_GROUP_ADDRESS 0x00000008
61#define QE_INSERT_CELL 0x00000009
62#define QE_ATM_TRANSMIT 0x0000000a
63#define QE_CELL_POOL_GET 0x0000000b
64#define QE_CELL_POOL_PUT 0x0000000c
65#define QE_IMA_HOST_CMD 0x0000000d
66#define QE_ATM_MULTI_THREAD_INIT 0x00000011
67#define QE_ASSIGN_PAGE 0x00000012
68#define QE_START_FLOW_CONTROL 0x00000014
69#define QE_STOP_FLOW_CONTROL 0x00000015
70#define QE_ASSIGN_PAGE_TO_DEVICE 0x00000016
71#define QE_GRACEFUL_STOP_RX 0x0000001a
72#define QE_RESTART_RX 0x0000001b
73
74
75
76#define QE_CR_SUBBLOCK_INVALID 0x00000000
77#define QE_CR_SUBBLOCK_USB 0x03200000
78#define QE_CR_SUBBLOCK_UCCFAST1 0x02000000
79#define QE_CR_SUBBLOCK_UCCFAST2 0x02200000
80#define QE_CR_SUBBLOCK_UCCFAST3 0x02400000
81#define QE_CR_SUBBLOCK_UCCFAST4 0x02600000
82#define QE_CR_SUBBLOCK_UCCFAST5 0x02800000
83#define QE_CR_SUBBLOCK_UCCFAST6 0x02a00000
84#define QE_CR_SUBBLOCK_UCCFAST7 0x02c00000
85#define QE_CR_SUBBLOCK_UCCFAST8 0x02e00000
86#define QE_CR_SUBBLOCK_UCCSLOW1 0x00000000
87#define QE_CR_SUBBLOCK_UCCSLOW2 0x00200000
88#define QE_CR_SUBBLOCK_UCCSLOW3 0x00400000
89#define QE_CR_SUBBLOCK_UCCSLOW4 0x00600000
90#define QE_CR_SUBBLOCK_UCCSLOW5 0x00800000
91#define QE_CR_SUBBLOCK_UCCSLOW6 0x00a00000
92#define QE_CR_SUBBLOCK_UCCSLOW7 0x00c00000
93#define QE_CR_SUBBLOCK_UCCSLOW8 0x00e00000
94#define QE_CR_SUBBLOCK_MCC1 0x03800000
95#define QE_CR_SUBBLOCK_MCC2 0x03a00000
96#define QE_CR_SUBBLOCK_MCC3 0x03000000
97#define QE_CR_SUBBLOCK_IDMA1 0x02800000
98#define QE_CR_SUBBLOCK_IDMA2 0x02a00000
99#define QE_CR_SUBBLOCK_IDMA3 0x02c00000
100#define QE_CR_SUBBLOCK_IDMA4 0x02e00000
101#define QE_CR_SUBBLOCK_HPAC 0x01e00000
102#define QE_CR_SUBBLOCK_SPI1 0x01400000
103#define QE_CR_SUBBLOCK_SPI2 0x01600000
104#define QE_CR_SUBBLOCK_RAND 0x01c00000
105#define QE_CR_SUBBLOCK_TIMER 0x01e00000
106#define QE_CR_SUBBLOCK_GENERAL 0x03c00000
107
108
109
110#define QE_CR_PROTOCOL_UNSPECIFIED 0x00
111#define QE_CR_PROTOCOL_HDLC_TRANSPARENT 0x00
112#define QE_CR_PROTOCOL_ATM_POS 0x0A
113#define QE_CR_PROTOCOL_ETHERNET 0x0C
114#define QE_CR_PROTOCOL_L2_SWITCH 0x0D
115#define QE_CR_PROTOCOL_SHIFT 6
116
117
118
119#define QE_CR_ASSIGN_PAGE_SNUM_SHIFT 17
120
121
122
123typedef enum comm_dir {
124 COMM_DIR_NONE = 0,
125 COMM_DIR_RX = 1,
126 COMM_DIR_TX = 2,
127 COMM_DIR_RX_AND_TX = 3
128} comm_dir_e;
129
130
131
132typedef enum qe_clock {
133 QE_CLK_NONE = 0,
134 QE_BRG1,
135 QE_BRG2,
136 QE_BRG3,
137 QE_BRG4,
138 QE_BRG5,
139 QE_BRG6,
140 QE_BRG7,
141 QE_BRG8,
142 QE_BRG9,
143 QE_BRG10,
144 QE_BRG11,
145 QE_BRG12,
146 QE_BRG13,
147 QE_BRG14,
148 QE_BRG15,
149 QE_BRG16,
150 QE_CLK1,
151 QE_CLK2,
152 QE_CLK3,
153 QE_CLK4,
154 QE_CLK5,
155 QE_CLK6,
156 QE_CLK7,
157 QE_CLK8,
158 QE_CLK9,
159 QE_CLK10,
160 QE_CLK11,
161 QE_CLK12,
162 QE_CLK13,
163 QE_CLK14,
164 QE_CLK15,
165 QE_CLK16,
166 QE_CLK17,
167 QE_CLK18,
168 QE_CLK19,
169 QE_CLK20,
170 QE_CLK21,
171 QE_CLK22,
172 QE_CLK23,
173 QE_CLK24,
174 QE_CLK_DUMMY
175} qe_clock_e;
176
177
178
179#define QE_CMXGCR_MII_ENET_MNG_MASK 0x00007000
180#define QE_CMXGCR_MII_ENET_MNG_SHIFT 12
181
182
183
184#define QE_CMXUCR_TX_CLK_SRC_MASK 0x0000000F
185
186
187
188#define QE_BRGC_ENABLE 0x00010000
189#define QE_BRGC_DIVISOR_SHIFT 1
190#define QE_BRGC_DIVISOR_MAX 0xFFF
191#define QE_BRGC_DIV16 1
192
193
194
195#define QE_SDSR_BER1 0x02000000
196#define QE_SDSR_BER2 0x01000000
197
198#define QE_SDMR_GLB_1_MSK 0x80000000
199#define QE_SDMR_ADR_SEL 0x20000000
200#define QE_SDMR_BER1_MSK 0x02000000
201#define QE_SDMR_BER2_MSK 0x01000000
202#define QE_SDMR_EB1_MSK 0x00800000
203#define QE_SDMR_ER1_MSK 0x00080000
204#define QE_SDMR_ER2_MSK 0x00040000
205#define QE_SDMR_CEN_MASK 0x0000E000
206#define QE_SDMR_SBER_1 0x00000200
207#define QE_SDMR_SBER_2 0x00000200
208#define QE_SDMR_EB1_PR_MASK 0x000000C0
209#define QE_SDMR_ER1_PR 0x00000008
210
211#define QE_SDMR_CEN_SHIFT 13
212#define QE_SDMR_EB1_PR_SHIFT 6
213
214#define QE_SDTM_MSNUM_SHIFT 24
215
216#define QE_SDEBCR_BA_MASK 0x01FFFFFF
217
218
219#define QE_CP_CERCR_MEE 0x8000
220#define QE_CP_CERCR_IEE 0x4000
221#define QE_CP_CERCR_CIR 0x0800
222
223
224#define QE_IRAM_IADD_AIE 0x80000000
225#define QE_IRAM_IADD_BADDR 0x00080000
226#define QE_IRAM_READY 0x80000000
227
228
229
230
231
232struct qe_firmware {
233 struct qe_header {
234 u32 length;
235 u8 magic[3];
236 u8 version;
237 } header;
238 u8 id[62];
239 u8 split;
240 u8 count;
241 struct {
242 u16 model;
243 u8 major;
244 u8 minor;
245 } __attribute__ ((packed)) soc;
246 u8 padding[4];
247 u64 extended_modes;
248 u32 vtraps[8];
249 u8 reserved[4];
250 struct qe_microcode {
251 u8 id[32];
252 u32 traps[16];
253 u32 eccr;
254 u32 iram_offset;
255 u32 count;
256 u32 code_offset;
257 u8 major;
258 u8 minor;
259 u8 revision;
260 u8 padding;
261 u8 reserved[4];
262 } __attribute__ ((packed)) microcode[1];
263
264
265} __attribute__ ((packed));
266
267struct qe_firmware_info {
268 char id[64];
269 u32 vtraps[8];
270 u64 extended_modes;
271};
272
273void qe_config_iopin(u8 port, u8 pin, int dir, int open_drain, int assign);
274void qe_issue_cmd(uint cmd, uint sbc, u8 mcn, u32 cmd_data);
275uint qe_muram_alloc(uint size, uint align);
276void *qe_muram_addr(uint offset);
277int qe_get_snum(void);
278void qe_put_snum(u8 snum);
279void qe_init(uint qe_base);
280void qe_reset(void);
281void qe_assign_page(uint snum, uint para_ram_base);
282int qe_set_brg(uint brg, uint rate);
283int qe_set_mii_clk_src(int ucc_num);
284int qe_upload_firmware(const struct qe_firmware *firmware);
285struct qe_firmware_info *qe_get_firmware_info(void);
286void ft_qe_setup(void *blob);
287void qe_init(uint qe_base);
288void qe_reset(void);
289
290#ifdef CONFIG_U_QE
291void u_qe_init(void);
292int u_qe_upload_firmware(const struct qe_firmware *firmware);
293void u_qe_resume(void);
294int u_qe_firmware_resume(const struct qe_firmware *firmware,
295 qe_map_t *qe_immrr);
296#endif
297
298#endif
299