/* * Copyright (c) 1998-2009 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_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 kIOPropertyProductSerialNumberKey @discussion This key is used to define the Product Serial Number for a particular device and it has an associated data. Requirement: Mandatory Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
		Serial Number
		123456789
	

@/textblock
*/ #define kIOPropertyProductSerialNumberKey "Serial Number" /*! @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 kIOPropertySupportedBDFeaturesKey @discussion This key is used to define the supported BD 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
		BD Features
		21
	

@/textblock
*/ #define kIOPropertySupportedBDFeaturesKey "BD 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" /*! @defined kIOPropertyPhysicalBlockSizeKey @discussion This key is used to define the physical block size of a hard disk drive. Requirement: Mandatory for hard disk drives with physical block size other than 512 bytes. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
		Physical Block Size
		4096
		Logical Block Size
		512
	

@/textblock
*/ #define kIOPropertyPhysicalBlockSizeKey "Physical Block Size" /*! @defined kIOPropertyLogicalBlockSizeKey @discussion This key is used to define the logical block size of a hard disk drive. Requirement: Mandatory for hard disk drives with logical block size other than 512 bytes or that does not match its physical block size. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		Apple
		Product Name
		iPod
		Product Revision Level
		1.0
		Physical Block Size
		4096
		Logical Block Size
		512
	

@/textblock
*/ #define kIOPropertyLogicalBlockSizeKey "Logical Block Size" /*! @defined kIOPropertyTargetDiskModeKey @discussion This key is used to indicate the device is another computer in Target Disk Mode. Requirement: Optional. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		AAPL
		Product Name
		FireWire Target
		Product Revision Level
		0000
		Target Disk Mode
		
	

@/textblock
*/ #define kIOPropertyTargetDiskModeKey "Target Disk Mode" /*! @defined kIOPropertyMediumTypeKey @discussion This key is used to indicate the medium type of the device. Requirement: Optional. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		AAPL
		Product Name
		FireWire Target
		Product Revision Level
		0000
		Medium Type
		Rotational
	

@/textblock
*/ #define kIOPropertyMediumTypeKey "Medium Type" /*! @defined kIOPropertyMediumTypeRotationalKey @discussion This key is used to indicate the medium type of the device is rotational. Requirement: Optional. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		AAPL
		Product Name
		FireWire Target
		Product Revision Level
		0000
		Medium Type
		Rotational
	

@/textblock
*/ #define kIOPropertyMediumTypeRotationalKey "Rotational" /*! @defined kIOPropertyMediumTypeSolidStateKey @discussion This key is used to indicate the medium type of the device is solid state. Requirement: Optional. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		AAPL
		Product Name
		FireWire Target
		Product Revision Level
		0000
		Medium Type
		Solid State
	

@/textblock
*/ #define kIOPropertyMediumTypeSolidStateKey "Solid State" /*! @defined kIOPropertyMediumRotationRateKey @discussion This key is used to indicate the medium rotation rate in RPM of the device. Requirement: Optional. Example:
@textblock

	Device Characteristics
	
		Vendor Name
		AAPL
		Product Name
		FireWire Target
		Product Revision Level
		0000
		Rotation Rate
		7200
	

@/textblock
*/ #define kIOPropertyMediumRotationRateKey "Rotation Rate" #endif /* _IOKIT_IO_STORAGE_DEVICE_CHARACTERISTICS_H_ */