blob: c06e5f9b431e5b6cbd546da3c16c2fff89063dcd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Andrew Vasquez07e264b2011-03-30 11:46:23 -07003 * Copyright (c) 2003-2011 QLogic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008/*
9 * qla2x00_debounce_register
10 * Debounce register.
11 *
12 * Input:
13 * port = register address.
14 *
15 * Returns:
16 * register value.
17 */
18static __inline__ uint16_t
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070019qla2x00_debounce_register(volatile uint16_t __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020{
21 volatile uint16_t first;
22 volatile uint16_t second;
23
24 do {
25 first = RD_REG_WORD(addr);
26 barrier();
27 cpu_relax();
28 second = RD_REG_WORD(addr);
29 } while (first != second);
30
31 return (first);
32}
33
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070034static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080035qla2x00_poll(struct rsp_que *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Andrew Vasquezd2ba5672008-05-12 22:21:14 -070037 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080038 struct qla_hw_data *ha = rsp->hw;
Andrew Vasquezd2ba5672008-05-12 22:21:14 -070039 local_irq_save(flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -070040 if (IS_QLA82XX(ha))
41 qla82xx_poll(0, rsp);
42 else
43 ha->isp_ops->intr_handler(0, rsp);
Andrew Vasquezd2ba5672008-05-12 22:21:14 -070044 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Andrew Vasquez2b6c0ce2005-07-06 10:31:17 -070047static inline uint8_t *
48host_to_fcp_swap(uint8_t *fcp, uint32_t bsize)
49{
50 uint32_t *ifcp = (uint32_t *) fcp;
51 uint32_t *ofcp = (uint32_t *) fcp;
52 uint32_t iter = bsize >> 2;
53
54 for (; iter ; iter--)
55 *ofcp++ = swab32(*ifcp++);
56
57 return fcp;
58}
Andrew Vasquez3d716442005-07-06 10:30:26 -070059
Andrew Vasquez3d716442005-07-06 10:30:26 -070060static inline int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080061qla2x00_is_reserved_id(scsi_qla_host_t *vha, uint16_t loop_id)
Andrew Vasquez3d716442005-07-06 10:30:26 -070062{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080063 struct qla_hw_data *ha = vha->hw;
Andrew Vasqueze4289242007-07-19 15:05:56 -070064 if (IS_FWI2_CAPABLE(ha))
Andrew Vasquez3d716442005-07-06 10:30:26 -070065 return (loop_id > NPH_LAST_HANDLE);
66
Anirban Chakrabortye315cd22008-11-06 10:40:51 -080067 return ((loop_id > ha->max_loop_id && loop_id < SNS_FIRST_LOOP_ID) ||
Andrew Vasquez3d716442005-07-06 10:30:26 -070068 loop_id == MANAGEMENT_SERVER || loop_id == BROADCAST);
Anirban Chakraborty17d98632008-12-18 10:06:15 -080069}
Arun Easibad75002010-05-04 15:01:30 -070070
71static inline void
72qla2x00_clean_dsd_pool(struct qla_hw_data *ha, srb_t *sp)
73{
74 struct dsd_dma *dsd_ptr, *tdsd_ptr;
75
76 /* clean up allocated prev pool */
77 list_for_each_entry_safe(dsd_ptr, tdsd_ptr,
78 &((struct crc_context *)sp->ctx)->dsd_list, list) {
79 dma_pool_free(ha->dl_dma_pool, dsd_ptr->dsd_addr,
80 dsd_ptr->dsd_list_dma);
81 list_del(&dsd_ptr->list);
82 kfree(dsd_ptr);
83 }
84 INIT_LIST_HEAD(&((struct crc_context *)sp->ctx)->dsd_list);
85}
Chad Dupuisec426e12011-03-30 11:46:32 -070086
87static inline void
88qla2x00_set_fcport_state(fc_port_t *fcport, int state)
89{
90 int old_state;
91
92 old_state = atomic_read(&fcport->state);
93 atomic_set(&fcport->state, state);
94
95 /* Don't print state transitions during initial allocation of fcport */
96 if (old_state && old_state != state) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -070097 ql_dbg(ql_dbg_disc, fcport->vha, 0x207d,
98 "FCPort state transitioned from %s to %s - "
99 "portid=%02x%02x%02x.\n",
Chad Dupuisec426e12011-03-30 11:46:32 -0700100 port_state_str[old_state], port_state_str[state],
101 fcport->d_id.b.domain, fcport->d_id.b.area,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700102 fcport->d_id.b.al_pa);
Chad Dupuisec426e12011-03-30 11:46:32 -0700103 }
104}
Arun Easi8cb20492011-08-16 11:29:22 -0700105
106static inline int
107qla2x00_hba_err_chk_enabled(unsigned char op)
108{
109 switch (op) {
110 case SCSI_PROT_READ_STRIP:
111 case SCSI_PROT_WRITE_INSERT:
112 if (ql2xenablehba_err_chk >= 1)
113 return 1;
114 break;
115 case SCSI_PROT_READ_PASS:
116 case SCSI_PROT_WRITE_PASS:
117 if (ql2xenablehba_err_chk >= 2)
118 return 1;
119 break;
120 case SCSI_PROT_READ_INSERT:
121 case SCSI_PROT_WRITE_STRIP:
122 return 1;
123 }
124 return 0;
125}