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\d32locd.h
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without notice. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
24 #include <partitions.h>
33 A media ID is passed to LocDrv::RegisterMediaDevice() when registering
34 a media driver with the local media subsystem.
36 enum TMediaDevice { EFixedMedia0, EFixedMedia1, EFixedMedia2, EFixedMedia3,
37 EFixedMedia4, EFixedMedia5, EFixedMedia6, EFixedMedia7,
38 ERemovableMedia0, ERemovableMedia1, ERemovableMedia2, ERemovableMedia3,
42 #define __IS_REMOVABLE(aDevice) (aDevice>=ERemovableMedia0 && aDevice<=ERemovableMedia3)
43 #define __IS_FIXED(aDevice) ((TUint)aDevice<=EFixedMedia7)
44 #define MEDIA_DEVICE_IRAM EFixedMedia0
45 #define MEDIA_DEVICE_LFFS EFixedMedia1
46 #define MEDIA_DEVICE_NAND EFixedMedia2
47 #define MEDIA_DEVICE_MMC ERemovableMedia0
48 #define MEDIA_DEVICE_PCCARD ERemovableMedia1
49 #define MEDIA_DEVICE_CSA ERemovableMedia2
51 typedef signed int TSocket;
53 class TLDriveAssignInfo
65 class TMediaDeviceAssignInfo
79 Drives media capabilities fields
86 IMPORT_C TLocalDriveCaps();
91 Note : This is the size of the partition, not the entire media.
92 The entire media size can be obtained from TLocalDriveCapsV4::MediaSizeInBytes()
100 Connection type used to interface to the media
102 TConnectionBusType iConnectionBusType;
104 Attributes of the drive
108 Attributes of underlying media
112 Base address of media
114 TUint8* iBaseAddress;
116 Identity of the file system used for this media
118 TUint16 iFileSystemId;
120 Partition type of media
122 TUint16 iPartitionType;
124 typedef TPckgBuf<TLocalDriveCaps> TLocalDriveCapsBuf;
126 class TLocalDriveCapsV2 : public TLocalDriveCaps
128 Extension to Capabilities fields mainly to support Nor flash
136 Number of hidden sectors on drive
138 TUint iHiddenSectors;
140 Size of erase unit on media
142 TUint iEraseBlockSize;
144 typedef TPckgBuf<TLocalDriveCapsV2> TLocalDriveCapsV2Buf;
150 This class is used to provide file system-specific parameters for media formatting.
151 @see TInt RFormat::Open(RFs &aFs, const TDesC &aName, TUint aFormatMode, TInt &aCount, const TDesC8 &anInfo);"
153 For example, for FAT file system it is possible to specify FAT type(12/16/32),
154 cluster size, number of FATs and number of reserved sectors. Note that not all
155 combinations of custom parameters can be compatible; some media types, like SD
156 can reject formatting with user-defined parameters.
165 inline TLDFormatInfo();
168 TInt64 iCapacity; ///< Format Capacity
169 TUint16 iSectorsPerCluster; ///< Specified sectors per cluster
170 TUint16 iSectorsPerTrack; ///< Specified sectors per track
171 TUint16 iNumberOfSides; ///< Specified number of sides
173 enum TFATBits {EFBDontCare, EFB12 = 12, EFB16 = 16, EFB32 = 32};
174 TFATBits iFATBits; ///< Specified bits per fat table entry
176 TUint16 iReservedSectors; ///< Reserved sector count, required for SD card compliance
178 // Flags field. Allows the number of FAT tables to be specified: set both bits to zero to use the default.
179 enum TFlags {EOneFatTable = 0x01, ETwoFatTables = 0x02};
182 TUint8 iPad; ///< Padding for offset alignment between kernel and user code
185 typedef TPckgBuf<TLDFormatInfo> TSpecialFormatInfoBuf;
189 class TLocalDriveCapsV3 : public TLocalDriveCapsV2
191 Extension to Capabilities fields mainly to support removable media format specifications
201 TLDFormatInfo iFormatInfo;
203 Set if iFormatInfo is valid
208 TInt iMaxBytesPerFormat;
210 //The following ASSERTs checks for offset of any TInt64 member be a multiple of 8 as per DEF045510
211 __ASSERT_COMPILE(_FOFF(TLocalDriveCaps,iSize)%8 == 0);
212 __ASSERT_COMPILE(_FOFF(TLocalDriveCapsV3,iFormatInfo.iCapacity) % 8 == 0);
215 typedef TPckgBuf<TLocalDriveCapsV3> TLocalDriveCapsV3Buf;
217 class TLocalDriveCapsV4 : public TLocalDriveCapsV3
219 Extension to Capabilities fields mainly to support Nand flash
229 Number of blocks (for NAND flash)
230 - The entire capacity of NAND media can be calculated using:
231 capacity = iNumOfBlocks * iNumPagesPerBlock * iNumBytesMain
235 Number of sectors (for other types of media)
236 - The entire capacity of sector based media can be calculated using:
237 capacity = iNumberOfSectors * iSectorSizeInBytes
239 TUint32 iNumberOfSectors;
243 Number of pages per block
245 TInt iNumPagesPerBlock;
250 Number of Bytes in the main array (for NAND flash)
251 - The entire capacity of NAND media can be calculated using:
252 capacity = iNumOfBlocks * iNumPagesPerBlock * iNumBytesMain
256 Number of Bytes in a sector (for other types of media)
257 - The entire capacity of sector based media can be calculated using:
258 capacity = iNumberOfSectors * iSectorSizeInBytes
260 TUint32 iSectorSizeInBytes;
264 Number of Bytes in the spare array
268 Effective usable blocks
276 inline TInt64 MediaSizeInBytes();
278 typedef TPckgBuf<TLocalDriveCapsV4> TLocalDriveCapsV4Buf;
280 class TLocalDriveCapsV5 : public TLocalDriveCapsV4
282 Add serial number support for certain media.
290 Serial number buffer length, 0 if not supported
292 TUint iSerialNumLength;
296 TUint8 iSerialNum[KMaxSerialNumLength];
298 typedef TPckgBuf<TLocalDriveCapsV5> TLocalDriveCapsV5Buf;
302 Extension to Capabilities fields mainly to support reporting block size
303 information of underlying media.
308 class TLocalDriveCapsV6 : public TLocalDriveCapsV5
312 Block size information of underlying media is required to assist in chosing
313 efficient size of buffers for reading and writing.
314 This information can also be accessed through the function
317 These functions retrieve this blocksize information by calling the media
318 driver's Caps() function.
324 Reserved space for future use.
328 typedef TPckgBuf<TLocalDriveCapsV6> TLocalDriveCapsV6Buf;
331 class TLocalDriveCapsV7 : public TLocalDriveCapsV6
333 Add control mode, object mode, partition size for M18 NOR Flash.
337 TUint32 iWriteBufferSize;
338 TUint32 iPartitionSize;
339 TUint32 iControlModeSize;
340 TUint32 iObjectModeSize;
343 typedef TPckgBuf<TLocalDriveCapsV7> TLocalDriveCapsV7Buf;
348 Format information class
355 IMPORT_C TFormatInfo();
357 TBool iFormatIsCurrent;
358 TInt i512ByteSectorsFormatted;
359 TInt iMaxBytesPerFormat;
370 ENoError=0, //No error
371 EBadSector=1, //Error due to corrupt sector
374 TReasonCode iReasonCode;
377 // holds position error occurred for KErrCorrupt
378 // It numerically equals number of bytes succesfully read/written during
379 // last disk operation.
384 typedef TPckgBuf<TErrorInfo> TErrorInfoBuf;
386 class TLocalDriveMessageData
392 inline TLocalDriveMessageData()
394 inline TLocalDriveMessageData(TInt64 aPos, TInt aLength, const TAny* aPtr, TInt aHandle, TInt anOffset, TInt aFlags)
395 : iPos(aPos), iLength(aLength), iPtr(aPtr), iHandle(aHandle), iOffset(anOffset), iFlags(aFlags)
406 class TLocalDriveControlIOData
408 Control IO data class
414 inline TLocalDriveControlIOData()
416 inline TLocalDriveControlIOData(TInt aCommand, TAny* aParam1, TAny* aParam2, TInt aHandle)
417 : iCommand(aCommand), iParam1(aParam1), iParam2(aParam2), iHandle(aHandle)
419 inline TLocalDriveControlIOData(TInt aCommand, TUint8* aBuf, TInt aParam, TInt aLength)
420 : iCommand(aCommand), iParam1(aBuf), iParam2((TAny*) aParam), iHandle(aLength)
429 class TLocalDrivePasswordData
431 Password store for password protected media
437 TLocalDrivePasswordData(const TDesC8& aOldPasswd, const TDesC8& aNewPasswd, TBool aStorePasswd)
438 : iOldPasswd(&aOldPasswd), iNewPasswd(&aNewPasswd), iStorePasswd(aStorePasswd)
440 TLocalDrivePasswordData()
441 : iOldPasswd(&KNullDesC8), iNewPasswd(&KNullDesC8), iStorePasswd(EFalse)
444 const TDesC8 *iOldPasswd;
445 const TDesC8 *iNewPasswd;
448 typedef TPckgBuf<TLocalDrivePasswordData> TLocalDrivePasswordDataPckg;
457 virtual TInt Init()=0;
458 virtual TInt ReadPasswordData(TDes8 &aBuf)=0;
459 virtual TInt WritePasswordData(TDesC8 &aBuf)=0;
460 virtual TInt PasswordStoreLengthInBytes()=0;
461 enum {EMaxPasswordLength=1024}; /**< Size of the password store write buffer, which may contain multiple password mappings */
475 const TInt KLocalDriveMajorVersion=1;
476 const TInt KLocalDriveMinorVersion=0;
477 const TInt KLocalDriveBuildVersion=160;
478 _LIT(KLitLocalDriveLddName,"LocDrv");
480 const TInt KLocalMessageHandle=-1;
483 enum TMediaPagingStats
485 EMediaPagingStatsAll,
486 EMediaPagingStatsRomAndCode = EMediaPagingStatsAll, // @deprecated - use EMediaPagingStatsAll instead
487 EMediaPagingStatsRom,
488 EMediaPagingStatsCode,
489 EMediaPagingStatsDataIn,
490 EMediaPagingStatsDataOut,
494 Paging media details - for testing purposes only
495 This is a structure used to communicate paging-related information
496 from the paging media driver to an application.
501 class TPageDeviceInfo
504 TInt iReservoirBlockCount; // number of blocks in replacement reservoir (used & unused)
505 TInt iBadBlockCount; // numer of bad blocks
507 typedef TPckgBuf<TPageDeviceInfo> TPageDeviceInfoBuf;
509 class RLocalDrive : public RBusLogicalChannel
511 Interface class to local media
519 EControlRead=0, /**< Read request */
520 EControlWrite=1, /**< Write request */
521 EControlCaps=2, /**< Caps request */
522 EControlFormat=3, /**< Format request */
523 EControlEnlarge=4, /**< Enlarge drive request */
524 EControlReduce=5, /**< Reduce Drive request */
525 EControlForceMediaChange=6, /**< Force media change request */
526 EControlMediaDevice=7, /**< Return the media device request */
527 EControlPasswordLock=8, /**< Password lock media request */
528 EControlPasswordUnlock=9, /**< Password unlock media request */
529 EControlPasswordClear=10, /**< Password clear request */
530 EControlNotifyChange=11, /**< Notify change request */
531 EControlNotifyChangeCancel=12, /**< Notify change cancel request */
532 EControlReadPasswordStore=13, /**< Read password request */
533 EControlWritePasswordStore=14, /**< Write password request */
534 EControlPasswordStoreLengthInBytes=15, /**< Password request */
535 EControlIsRemovable=16, /**< Query removable request */
536 EControlSetMountInfo=17, /**< Set mount info request */
537 EControlControlIO=18, /**< Control IO request */
538 EControlPasswordErase=19, /**< Password erase media request */
539 EControlDeleteNotify=20, /**< Delete notification */
540 EControlGetLastErrorInfo=21, /**< Get last error info request */
541 EControlQueryDevice=22, /**< Query device request*/
546 ELocDrvRemountNotifyChange = 0, /**< Notify clients of media change but don't remount */
547 ELocDrvRemountForceMediaChange = 1, /**< Notify clients of media change and remount */
552 ELocDrvMetaData = 0x80000000, /**< Set if read/write request is for metadata */
553 ELocDrvWholeMedia = 0x40000000 /**< Set to access whole media, rather than partition */
558 // Symbian publishedPartner range
559 EQuerySymbianPublishedPartnerFirst = 0x0000,
560 EQuerySymbianPublishedPartnerLast = 0x3FFF,
562 // Symbian test range
563 EQuerySymbianTestFirst = 0x4000,
564 EQuerySymbianTestLast = 0x7FFF,
567 EQueryLicenseeFirst = 0x8000,
568 EQueryLicenseeLast = 0xBFFF,
570 EQueryPageDeviceInfo = EQuerySymbianTestFirst, /**< @see TPageDeviceInfo */
573 inline TVersion VersionRequired() const;
574 inline TInt Connect(TInt aDriveNumber, TBool& aChangedFlag);
575 inline TInt Enlarge(TInt aLength);
576 inline TInt Reduce(TInt aPos, TInt aLength);
577 inline TInt Read(TInt64 aPos, TInt aLength, const TAny* aTrg, TInt aMessageHandle, TInt aOffset, TInt aFlags);
578 inline TInt Read(TInt64 aPos, TInt aLength, const TAny* aTrg, TInt aMessageHandle, TInt anOffset);
579 inline TInt Read(TInt64 aPos, TInt aLength, TDes8& aTrg);
580 inline TInt Write(TInt64 aPos, TInt aLength, const TAny* aSrc, TInt aMessageHandle, TInt aOffset, TInt aFlags);
581 inline TInt Write(TInt64 aPos, TInt aLength, const TAny* aSrc, TInt aMessageHandle, TInt anOffset);
582 inline TInt Write(TInt64 aPos, const TDesC8& aSrc);
583 inline TInt Caps(TDes8& anInfo);
584 inline TInt Format(TInt64 aPos, TInt aLength);
585 inline TInt ForceMediaChange(TInt aMode=0);
586 inline void NotifyChange(TRequestStatus* aStatus);
587 inline void NotifyChangeCancel();
588 inline TInt SetMountInfo(const TDesC8* aInfo,TInt aMessageHandle);
589 inline TMediaDevice MediaDevice();
590 inline TInt IsRemovable(TInt& aSocketNum);
591 inline TInt ControlIO(TInt aCommand, TAny* aParam1, TAny* aParam2);
592 inline TInt ControlIO(TInt aCommand, TDes8& aBuf, TInt aParam);
593 inline TInt ControlIO(TInt aCommand, TDesC8& aBuf, TInt aParam);
594 inline TInt ControlIO(TInt aCommand, TInt aParam1, TInt aParam2);
595 inline TInt Unlock(const TDesC8& aPassword, TBool aStorePassword);
596 inline TInt SetPassword(const TDesC8& aOldPassword, const TDesC8& aNewPassword, TBool aStorePassword);
597 inline TInt Clear(const TDesC8& aPassword);
598 inline TInt ErasePassword();
599 inline TInt ReadPasswordData(TDesC8& aStoreData);
600 inline TInt WritePasswordData(const TDesC8& aStoreData);
601 inline TInt PasswordStoreLengthInBytes();
602 inline TInt DeleteNotify(TInt64 aPos, TInt aLength);
603 inline TInt GetLastErrorInfo(TDesC8& aErrorInfo);
604 inline TInt QueryDevice(TQueryDevice aQueryDevice, TDes8 &aBuf);
607 #ifndef __KERNEL_MODE__
608 class TBusLocalDrive : public RLocalDrive
614 IMPORT_C TBusLocalDrive();
615 IMPORT_C TInt Connect(TInt aDriveNumber, TBool& aChangedFlag);
616 IMPORT_C void Disconnect();
617 IMPORT_C TInt Enlarge(TInt aLength);
618 IMPORT_C TInt ReduceSize(TInt aPos, TInt aLength);
619 IMPORT_C TInt Read(TInt64 aPos,TInt aLength,const TAny* aTrg,TInt aMessageHandle,TInt aOffset,TInt aFlags);
620 IMPORT_C TInt Read(TInt64 aPos,TInt aLength,const TAny* aTrg,TInt aMessageHandle,TInt anOffset);
621 IMPORT_C TInt Read(TInt64 aPos,TInt aLength,TDes8& aTrg);
622 IMPORT_C TInt Write(TInt64 aPos,TInt aLength,const TAny* aSrc,TInt aMessageHandle,TInt aOffset,TInt aFlags);
623 IMPORT_C TInt Write(TInt64 aPos,TInt aLength,const TAny* aSrc,TInt aMessageHandle,TInt anOffset);
624 IMPORT_C TInt Write(TInt64 aPos,const TDesC8& aSrc);
625 IMPORT_C TInt Caps(TDes8& anInfo);
626 IMPORT_C TInt Format(TFormatInfo& anInfo);
627 IMPORT_C TInt Format(TInt64 aPos,TInt aLength);
628 IMPORT_C TInt SetMountInfo(const TDesC8* aMountInfo,TInt aMessageHandle);
629 IMPORT_C TInt ForceRemount(TUint aFlags=0);
630 IMPORT_C TInt ControlIO(TInt aCommand, TAny* aParam1, TAny* aParam2);
631 IMPORT_C TInt ControlIO(TInt aCommand, TDes8& aBuf, TInt aParam);
632 IMPORT_C TInt ControlIO(TInt aCommand, TDesC8& aBuf, TInt aParam);
633 IMPORT_C TInt ControlIO(TInt aCommand, TInt aParam1, TInt aParam2);
635 IMPORT_C TInt Unlock(const TDesC8& aPassword, TBool aStorePassword);
636 IMPORT_C TInt SetPassword(const TDesC8& aOldPassword, const TDesC8& aNewPassword, TBool aStorePassword);
637 IMPORT_C TInt Clear(const TDesC8& aPassword);
638 IMPORT_C TInt ErasePassword();
639 IMPORT_C TInt ReadPasswordData(TDes8 &aBuf);
640 IMPORT_C TInt WritePasswordData(const TDesC8 &aBuf);
641 IMPORT_C TInt PasswordStoreLengthInBytes();
642 IMPORT_C TInt DeleteNotify(TInt64 aPos, TInt aLength);
643 IMPORT_C TInt GetLastErrorInfo(TDes8& aErrorInfo);
645 IMPORT_C TInt QueryDevice(TQueryDevice aQueryDevice, TDes8 &aBuf);
648 inline TInt& Status() {return(iStatus);}
656 #define _LOCKABLE_MEDIA
658 #include <d32locd.inl>