2004-04-30 09:59:54 +00:00
|
|
|
|
/*
|
2005-07-23 22:24:04 +00:00
|
|
|
|
$Id: freebsd_cam.c,v 1.10 2005/07/23 22:24:04 rocky Exp $
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2005-01-24 00:06:31 +00:00
|
|
|
|
Copyright (C) 2004, 2005 Rocky Bernstein <rocky@panix.com>
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* This file contains FreeBSD-specific code and implements low-level
|
|
|
|
|
|
control of the CD drive via SCSI emulation.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
|
# include "config.h"
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2005-07-23 22:24:04 +00:00
|
|
|
|
static const char _rcsid[] = "$Id: freebsd_cam.c,v 1.10 2005/07/23 22:24:04 rocky Exp $";
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_FREEBSD_CDROM
|
|
|
|
|
|
|
|
|
|
|
|
#include "freebsd.h"
|
2005-02-07 03:36:01 +00:00
|
|
|
|
#include <cdio/mmc.h>
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
/* Default value in seconds we will wait for a command to
|
|
|
|
|
|
complete. */
|
2004-07-28 01:09:59 +00:00
|
|
|
|
#define DEFAULT_TIMEOUT_MSECS 10000
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Run a SCSI MMC command.
|
|
|
|
|
|
|
|
|
|
|
|
p_user_data internal CD structure.
|
2004-08-01 11:28:00 +00:00
|
|
|
|
i_timeout_ms time in milliseconds we will wait for the command
|
2004-07-24 05:42:09 +00:00
|
|
|
|
to complete. If this value is -1, use the default
|
|
|
|
|
|
time-out value.
|
|
|
|
|
|
i_cdb Size of p_cdb
|
|
|
|
|
|
p_cdb CDB bytes.
|
|
|
|
|
|
e_direction direction the transfer is to go.
|
|
|
|
|
|
i_buf Size of buffer
|
|
|
|
|
|
p_buf Buffer for data, both sending and receiving
|
|
|
|
|
|
|
|
|
|
|
|
Return 0 if no error.
|
|
|
|
|
|
*/
|
2004-07-24 11:50:50 +00:00
|
|
|
|
int
|
2005-02-06 11:13:37 +00:00
|
|
|
|
run_mmc_cmd_freebsd_cam( const void *p_user_data, unsigned int i_timeout_ms,
|
|
|
|
|
|
unsigned int i_cdb, const scsi_mmc_cdb_t *p_cdb,
|
|
|
|
|
|
scsi_mmc_direction_t e_direction,
|
|
|
|
|
|
unsigned int i_buf, /*in/out*/ void *p_buf )
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
2004-07-24 05:42:09 +00:00
|
|
|
|
const _img_private_t *p_env = p_user_data;
|
|
|
|
|
|
int i_status;
|
2004-08-07 09:42:34 +00:00
|
|
|
|
int direction = CAM_DEV_QFRZDIS;
|
2004-07-24 05:42:09 +00:00
|
|
|
|
union ccb ccb;
|
|
|
|
|
|
|
2004-07-25 09:39:40 +00:00
|
|
|
|
if (!p_env || !p_env->cam) return -2;
|
|
|
|
|
|
|
2004-08-01 11:51:20 +00:00
|
|
|
|
memset(&ccb, 0, sizeof(ccb));
|
2004-08-01 11:36:35 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
ccb.ccb_h.path_id = p_env->cam->path_id;
|
|
|
|
|
|
ccb.ccb_h.target_id = p_env->cam->target_id;
|
|
|
|
|
|
ccb.ccb_h.target_lun = p_env->cam->target_lun;
|
2004-08-01 11:28:00 +00:00
|
|
|
|
ccb.ccb_h.timeout = i_timeout_ms;
|
2004-07-24 05:42:09 +00:00
|
|
|
|
|
2005-04-05 02:13:58 +00:00
|
|
|
|
if (!i_buf)
|
|
|
|
|
|
direction |= CAM_DIR_NONE;
|
|
|
|
|
|
else
|
|
|
|
|
|
direction |= (e_direction == SCSI_MMC_DATA_READ)?CAM_DIR_IN : CAM_DIR_OUT;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
memcpy(ccb.csio.cdb_io.cdb_bytes, p_cdb->field, i_cdb);
|
|
|
|
|
|
ccb.csio.cdb_len =
|
|
|
|
|
|
mmc_get_cmd_len(ccb.csio.cdb_io.cdb_bytes[0]);
|
|
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
cam_fill_csio (&(ccb.csio), 1, NULL,
|
2004-08-07 09:42:34 +00:00
|
|
|
|
direction | CAM_DEV_QFRZDIS, MSG_SIMPLE_Q_TAG, p_buf, i_buf,
|
2005-04-05 02:13:58 +00:00
|
|
|
|
sizeof(ccb.csio.sense_data), ccb.csio.cdb_len, 30*1000);
|
2004-07-24 05:42:09 +00:00
|
|
|
|
|
2005-05-08 10:10:18 +00:00
|
|
|
|
if (cam_send_ccb(p_env->cam, &ccb) < 0)
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
2005-05-08 10:10:18 +00:00
|
|
|
|
cdio_warn ("transport failed: %s", strerror(errno));
|
2004-04-30 09:59:54 +00:00
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
2004-07-24 05:42:09 +00:00
|
|
|
|
if ((ccb.ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP)
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
errno = EIO;
|
2004-07-24 05:42:09 +00:00
|
|
|
|
i_status = ERRCODE(((unsigned char *)&ccb.csio.sense_data));
|
|
|
|
|
|
if (i_status == 0)
|
|
|
|
|
|
i_status = -1;
|
2004-04-30 09:59:54 +00:00
|
|
|
|
else
|
2004-07-24 05:42:09 +00:00
|
|
|
|
CREAM_ON_ERRNO(((unsigned char *)&ccb.csio.sense_data));
|
|
|
|
|
|
cdio_warn ("transport failed: %d", i_status);
|
|
|
|
|
|
return i_status;
|
2004-04-30 09:59:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
2004-07-24 05:42:09 +00:00
|
|
|
|
init_freebsd_cam (_img_private_t *p_env)
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
|
|
|
|
|
char pass[100];
|
|
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
p_env->cam=NULL;
|
|
|
|
|
|
memset (&p_env->ccb, 0, sizeof(p_env->ccb));
|
|
|
|
|
|
p_env->ccb.ccb_h.func_code = XPT_GDEVLIST;
|
2004-05-08 14:11:05 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
if (-1 == p_env->gen.fd)
|
|
|
|
|
|
p_env->gen.fd = open (p_env->device, O_RDONLY, 0);
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
if (p_env->gen.fd < 0)
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
2004-07-24 05:42:09 +00:00
|
|
|
|
cdio_warn ("open (%s): %s", p_env->device, strerror (errno));
|
2004-04-30 09:59:54 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
if (ioctl (p_env->gen.fd, CAMGETPASSTHRU, &p_env->ccb) < 0)
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
2004-06-25 20:49:56 +00:00
|
|
|
|
cdio_warn ("open: %s", strerror (errno));
|
2004-04-30 09:59:54 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
sprintf (pass,"/dev/%.15s%u",
|
2004-07-24 05:42:09 +00:00
|
|
|
|
p_env->ccb.cgdl.periph_name,
|
|
|
|
|
|
p_env->ccb.cgdl.unit_number);
|
|
|
|
|
|
p_env->cam = cam_open_pass (pass,O_RDWR,NULL);
|
2004-07-25 09:39:40 +00:00
|
|
|
|
if (!p_env->cam) return false;
|
|
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
p_env->gen.init = true;
|
|
|
|
|
|
p_env->b_cam_init = true;
|
2004-04-30 09:59:54 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2004-05-31 12:05:12 +00:00
|
|
|
|
free_freebsd_cam (void *user_data)
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
2004-07-24 05:42:09 +00:00
|
|
|
|
_img_private_t *p_env = user_data;
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
if (NULL == p_env) return;
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
if (p_env->gen.fd > 0)
|
|
|
|
|
|
close (p_env->gen.fd);
|
|
|
|
|
|
p_env->gen.fd = -1;
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
if(p_env->cam)
|
|
|
|
|
|
cam_close_device(p_env->cam);
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
free (p_env);
|
2004-04-30 09:59:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2005-01-27 04:00:48 +00:00
|
|
|
|
driver_return_code_t
|
2004-07-24 05:42:09 +00:00
|
|
|
|
read_mode2_sector_freebsd_cam (_img_private_t *p_env, void *data, lsn_t lsn,
|
2004-06-05 02:47:49 +00:00
|
|
|
|
bool b_form2)
|
|
|
|
|
|
{
|
|
|
|
|
|
if ( b_form2 )
|
2004-07-24 05:42:09 +00:00
|
|
|
|
return read_mode2_sectors_freebsd_cam(p_env, data, lsn, 1);
|
2004-06-05 02:47:49 +00:00
|
|
|
|
else {
|
|
|
|
|
|
/* Need to pick out the data portion from a mode2 form2 frame */
|
|
|
|
|
|
char buf[M2RAW_SECTOR_SIZE] = { 0, };
|
2004-07-24 05:42:09 +00:00
|
|
|
|
int retval = read_mode2_sectors_freebsd_cam(p_env, buf, lsn, 1);
|
2004-06-05 02:47:49 +00:00
|
|
|
|
if ( retval ) return retval;
|
|
|
|
|
|
memcpy (((char *)data), buf + CDIO_CD_SUBHEADER_SIZE, CDIO_CD_FRAMESIZE);
|
2005-01-24 00:06:31 +00:00
|
|
|
|
return DRIVER_OP_SUCCESS;
|
2004-06-05 02:47:49 +00:00
|
|
|
|
}
|
2004-04-30 09:59:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Reads nblocks of mode2 sectors from cd device into data starting
|
|
|
|
|
|
from lsn.
|
|
|
|
|
|
Returns 0 if no error.
|
|
|
|
|
|
*/
|
2004-04-30 09:59:54 +00:00
|
|
|
|
int
|
2004-07-24 05:42:09 +00:00
|
|
|
|
read_mode2_sectors_freebsd_cam (_img_private_t *p_env, void *p_buf,
|
|
|
|
|
|
lsn_t lsn, unsigned int nblocks)
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
2004-07-24 05:42:09 +00:00
|
|
|
|
scsi_mmc_cdb_t cdb = {{0, }};
|
2004-05-05 02:39:16 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
bool b_read_10 = false;
|
2004-05-05 02:39:16 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
CDIO_MMC_SET_READ_LBA(cdb.field, lsn);
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
if (b_read_10) {
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
2004-07-28 11:45:21 +00:00
|
|
|
|
CDIO_MMC_SET_COMMAND(cdb.field, CDIO_MMC_GPCMD_READ_10);
|
|
|
|
|
|
CDIO_MMC_SET_READ_LENGTH16(cdb.field, nblocks);
|
2005-02-06 11:13:37 +00:00
|
|
|
|
if ((retval = mmc_set_blocksize (p_env->gen.cdio, M2RAW_SECTOR_SIZE)))
|
2004-07-24 05:42:09 +00:00
|
|
|
|
return retval;
|
|
|
|
|
|
|
2005-02-06 11:13:37 +00:00
|
|
|
|
if ((retval = run_mmc_cmd_freebsd_cam (p_env, 0,
|
|
|
|
|
|
mmc_get_cmd_len(cdb.field[0]),
|
|
|
|
|
|
&cdb,
|
|
|
|
|
|
SCSI_MMC_DATA_READ,
|
|
|
|
|
|
M2RAW_SECTOR_SIZE * nblocks,
|
|
|
|
|
|
p_buf)))
|
2004-07-24 05:42:09 +00:00
|
|
|
|
{
|
2005-02-06 11:13:37 +00:00
|
|
|
|
mmc_set_blocksize (p_env->gen.cdio, CDIO_CD_FRAMESIZE);
|
2004-07-24 05:42:09 +00:00
|
|
|
|
return retval;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2005-02-06 11:13:37 +00:00
|
|
|
|
return mmc_set_blocksize (p_env->gen.cdio, CDIO_CD_FRAMESIZE);
|
2005-01-24 00:06:31 +00:00
|
|
|
|
} else {
|
2004-07-28 11:45:21 +00:00
|
|
|
|
CDIO_MMC_SET_COMMAND(cdb.field, CDIO_MMC_GPCMD_READ_CD);
|
|
|
|
|
|
CDIO_MMC_SET_READ_LENGTH24(cdb.field, nblocks);
|
|
|
|
|
|
cdb.field[1] = 0; /* sector size mode2 */
|
|
|
|
|
|
cdb.field[9] = 0x58; /* 2336 mode2 */
|
2005-02-06 11:13:37 +00:00
|
|
|
|
return run_mmc_cmd_freebsd_cam (p_env, 0,
|
|
|
|
|
|
mmc_get_cmd_len(cdb.field[0]),
|
|
|
|
|
|
&cdb,
|
|
|
|
|
|
SCSI_MMC_DATA_READ,
|
|
|
|
|
|
M2RAW_SECTOR_SIZE * nblocks, p_buf);
|
2005-01-24 00:06:31 +00:00
|
|
|
|
|
2004-04-30 09:59:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
/*!
|
2005-07-23 22:24:04 +00:00
|
|
|
|
Eject media in CD-ROM drive. Return DRIVER_OP_SUCCESS if successful,
|
|
|
|
|
|
DRIVER_OP_ERROR on error.
|
2004-07-24 05:42:09 +00:00
|
|
|
|
*/
|
2005-07-23 22:24:04 +00:00
|
|
|
|
driver_return_code_t
|
2004-07-24 05:42:09 +00:00
|
|
|
|
eject_media_freebsd_cam (_img_private_t *p_env)
|
2004-04-30 09:59:54 +00:00
|
|
|
|
{
|
2004-07-24 05:42:09 +00:00
|
|
|
|
int i_status;
|
2005-02-06 13:05:42 +00:00
|
|
|
|
scsi_mmc_cdb_t cdb = {{0, }};
|
2004-07-24 05:42:09 +00:00
|
|
|
|
uint8_t buf[1];
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
CDIO_MMC_SET_COMMAND(cdb.field, CDIO_MMC_GPCMD_ALLOW_MEDIUM_REMOVAL);
|
|
|
|
|
|
|
2005-02-06 11:13:37 +00:00
|
|
|
|
i_status = run_mmc_cmd_freebsd_cam (p_env, DEFAULT_TIMEOUT_MSECS,
|
|
|
|
|
|
mmc_get_cmd_len(cdb.field[0]),
|
|
|
|
|
|
&cdb, SCSI_MMC_DATA_WRITE, 0, &buf);
|
2005-01-24 00:06:31 +00:00
|
|
|
|
if (i_status) return i_status;
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2005-04-05 02:13:58 +00:00
|
|
|
|
CDIO_MMC_SET_COMMAND(cdb.field, CDIO_MMC_GPCMD_START_STOP);
|
2004-07-24 05:42:09 +00:00
|
|
|
|
cdb.field[4] = 1;
|
2005-02-06 11:13:37 +00:00
|
|
|
|
i_status = run_mmc_cmd_freebsd_cam (p_env, DEFAULT_TIMEOUT_MSECS,
|
|
|
|
|
|
mmc_get_cmd_len(cdb.field[0]), &cdb,
|
2004-07-24 05:42:09 +00:00
|
|
|
|
SCSI_MMC_DATA_WRITE, 0, &buf);
|
2005-01-24 00:06:31 +00:00
|
|
|
|
if (i_status) return i_status;
|
2004-04-30 09:59:54 +00:00
|
|
|
|
|
2004-07-24 05:42:09 +00:00
|
|
|
|
CDIO_MMC_SET_COMMAND(cdb.field, CDIO_MMC_GPCMD_START_STOP);
|
|
|
|
|
|
cdb.field[4] = 2; /* eject */
|
|
|
|
|
|
|
2005-02-06 11:13:37 +00:00
|
|
|
|
return run_mmc_cmd_freebsd_cam (p_env, DEFAULT_TIMEOUT_MSECS,
|
|
|
|
|
|
mmc_get_cmd_len(cdb.field[0]),
|
|
|
|
|
|
&cdb,
|
|
|
|
|
|
SCSI_MMC_DATA_WRITE, 0, &buf);
|
2004-04-30 09:59:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* HAVE_FREEBSD_CDROM */
|