Loading...
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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | /* * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* IOMemoryCursor.cpp created by wgulland on 1999-3-02 */ #include <IOKit/assert.h> #include <IOKit/IOLib.h> #include <IOKit/IOMemoryCursor.h> #include <IOKit/IOMemoryDescriptor.h> #include <libkern/OSByteOrder.h> /**************************** class IOMemoryCursor ***************************/ #undef super #define super OSObject OSDefineMetaClassAndStructors(IOMemoryCursor, OSObject) IOMemoryCursor * IOMemoryCursor::withSpecification(SegmentFunction inSegFunc, IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { IOMemoryCursor * me = new IOMemoryCursor; if (me && !me->initWithSpecification(inSegFunc, inMaxSegmentSize, inMaxTransferSize, inAlignment)) { me->release(); return 0; } return me; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ bool IOMemoryCursor::initWithSpecification(SegmentFunction inSegFunc, IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { if (!super::init()) return false; if (!inSegFunc) return false; outSeg = inSegFunc; maxSegmentSize = inMaxSegmentSize; if (inMaxTransferSize) maxTransferSize = inMaxTransferSize; else maxTransferSize = (IOPhysicalLength) -1; alignMask = inAlignment - 1; assert(alignMask == 0); // No alignment code yet! return true; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ UInt32 IOMemoryCursor::genPhysicalSegments(IOMemoryDescriptor *inDescriptor, IOPhysicalLength fromPosition, void * inSegments, UInt32 inMaxSegments, UInt32 inMaxTransferSize, IOByteCount *outTransferSize) { if (!inDescriptor) return 0; if (!inMaxSegments) return 0; if (!inMaxTransferSize) inMaxTransferSize = maxTransferSize; /* * Iterate over the packet, translating segments where allowed * * If we finished cleanly return number of segments found * and update the position in the descriptor. */ UInt curSegIndex = 0; UInt curTransferSize = 0; PhysicalSegment seg; while ((curSegIndex < inMaxSegments) && (curTransferSize < inMaxTransferSize) && (seg.location = inDescriptor->getPhysicalSegment( fromPosition + curTransferSize, &seg.length))) { assert(seg.length); seg.length = min(inMaxTransferSize-curTransferSize, (min(seg.length, maxSegmentSize))); (*outSeg)(seg, inSegments, curSegIndex++); curTransferSize += seg.length; } if (outTransferSize) *outTransferSize = curTransferSize; return curSegIndex; } /************************ class IONaturalMemoryCursor ************************/ #undef super #define super IOMemoryCursor OSDefineMetaClassAndStructors(IONaturalMemoryCursor, IOMemoryCursor) void IONaturalMemoryCursor::outputSegment(PhysicalSegment segment, void * outSegments, UInt32 outSegmentIndex) { ((PhysicalSegment *) outSegments)[outSegmentIndex] = segment; } IONaturalMemoryCursor * IONaturalMemoryCursor::withSpecification(IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { IONaturalMemoryCursor *me = new IONaturalMemoryCursor; if (me && !me->initWithSpecification(inMaxSegmentSize, inMaxTransferSize, inAlignment)) { me->release(); return 0; } return me; } bool IONaturalMemoryCursor::initWithSpecification(IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { return super::initWithSpecification(&IONaturalMemoryCursor::outputSegment, inMaxSegmentSize, inMaxTransferSize, inAlignment); } /************************** class IOBigMemoryCursor **************************/ #undef super #define super IOMemoryCursor OSDefineMetaClassAndStructors(IOBigMemoryCursor, IOMemoryCursor) void IOBigMemoryCursor::outputSegment(PhysicalSegment inSegment, void * inSegments, UInt32 inSegmentIndex) { IOPhysicalAddress * segment; segment = &((PhysicalSegment *) inSegments)[inSegmentIndex].location; OSWriteBigInt(segment, 0, inSegment.location); OSWriteBigInt(segment, sizeof(IOPhysicalAddress), inSegment.length); } IOBigMemoryCursor * IOBigMemoryCursor::withSpecification(IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { IOBigMemoryCursor * me = new IOBigMemoryCursor; if (me && !me->initWithSpecification(inMaxSegmentSize, inMaxTransferSize, inAlignment)) { me->release(); return 0; } return me; } bool IOBigMemoryCursor::initWithSpecification(IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { return super::initWithSpecification(&IOBigMemoryCursor::outputSegment, inMaxSegmentSize, inMaxTransferSize, inAlignment); } /************************* class IOLittleMemoryCursor ************************/ #undef super #define super IOMemoryCursor OSDefineMetaClassAndStructors(IOLittleMemoryCursor, IOMemoryCursor) void IOLittleMemoryCursor::outputSegment(PhysicalSegment inSegment, void * inSegments, UInt32 inSegmentIndex) { IOPhysicalAddress * segment; segment = &((PhysicalSegment *) inSegments)[inSegmentIndex].location; OSWriteLittleInt(segment, 0, inSegment.location); OSWriteLittleInt(segment, sizeof(IOPhysicalAddress), inSegment.length); } IOLittleMemoryCursor * IOLittleMemoryCursor::withSpecification(IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { IOLittleMemoryCursor * me = new IOLittleMemoryCursor; if (me && !me->initWithSpecification(inMaxSegmentSize, inMaxTransferSize, inAlignment)) { me->release(); return 0; } return me; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ bool IOLittleMemoryCursor::initWithSpecification(IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { return super::initWithSpecification(&IOLittleMemoryCursor::outputSegment, inMaxSegmentSize, inMaxTransferSize, inAlignment); } /************************* class IODBDMAMemoryCursor *************************/ #if defined(__ppc__) #include <IOKit/ppc/IODBDMA.h> #undef super #define super IOMemoryCursor OSDefineMetaClassAndStructors(IODBDMAMemoryCursor, IOMemoryCursor) void IODBDMAMemoryCursor::outputSegment(PhysicalSegment inSegment, void * inSegments, UInt32 inSegmentIndex) { IODBDMADescriptor *segment; segment = &((IODBDMADescriptor *) inSegments)[inSegmentIndex]; // Write location into address field OSWriteSwapInt32((UInt32 *) segment, 4, inSegment.location); // Write count into 1st two bytes of operation field. // DO NOT touch rest of operation field as it should contain a STOP command. OSWriteSwapInt16((UInt16 *) segment, 0, inSegment.length); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ IODBDMAMemoryCursor * IODBDMAMemoryCursor::withSpecification(IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { IODBDMAMemoryCursor *me = new IODBDMAMemoryCursor; if (me && !me->initWithSpecification(inMaxSegmentSize, inMaxTransferSize, inAlignment)) { me->release(); return 0; } return me; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ bool IODBDMAMemoryCursor::initWithSpecification(IOPhysicalLength inMaxSegmentSize, IOPhysicalLength inMaxTransferSize, IOPhysicalLength inAlignment) { return super::initWithSpecification(&IODBDMAMemoryCursor::outputSegment, inMaxSegmentSize, inMaxTransferSize, inAlignment); } #endif /* defined(__ppc__) */ |