2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-25 01:05:47 +03:00
|
|
|
// $Id$
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2011-09-25 22:49:20 +04:00
|
|
|
// Copyright (C) 2002-2011 The Bochs Project
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library 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
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
2009-02-08 12:05:52 +03:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2008-02-16 01:05:43 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
// shared code for the low-level cdrom support
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
// Define BX_PLUGGABLE in files that can be compiled into plugins. For
|
2008-01-27 01:24:03 +03:00
|
|
|
// platforms that require a special tag on exported symbols, BX_PLUGGABLE
|
2002-10-25 01:07:56 +04:00
|
|
|
// is used to know when we are exporting symbols and when we are importing.
|
|
|
|
#define BX_PLUGGABLE
|
|
|
|
|
2004-09-05 14:30:19 +04:00
|
|
|
#include "bochs.h"
|
2002-11-19 08:47:45 +03:00
|
|
|
#if BX_SUPPORT_CDROM
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-09-05 14:30:19 +04:00
|
|
|
#include "cdrom.h"
|
|
|
|
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
#define LOG_THIS /* no SMF tricks here, not needed */
|
|
|
|
|
2002-11-20 15:23:42 +03:00
|
|
|
#define BX_CD_FRAMESIZE 2048
|
2002-11-01 19:36:27 +03:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
bx_bool cdrom_interface::create_toc(Bit8u* buf, int* length, bx_bool msf, int start_track, int format)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-01-19 21:21:40 +03:00
|
|
|
unsigned i;
|
2011-10-03 11:23:44 +04:00
|
|
|
Bit32u blocks;
|
|
|
|
int len = 4;
|
2004-08-23 13:39:45 +04:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
switch (format) {
|
|
|
|
case 0:
|
|
|
|
// From atapi specs : start track can be 0-63, AA
|
|
|
|
if ((start_track > 1) && (start_track != 0xaa))
|
|
|
|
return 0;
|
2004-08-23 13:39:45 +04:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
buf[2] = 1;
|
|
|
|
buf[3] = 1;
|
2002-07-30 10:25:57 +04:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
if (start_track <= 1) {
|
2004-08-23 13:39:45 +04:00
|
|
|
buf[len++] = 0; // Reserved
|
2011-10-03 11:23:44 +04:00
|
|
|
buf[len++] = 0x14; // ADR, control
|
|
|
|
buf[len++] = 1; // Track number
|
2004-08-23 13:39:45 +04:00
|
|
|
buf[len++] = 0; // Reserved
|
|
|
|
|
|
|
|
// Start address
|
|
|
|
if (msf) {
|
|
|
|
buf[len++] = 0; // reserved
|
2011-10-03 11:23:44 +04:00
|
|
|
buf[len++] = 0; // minute
|
|
|
|
buf[len++] = 2; // second
|
|
|
|
buf[len++] = 0; // frame
|
2004-08-23 13:39:45 +04:00
|
|
|
} else {
|
2011-10-03 11:23:44 +04:00
|
|
|
buf[len++] = 0;
|
|
|
|
buf[len++] = 0;
|
|
|
|
buf[len++] = 0;
|
|
|
|
buf[len++] = 0; // logical sector 0
|
2004-08-23 13:39:45 +04:00
|
|
|
}
|
2011-10-03 11:23:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Lead out track
|
|
|
|
buf[len++] = 0; // Reserved
|
|
|
|
buf[len++] = 0x16; // ADR, control
|
|
|
|
buf[len++] = 0xaa; // Track number
|
|
|
|
buf[len++] = 0; // Reserved
|
2004-08-23 13:39:45 +04:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
blocks = capacity();
|
|
|
|
|
|
|
|
// Start address
|
|
|
|
if (msf) {
|
|
|
|
buf[len++] = 0; // reserved
|
|
|
|
buf[len++] = (Bit8u)(((blocks + 150) / 75) / 60); // minute
|
|
|
|
buf[len++] = (Bit8u)(((blocks + 150) / 75) % 60); // second
|
|
|
|
buf[len++] = (Bit8u)((blocks + 150) % 75); // frame;
|
|
|
|
} else {
|
|
|
|
buf[len++] = (blocks >> 24) & 0xff;
|
|
|
|
buf[len++] = (blocks >> 16) & 0xff;
|
|
|
|
buf[len++] = (blocks >> 8) & 0xff;
|
|
|
|
buf[len++] = (blocks >> 0) & 0xff;
|
|
|
|
}
|
|
|
|
buf[0] = ((len-2) >> 8) & 0xff;
|
|
|
|
buf[1] = (len-2) & 0xff;
|
|
|
|
break;
|
2002-07-30 10:25:57 +04:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
case 1:
|
|
|
|
// multi session stuff - emulate a single session only
|
|
|
|
buf[0] = 0;
|
|
|
|
buf[1] = 0x0a;
|
|
|
|
buf[2] = 1;
|
|
|
|
buf[3] = 1;
|
|
|
|
for (i = 0; i < 8; i++)
|
|
|
|
buf[4+i] = 0;
|
|
|
|
len = 12;
|
|
|
|
break;
|
2005-11-01 22:10:24 +03:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
case 2:
|
|
|
|
// raw toc - emulate a single session only (ported from qemu)
|
|
|
|
buf[2] = 1;
|
|
|
|
buf[3] = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
buf[len++] = 1;
|
|
|
|
buf[len++] = 0x14;
|
|
|
|
buf[len++] = 0;
|
|
|
|
if (i < 3) {
|
|
|
|
buf[len++] = 0xa0 + i;
|
|
|
|
} else {
|
|
|
|
buf[len++] = 1;
|
|
|
|
}
|
|
|
|
buf[len++] = 0;
|
|
|
|
buf[len++] = 0;
|
|
|
|
buf[len++] = 0;
|
|
|
|
if (i < 2) {
|
|
|
|
buf[len++] = 0;
|
2005-11-01 22:10:24 +03:00
|
|
|
buf[len++] = 1;
|
|
|
|
buf[len++] = 0;
|
2011-10-03 11:23:44 +04:00
|
|
|
buf[len++] = 0;
|
|
|
|
} else if (i == 2) {
|
|
|
|
blocks = capacity();
|
|
|
|
if (msf) {
|
|
|
|
buf[len++] = 0; // reserved
|
|
|
|
buf[len++] = (Bit8u)(((blocks + 150) / 75) / 60); // minute
|
|
|
|
buf[len++] = (Bit8u)(((blocks + 150) / 75) % 60); // second
|
|
|
|
buf[len++] = (Bit8u)((blocks + 150) % 75); // frame;
|
2005-11-01 22:10:24 +03:00
|
|
|
} else {
|
2011-10-03 11:23:44 +04:00
|
|
|
buf[len++] = (blocks >> 24) & 0xff;
|
|
|
|
buf[len++] = (blocks >> 16) & 0xff;
|
|
|
|
buf[len++] = (blocks >> 8) & 0xff;
|
|
|
|
buf[len++] = (blocks >> 0) & 0xff;
|
2005-11-01 22:10:24 +03:00
|
|
|
}
|
2011-10-03 11:23:44 +04:00
|
|
|
} else {
|
|
|
|
buf[len++] = 0;
|
2005-11-01 22:10:24 +03:00
|
|
|
buf[len++] = 0;
|
|
|
|
buf[len++] = 0;
|
|
|
|
buf[len++] = 0;
|
2008-01-27 01:24:03 +03:00
|
|
|
}
|
2001-05-16 21:39:07 +04:00
|
|
|
}
|
2011-10-03 11:23:44 +04:00
|
|
|
buf[0] = ((len-2) >> 8) & 0xff;
|
|
|
|
buf[1] = (len-2) & 0xff;
|
2002-11-01 19:36:27 +03:00
|
|
|
break;
|
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
default:
|
|
|
|
BX_PANIC(("cdrom: create_toc(): unknown format"));
|
|
|
|
return 0;
|
2002-11-01 19:36:27 +03:00
|
|
|
}
|
2005-11-02 23:26:24 +03:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
*length = len;
|
2001-06-19 01:11:46 +04:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
return 1;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2001-06-19 01:11:46 +04:00
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
bx_bool cdrom_interface::seek(Bit32u lba)
|
2005-12-27 16:21:25 +03:00
|
|
|
{
|
|
|
|
unsigned char buffer[BX_CD_FRAMESIZE];
|
|
|
|
|
2011-10-03 11:23:44 +04:00
|
|
|
return read_block(buffer, lba, BX_CD_FRAMESIZE);
|
2005-12-27 16:21:25 +03:00
|
|
|
}
|
|
|
|
|
2002-11-19 08:47:45 +03:00
|
|
|
#endif /* if BX_SUPPORT_CDROM */
|