1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <hxge_impl.h>
#include <hpi_vmac.h>
#include <hpi_rxdma.h>
/*
* System interrupt registers that are under function zero management.
*/
hxge_status_t
hxge_fzc_intr_init(p_hxge_t hxgep)
{
hxge_status_t status = HXGE_OK;
HXGE_DEBUG_MSG((hxgep, INT_CTL, "==> hxge_fzc_intr_init"));
/* Configure the initial timer resolution */
if ((status = hxge_fzc_intr_tmres_set(hxgep)) != HXGE_OK) {
return (status);
}
/*
* Set up the logical device group's logical devices that
* the group owns.
*/
if ((status = hxge_fzc_intr_ldg_num_set(hxgep)) != HXGE_OK) {
return (status);
}
/* Configure the system interrupt data */
if ((status = hxge_fzc_intr_sid_set(hxgep)) != HXGE_OK) {
return (status);
}
HXGE_DEBUG_MSG((hxgep, INT_CTL, "<== hxge_fzc_intr_init"));
return (status);
}
hxge_status_t
hxge_fzc_intr_ldg_num_set(p_hxge_t hxgep)
{
p_hxge_ldg_t ldgp;
p_hxge_ldv_t ldvp;
hpi_handle_t handle;
int i, j;
hpi_status_t rs = HPI_SUCCESS;
HXGE_DEBUG_MSG((hxgep, INT_CTL, "==> hxge_fzc_intr_ldg_num_set"));
if (hxgep->ldgvp == NULL) {
return (HXGE_ERROR);
}
ldgp = hxgep->ldgvp->ldgp;
ldvp = hxgep->ldgvp->ldvp;
if (ldgp == NULL || ldvp == NULL) {
return (HXGE_ERROR);
}
handle = HXGE_DEV_HPI_HANDLE(hxgep);
for (i = 0; i < hxgep->ldgvp->ldg_intrs; i++, ldgp++) {
HXGE_DEBUG_MSG((hxgep, INT_CTL, "==> hxge_fzc_intr_ldg_num_set "
"<== hxge_f(Hydra): # ldv %d in group %d", ldgp->nldvs,
ldgp->ldg));
for (j = 0; j < ldgp->nldvs; j++, ldvp++) {
rs = hpi_fzc_ldg_num_set(handle, ldvp->ldv,
ldvp->ldg_assigned);
if (rs != HPI_SUCCESS) {
HXGE_DEBUG_MSG((hxgep, INT_CTL,
"<== hxge_fzc_intr_ldg_num_set failed "
" rs 0x%x ldv %d ldg %d",
rs, ldvp->ldv, ldvp->ldg_assigned));
return (HXGE_ERROR | rs);
}
HXGE_DEBUG_MSG((hxgep, INT_CTL,
"<== hxge_fzc_intr_ldg_num_set OK ldv %d ldg %d",
ldvp->ldv, ldvp->ldg_assigned));
}
}
HXGE_DEBUG_MSG((hxgep, INT_CTL, "<== hxge_fzc_intr_ldg_num_set"));
return (HXGE_OK);
}
hxge_status_t
hxge_fzc_intr_tmres_set(p_hxge_t hxgep)
{
hpi_handle_t handle;
hpi_status_t rs = HPI_SUCCESS;
HXGE_DEBUG_MSG((hxgep, INT_CTL, "==> hxge_fzc_intr_tmrese_set"));
if (hxgep->ldgvp == NULL) {
return (HXGE_ERROR);
}
handle = HXGE_DEV_HPI_HANDLE(hxgep);
if ((rs = hpi_fzc_ldg_timer_res_set(handle, hxgep->ldgvp->tmres))) {
return (HXGE_ERROR | rs);
}
HXGE_DEBUG_MSG((hxgep, INT_CTL, "<== hxge_fzc_intr_tmrese_set"));
return (HXGE_OK);
}
hxge_status_t
hxge_fzc_intr_sid_set(p_hxge_t hxgep)
{
hpi_handle_t handle;
p_hxge_ldg_t ldgp;
fzc_sid_t sid;
int i;
hpi_status_t rs = HPI_SUCCESS;
HXGE_DEBUG_MSG((hxgep, INT_CTL, "==> hxge_fzc_intr_sid_set"));
if (hxgep->ldgvp == NULL) {
HXGE_DEBUG_MSG((hxgep, INT_CTL,
"<== hxge_fzc_intr_sid_set: no ldg"));
return (HXGE_ERROR);
}
handle = HXGE_DEV_HPI_HANDLE(hxgep);
ldgp = hxgep->ldgvp->ldgp;
HXGE_DEBUG_MSG((hxgep, INT_CTL,
"==> hxge_fzc_intr_sid_set: #int %d", hxgep->ldgvp->ldg_intrs));
for (i = 0; i < hxgep->ldgvp->ldg_intrs; i++, ldgp++) {
sid.ldg = ldgp->ldg;
sid.vector = ldgp->vector;
HXGE_DEBUG_MSG((hxgep, INT_CTL,
"==> hxge_fzc_intr_sid_set(%d): group %d vector %d",
i, sid.ldg, sid.vector));
rs = hpi_fzc_sid_set(handle, sid);
if (rs != HPI_SUCCESS) {
HXGE_DEBUG_MSG((hxgep, INT_CTL,
"<== hxge_fzc_intr_sid_set:failed 0x%x", rs));
return (HXGE_ERROR | rs);
}
}
HXGE_DEBUG_MSG((hxgep, INT_CTL, "<== hxge_fzc_intr_sid_set"));
return (HXGE_OK);
}
/*
* Receive DMA registers that are under function zero management.
*/
/*ARGSUSED*/
hxge_status_t
hxge_init_fzc_rxdma_channel(p_hxge_t hxgep, uint16_t channel,
p_rx_rbr_ring_t rbr_p, p_rx_rcr_ring_t rcr_p, p_rx_mbox_t mbox_p)
{
hxge_status_t status = HXGE_OK;
HXGE_DEBUG_MSG((hxgep, RX_CTL, "==> hxge_init_fzc_rxdma_channel"));
/* Initialize the RXDMA logical pages */
status = hxge_init_fzc_rxdma_channel_pages(hxgep, channel, rbr_p);
if (status != HXGE_OK)
return (status);
HXGE_DEBUG_MSG((hxgep, RX_CTL, "<== hxge_init_fzc_rxdma_channel"));
return (status);
}
/*ARGSUSED*/
hxge_status_t
hxge_init_fzc_rxdma_channel_pages(p_hxge_t hxgep,
uint16_t channel, p_rx_rbr_ring_t rbrp)
{
hpi_handle_t handle;
hpi_status_t rs = HPI_SUCCESS;
HXGE_DEBUG_MSG((hxgep, DMA_CTL,
"==> hxge_init_fzc_rxdma_channel_pages"));
handle = HXGE_DEV_HPI_HANDLE(hxgep);
/* Initialize the page handle */
rs = hpi_rxdma_cfg_logical_page_handle(handle, channel,
rbrp->page_hdl.bits.handle);
if (rs != HPI_SUCCESS)
return (HXGE_ERROR | rs);
HXGE_DEBUG_MSG((hxgep, DMA_CTL,
"<== hxge_init_fzc_rxdma_channel_pages"));
return (HXGE_OK);
}
/*ARGSUSED*/
hxge_status_t
hxge_init_fzc_txdma_channel(p_hxge_t hxgep, uint16_t channel,
p_tx_ring_t tx_ring_p, p_tx_mbox_t mbox_p)
{
hxge_status_t status = HXGE_OK;
HXGE_DEBUG_MSG((hxgep, DMA_CTL, "==> hxge_init_fzc_txdma_channel"));
/* Initialize the TXDMA logical pages */
(void) hxge_init_fzc_txdma_channel_pages(hxgep, channel, tx_ring_p);
HXGE_DEBUG_MSG((hxgep, DMA_CTL, "<== hxge_init_fzc_txdma_channel"));
return (status);
}
hxge_status_t
hxge_init_fzc_rx_common(p_hxge_t hxgep)
{
hpi_handle_t handle;
hpi_status_t rs = HPI_SUCCESS;
hxge_status_t status = HXGE_OK;
HXGE_DEBUG_MSG((hxgep, DMA_CTL, "==> hxge_init_fzc_rx_common"));
handle = HXGE_DEV_HPI_HANDLE(hxgep);
/*
* Configure the rxdma clock divider
* This is the granularity counter based on
* the hardware system clock (i.e. 300 Mhz) and
* it is running around 3 nanoseconds.
* So, set the clock divider counter to 1000 to get
* microsecond granularity.
* For example, for a 3 microsecond timeout, the timeout
* will be set to 1.
*/
rs = hpi_rxdma_cfg_clock_div_set(handle, RXDMA_CK_DIV_DEFAULT);
if (rs != HPI_SUCCESS)
return (HXGE_ERROR | rs);
HXGE_DEBUG_MSG((hxgep, DMA_CTL,
"<== hxge_init_fzc_rx_common:status 0x%08x", status));
return (status);
}
hxge_status_t
hxge_init_fzc_txdma_channel_pages(p_hxge_t hxgep, uint16_t channel,
p_tx_ring_t tx_ring_p)
{
hpi_handle_t handle;
hpi_status_t rs = HPI_SUCCESS;
HXGE_DEBUG_MSG((hxgep, DMA_CTL,
"==> hxge_init_fzc_txdma_channel_pages"));
handle = HXGE_DEV_HPI_HANDLE(hxgep);
/* Initialize the page handle */
rs = hpi_txdma_log_page_handle_set(handle, channel,
&tx_ring_p->page_hdl);
if (rs == HPI_SUCCESS)
return (HXGE_OK);
else
return (HXGE_ERROR | rs);
}
hxge_status_t
hxge_fzc_sys_err_mask_set(p_hxge_t hxgep, boolean_t mask)
{
hpi_status_t rs = HPI_SUCCESS;
hpi_handle_t handle;
handle = HXGE_DEV_HPI_HANDLE(hxgep);
rs = hpi_fzc_sys_err_mask_set(handle, mask);
if (rs == HPI_SUCCESS)
return (HXGE_OK);
else
return (HXGE_ERROR | rs);
}
|