📄 sbp2.h
字号:
#define SBP2_BUSY_TIMEOUT_VALUE 0xf#define SBP2_AGENT_RESET_DATA 0xf/* * Unit spec id and sw version entry for SBP-2 devices */#define SBP2_UNIT_SPEC_ID_ENTRY 0x0000609e#define SBP2_SW_VERSION_ENTRY 0x00010483/* * Other misc defines */#define SBP2_128KB_BROKEN_FIRMWARE 0xa0b800#define SBP2_DEVICE_TYPE_LUN_UNINITIALIZED 0xffffffff/* * SCSI specific stuff */#define SBP2_MAX_SG_ELEMENT_LENGTH 0xf000#define SBP2_MAX_UDS_PER_NODE 16 /* Maximum scsi devices per node */#define SBP2_MAX_SECTORS 255 /* Max sectors supported */#ifndef TYPE_SDAD#define TYPE_SDAD 0x0e /* simplified direct access device */#endif/* * SCSI direction table... * (now used as a back-up in case the direction passed down from above is "unknown") * * DIN = IN data direction * DOU = OUT data direction * DNO = No data transfer * DUN = Unknown data direction * * Opcode 0xec (Teac specific "opc execute") possibly should be DNO, * but we'll change it when somebody reports a problem with this. */#define DIN ORB_DIRECTION_READ_FROM_MEDIA#define DOU ORB_DIRECTION_WRITE_TO_MEDIA#define DNO ORB_DIRECTION_NO_DATA_TRANSFER#define DUN DINstatic unchar sbp2scsi_direction_table[0x100] = { DNO,DNO,DIN,DIN,DOU,DIN,DIN,DOU,DIN,DUN,DOU,DOU,DUN,DUN,DUN,DIN, DNO,DIN,DIN,DOU,DIN,DOU,DNO,DNO,DOU,DNO,DIN,DNO,DIN,DOU,DNO,DUN, DIN,DUN,DIN,DIN,DOU,DIN,DUN,DUN,DIN,DIN,DOU,DNO,DUN,DIN,DOU,DOU, DOU,DOU,DOU,DNO,DIN,DNO,DNO,DIN,DOU,DOU,DOU,DOU,DIN,DOU,DIN,DOU, DOU,DOU,DIN,DIN,DIN,DNO,DIN,DNO,DNO,DNO,DUN,DNO,DOU,DIN,DNO,DUN, DUN,DIN,DIN,DNO,DNO,DOU,DUN,DUN,DNO,DIN,DIN,DNO,DIN,DOU,DUN,DUN, DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN, DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN, DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN, DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN, DUN,DNO,DOU,DOU,DIN,DNO,DNO,DNO,DIN,DNO,DOU,DUN,DNO,DIN,DOU,DOU, DOU,DOU,DOU,DNO,DUN,DIN,DOU,DIN,DIN,DIN,DNO,DNO,DNO,DIN,DIN,DUN, DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN, DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN, DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DOU,DUN,DUN,DUN,DUN,DUN, DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN};/* This should be safe */#define SBP2_MAX_CMDS 8/* This is the two dma types we use for cmd_dma below */enum cmd_dma_types { CMD_DMA_NONE, CMD_DMA_PAGE, CMD_DMA_SINGLE};/* * Encapsulates all the info necessary for an outstanding command. */struct sbp2_command_info { struct list_head list; struct sbp2_command_orb command_orb ____cacheline_aligned; dma_addr_t command_orb_dma ____cacheline_aligned; Scsi_Cmnd *Current_SCpnt; void (*Current_done)(Scsi_Cmnd *); /* Also need s/g structure for each sbp2 command */ struct sbp2_unrestricted_page_table scatter_gather_element[SG_ALL] ____cacheline_aligned; dma_addr_t sge_dma ____cacheline_aligned; void *sge_buffer; dma_addr_t cmd_dma; enum cmd_dma_types dma_type; unsigned long dma_size; int dma_dir;};/* A list of flags for detected oddities and brokeness. */#define SBP2_BREAKAGE_128K_MAX_TRANSFER 0x1#define SBP2_BREAKAGE_INQUIRY_HACK 0x2struct sbp2scsi_host_info;/* * Information needed on a per scsi id basis (one for each sbp2 device) */struct scsi_id_instance_data { /* * Various sbp2 specific structures */ struct sbp2_command_orb *last_orb; dma_addr_t last_orb_dma; struct sbp2_login_orb *login_orb; dma_addr_t login_orb_dma; struct sbp2_login_response *login_response; dma_addr_t login_response_dma; struct sbp2_query_logins_orb *query_logins_orb; dma_addr_t query_logins_orb_dma; struct sbp2_query_logins_response *query_logins_response; dma_addr_t query_logins_response_dma; struct sbp2_reconnect_orb *reconnect_orb; dma_addr_t reconnect_orb_dma; struct sbp2_logout_orb *logout_orb; dma_addr_t logout_orb_dma; struct sbp2_status_block status_block; /* * Stuff we need to know about the sbp2 device itself */ u64 sbp2_management_agent_addr; u64 sbp2_command_block_agent_addr; u32 speed_code; u32 max_payload_size; /* * Values pulled from the device's unit directory */ u32 sbp2_command_set_spec_id; u32 sbp2_command_set; u32 sbp2_unit_characteristics; u32 sbp2_device_type_and_lun; u32 sbp2_firmware_revision; /* * Variable used for logins, reconnects, logouts, query logins */ atomic_t sbp2_login_complete; /* * Pool of command orbs, so we can have more than overlapped command per id */ spinlock_t sbp2_command_orb_lock; struct list_head sbp2_command_orb_inuse; struct list_head sbp2_command_orb_completed; struct list_head scsi_list; /* Node entry, as retrieved from NodeMgr entries */ struct node_entry *ne; struct unit_directory *ud; /* A backlink to our host_info */ struct sbp2scsi_host_info *hi; /* SCSI related pointers */ struct scsi_device *sdev; struct Scsi_Host *scsi_host; /* Device specific workarounds/brokeness */ u32 workarounds;};/* Sbp2 host data structure (one per IEEE1394 host) */struct sbp2scsi_host_info { struct hpsb_host *host; /* IEEE1394 host */ struct list_head scsi_ids; /* List of scsi ids on this host */};/* * Function prototypes *//* * Various utility prototypes */static int sbp2util_create_command_orb_pool(struct scsi_id_instance_data *scsi_id);static void sbp2util_remove_command_orb_pool(struct scsi_id_instance_data *scsi_id);static struct sbp2_command_info *sbp2util_find_command_for_orb(struct scsi_id_instance_data *scsi_id, dma_addr_t orb);static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(struct scsi_id_instance_data *scsi_id, void *SCpnt);static struct sbp2_command_info *sbp2util_allocate_command_orb(struct scsi_id_instance_data *scsi_id, Scsi_Cmnd *Current_SCpnt, void (*Current_done)(Scsi_Cmnd *));static void sbp2util_mark_command_completed(struct scsi_id_instance_data *scsi_id, struct sbp2_command_info *command);static int sbp2_start_device(struct scsi_id_instance_data *scsi_id);static void sbp2_remove_device(struct scsi_id_instance_data *scsi_id);#ifdef CONFIG_IEEE1394_SBP2_PHYS_DMAstatic int sbp2_handle_physdma_write(struct hpsb_host *host, int nodeid, int destid, quadlet_t *data, u64 addr, size_t length, u16 flags);static int sbp2_handle_physdma_read(struct hpsb_host *host, int nodeid, quadlet_t *data, u64 addr, size_t length, u16 flags);#endif/* * SBP-2 protocol related prototypes */static int sbp2_query_logins(struct scsi_id_instance_data *scsi_id);static int sbp2_login_device(struct scsi_id_instance_data *scsi_id);static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id);static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id);static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, int destid, quadlet_t *data, u64 addr, size_t length, u16 flags);static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait);static int sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id, struct sbp2_command_info *command, unchar *scsi_cmd, unsigned int scsi_use_sg, unsigned int scsi_request_bufflen, void *scsi_request_buffer, unsigned char scsi_dir);static int sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id, struct sbp2_command_info *command);static int sbp2_send_command(struct scsi_id_instance_data *scsi_id, Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *));static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data);static void sbp2_check_sbp2_command(struct scsi_id_instance_data *scsi_id, unchar *cmd);static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id, Scsi_Cmnd *SCpnt);static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id, struct unit_directory *ud);static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id);static int sbp2_max_speed_and_size(struct scsi_id_instance_data *scsi_id);#endif /* SBP2_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -