blob: 3bbf4cb6fd97e5c9f68fb61e633c7a222f76422c [file] [log] [blame]
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -04001#include <target/target_core_base.h>
2#include <linux/btree.h>
3
4#define TCM_QLA2XXX_VERSION "v0.1"
5/* length of ASCII WWPNs including pad */
6#define TCM_QLA2XXX_NAMELEN 32
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07007/*
8 * Number of pre-allocated per-session tags, based upon the worst-case
9 * per port number of iocbs
10 */
11#define TCM_QLA2XXX_DEFAULT_TAGS 2088
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040012
13#include "qla_target.h"
14
15struct tcm_qla2xxx_nacl {
Christoph Hellwig144bc4c2015-04-13 19:51:16 +020016 struct se_node_acl se_node_acl;
17
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040018 /* From libfc struct fc_rport->port_id */
19 u32 nport_id;
20 /* Binary World Wide unique Node Name for remote FC Initiator Nport */
21 u64 nport_wwnn;
22 /* ASCII formatted WWPN for FC Initiator Nport */
23 char nport_name[TCM_QLA2XXX_NAMELEN];
24 /* Pointer to qla_tgt_sess */
25 struct qla_tgt_sess *qla_tgt_sess;
26 /* Pointer to TCM FC nexus */
27 struct se_session *nport_nexus;
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040028};
29
30struct tcm_qla2xxx_tpg_attrib {
31 int generate_node_acls;
32 int cache_dynamic_acls;
33 int demo_mode_write_protect;
34 int prod_mode_write_protect;
Andy Groverde04a8a2013-07-19 15:06:38 -070035 int demo_mode_login_only;
Nicholas Bellinger64b16882015-03-27 23:30:57 -070036 int fabric_prot_type;
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040037};
38
39struct tcm_qla2xxx_tpg {
40 /* FC lport target portal group tag for TCM */
41 u16 lport_tpgt;
42 /* Atomic bit to determine TPG active status */
43 atomic_t lport_tpg_enabled;
44 /* Pointer back to tcm_qla2xxx_lport */
45 struct tcm_qla2xxx_lport *lport;
46 /* Used by tcm_qla2xxx_tpg_attrib_cit */
47 struct tcm_qla2xxx_tpg_attrib tpg_attrib;
48 /* Returned by tcm_qla2xxx_make_tpg() */
49 struct se_portal_group se_tpg;
Nicholas Bellinger7474f522014-02-19 16:53:07 -080050 /* Items for dealing with configfs_depend_item */
51 struct completion tpg_base_comp;
52 struct work_struct tpg_base_work;
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040053};
54
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040055struct tcm_qla2xxx_fc_loopid {
56 struct se_node_acl *se_nacl;
57};
58
59struct tcm_qla2xxx_lport {
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040060 /* Binary World Wide unique Port Name for FC Target Lport */
61 u64 lport_wwpn;
62 /* Binary World Wide unique Port Name for FC NPIV Target Lport */
63 u64 lport_npiv_wwpn;
64 /* Binary World Wide unique Node Name for FC NPIV Target Lport */
65 u64 lport_npiv_wwnn;
66 /* ASCII formatted WWPN for FC Target Lport */
67 char lport_name[TCM_QLA2XXX_NAMELEN];
Roland Dreierc046aa02012-10-11 13:41:31 -070068 /* ASCII formatted naa WWPN for VPD page 83 etc */
69 char lport_naa_name[TCM_QLA2XXX_NAMELEN];
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040070 /* map for fc_port pointers in 24-bit FC Port ID space */
71 struct btree_head32 lport_fcport_map;
72 /* vmalloc-ed memory for fc_port pointers for 16-bit FC loop ID */
73 struct tcm_qla2xxx_fc_loopid *lport_loopid_map;
74 /* Pointer to struct scsi_qla_host from qla2xxx LLD */
75 struct scsi_qla_host *qla_vha;
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040076 /* Pointer to struct qla_tgt pointer */
77 struct qla_tgt lport_qla_tgt;
Nicholas Bellinger75f8c1f2012-05-15 14:34:29 -040078 /* Pointer to TPG=1 for non NPIV mode */
79 struct tcm_qla2xxx_tpg *tpg_1;
80 /* Returned by tcm_qla2xxx_make_lport() */
81 struct se_wwn lport_wwn;
82};