2 * Copyright (C) 2003 - 2009 NetXen, Inc.
3 * Copyright (C) 2009 - QLogic Corporation.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
21 * The full GNU General Public License is included in this distribution
22 * in the file called "COPYING".
26 #include "netxen_nic_hw.h"
27 #include "netxen_nic.h"
29 #define NXHAL_VERSION 1
32 netxen_poll_rsp(struct netxen_adapter
*adapter
)
34 u32 rsp
= NX_CDRP_RSP_OK
;
38 /* give atleast 1ms for firmware to respond */
41 if (++timeout
> NX_OS_CRB_RETRY_COUNT
)
42 return NX_CDRP_RSP_TIMEOUT
;
44 rsp
= NXRD32(adapter
, NX_CDRP_CRB_OFFSET
);
45 } while (!NX_CDRP_IS_RSP(rsp
));
51 netxen_issue_cmd(struct netxen_adapter
*adapter
,
52 u32 pci_fn
, u32 version
, u32 arg1
, u32 arg2
, u32 arg3
, u32 cmd
)
56 u32 rcode
= NX_RCODE_SUCCESS
;
58 signature
= NX_CDRP_SIGNATURE_MAKE(pci_fn
, version
);
60 /* Acquire semaphore before accessing CRB */
61 if (netxen_api_lock(adapter
))
62 return NX_RCODE_TIMEOUT
;
64 NXWR32(adapter
, NX_SIGN_CRB_OFFSET
, signature
);
66 NXWR32(adapter
, NX_ARG1_CRB_OFFSET
, arg1
);
68 NXWR32(adapter
, NX_ARG2_CRB_OFFSET
, arg2
);
70 NXWR32(adapter
, NX_ARG3_CRB_OFFSET
, arg3
);
72 NXWR32(adapter
, NX_CDRP_CRB_OFFSET
, NX_CDRP_FORM_CMD(cmd
));
74 rsp
= netxen_poll_rsp(adapter
);
76 if (rsp
== NX_CDRP_RSP_TIMEOUT
) {
77 printk(KERN_ERR
"%s: card response timeout.\n",
78 netxen_nic_driver_name
);
80 rcode
= NX_RCODE_TIMEOUT
;
81 } else if (rsp
== NX_CDRP_RSP_FAIL
) {
82 rcode
= NXRD32(adapter
, NX_ARG1_CRB_OFFSET
);
84 printk(KERN_ERR
"%s: failed card response code:0x%x\n",
85 netxen_nic_driver_name
, rcode
);
88 /* Release semaphore */
89 netxen_api_unlock(adapter
);
95 nx_fw_cmd_set_mtu(struct netxen_adapter
*adapter
, int mtu
)
97 u32 rcode
= NX_RCODE_SUCCESS
;
98 struct netxen_recv_context
*recv_ctx
= &adapter
->recv_ctx
;
100 if (recv_ctx
->state
== NX_HOST_CTX_STATE_ACTIVE
)
101 rcode
= netxen_issue_cmd(adapter
,
102 adapter
->ahw
.pci_func
,
104 recv_ctx
->context_id
,
107 NX_CDRP_CMD_SET_MTU
);
109 if (rcode
!= NX_RCODE_SUCCESS
)
116 nx_fw_cmd_set_gbe_port(struct netxen_adapter
*adapter
,
117 u32 speed
, u32 duplex
, u32 autoneg
)
120 return netxen_issue_cmd(adapter
,
121 adapter
->ahw
.pci_func
,
126 NX_CDRP_CMD_CONFIG_GBE_PORT
);
131 nx_fw_cmd_create_rx_ctx(struct netxen_adapter
*adapter
)
134 nx_hostrq_rx_ctx_t
*prq
;
135 nx_cardrsp_rx_ctx_t
*prsp
;
136 nx_hostrq_rds_ring_t
*prq_rds
;
137 nx_hostrq_sds_ring_t
*prq_sds
;
138 nx_cardrsp_rds_ring_t
*prsp_rds
;
139 nx_cardrsp_sds_ring_t
*prsp_sds
;
140 struct nx_host_rds_ring
*rds_ring
;
141 struct nx_host_sds_ring
*sds_ring
;
143 dma_addr_t hostrq_phys_addr
, cardrsp_phys_addr
;
146 int i
, nrds_rings
, nsds_rings
;
147 size_t rq_size
, rsp_size
;
152 struct netxen_recv_context
*recv_ctx
= &adapter
->recv_ctx
;
154 nrds_rings
= adapter
->max_rds_rings
;
155 nsds_rings
= adapter
->max_sds_rings
;
158 SIZEOF_HOSTRQ_RX(nx_hostrq_rx_ctx_t
, nrds_rings
, nsds_rings
);
160 SIZEOF_CARDRSP_RX(nx_cardrsp_rx_ctx_t
, nrds_rings
, nsds_rings
);
162 addr
= pci_alloc_consistent(adapter
->pdev
,
163 rq_size
, &hostrq_phys_addr
);
168 addr
= pci_alloc_consistent(adapter
->pdev
,
169 rsp_size
, &cardrsp_phys_addr
);
176 prq
->host_rsp_dma_addr
= cpu_to_le64(cardrsp_phys_addr
);
178 cap
= (NX_CAP0_LEGACY_CONTEXT
| NX_CAP0_LEGACY_MN
);
179 cap
|= (NX_CAP0_JUMBO_CONTIGUOUS
| NX_CAP0_LRO_CONTIGUOUS
);
181 prq
->capabilities
[0] = cpu_to_le32(cap
);
182 prq
->host_int_crb_mode
=
183 cpu_to_le32(NX_HOST_INT_CRB_MODE_SHARED
);
184 prq
->host_rds_crb_mode
=
185 cpu_to_le32(NX_HOST_RDS_CRB_MODE_UNIQUE
);
187 prq
->num_rds_rings
= cpu_to_le16(nrds_rings
);
188 prq
->num_sds_rings
= cpu_to_le16(nsds_rings
);
189 prq
->rds_ring_offset
= cpu_to_le32(0);
191 val
= le32_to_cpu(prq
->rds_ring_offset
) +
192 (sizeof(nx_hostrq_rds_ring_t
) * nrds_rings
);
193 prq
->sds_ring_offset
= cpu_to_le32(val
);
195 prq_rds
= (nx_hostrq_rds_ring_t
*)(prq
->data
+
196 le32_to_cpu(prq
->rds_ring_offset
));
198 for (i
= 0; i
< nrds_rings
; i
++) {
200 rds_ring
= &recv_ctx
->rds_rings
[i
];
202 prq_rds
[i
].host_phys_addr
= cpu_to_le64(rds_ring
->phys_addr
);
203 prq_rds
[i
].ring_size
= cpu_to_le32(rds_ring
->num_desc
);
204 prq_rds
[i
].ring_kind
= cpu_to_le32(i
);
205 prq_rds
[i
].buff_size
= cpu_to_le64(rds_ring
->dma_size
);
208 prq_sds
= (nx_hostrq_sds_ring_t
*)(prq
->data
+
209 le32_to_cpu(prq
->sds_ring_offset
));
211 for (i
= 0; i
< nsds_rings
; i
++) {
213 sds_ring
= &recv_ctx
->sds_rings
[i
];
215 prq_sds
[i
].host_phys_addr
= cpu_to_le64(sds_ring
->phys_addr
);
216 prq_sds
[i
].ring_size
= cpu_to_le32(sds_ring
->num_desc
);
217 prq_sds
[i
].msi_index
= cpu_to_le16(i
);
220 phys_addr
= hostrq_phys_addr
;
221 err
= netxen_issue_cmd(adapter
,
222 adapter
->ahw
.pci_func
,
224 (u32
)(phys_addr
>> 32),
225 (u32
)(phys_addr
& 0xffffffff),
227 NX_CDRP_CMD_CREATE_RX_CTX
);
230 "Failed to create rx ctx in firmware%d\n", err
);
235 prsp_rds
= ((nx_cardrsp_rds_ring_t
*)
236 &prsp
->data
[le32_to_cpu(prsp
->rds_ring_offset
)]);
238 for (i
= 0; i
< le16_to_cpu(prsp
->num_rds_rings
); i
++) {
239 rds_ring
= &recv_ctx
->rds_rings
[i
];
241 reg
= le32_to_cpu(prsp_rds
[i
].host_producer_crb
);
242 rds_ring
->crb_rcv_producer
= netxen_get_ioaddr(adapter
,
243 NETXEN_NIC_REG(reg
- 0x200));
246 prsp_sds
= ((nx_cardrsp_sds_ring_t
*)
247 &prsp
->data
[le32_to_cpu(prsp
->sds_ring_offset
)]);
249 for (i
= 0; i
< le16_to_cpu(prsp
->num_sds_rings
); i
++) {
250 sds_ring
= &recv_ctx
->sds_rings
[i
];
252 reg
= le32_to_cpu(prsp_sds
[i
].host_consumer_crb
);
253 sds_ring
->crb_sts_consumer
= netxen_get_ioaddr(adapter
,
254 NETXEN_NIC_REG(reg
- 0x200));
256 reg
= le32_to_cpu(prsp_sds
[i
].interrupt_crb
);
257 sds_ring
->crb_intr_mask
= netxen_get_ioaddr(adapter
,
258 NETXEN_NIC_REG(reg
- 0x200));
261 recv_ctx
->state
= le32_to_cpu(prsp
->host_ctx_state
);
262 recv_ctx
->context_id
= le16_to_cpu(prsp
->context_id
);
263 recv_ctx
->virt_port
= prsp
->virt_port
;
266 pci_free_consistent(adapter
->pdev
, rsp_size
, prsp
, cardrsp_phys_addr
);
268 pci_free_consistent(adapter
->pdev
, rq_size
, prq
, hostrq_phys_addr
);
273 nx_fw_cmd_destroy_rx_ctx(struct netxen_adapter
*adapter
)
275 struct netxen_recv_context
*recv_ctx
= &adapter
->recv_ctx
;
277 if (netxen_issue_cmd(adapter
,
278 adapter
->ahw
.pci_func
,
280 recv_ctx
->context_id
,
281 NX_DESTROY_CTX_RESET
,
283 NX_CDRP_CMD_DESTROY_RX_CTX
)) {
286 "%s: Failed to destroy rx ctx in firmware\n",
287 netxen_nic_driver_name
);
292 nx_fw_cmd_create_tx_ctx(struct netxen_adapter
*adapter
)
294 nx_hostrq_tx_ctx_t
*prq
;
295 nx_hostrq_cds_ring_t
*prq_cds
;
296 nx_cardrsp_tx_ctx_t
*prsp
;
297 void *rq_addr
, *rsp_addr
;
298 size_t rq_size
, rsp_size
;
301 u64 offset
, phys_addr
;
302 dma_addr_t rq_phys_addr
, rsp_phys_addr
;
303 struct nx_host_tx_ring
*tx_ring
= adapter
->tx_ring
;
304 struct netxen_recv_context
*recv_ctx
= &adapter
->recv_ctx
;
306 rq_size
= SIZEOF_HOSTRQ_TX(nx_hostrq_tx_ctx_t
);
307 rq_addr
= pci_alloc_consistent(adapter
->pdev
,
308 rq_size
, &rq_phys_addr
);
312 rsp_size
= SIZEOF_CARDRSP_TX(nx_cardrsp_tx_ctx_t
);
313 rsp_addr
= pci_alloc_consistent(adapter
->pdev
,
314 rsp_size
, &rsp_phys_addr
);
320 memset(rq_addr
, 0, rq_size
);
323 memset(rsp_addr
, 0, rsp_size
);
326 prq
->host_rsp_dma_addr
= cpu_to_le64(rsp_phys_addr
);
328 temp
= (NX_CAP0_LEGACY_CONTEXT
| NX_CAP0_LEGACY_MN
| NX_CAP0_LSO
);
329 prq
->capabilities
[0] = cpu_to_le32(temp
);
331 prq
->host_int_crb_mode
=
332 cpu_to_le32(NX_HOST_INT_CRB_MODE_SHARED
);
334 prq
->interrupt_ctl
= 0;
337 prq
->dummy_dma_addr
= cpu_to_le64(adapter
->dummy_dma
.phys_addr
);
339 offset
= recv_ctx
->phys_addr
+ sizeof(struct netxen_ring_ctx
);
340 prq
->cmd_cons_dma_addr
= cpu_to_le64(offset
);
342 prq_cds
= &prq
->cds_ring
;
344 prq_cds
->host_phys_addr
= cpu_to_le64(tx_ring
->phys_addr
);
345 prq_cds
->ring_size
= cpu_to_le32(tx_ring
->num_desc
);
347 phys_addr
= rq_phys_addr
;
348 err
= netxen_issue_cmd(adapter
,
349 adapter
->ahw
.pci_func
,
351 (u32
)(phys_addr
>> 32),
352 ((u32
)phys_addr
& 0xffffffff),
354 NX_CDRP_CMD_CREATE_TX_CTX
);
356 if (err
== NX_RCODE_SUCCESS
) {
357 temp
= le32_to_cpu(prsp
->cds_ring
.host_producer_crb
);
358 tx_ring
->crb_cmd_producer
= netxen_get_ioaddr(adapter
,
359 NETXEN_NIC_REG(temp
- 0x200));
362 le32_to_cpu(prsp
->host_ctx_state
);
364 adapter
->tx_context_id
=
365 le16_to_cpu(prsp
->context_id
);
368 "Failed to create tx ctx in firmware%d\n", err
);
372 pci_free_consistent(adapter
->pdev
, rsp_size
, rsp_addr
, rsp_phys_addr
);
375 pci_free_consistent(adapter
->pdev
, rq_size
, rq_addr
, rq_phys_addr
);
381 nx_fw_cmd_destroy_tx_ctx(struct netxen_adapter
*adapter
)
383 if (netxen_issue_cmd(adapter
,
384 adapter
->ahw
.pci_func
,
386 adapter
->tx_context_id
,
387 NX_DESTROY_CTX_RESET
,
389 NX_CDRP_CMD_DESTROY_TX_CTX
)) {
392 "%s: Failed to destroy tx ctx in firmware\n",
393 netxen_nic_driver_name
);
398 nx_fw_cmd_query_phy(struct netxen_adapter
*adapter
, u32 reg
, u32
*val
)
402 rcode
= netxen_issue_cmd(adapter
,
403 adapter
->ahw
.pci_func
,
408 NX_CDRP_CMD_READ_PHY
);
410 if (rcode
!= NX_RCODE_SUCCESS
)
413 return NXRD32(adapter
, NX_ARG1_CRB_OFFSET
);
417 nx_fw_cmd_set_phy(struct netxen_adapter
*adapter
, u32 reg
, u32 val
)
421 rcode
= netxen_issue_cmd(adapter
,
422 adapter
->ahw
.pci_func
,
427 NX_CDRP_CMD_WRITE_PHY
);
429 if (rcode
!= NX_RCODE_SUCCESS
)
435 static u64 ctx_addr_sig_regs
[][3] = {
436 {NETXEN_NIC_REG(0x188), NETXEN_NIC_REG(0x18c), NETXEN_NIC_REG(0x1c0)},
437 {NETXEN_NIC_REG(0x190), NETXEN_NIC_REG(0x194), NETXEN_NIC_REG(0x1c4)},
438 {NETXEN_NIC_REG(0x198), NETXEN_NIC_REG(0x19c), NETXEN_NIC_REG(0x1c8)},
439 {NETXEN_NIC_REG(0x1a0), NETXEN_NIC_REG(0x1a4), NETXEN_NIC_REG(0x1cc)}
442 #define CRB_CTX_ADDR_REG_LO(FUNC_ID) (ctx_addr_sig_regs[FUNC_ID][0])
443 #define CRB_CTX_ADDR_REG_HI(FUNC_ID) (ctx_addr_sig_regs[FUNC_ID][2])
444 #define CRB_CTX_SIGNATURE_REG(FUNC_ID) (ctx_addr_sig_regs[FUNC_ID][1])
446 #define lower32(x) ((u32)((x) & 0xffffffff))
447 #define upper32(x) ((u32)(((u64)(x) >> 32) & 0xffffffff))
449 static struct netxen_recv_crb recv_crb_registers
[] = {
452 /* crb_rcv_producer: */
454 NETXEN_NIC_REG(0x100),
456 NETXEN_NIC_REG(0x110),
458 NETXEN_NIC_REG(0x120)
460 /* crb_sts_consumer: */
462 NETXEN_NIC_REG(0x138),
463 NETXEN_NIC_REG_2(0x000),
464 NETXEN_NIC_REG_2(0x004),
465 NETXEN_NIC_REG_2(0x008),
470 NETXEN_NIC_REG_2(0x044),
471 NETXEN_NIC_REG_2(0x048),
472 NETXEN_NIC_REG_2(0x04c),
477 /* crb_rcv_producer: */
479 NETXEN_NIC_REG(0x144),
481 NETXEN_NIC_REG(0x154),
483 NETXEN_NIC_REG(0x164)
485 /* crb_sts_consumer: */
487 NETXEN_NIC_REG(0x17c),
488 NETXEN_NIC_REG_2(0x020),
489 NETXEN_NIC_REG_2(0x024),
490 NETXEN_NIC_REG_2(0x028),
495 NETXEN_NIC_REG_2(0x064),
496 NETXEN_NIC_REG_2(0x068),
497 NETXEN_NIC_REG_2(0x06c),
502 /* crb_rcv_producer: */
504 NETXEN_NIC_REG(0x1d8),
506 NETXEN_NIC_REG(0x1f8),
508 NETXEN_NIC_REG(0x208)
510 /* crb_sts_consumer: */
512 NETXEN_NIC_REG(0x220),
513 NETXEN_NIC_REG_2(0x03c),
514 NETXEN_NIC_REG_2(0x03c),
515 NETXEN_NIC_REG_2(0x03c),
520 NETXEN_NIC_REG_2(0x03c),
521 NETXEN_NIC_REG_2(0x03c),
522 NETXEN_NIC_REG_2(0x03c),
527 /* crb_rcv_producer: */
529 NETXEN_NIC_REG(0x22c),
531 NETXEN_NIC_REG(0x23c),
533 NETXEN_NIC_REG(0x24c)
535 /* crb_sts_consumer: */
537 NETXEN_NIC_REG(0x264),
538 NETXEN_NIC_REG_2(0x03c),
539 NETXEN_NIC_REG_2(0x03c),
540 NETXEN_NIC_REG_2(0x03c),
545 NETXEN_NIC_REG_2(0x03c),
546 NETXEN_NIC_REG_2(0x03c),
547 NETXEN_NIC_REG_2(0x03c),
553 netxen_init_old_ctx(struct netxen_adapter
*adapter
)
555 struct netxen_recv_context
*recv_ctx
;
556 struct nx_host_rds_ring
*rds_ring
;
557 struct nx_host_sds_ring
*sds_ring
;
558 struct nx_host_tx_ring
*tx_ring
;
560 int port
= adapter
->portnum
;
561 struct netxen_ring_ctx
*hwctx
;
564 tx_ring
= adapter
->tx_ring
;
565 recv_ctx
= &adapter
->recv_ctx
;
566 hwctx
= recv_ctx
->hwctx
;
568 hwctx
->cmd_ring_addr
= cpu_to_le64(tx_ring
->phys_addr
);
569 hwctx
->cmd_ring_size
= cpu_to_le32(tx_ring
->num_desc
);
572 for (ring
= 0; ring
< adapter
->max_rds_rings
; ring
++) {
573 rds_ring
= &recv_ctx
->rds_rings
[ring
];
575 hwctx
->rcv_rings
[ring
].addr
=
576 cpu_to_le64(rds_ring
->phys_addr
);
577 hwctx
->rcv_rings
[ring
].size
=
578 cpu_to_le32(rds_ring
->num_desc
);
581 for (ring
= 0; ring
< adapter
->max_sds_rings
; ring
++) {
582 sds_ring
= &recv_ctx
->sds_rings
[ring
];
585 hwctx
->sts_ring_addr
= cpu_to_le64(sds_ring
->phys_addr
);
586 hwctx
->sts_ring_size
= cpu_to_le32(sds_ring
->num_desc
);
588 hwctx
->sts_rings
[ring
].addr
= cpu_to_le64(sds_ring
->phys_addr
);
589 hwctx
->sts_rings
[ring
].size
= cpu_to_le32(sds_ring
->num_desc
);
590 hwctx
->sts_rings
[ring
].msi_index
= cpu_to_le16(ring
);
592 hwctx
->sts_ring_count
= cpu_to_le32(adapter
->max_sds_rings
);
594 signature
= (adapter
->max_sds_rings
> 1) ?
595 NETXEN_CTX_SIGNATURE_V2
: NETXEN_CTX_SIGNATURE
;
597 NXWR32(adapter
, CRB_CTX_ADDR_REG_LO(port
),
598 lower32(recv_ctx
->phys_addr
));
599 NXWR32(adapter
, CRB_CTX_ADDR_REG_HI(port
),
600 upper32(recv_ctx
->phys_addr
));
601 NXWR32(adapter
, CRB_CTX_SIGNATURE_REG(port
),
606 int netxen_alloc_hw_resources(struct netxen_adapter
*adapter
)
611 struct netxen_recv_context
*recv_ctx
;
612 struct nx_host_rds_ring
*rds_ring
;
613 struct nx_host_sds_ring
*sds_ring
;
614 struct nx_host_tx_ring
*tx_ring
;
616 struct pci_dev
*pdev
= adapter
->pdev
;
617 struct net_device
*netdev
= adapter
->netdev
;
618 int port
= adapter
->portnum
;
620 recv_ctx
= &adapter
->recv_ctx
;
621 tx_ring
= adapter
->tx_ring
;
623 addr
= pci_alloc_consistent(pdev
,
624 sizeof(struct netxen_ring_ctx
) + sizeof(uint32_t),
625 &recv_ctx
->phys_addr
);
627 dev_err(&pdev
->dev
, "failed to allocate hw context\n");
631 memset(addr
, 0, sizeof(struct netxen_ring_ctx
));
632 recv_ctx
->hwctx
= addr
;
633 recv_ctx
->hwctx
->ctx_id
= cpu_to_le32(port
);
634 recv_ctx
->hwctx
->cmd_consumer_offset
=
635 cpu_to_le64(recv_ctx
->phys_addr
+
636 sizeof(struct netxen_ring_ctx
));
637 tx_ring
->hw_consumer
=
638 (__le32
*)(((char *)addr
) + sizeof(struct netxen_ring_ctx
));
641 addr
= pci_alloc_consistent(pdev
, TX_DESC_RINGSIZE(tx_ring
),
642 &tx_ring
->phys_addr
);
645 dev_err(&pdev
->dev
, "%s: failed to allocate tx desc ring\n",
651 tx_ring
->desc_head
= addr
;
653 for (ring
= 0; ring
< adapter
->max_rds_rings
; ring
++) {
654 rds_ring
= &recv_ctx
->rds_rings
[ring
];
655 addr
= pci_alloc_consistent(adapter
->pdev
,
656 RCV_DESC_RINGSIZE(rds_ring
),
657 &rds_ring
->phys_addr
);
660 "%s: failed to allocate rds ring [%d]\n",
665 rds_ring
->desc_head
= addr
;
667 if (NX_IS_REVISION_P2(adapter
->ahw
.revision_id
))
668 rds_ring
->crb_rcv_producer
=
669 netxen_get_ioaddr(adapter
,
670 recv_crb_registers
[port
].crb_rcv_producer
[ring
]);
673 for (ring
= 0; ring
< adapter
->max_sds_rings
; ring
++) {
674 sds_ring
= &recv_ctx
->sds_rings
[ring
];
676 addr
= pci_alloc_consistent(adapter
->pdev
,
677 STATUS_DESC_RINGSIZE(sds_ring
),
678 &sds_ring
->phys_addr
);
681 "%s: failed to allocate sds ring [%d]\n",
686 sds_ring
->desc_head
= addr
;
688 if (NX_IS_REVISION_P2(adapter
->ahw
.revision_id
)) {
689 sds_ring
->crb_sts_consumer
=
690 netxen_get_ioaddr(adapter
,
691 recv_crb_registers
[port
].crb_sts_consumer
[ring
]);
693 sds_ring
->crb_intr_mask
=
694 netxen_get_ioaddr(adapter
,
695 recv_crb_registers
[port
].sw_int_mask
[ring
]);
700 if (!NX_IS_REVISION_P2(adapter
->ahw
.revision_id
)) {
701 if (test_and_set_bit(__NX_FW_ATTACHED
, &adapter
->state
))
703 err
= nx_fw_cmd_create_rx_ctx(adapter
);
706 err
= nx_fw_cmd_create_tx_ctx(adapter
);
710 err
= netxen_init_old_ctx(adapter
);
719 netxen_free_hw_resources(adapter
);
723 void netxen_free_hw_resources(struct netxen_adapter
*adapter
)
725 struct netxen_recv_context
*recv_ctx
;
726 struct nx_host_rds_ring
*rds_ring
;
727 struct nx_host_sds_ring
*sds_ring
;
728 struct nx_host_tx_ring
*tx_ring
;
731 int port
= adapter
->portnum
;
733 if (!NX_IS_REVISION_P2(adapter
->ahw
.revision_id
)) {
734 if (!test_and_clear_bit(__NX_FW_ATTACHED
, &adapter
->state
))
737 nx_fw_cmd_destroy_rx_ctx(adapter
);
738 nx_fw_cmd_destroy_tx_ctx(adapter
);
740 netxen_api_lock(adapter
);
741 NXWR32(adapter
, CRB_CTX_SIGNATURE_REG(port
),
742 NETXEN_CTX_D3_RESET
| port
);
743 netxen_api_unlock(adapter
);
746 /* Allow dma queues to drain after context reset */
750 recv_ctx
= &adapter
->recv_ctx
;
752 if (recv_ctx
->hwctx
!= NULL
) {
753 pci_free_consistent(adapter
->pdev
,
754 sizeof(struct netxen_ring_ctx
) +
757 recv_ctx
->phys_addr
);
758 recv_ctx
->hwctx
= NULL
;
761 tx_ring
= adapter
->tx_ring
;
762 if (tx_ring
->desc_head
!= NULL
) {
763 pci_free_consistent(adapter
->pdev
,
764 TX_DESC_RINGSIZE(tx_ring
),
765 tx_ring
->desc_head
, tx_ring
->phys_addr
);
766 tx_ring
->desc_head
= NULL
;
769 for (ring
= 0; ring
< adapter
->max_rds_rings
; ring
++) {
770 rds_ring
= &recv_ctx
->rds_rings
[ring
];
772 if (rds_ring
->desc_head
!= NULL
) {
773 pci_free_consistent(adapter
->pdev
,
774 RCV_DESC_RINGSIZE(rds_ring
),
776 rds_ring
->phys_addr
);
777 rds_ring
->desc_head
= NULL
;
781 for (ring
= 0; ring
< adapter
->max_sds_rings
; ring
++) {
782 sds_ring
= &recv_ctx
->sds_rings
[ring
];
784 if (sds_ring
->desc_head
!= NULL
) {
785 pci_free_consistent(adapter
->pdev
,
786 STATUS_DESC_RINGSIZE(sds_ring
),
788 sds_ring
->phys_addr
);
789 sds_ring
->desc_head
= NULL
;