/* * Copyright (c) 1998-2001 Apple Computer, 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_IO_STORAGE_DEVICE_CHARACTERISTICS_H_ #define _IOKIT_IO_STORAGE_DEVICE_CHARACTERISTICS_H_ #include // // Device Characteristics - Characteristics defined for devices. // /*! @defined kIOPropertyDeviceCharacteristicsKey @discussion This key is used to define Device Characteristics for a particular device and it has an associated dictionary which lists the device characteristics. The device characteristics are Command Set specific and are listed in the header files for each command set. Requirement: Mandatory Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
	

@/textblock
*/ #define kIOPropertyDeviceCharacteristicsKey "Device Characteristics" /*! @defined kIOPropertyVendorNameKey @discussion This key is used to define the Vendor Name for a particular device and it has an associated string. Requirement: Mandatory Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
	

@/textblock
*/ #define kIOPropertyVendorNameKey "Vendor Name" /*! @defined kIOPropertyProductNameKey @discussion This key is used to define the Product Name for a particular device and it has an associated string. Requirement: Mandatory Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
	

@/textblock
*/ #define kIOPropertyProductNameKey "Product Name" /*! @defined kIOPropertyProductRevisionLevelKey @discussion This key is used to define the Product Revision Level for a particular device and it has an associated string. Requirement: Mandatory Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
	

@/textblock
*/ #define kIOPropertyProductRevisionLevelKey "Product Revision Level" /*! @defined kIOPropertySupportedCDFeaturesKey @discussion This key is used to define the supported CD Features for a particular optical device and it has an associated bitfield. See for definitions of the bits and associated bitmasks. Requirement: Mandatory for optical devices (Peripheral Device Type 05h). Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		SuperDrive
		Product Revision Level
		1.0
		CD Features
		1663
		DVD Features
		103
	

@/textblock
*/ #define kIOPropertySupportedCDFeaturesKey "CD Features" /*! @defined kIOPropertySupportedDVDFeaturesKey @discussion This key is used to define the supported DVD Features for a particular optical device and it has an associated bitfield. See for definitions of the bits and associated bitmasks. Requirement: Mandatory for optical devices (Peripheral Device Type 05h). Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		SuperDrive
		Product Revision Level
		1.0
		CD Features
		1663
		DVD Features
		103
	

@/textblock
*/ #define kIOPropertySupportedDVDFeaturesKey "DVD Features" /*! @defined kIOPropertyRigidDiskGeometryKey @discussion This key is used to define a dictionary containing rigid disk geometry information. Requirement: Optional. If a device publishes this dictionary, it must publish all key/value pairs which are deemed Mandatory. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
		Rigid Disk Geometry
		
			Sector Count per Track
			12345
			Head Count
			12
			Cylinder Count
			12345
			Bytes per Physical Sector
			512
		
	

@/textblock
*/ #define kIOPropertyRigidDiskGeometryKey "Rigid Disk Geometry" /*! @defined kIOPropertySectorCountPerTrackKey @discussion This key is used to define the number of sectors per each track for a particular medium. Requirement: Mandatory element of the Rigid Disk Geometry dictionary. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
		Rigid Disk Geometry
		
			Sector Count per Track
			12345
		
	

@/textblock
*/ #define kIOPropertySectorCountPerTrackKey "Sector Count per Track" /*! @defined kIOPropertyHeadCountKey @discussion This key is used to define the number of heads for a particular medium. Requirement: Mandatory element of the Rigid Disk Geometry dictionary. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
		Rigid Disk Geometry
		
			Sector Count per Track
			12345
			Head Count
			12
			Cylinder Count
			12345
			Bytes per Physical Sector
			512
		
	

@/textblock
*/ #define kIOPropertyHeadCountKey "Head Count" /*! @defined kIOPropertyCylinderCountKey @discussion This key is used to define the number of heads for a particular medium. Requirement: Mandatory element of the Rigid Disk Geometry dictionary. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
		Rigid Disk Geometry
		
			Sector Count per Track
			12345
			Head Count
			12
			Cylinder Count
			12345
			Bytes per Physical Sector
			512
		
	

@/textblock
*/ #define kIOPropertyCylinderCountKey "Cylinder Count" /*! @defined kIOPropertyBytesPerPhysicalSectorKey @discussion This key is used to define the number of heads for a particular medium. Requirement: Mandatory element of the Rigid Disk Geometry dictionary. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
		Rigid Disk Geometry
		
			Sector Count per Track
			12345
			Head Count
			12
			Cylinder Count
			12345
			Bytes per Physical Sector
			512
		
	

@/textblock
*/ #define kIOPropertyBytesPerPhysicalSectorKey "Bytes per Physical Sector" #endif /* _IOKIT_IO_STORAGE_DEVICE_CHARACTERISTICS_H_ */