mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
4.1 KiB
134 lines
4.1 KiB
/*****************************************************************************
|
|
*
|
|
* COPYRIGHT 1993 - COLORADO MEMORY SYSTEMS, INC.
|
|
* ALL RIGHTS RESERVED.
|
|
*
|
|
******************************************************************************
|
|
*
|
|
* FILE: \SE\DRIVER\DEVICE\JUMBO\SRC\0X11040.C
|
|
*
|
|
* FUNCTION: cqd_CmdSelectDevice
|
|
*
|
|
* PURPOSE: Select the tape drive by making the select line active (low).
|
|
*
|
|
* HISTORY:
|
|
* $Log: J:\se.vcs\driver\q117cd\src\0x11040.c $
|
|
*
|
|
* Rev 1.6 15 May 1995 10:47:52 GaryKiwi
|
|
* Phoenix merge from CBW95s
|
|
*
|
|
* Rev 1.5.1.0 11 Apr 1995 18:04:28 garykiwi
|
|
* PHOENIX pass #1
|
|
*
|
|
* Rev 1.6 30 Jan 1995 14:23:32 BOBLEHMA
|
|
* Changed vendors to VENDOR_ARCHIVE_CONNER and VENDOR_MOUNTAIN_SUMMIT.
|
|
*
|
|
* Rev 1.5 08 Dec 1994 11:34:44 BOBLEHMA
|
|
* Added a check for seld to the if statement. This allows seld selects to send
|
|
* step pulses to the FDC (if a CMS drive is connected). This changed was added
|
|
* to support the Machete chips set used in Zeos computers.
|
|
*
|
|
* Rev 1.4 11 Jan 1994 14:44:24 KEVINKES
|
|
* Changed kdi_wt004ms to INTERVAL_CMD.
|
|
*
|
|
* Rev 1.3 11 Nov 1993 15:20:54 KEVINKES
|
|
* Changed calls to cqd_inp and cqd_outp to kdi_ReadPort and kdi_WritePort.
|
|
* Modified the parameters to these calls. Changed FDC commands to be
|
|
* defines.
|
|
*
|
|
* Rev 1.2 08 Nov 1993 14:05:54 KEVINKES
|
|
* Removed all bit-field structures, removed all enumerated types, changed
|
|
* all defines to uppercase, and removed all signed data types wherever
|
|
* possible.
|
|
*
|
|
* Rev 1.1 25 Oct 1993 14:39:22 KEVINKES
|
|
* Changed kdi_wt2ticks to kdi_wt004ms.
|
|
*
|
|
* Rev 1.0 18 Oct 1993 17:25:34 KEVINKES
|
|
* Initial Revision.
|
|
*
|
|
*****************************************************************************/
|
|
#define FCT_ID 0x11040
|
|
#include "include\public\adi_api.h"
|
|
#include "include\public\frb_api.h"
|
|
#include "include\public\vendor.h"
|
|
#include "include\private\kdi_pub.h"
|
|
#include "include\private\cqd_pub.h"
|
|
#include "q117cd\include\cqd_defs.h"
|
|
#include "q117cd\include\cqd_strc.h"
|
|
#include "q117cd\include\cqd_hdr.h"
|
|
/*endinclude*/
|
|
|
|
dStatus cqd_CmdSelectDevice
|
|
(
|
|
/* INPUT PARAMETERS: */
|
|
|
|
CqdContextPtr cqd_context
|
|
|
|
/* UPDATE PARAMETERS: */
|
|
|
|
/* OUTPUT PARAMETERS: */
|
|
|
|
)
|
|
/* COMMENTS: *****************************************************************
|
|
*
|
|
* DEFINITIONS: *************************************************************/
|
|
{
|
|
|
|
/* DATA: ********************************************************************/
|
|
|
|
dStatus status=DONT_PANIC; /* dStatus or error condition.*/
|
|
|
|
/* CODE: ********************************************************************/
|
|
|
|
if (cqd_context->selected == dFALSE) {
|
|
|
|
kdi_WritePort(
|
|
cqd_context->kdi_context,
|
|
cqd_context->controller_data.fdc_addr.dor,
|
|
cqd_context->device_cfg.select_byte);
|
|
|
|
if ((cqd_context->device_cfg.select_byte == seld ||
|
|
cqd_context->device_cfg.select_byte == selu ||
|
|
cqd_context->device_cfg.select_byte == selub) &&
|
|
cqd_context->device_cfg.drive_select != curb) {
|
|
|
|
//
|
|
// the new Iomega uses the CMS drive select scheme
|
|
//
|
|
if ((cqd_context->device_descriptor.vendor == VENDOR_IOMEGA &&
|
|
cqd_context->device_descriptor.model == MODEL_IOMEGA_QIC3020) ||
|
|
cqd_context->device_descriptor.vendor == VENDOR_CMS) {
|
|
|
|
if ((status = cqd_SendByte(cqd_context, FW_CMD_SELECT_DRIVE)) == DONT_PANIC) {
|
|
|
|
kdi_Sleep(cqd_context->kdi_context, INTERVAL_CMD, dFALSE);
|
|
status = cqd_SendByte(cqd_context,
|
|
(dUByte)(cqd_context->device_cfg.drive_id + CMD_OFFSET));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((status == DONT_PANIC) &&
|
|
(cqd_context->device_descriptor.vendor == VENDOR_MOUNTAIN_SUMMIT ||
|
|
cqd_context->device_descriptor.vendor == VENDOR_ARCHIVE_CONNER ||
|
|
cqd_context->device_descriptor.vendor == VENDOR_CORE)) {
|
|
|
|
status = cqd_ConnerPreamble(cqd_context, dTRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (status == DONT_PANIC) {
|
|
|
|
cqd_context->selected = dTRUE;
|
|
|
|
}
|
|
|
|
kdi_Sleep(cqd_context->kdi_context, INTERVAL_CMD, dFALSE);
|
|
}
|
|
|
|
return status;
|
|
}
|