1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
/* Copyright 2004-2005 Lucas Newman
Copyright 2004-2005 Theo Berkau
Copyright 2005 Weston Yager
Copyright 2006-2008 Guillaume Duhamel
Copyright 2010 Lawrence Sebald
This file is part of Yabause.
Yabause 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.
Yabause 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 Yabause; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <paths.h>
#include <sys/param.h>
#include <IOKit/IOKitLib.h>
#include <IOKit/IOBSD.h>
#include <IOKit/storage/IOMediaBSDClient.h>
#include <IOKit/storage/IOMedia.h>
#include <IOKit/storage/IOCDTypes.h>
#include <IOKit/storage/IOCDMedia.h>
#include <CoreFoundation/CoreFoundation.h>
#include <util.h>
#include "cdbase.h"
static int MacOSXCDInit(const char *);
static void MacOSXCDDeInit(void);
static int MacOSXCDGetStatus(void);
static s32 MacOSXCDReadTOC(u32 *);
static int MacOSXCDReadSectorFAD(u32, void *);
static void MacOSXCDReadAheadFAD(u32);
CDInterface ArchCD = {
CDCORE_ARCH,
"MacOSX CD Drive",
MacOSXCDInit,
MacOSXCDDeInit,
MacOSXCDGetStatus,
MacOSXCDReadTOC,
MacOSXCDReadSectorFAD,
MacOSXCDReadAheadFAD,
};
static int hCDROM;
static int MacOSXCDInit(const char * useless_for_now)
{
CFMutableDictionaryRef classesToMatch;
io_iterator_t mediaIterator;
io_object_t media;
char cdrom_name[ MAXPATHLEN ];
classesToMatch = IOServiceMatching(kIOCDMediaClass);
CFDictionarySetValue(classesToMatch, CFSTR(kIOMediaEjectableKey),
kCFBooleanTrue);
IOServiceGetMatchingServices(kIOMasterPortDefault,
classesToMatch, &mediaIterator);
media = IOIteratorNext(mediaIterator);
if(media)
{
CFTypeRef path;
path = IORegistryEntryCreateCFProperty(media,
CFSTR(kIOBSDNameKey),
kCFAllocatorDefault, 0);
if (path)
{
size_t length;
strcpy(cdrom_name, _PATH_DEV);
strcat(cdrom_name, "r");
length = strlen(cdrom_name);
CFStringGetCString(path, cdrom_name + length,
MAXPATHLEN - length, kCFStringEncodingUTF8);
CFRelease(path);
}
IOObjectRelease(media);
}
if ((hCDROM = open(cdrom_name, O_RDONLY)) == -1)
{
return -1;
}
return 0;
}
static void MacOSXCDDeInit(void)
{
if (hCDROM != -1)
{
close(hCDROM);
}
}
static CDTOC * GetTOCFromCDPath(void)
{
CFMutableDictionaryRef classesToMatch;
io_iterator_t mediaIterator;
io_object_t media;
CDTOC * TOC;
classesToMatch = IOServiceMatching(kIOCDMediaClass);
CFDictionarySetValue(classesToMatch, CFSTR(kIOMediaEjectableKey),
kCFBooleanTrue);
IOServiceGetMatchingServices(kIOMasterPortDefault,
classesToMatch, &mediaIterator);
media = IOIteratorNext(mediaIterator);
if(media)
{
CFDataRef TOCData = IORegistryEntryCreateCFProperty(media, CFSTR(kIOCDMediaTOCKey), kCFAllocatorDefault, 0);
TOC = malloc(CFDataGetLength(TOCData));
CFDataGetBytes(TOCData,CFRangeMake(0,CFDataGetLength(TOCData)),(UInt8 *)TOC);
CFRelease(TOCData);
IOObjectRelease(media);
}
return TOC;
}
static s32 MacOSXCDReadTOC(u32 *TOC)
{
int add150 = 150, tracks = 0;
u_char track;
int i, fad = 0;
CDTOC *cdTOC = GetTOCFromCDPath();
CDTOCDescriptor *pTrackDescriptors;
pTrackDescriptors = cdTOC->descriptors;
memset(TOC, 0xFF, 0xCC * 2);
/* Convert TOC to Saturn format */
for( i = 3; i < CDTOCGetDescriptorCount(cdTOC); i++ ) {
track = pTrackDescriptors[i].point;
fad = CDConvertMSFToLBA(pTrackDescriptors[i].p) + add150;
if ((track > 99) || (track < 1))
continue;
TOC[i-3] = (pTrackDescriptors[i].control << 28 | pTrackDescriptors[i].adr << 24 | fad);
tracks++;
}
/* First */
TOC[99] = pTrackDescriptors[0].control << 28 | pTrackDescriptors[0].adr << 24 | 1 << 16;
/* Last */
TOC[100] = pTrackDescriptors[1].control << 28 | pTrackDescriptors[1].adr << 24 | tracks << 16;
/* Leadout */
TOC[101] = pTrackDescriptors[2].control << 28 | pTrackDescriptors[2].adr << 24 | CDConvertMSFToLBA(pTrackDescriptors[2].p) + add150;
//free(cdTOC); Looks like this is not need, will look into that.
return (0xCC * 2);
}
static int MacOSXCDGetStatus(void)
{
// 0 - CD Present, disc spinning
// 1 - CD Present, disc not spinning
// 2 - CD not present
// 3 - Tray open
// see ../windows/cd.cc for more info
//Return that disc is present and spinning. 2 and 3 can't happen in the mac port, i don't understand what "not spinning" is supposed to say
return 0;
}
static int MacOSXCDReadSectorFAD(u32 FAD, void *buffer)
{
const int blockSize = 2352;
#ifdef CRAB_REWRITE
const int cacheBlocks = 32;
static u8 cache[blockSize * cacheBlocks];
static u32 cacheFAD = 0xFFFFFF00;
#endif
if (hCDROM != -1)
{
#ifdef CRAB_REWRITE
/* See if the block we are looking for is in the cache already... */
if(FAD < cacheFAD || FAD >= cacheFAD + cacheBlocks) {
/* Cache miss, read some blocks from the cd, then we'll hit the
cache below. */
if(!pread(hCDROM, cache, blockSize * cacheBlocks,
(FAD - 150) * blockSize)) {
return 0;
}
cacheFAD = FAD;
}
/* Cache hit, copy the block out. */
memcpy(buffer, cache + (blockSize * (FAD - cacheFAD)), blockSize);
return 1;
#else
if (pread(hCDROM, buffer, blockSize, (FAD - 150) * blockSize))
return true;
#endif
}
return false;
}
static void MacOSXCDReadAheadFAD(UNUSED u32 FAD)
{
// No-op
}
|