Update contrib.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32hal.h
21 #include <e32cmn_private.h>
25 @deprecated No replacement.
27 const TInt KMaxRomDevices=8;
36 Defines the calibration settings that can be restored by
37 the digitiser's implementation of DDigitiser::RestoreXYInputCalibration.
39 See the digitiser template port in:
41 ...\template\template_variant\specific\xyin.cpp
44 @see DDigitiser::RestoreXYInputCalibration()
46 enum TDigitizerCalibrationType
48 EFactory, /**< Restore to factory settings. */
49 ESaved /**< Restore to saved settings. */
59 Defines the screen coordinates of the point touched during calibration.
61 An object of this type is passed, via a TPckgBuf, to the HAL handler
62 that deals with the HAL group function-id pair:
63 - EHalGroupDigitiser, EDigitiserHalSetXYInputCalibration
64 - EHalGroupDigitiser, EDigitiserHalCalibrationPoints
65 - EHalGroupDigitiser, EDigitiserHalRestoreXYInputCalibration
67 @see EDigitiserHalSetXYInputCalibration
68 @see EDigitiserHalCalibrationPoints
69 @see EDigitiserHalRestoreXYInputCalibration
70 @see TDigitiserHalFunction
71 @see EHalGroupDigitiser
74 class TDigitizerCalibration
77 TPoint iTl; /**< Top left point.*/
78 TPoint iBl; /**< Bottom left point. */
79 TPoint iTr; /**< Top right point.*/
80 TPoint iBr; /**< Bottom right point.*/
90 An enum that identifies the full set of keyboard types.
92 A variable of this type is defined and used in the TKeyboardInfoV01 struct.
94 @see TKeyboardInfoV01::iKeyboardType.
98 EKeyboard_Keypad=1, /**< Keypad type*/
99 EKeyboard_Full=2, /**< Full keyboard type*/
109 Encapsulates information about the keyboard.
111 NOTE that the information represented here is not used by Symbian OS,
112 and exists to maintain binary compatibilty with older versions.
114 However, keyboard drivers that implement the HAL handler for
115 the EHalGroupKeyboard group still need to return a default object
117 See the template port.
119 An object of this type is passed, via a TPckgBuf, to the HAL handler
120 that deals with the HAL group function-id pair:
121 - EHalGroupKeyboard, EKeyboardHalKeyboardInfo;
123 @see EKeyboardHalKeyboardInfo
124 @see TKeyboardHalFunction
125 @see EHalGroupKeyboard
128 class TKeyboardInfoV01
132 The number of device keys.
134 NOTE that the information represented by this variable is not
135 used by Symbian OS, and exists to maintain binary compatibility
142 The number of application keys.
144 NOTE that the information represented by this variable is not
145 used by Symbian OS, and exists to maintain binary compatibility
152 Defines the type of keyboard available as enumerated by
155 NOTE that the information represented by this variable is not
156 used by Symbian OS, and exists to maintain binary compatibility
161 TKeyboard iKeyboardType;
171 Package buffer for a TKeyboardInfoV01 object.
173 @see TKeyboardInfoV01
175 typedef TPckgBuf<TKeyboardInfoV01> TKeyboardInfoV01Buf;
184 Encapsulates information about the digitiser.
186 An object of this type is passed, via a TPckgBuf, to the HAL handler
187 that deals with the HAL group function-id pair:
188 - EHalGroupDigitiser, EDigitiserHalXYInfo;
190 @see EDigitiserHalXYInfo
191 @see TDigitiserHalFunction
192 @see EHalGroupDigitiser
195 class TDigitiserInfoV01
198 TPoint iOffsetToDisplay;/**< The offset in pixels from the digitiser usable area to the display area. */
199 TSize iDigitiserSize; /**< The width/height of the display in pixels as used by digitiser.*/
206 Encapsulates extra information required by 3 dimensional pointing devices.
208 class TDigitiserInfoV02 : public TDigitiserInfoV01
211 TInt iZRange; /**< The maximum distance to screen a pointing device will be detected (settable).*/
212 TUint8 iThetaSupported; /**< A Boolean value that indicates if Theta polar angle detection (tilt) is supported.*/
213 TUint8 iPhiSupported; /**< A Boolean value that indicates if Phi polar angle detection (tilt) is supported.*/
214 TUint8 iAlphaSupported; /**< A Boolean value that indicates if rotation of the pointing device along its main axis is supported.*/
215 TUint8 iPressureSupported; /**< A Boolean value that indicates if pressure applied on screen is supported.*/
216 TInt iProximityStep; /**<proximity resolution, e.g. proximity readings change in steps of 1, 5, 10, ... */
217 TInt iMaxPressure; /**< maximum pressure reading*/
218 TInt iPressureStep; /**< pressure resolution, */
219 TUint8 iMaxPointers; /**< max number of multi-touch pointers supported by hardware/driver.*/
220 TUint8 iNumberOfPointers;/**< Number of pointers it supports (settable).*/
228 Package buffer for a TDigitiserInfoV01 object.
230 @see TDigitiserInfoV01
232 typedef TPckgBuf<TDigitiserInfoV01> TDigitiserInfoV01Buf;
238 Package buffer for a TDigitiserInfoV02 object.
240 @see TDigitiserInfoV02
242 typedef TPckgBuf<TDigitiserInfoV02> TDigitiserInfoV02Buf;
248 Encapsulates information about the mouse display characteristics.
250 An object of this type is passed, via a TPckgBuf, to the HAL handler
251 that deals with the HAL group function-id pair:
252 - EHalGroupMouse, EMouseHalMouseInfo;
254 @see EMouseHalMouseInfo
255 @see TMouseHalFunction
262 TInt iMouseButtons; /**< The number of mouse buttons.*/
263 TPoint iOffsetToDisplay; /**< The offset in pixels from the mouse usable area to the display area.*/
264 TSize iMouseAreaSize; /**< The width/height of the display in pixels as used by the mouse. */
274 Package buffer for a TMouseInfoV01 object.
278 typedef TPckgBuf<TMouseInfoV01> TMouseInfoV01Buf;
286 Encapsulates Variant specific information.
288 An object of this type is passed, via a TPckgBuf, to the HAL handler
289 that deals with the HAL group function-id pair:
290 - EHalGroupVariant, EVariantHalVariantInfo;
292 @see EVariantHalVariantInfo
293 @see TVariantHalFunction
294 @see EHalGroupVariant
297 class TVariantInfoV01
303 TVersion iRomVersion;
306 The Id that uniquely identifies the device.
308 SInt64 iMachineUniqueId;
311 The bits that represent the LED capabilities.
313 NB capabilities in this context does not mean security capabilities.
315 TUint iLedCapabilities;
318 The processor clock speed.
320 TInt iProcessorClockInKHz;
335 Package buffer for a TVariantInfoV01 object.
339 typedef TPckgBuf<TVariantInfoV01> TVariantInfoV01Buf;
346 @deprecated Use HAL::Get() from the HAL library instead with attributes ESystemStartupReason.
348 The reason that the device last reset
350 Note that not all reasons can occur on all devices.
352 enum TMachineStartupType
354 EStartupCold,EStartupColdReset,EStartupNewOs,
355 EStartupPowerFail,EStartupWarmReset,EStartupKernelFault,
364 @deprecated Use HAL::Get() from the HAL library instead with attributes EPen or EMouse.
366 The XY input method supported
380 @deprecated Use HAL::Get() from the HAL library instead.
382 Miscellaneous machine info.
387 TVersion iRomVersion;
388 TXYInputType iXYInputType;
389 TBool iKeyboardPresent;
390 TBool iBacklightPresent;
391 TSize iDisplaySizeInPixels;
392 TSize iXYInputSizeInPixels;
393 TSize iPhysicalScreenSize;
394 TPoint iOffsetToDisplayInPixels;
397 SInt64 iMachineUniqueId;
398 TUint iLedCapabilities;
399 TInt iProcessorClockInKHz;
401 TInt iMaximumDisplayColors;
407 typedef TPckgBuf<TMachineInfoV1> TMachineInfoV1Buf;
414 @deprecated Use HAL::Get() from the HAL library instead with attributes ELanguageIndex or EKeyboardIndex.
416 Miscellaneous locale info.
418 class TMachineInfoV2 : public TMachineInfoV1
428 typedef TPckgBuf<TMachineInfoV2> TMachineInfoV2Buf;
435 @deprecated Use HAL::Get() from the HAL library instead with attributes EMemoryRAM, EMemoryRAMFree or EMemoryROM.
437 Miscellaneous memory info.
442 TInt iTotalRamInBytes;
443 TInt iTotalRomInBytes;
444 TInt iMaxFreeRamInBytes;
445 TInt iFreeRamInBytes;
446 TInt iInternalDiskRamInBytes;
447 TBool iRomIsReprogrammable;
453 typedef TPckgBuf<TMemoryInfoV1> TMemoryInfoV1Buf;
460 @deprecated No replacement.
462 Miscellaneous ROM info.
464 class TRomInfoEntryV1
472 TInt iSize; // size of ROM in bytes, 0=no ROM present
473 TInt iWidth; // bus width in bits
474 TInt iSpeed; // number of wait states
475 TRomTypeV1 iType; // 0=ROM, 1=FLASH
483 @deprecated No replacement.
485 Miscellaneous ROM info.
490 TRomInfoEntryV1 iEntry[KMaxRomDevices];
496 typedef TPckgBuf<TRomInfoV1> TRomInfoV1Buf;
502 const TUint KRuggedFileSystem=0x01;
511 TInt iTotalSupportedDrives;
512 TInfoName iDriveName[KMaxLocalDrives];
514 TInfoName iSocketName[KMaxPBusSockets];
515 TInt iRuggedFileSystem;
516 TUint iRegisteredDriveBitmask;
522 typedef TPckgBuf<TDriveInfoV1> TDriveInfoV1Buf;
524 #if defined(_UNICODE) && !defined(__KERNEL_MODE__)
532 TInt iTotalSupportedDrives;
533 TBuf8<KMaxInfoName> iDriveName[KMaxLocalDrives]; //TInfoName
535 TBuf8<KMaxInfoName> iSocketName[KMaxPBusSockets]; //TInfoName
536 TInt iRuggedFileSystem;
537 TUint iRegisteredDriveBitmask;
543 typedef TPckgBuf<TDriveInfoV18> TDriveInfoV1Buf8;
545 typedef TDriveInfoV1 TDriveInfoV18;
546 typedef TDriveInfoV1Buf TDriveInfoV1Buf8;
561 #ifndef __KERNEL_MODE__
571 A set of user side utility functions for acessing hardware related
574 Four of these functions are DEPRECATED and should NOT be used; some of
575 these functions have replacements, but others do not; see the description of
576 the individual functions.
578 The following functions are not deprecated, but are only used by Symbian
579 OS as part of its internal implementation:
580 - UserHal::FaultReason()
581 - UserHal::ExceptionId()
582 - UserHal::ExceptionInfo()
583 - UserHal::PageSizeInBytes()
584 - UserHal::TickPeriod()
585 - UserHal::DriveInfo()
586 - UserHal::SwitchOff()
587 - UserHal::SetXYInputCalibration()
588 - UserHal::CalibrationPoints()
589 - UserHal::SaveXYInputCalibration()
590 - UserHal::RestoreXYInputCalibration()
596 IMPORT_C static TInt MemoryInfo(TDes8& anInfo);
597 IMPORT_C static TInt RomInfo(TDes8& anInfo);
598 IMPORT_C static TInt StartupReason(TMachineStartupType& aReason);
599 IMPORT_C static TInt FaultReason(TInt &aReason);
600 IMPORT_C static TInt ExceptionId(TInt &anId);
601 IMPORT_C static TInt ExceptionInfo(TExcInfo &aInfo);
602 IMPORT_C static TInt PageSizeInBytes(TInt& aSize);
605 IMPORT_C static TInt MachineInfo(TDes8& anInfo);
606 IMPORT_C static TInt TickPeriod(TTimeIntervalMicroSeconds32& aPeriod);
609 IMPORT_C static TInt DriveInfo(TDes8& anInfo);
612 IMPORT_C static TInt SwitchOff();
615 IMPORT_C static TInt SetXYInputCalibration(const TDigitizerCalibration& aCalibration);
616 IMPORT_C static TInt CalibrationPoints(TDigitizerCalibration& aCalibration);
617 IMPORT_C static TInt SaveXYInputCalibration();
618 IMPORT_C static TInt RestoreXYInputCalibration(TDigitizerCalibrationType aType);