/* * Copyright © 1998-2012 Apple Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The 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, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #ifndef _IOKIT_IOUSBUSERCLIENT_H #define _IOKIT_IOUSBUSERCLIENT_H // these are the new User Client method names enum { kUSBDeviceUserClientOpen, kUSBDeviceUserClientClose, kUSBDeviceUserClientSetConfig, kUSBDeviceUserClientGetConfig, kUSBDeviceUserClientGetConfigDescriptor, kUSBDeviceUserClientGetFrameNumber, kUSBDeviceUserClientDeviceRequestOut, kUSBDeviceUserClientDeviceRequestIn, kUSBDeviceUserClientCreateInterfaceIterator, kUSBDeviceUserClientResetDevice, kUSBDeviceUserClientSuspend, kUSBDeviceUserClientAbortPipeZero, kUSBDeviceUserClientReEnumerateDevice, kUSBDeviceUserClientGetMicroFrameNumber, kUSBDeviceUserClientGetFrameNumberWithTime, kUSBDeviceUserClientSetAsyncPort, kUSBDeviceUserClientGetDeviceInformation, kUSBDeviceUserClientRequestExtraPower, kUSBDeviceUserClientReturnExtraPower, kUSBDeviceUserClientGetExtraPowerAllocated, kUSBDeviceUserClientGetBandwidthAvailableForDevice, kIOUSBLibDeviceUserClientNumCommands }; enum { kUSBInterfaceUserClientOpen, kUSBInterfaceUserClientClose, kUSBInterfaceUserClientGetDevice, kUSBInterfaceUserClientSetAlternateInterface, kUSBInterfaceUserClientGetFrameNumber, kUSBInterfaceUserClientGetPipeProperties, kUSBInterfaceUserClientReadPipe, kUSBInterfaceUserClientWritePipe, kUSBInterfaceUserClientGetPipeStatus, kUSBInterfaceUserClientAbortPipe, kUSBInterfaceUserClientResetPipe, kUSBInterfaceUserClientClearPipeStall, kUSBInterfaceUserClientControlRequestOut, kUSBInterfaceUserClientControlRequestIn, kUSBInterfaceUserClientSetPipePolicy, kUSBInterfaceUserClientGetBandwidthAvailable, kUSBInterfaceUserClientGetEndpointProperties, kUSBInterfaceUserClientLowLatencyPrepareBuffer, kUSBInterfaceUserClientLowLatencyReleaseBuffer, kUSBInterfaceUserClientGetMicroFrameNumber, kUSBInterfaceUserClientGetFrameListTime, kUSBInterfaceUserClientGetFrameNumberWithTime, kUSBInterfaceUserClientSetAsyncPort, kUSBInterfaceUserClientReadIsochPipe, kUSBInterfaceUserClientWriteIsochPipe, kUSBInterfaceUserClientLowLatencyReadIsochPipe, kUSBInterfaceUserClientLowLatencyWriteIsochPipe, kUSBInterfaceUserClientGetConfigDescriptor, kUSBInterfaceUserClientGetPipePropertiesV2, kIOUSBLibInterfaceUserClientNumCommands }; #if KERNEL #include #include #include //================================================================================================ // // Structure declarations // //================================================================================================ // typedef struct IOUSBUserClientAsyncParamBlock IOUSBUserClientAsyncParamBlock; struct IOUSBUserClientAsyncParamBlock { OSAsyncReference64 fAsyncRef; uint32_t fAsyncCount; uint32_t fMax; IOMemoryDescriptor * fMem; IOUSBDevRequestDesc req; }; typedef struct IOUSBInterfaceUserClientISOAsyncParamBlock IOUSBInterfaceUserClientISOAsyncParamBlock; struct IOUSBInterfaceUserClientISOAsyncParamBlock { OSAsyncReference64 fAsyncRef; uint32_t fAsyncCount; mach_vm_size_t frameLen; // In bytes mach_vm_address_t frameBase; // In user task IOMemoryDescriptor * dataMem; IOMemoryDescriptor * countMem; uint64_t numFrames; IOUSBIsocFrame frames[0]; // Must be the last one }; //================================================================================================ // // This class is used to add an IOProviderMergeProperties dictionary entry to a provider's // property list, thus providing a tie between hardware and a CFBundle at hardware // load time. This property usually contains the user client class name and the CFPlugInTypes UUID's // but it can contain other properties. // //================================================================================================ // class IOUSBUserClientInit : public IOService { OSDeclareDefaultStructors(IOUSBUserClientInit); public: virtual bool start(IOService * provider) ; virtual bool MergeDictionaryIntoProvider(IOService * provider, OSDictionary * mergeDict); virtual bool MergeDictionaryIntoDictionary(OSDictionary * sourceDictionary, OSDictionary * targetDictionary); }; #endif #endif