Update contrib.
1 // Copyright (c) 1998-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\drivers\locmedia.h
20 #include <plat_priv.h>
23 #if defined(_DEBUG) && defined(__DEMAND_PAGING__)
24 #define __CONCURRENT_PAGING_INSTRUMENTATION__
26 #if defined(_DEBUG) && defined(__DEMAND_PAGING__)
27 #define __DEMAND_PAGING_BENCHMARKS__
31 #define __EMULATOR_DMA_SUMULATION__
38 A media driver priority value.
40 The value can be returned by a media driver's PDD factory Info() function,
41 and allows Symbian OS to decide the order in which media drivers are to be opened.
43 The value is relative to the other media driver priority values.
45 @see DPhysicalDevice::Info()
47 const TInt KMediaDriverPriorityHigh=2;
56 A media driver priority value.
58 The value can be returned by a media driver's PDD factory Info() function,
59 and allows Symbian OS to decide the order in which media drivers are to be opened.
61 The value is relative to the other media driver priority values, and is
62 the one most commonly used.
64 @see DPhysicalDevice::Info()
66 const TInt KMediaDriverPriorityNormal=1;
75 A media driver priority value.
77 The value can be returned by a media driver's PDD factory Info() function,
78 and allows Symbian OS to decide the order in which media drivers are to be opened.
80 The value is relative to the other media driver priority values.
82 @see DPhysicalDevice::Info()
84 const TInt KMediaDriverPriorityLow=0;
93 Media driver interface major version number.
95 const TInt KMediaDriverInterfaceMajorVersion=1;
104 Media driver interface minor version number.
106 const TInt KMediaDriverInterfaceMinorVersion=0;
116 Media driver interface build number.
118 const TInt KMediaDriverInterfaceBuildVersion=160;
127 const TInt KMediaDriverDeferRequest=1;
135 #define __TRACE_TIMING(x)
136 //#define __TRACE_TIMING(x) *(TInt*)0x63000ff0=x
141 NONSHARABLE_CLASS(DLocalDriveFactory) : public DLogicalDevice
144 DLocalDriveFactory();
145 virtual TInt Install();
146 virtual void GetCaps(TDes8 &aDes) const;
147 virtual TInt Create(DLogicalChannelBase*& aChannel);
156 NONSHARABLE_CLASS(TLocalDriveCleanup) : public TThreadCleanup
159 TLocalDriveCleanup();
160 virtual void Cleanup();
161 inline DLocalDrive& LocalDrive();
166 class TLocDrvRequest;
167 class DPrimaryMediaBase;
173 This class is strictly internal to Symbian; the only part of this class that
174 is publicly exposed to partners is the TRequestId enum.
176 @see DLocalDrive::TRequestId
178 NONSHARABLE_CLASS(DLocalDrive) : public DLogicalChannelBase
182 Identifies the specific local drive operation.
187 Requests information about the size, type, and attributes of the media.
192 Requests an asynchronous read from the media device.
197 Requests an asynchronous write to the media device.
202 Requests the formatting of a section of the media
207 A request to expand the total size of the media.
212 A request to reduce the total size of the media.
217 A request to force a remount of the media.
222 Requests an attempt to lock the media with a password.
227 Requests an attempt to unlock the media.
232 Requests an attempt to remove the password from the media.
237 Requests an read of the password store.
239 EReadPasswordStore=10,
242 Requests a write of the password store.
244 EWritePasswordStore=11,
247 A request to get the length of the password store.
249 EPasswordStoreLengthInBytes=12,
255 A request to force an erase of the password from the media
260 A delete notification from the file system
265 A request for information on the last error
267 EGetLastErrorInfo=16,
269 EFirstReqNumberReservedForPaging=17,
270 // DO NOT REUSE ANY OF THE REQUEST NUMBERS BETWEEN THIS AND THE LAST RESERVED REQ NUMBER
271 // ALSO DO NOT INSERT ANY REQUEST NUMBERS BEFORE THIS, AS THIS WILL BE A COMPATIBILITY BREEAK
272 ELastReqNumberReservedForPaging=31,
284 virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer); /**< @internalComponent */
285 virtual TInt Request(TInt aFunction, TAny* a1, TAny* a2); /**< @internalComponent */
287 void NotifyChange(DPrimaryMediaBase& aPrimaryMedia, TBool aMediaChange);
289 inline void Deque(); /**< @internalComponent */
292 #ifdef __DEMAND_PAGING__
293 TInt LockMountInfo(DPrimaryMediaBase& aPrimaryMedia, TLocDrvRequest& aReq);
294 void UnlockMountInfo(DPrimaryMediaBase& aPrimaryMedia);
296 TInt ReadPasswordData(TLocDrvRequest& aReq, TLocalDrivePasswordData& aPswData, TMediaPassword& aOldPasswd, TMediaPassword& aNewPasswd);
299 TLocDrv* iDrive; /**< @internalComponent */
300 SDblQueLink iLink; /**< @internalComponent */
301 TClientDataRequest<TBool>* iNotifyChangeRequest; /**< @internalComponent */
302 TLocalDriveCleanup iCleanup; /**< @internalComponent */
308 inline DLocalDrive& TLocalDriveCleanup::LocalDrive()
309 { return *_LOFF(this,DLocalDrive,iCleanup); }
318 A class that encapsulates the request information received from the client,
319 and gives the media driver access to the request ID and other associated
320 parameters, such as the request length, offset, the requesting thread,
321 source and destination address etc.
323 An object of this type is passed to DMediaDriver::Request().
325 @see DMediaDriver::Request()
327 class TLocDrvRequest : public TThreadMessage
339 EPaging=0x08, // a paging request
340 EBackgroundPaging=0x10, // a background paging request. @see DMediaPagingDevice::Write()
341 ECodePaging=0x20, // a code paging request
342 EDataPaging=0x40, // a data paging request
343 ETClientBuffer=0x80, // RemoteDes() points to a TClientBuffer
344 EKernelBuffer=0x100, // RemoteDes() points to a kernel-side buffer
349 Gets a reference to the object containing the request information.
351 @return The request information.
353 inline static TLocDrvRequest& Get()
354 {return (TLocDrvRequest&)Kern::Message();}
360 For media drivers, this is one of the DLocalDrive::TRequestId enumerated values.
362 @return The request ID.
364 @see DLocalDrive::TRequestId
367 {return *(TInt*)&iValue;}
371 Gets the position on the media on which the request operates.
373 This applies to operations ERead, EWrite and EFormat.
375 Note that the partition offset is taken into account by the underlying
376 local media subsystem.
378 @return The position on the media.
380 @see TRequestId::ERead
381 @see TRequestId::EWrite
382 @see TRequestId::EFormat
385 {return *(Int64*)&iArg[0];}
389 Gets the length associated with the operation.
391 This is the number of bytes associated with the media request.
392 It applies to operations ERead, EWrite and EFormat.
394 @return The length, in bytes.
396 @see TRequestId::ERead
397 @see TRequestId::EWrite
398 @see TRequestId::EFormat
400 inline Int64& Length()
401 {return *(Int64*)&iArg[2];}
405 Gets a pointer to the remote thread that requested the operation.
407 This may be used to access the data to be read from the remote thread's process,
408 or the area to which data is to be written in the remote thread's process.
409 However, it is recommended that such operations be performed
410 using ReadRemote() and WriteRemote()
412 @return A reference to a pointer to the remote thread.
414 @see TLocDrvRequest::ReadRemote()
415 @see TLocDrvRequest::WriteRemote()
417 inline DThread*& RemoteThread()
418 {return *(DThread**)&iArg[4];}
422 Gets a pointer to the descriptor in the remote thread's process that
423 contains the data to be read, or is the target for data to be written.
425 However, it is recommended that such read or write operations be performed
426 using ReadRemote() and WriteRemote().
428 @return A reference to a pointer to the remote descriptor.
430 @see TLocDrvRequest::ReadRemote()
431 @see TLocDrvRequest::WriteRemote()
433 inline TAny*& RemoteDes()
434 {return *(TAny**)&iArg[5];}
438 Gets the offset within the descriptor in the remote thread's process.
440 @return The offset within the descriptor.
442 inline TInt& RemoteDesOffset()
443 {return *(TInt*)&iArg[6];}
450 {return *(TInt*)&iArg[7];}
456 inline TLocDrv*& Drive()
457 {return *(TLocDrv**)&iArg[8];}
463 inline TInt& DriverFlags()
464 {return *(TInt*)&iArg[9];}
468 Returns true if Physical memory addresses are available for this TLocDrvRequest.
469 @return ETrue if a physical memory address is available.
471 inline TBool IsPhysicalAddress()
472 {return Flags() & EPhysAddr;}
474 TInt ProcessMessageData(TAny* args);
475 void CloseRemoteThread();
476 IMPORT_C TInt ReadRemote(TDes8* aDes, TInt anOffset);
477 IMPORT_C TInt ReadRemote(const TAny* aSrc, TDes8* aDes);
478 IMPORT_C TInt ReadRemoteRaw(TAny* aDes, TInt aSize);
479 IMPORT_C TInt WriteRemote(const TDesC8* aDes, TInt anOffset);
480 IMPORT_C TInt WriteRemoteRaw(const TAny* aSrc, TInt aSize);
481 IMPORT_C TInt CheckAndAdjustForPartition();
482 #if !defined(__WINS__)
483 IMPORT_C TInt WriteToPageHandler(const TAny* aSrc, TInt aSize, TInt anOffset);
484 IMPORT_C TInt ReadFromPageHandler(TAny* aDst, TInt aSize, TInt anOffset);
486 IMPORT_C TInt GetNextPhysicalAddress(TPhysAddr& aPhysAddr, TInt& aLength);
495 inline void DLocalDrive::Deque()
505 Defines a structure used to contain information that describes an individual
508 There is one of these for each partition that exists on a media device.
512 class TPartitionEntry
517 The start address of the partition, described as a relative offset,
518 in bytes, from the start of the media.
520 This value is used by the local media subsystem to calculate
521 the absolute address on the media whenever an access such as a Read,
522 Write or Format request is made.
524 Int64 iPartitionBaseAddr;
528 The length of the partition, in bytes.
534 The Boot Indicator record, as described in the Master Boot Record on
535 FAT Partitioned devices.
537 This is currently unused by the local media subsystem.
539 TUint16 iBootIndicator;
543 Describes the type of partition.
545 The File Server uses this to decide the type of filesystem to be mounted
548 Symbian OS supports many partition types, as defined in partitions.h.
549 You are, however, free to invent your own partition type, on which
550 you could, for example, mount your own filesystem. However, make sure
551 that your partition type does not clash with an existing partition type.
553 Note that a media driver does not does not have to verify that
554 the partition actually contains a file system of this type; it just sets
555 this value to indicate the intended use for this partition.
557 TUint16 iPartitionType;
567 A constant that defines the maximum number of partitions that can exist on
570 @see TPartitionInfo::iPartitionCount
572 const TInt KMaxPartitionEntries=0x10;
581 Contains partition information for a media device.
583 An object of this type is passed to the media driver's implementation of
584 DMediaDriver::PartitionInfo() to be filled in.
586 @see DMediaDriver::PartitionInfo()
593 Default constructor that clears this object's memory to binary zeroes.
599 The total size of the media, in bytes.
601 Int64 iMediaSizeInBytes;
605 The total number of partitions that exist on the media.
607 This is always less than or equal to KMaxPartitionEntries.
609 @see KMaxPartitionEntries
611 TInt iPartitionCount;
615 Information that describes each individual partition on the device.
617 Each partition is represented by an array of TPartitionEntry objects.
618 Each entry must be created in the order of the start offset, so that
619 iEntry[0] specifies the partition with
620 the smallest iPartitionBaseAddr value.
622 @see TPartitionEntry::iPartitionBaseAddr
625 TPartitionEntry iEntry[KMaxPartitionEntries];
632 class DPrimaryMediaBase;
634 #ifdef __DEMAND_PAGING__
635 class DFragmentationPagingLock;
642 class TLocDrv : public TPartitionEntry
645 TLocDrv(TInt aDriveNumber);
647 inline TInt Connect(DLocalDrive* aLocalDrive);
648 inline void Disconnect(DLocalDrive* aLocalDrive);
649 inline TInt Request(TLocDrvRequest& aRequest);
653 DPrimaryMediaBase* iPrimaryMedia;
654 TInt iPartitionNumber;
655 TErrorInfo iLastErrorInfo;
656 #ifdef __DEMAND_PAGING__
663 DDmaHelper* iDmaHelper;
670 Kernel-side representation of a media entity. A DMedia object instantiates a
671 media driver to provide access to the physical media.
673 Multiple DMedia objects may be required by some devices, e.g. multi-media cards
674 with combined SRAM and Flash or cards containing user and protected areas.
676 class DMedia : public DBase
680 Declaration of all legal states for the media driver.
685 Media is powered down and the media drivers are closed. This is the
686 initial state when a media driver is created and the final state when
687 the driver is closed.
691 /** Media driver has started powerup sequence. */
694 /** Media is being opened. */
697 /** Media is open and the partition information is being read. */
698 EReadPartitionInfo=3,
700 /** The media driver is open and ready to accept commands. */
706 /** Powering up with media drivers open. */
712 /** The media is powered down, but the media driver still exists. */
713 EPoweredDown=8 // powered down with media drivers open
717 IMPORT_C virtual TInt Create(TMediaDevice aDevice, TInt aMediaId, TInt);
720 inline Int64 MediaLenInBytes();
721 inline TMediaDevice DeviceType();
722 inline TInt PartitionCount();
723 inline Int64 PartitionBaseAddr(TInt aPartition);
724 inline Int64 PartitionLen(TInt aPartition);
727 static TInt MediaCallBack(TAny *aPtr);
730 The unique ID associated with this media entity.
731 ID allocated when the media is first created.
733 @see LocDrv::RegisterMediaDevice
738 The unique ID for the device.
742 TMediaDevice iDevice;
745 Partition information for the media device.
749 TPartitionInfo iPartitionInfo;
752 The media's physical device driver.
756 DMediaDriver *iDriver;
759 Mount information for the media device.
763 TMountInfoData iMountInfo;
766 #ifdef __DEMAND_PAGING__
767 class DFragmentationPagingLock;
768 class DMediaPagingDevice;
775 The DPrimaryMedia base class which is derived from DMedia class is responsible for controlling the overall state of the media
776 (for example whether the power is applied or the partition information has been determined and so on).
777 Each media driver or extension that registers for a set of local drives also has to register for a set of DMedia objects at the same time.
778 This media set must contain just one primary media object.
779 The driver that performs drive registration is responsible for creating the primary media object itself,
780 which it then passes over to the local media sub-system for ownership.
781 If further media objects are specified in the set, then the local media sub-system itself creates DMedia instances for these on behalf of the driver.
783 class DPrimaryMediaBase : public DMedia
792 enum TForceMediaChangeFlags
795 Specifying zero as the flag for DPrimaryMediaBase::ForceMediaChange(),
796 results in all media drivers associated with the primary media being
798 All pending requests on all logical drives associated with the primary
799 media will be cancelled.
801 @see DPrimaryMediaBase::ForceMediaChange()
802 @see RLocalDrive::ForceMediaChange()
804 KForceMediaChangeReOpenAllMediaDrivers = 0,
806 This flag is used to simulate ejecting and re-inserting the media.
807 All pending requests on all logical drives associated with the primary
808 media will be cancelled.
809 N.B. This is asynchronous in behaviour i.e. the caller will need to wait
810 for (two) media change notifications before the drive is ready for use
812 @see DPBusPrimaryMedia::ForceMediaChange()
813 @see RLocalDrive::ForceMediaChange()
815 KMediaRemountForceMediaChange = 0x00000001,
817 This flag is used to force the media driver for the specified logical
818 drive to be closed and reopened.
819 It should not affect any pending requests on other logical drives
820 associated with the primary media.
822 @see DPrimaryMediaBase::ForceMediaChange()
823 @see RLocalDrive::ForceMediaChange()
825 KForceMediaChangeReOpenMediaDriver = 0x80000000
829 IMPORT_C DPrimaryMediaBase();
831 // provided by implementation
832 IMPORT_C virtual TInt Create(TMediaDevice aDevice, TInt aMediaId, TInt aLastMediaId);
833 IMPORT_C virtual TInt Connect(DLocalDrive* aLocalDrive);
834 IMPORT_C virtual void Disconnect(DLocalDrive* aLocalDrive);
835 IMPORT_C virtual TInt Request(TLocDrvRequest& aRequest);
836 IMPORT_C virtual TInt QuickCheckStatus();
837 IMPORT_C virtual TInt ForceMediaChange(TInt aMode);
838 IMPORT_C virtual TInt InitiatePowerUp();
839 IMPORT_C virtual TInt DoInCritical();
840 IMPORT_C virtual void DoEndInCritical();
841 IMPORT_C virtual void DeltaCurrentConsumption(TInt aCurrent);
842 IMPORT_C virtual void DefaultDriveCaps(TLocalDriveCapsV2& aCaps);
843 IMPORT_C virtual TBool IsRemovableDevice(TInt& aSocketNum);
845 // used by implementation
846 IMPORT_C void NotifyMediaChange();
847 IMPORT_C void NotifyPowerDown();
848 IMPORT_C void NotifyEmergencyPowerDown();
849 IMPORT_C void NotifyPsuFault(TInt anError);
850 IMPORT_C void NotifyMediaPresent();
851 IMPORT_C void PowerUpComplete(TInt anError);
853 IMPORT_C virtual void HandleMsg(TLocDrvRequest& aRequest);
854 IMPORT_C virtual TInt DoRequest(TLocDrvRequest& aRequest);
855 TInt OpenMediaDriver();
856 void CloseMediaDrivers(DMedia* aMedia = NULL);
857 void StartOpenMediaDrivers();
858 void OpenNextMediaDriver();
859 void DoOpenMediaDriverComplete(TInt anError);
860 void DoPartitionInfoComplete(TInt anError);
861 void CompleteCurrent(TInt anError);
862 void CompleteRequest(TLocDrvRequest& aMsg, TInt aResult);
863 IMPORT_C void RunDeferred();
864 void SetClosed(TInt anError);
865 void NotifyClients(TBool aMediaChange,TLocDrv* aLocDrv=NULL);
867 void EndInCritical();
868 void UpdatePartitionInfo();
869 void MediaReadyHandleRequest();
870 TInt SendReceive(TLocDrvRequest& aReq, TLinAddr aLinAddress = NULL);
872 #ifdef __DEMAND_PAGING__
873 TInt PinSendReceive(TLocDrvRequest& aReq, TLinAddr aStart = NULL);
874 TInt PinFragmentSendReceive(TLocDrvRequest& aReq, TLinAddr aLinAddress, TInt aLength);
876 TBool PagingMediaPinAddress(TLinAddr aLinAddress, TInt aSize);
877 void PagingMediaUnpinAddress();
880 #ifdef __DEMAND_PAGING__
881 void RequestCountInc();
882 void RequestCountDec();
886 TInt iLastMediaId; /**< @internalComponent */
889 SDblQue iConnectionQ; /**< @internalComponent */
890 TMessageQue iDeferred; /**< @internalComponent */
891 TMessageQue iWaitMedChg; /**< @internalComponent */
892 TInt iState; /**< @internalComponent */
893 TInt iCritical; /**< @internalComponent */
894 TLocDrvRequest* iCurrentReq;
895 TDfc iAsyncDfc; /**< @internalComponent */
896 TInt iAsyncErrorCode; /**< @internalComponent */
897 RPhysicalDeviceArray iPhysDevArray; /**< @internalComponent */
900 DBody* iBody; /**< @internalComponent */
902 TInt iNextMediaId; /**< @internalComponent */
903 TInt iTotalPartitionsOpened; /**< @internalComponent */
904 TInt iMediaDriversOpened; /**< @internalComponent */
905 DMediaDriver* iNextMediaDriver; /**< @internalComponent */
908 #ifdef __DEMAND_PAGING__
909 // keep the size of class as it is used as base for PBus and may not want to bother building DP specific version.
910 TUint8 iPagingMedia; /**< @internalComponent */
911 TUint8 iDataPagingMedia; /**< @internalComponent */
912 TUint8 iRomPagingMedia; /**< @internalComponent */
913 TUint8 iRunningDeferred; /**< @internalComponent */
915 TInt iRunningDeferred; /**< @internalComponent */
919 #ifdef __DEMAND_PAGING__
925 NONSHARABLE_CLASS(DMediaPagingDevice) : public DPagingDevice
928 enum TPagingRequestId
931 Identifies any middle fragment of a Write request on a partition of a media that supports paging.
934 EWriteRequestFragment = DLocalDrive::EFirstReqNumberReservedForPaging,
937 Identifies the last fragment of a Write request on a partition of a media that supports paging.
940 EWriteRequestFragmentLast = DLocalDrive::EFirstReqNumberReservedForPaging+1,
943 Request for paging in (read) data from the ROM store area.
945 ERomPageInRequest = DLocalDrive::EFirstReqNumberReservedForPaging+2,
948 Request for paging in (read) data from the code store area.
950 ECodePageInRequest = DLocalDrive::EFirstReqNumberReservedForPaging+3,
953 Provided to allow the following compile time assert.
955 EPagingRequestHighWaterMark
957 __ASSERT_COMPILE(EPagingRequestHighWaterMark <= DLocalDrive::ELastReqNumberReservedForPaging + 1);
966 DMediaPagingDevice(DPrimaryMediaBase* aPtr);
967 virtual ~DMediaPagingDevice();
969 // from DPagingDevice
970 virtual TInt Read(TThreadMessage* aReq,TLinAddr aBuffer,TUint aOffset,TUint aSize,TInt aDrvNumber);
971 virtual TInt Write(TThreadMessage* aReq,TLinAddr aBuffer,TUint aOffset,TUint aSize, TBool aBackground);
972 virtual TInt DeleteNotify(TThreadMessage* aReq,TUint aOffset,TUint aSize);
974 void CompleteRequest(TThreadMessage* aMsg, TInt aResult);
975 void SendToMainQueueDfcAndBlock(TThreadMessage* aMsg);
976 void SendToDeferredQ(TThreadMessage* aMsg);
977 inline static TBool PageInRequest(TLocDrvRequest& aReq);
978 inline static TBool PageOutRequest(TLocDrvRequest& aReq);
979 inline static TBool PagingRequest(TLocDrvRequest& aReq);
982 TMessageQue iDeferredQ;
983 DPrimaryMediaBase* iPrimaryMedia;
986 TUint8 iDeleteNotifyNotSupported;
990 TAny* iMountInfoDataLock;
991 TAny* iMountInfoDescHdrLock;
992 TAny* iMountInfoDescLenLock;
994 TInt iFirstLocalDriveNumber;
995 TInt iRomPagingDriveNumber;
996 TInt iDataPagingDriveNumber;
998 NFastMutex iInstrumentationLock; // To protect instrumentation data
1000 #ifdef __CONCURRENT_PAGING_INSTRUMENTATION__
1001 TUint8 iServicingROM;
1002 TUint8 iServicingCode;
1003 TUint8 iServicingDataIn;
1004 TUint8 iServicingDataOut;
1006 SMediaROMPagingConcurrencyInfo iROMStats;
1007 SMediaCodePagingConcurrencyInfo iCodeStats;
1008 SMediaDataPagingConcurrencyInfo iDataStats;
1011 #ifdef __DEMAND_PAGING_BENCHMARKS__
1012 SPagingBenchmarkInfo iROMBenchmarkData;
1013 SPagingBenchmarkInfo iCodeBenchmarkData;
1014 SPagingBenchmarkInfo iDataInBenchmarkData;
1015 SPagingBenchmarkInfo iDataOutBenchmarkData;
1016 SMediaPagingInfo iMediaPagingInfo;
1020 inline TBool DMediaPagingDevice::PageInRequest(TLocDrvRequest& aReq)
1023 (aReq.Flags() & TLocDrvRequest::EPaging) &&
1024 (aReq.Id() == ERomPageInRequest ||
1025 aReq.Id() == ECodePageInRequest ||
1026 aReq.Id() == DLocalDrive::ERead);}
1028 inline TBool DMediaPagingDevice::PageOutRequest(TLocDrvRequest& aReq)
1031 (aReq.Flags() & TLocDrvRequest::EPaging) &&
1032 (aReq.Id() == DLocalDrive::EWrite);}
1034 inline TBool DMediaPagingDevice::PagingRequest(TLocDrvRequest& aReq)
1036 return (aReq.Flags() & TLocDrvRequest::EPaging);
1044 class DFragmentationPagingLock: public DDemandPagingLock
1047 TInt Construct(TUint aNumPages);
1049 void LockFragmentation()
1052 __ASSERT_DEBUG(iFragmentationMutex, Kern::Fault("LOCMEDIA_H",__LINE__));
1054 Kern::MutexWait(*iFragmentationMutex);
1056 void UnlockFragmentation()
1059 __ASSERT_DEBUG(iFragmentationMutex, Kern::Fault("LOCMEDIA_H",__LINE__));
1061 Kern::MutexSignal(*iFragmentationMutex);
1066 TUint iFragmentGranularity;
1068 DMutex* iFragmentationMutex; // to protect Kernel memory locking
1070 #endif //__DEMAND_PAGING__
1076 An abstract base class for all media drivers in the local drive system.
1078 All media drivers, whether associated with fixed media, such as the internal
1079 drive, or removable media, such as a PC Card or MultiMediaCard, must define
1080 and implement a class derived from this one.
1082 An instance of this class is created by the media driver's PDD factory,
1083 an instance of a class derived from DPhysicalDevice.
1085 @see DPhysicalDevice::Create()
1086 @see DPhysicalDevice
1088 class DMediaDriver : public DBase
1091 IMPORT_C DMediaDriver(TInt aMediaId);
1092 IMPORT_C virtual ~DMediaDriver();
1093 IMPORT_C virtual void Close();
1095 IMPORT_C virtual void Disconnect(DLocalDrive* aLocalDrive, TThreadMessage* aMsg);
1098 A function called by the local media subsystem to deal with a request,
1099 and which must be implemented by the media driver.
1101 @param aRequest An object that encapsulates information about the request.
1103 @return A value indicating the result:
1104 KErrNone, if the request has been sucessfully initiated;
1105 KErrNotSupported, if the request cannot be handled by the device;
1106 KMediaDriverDeferRequest, if the request cannot be handled
1107 immediately because of an outstanding request (this request will be
1108 deferred until the outstanding request has completed);
1109 otherwise one of the other system-wide error codes.
1111 virtual TInt Request(TLocDrvRequest& aRequest)=0;
1114 A function called by the local media subsystem to get partition information
1115 for the media device.
1117 It is called once the subsystem has been notified that the media driver
1118 is open and has been succesfully initialised.
1120 This function must be implemented by the media driver.
1122 @param anInfo An object that, on successful return, contains
1123 the partition information.
1125 @return KErrNone, if retrieval of partition information is to be
1126 done asynchronously;
1127 KErrCompletion, if retrieval of partition information has been
1128 done synchronously, and successfully;
1129 one of the other system-wide error codes, if retrieval of partition
1130 information has been done synchronously, but unsuccessfully.
1132 virtual TInt PartitionInfo(TPartitionInfo &anInfo)=0;
1135 A function called by the local media subsystem to inform the media driver
1136 that the device should power down.
1138 This function must be implemented by the media driver.
1140 virtual void NotifyPowerDown()=0;
1143 A function called by the local media subsystem to inform the media driver
1144 that the device is to be immediately powered down.
1146 This function must be implemented by the media driver.
1148 virtual void NotifyEmergencyPowerDown()=0;
1150 IMPORT_C void SetTotalSizeInBytes(Int64 aTotalSizeInBytes, TLocDrv* aLocDrv=NULL);
1151 IMPORT_C Int64 TotalSizeInBytes();
1152 IMPORT_C void SetCurrentConsumption(TInt aValue);
1153 IMPORT_C TInt InCritical();
1154 IMPORT_C void EndInCritical();
1155 IMPORT_C void Complete(TLocDrvRequest& aRequest, TInt aResult);
1156 IMPORT_C void OpenMediaDriverComplete(TInt anError);
1157 IMPORT_C void PartitionInfoComplete(TInt anError);
1159 DPhysicalDevice* iPhysicalDevice;/**< @internalComponent */
1160 Int64 iTotalSizeInBytes; /**< @internalComponent */
1161 TInt iCurrentConsumption; /**< @internalComponent */
1162 DPrimaryMediaBase* iPrimaryMedia;/**< @internalComponent */
1163 TBool iCritical; /**< @internalComponent */
1164 TMountInfoData* iMountInfo; /**< @internalComponent */
1174 A structure that a media driver may find useful in its implementation,
1175 and is used to contain the information required when registering
1176 the media driver with the Local Media Subsystem.
1178 @see LocDrv::RegisterMediaDevice()
1180 struct SMediaDeviceInfo
1184 The unique Media ID for a device.
1186 This can take one of the enumerated values defined
1187 by the TMediaDevice enum.
1189 TMediaDevice iDevice;
1193 Specifies the number of local drive objects to be assigned to the media driver.
1195 Drives that support more than one partition must specify a number greater than 1.
1201 A pointer to an array of TInt values, which define the drive numbers that
1202 are to be allocated to each partition.
1204 0 signifies Drive C, 1 signifies drive D, etc. For example, to allocate
1205 drive letters J and K, specify an array containing the values [7,8].
1206 Note that the size of this array must be the same as the value specified
1209 const TInt* iDriveList;
1213 Specifies the total number of DMedia objects to be associated with
1216 This number includes the primary DPrimaryMedia object, plus all of
1217 the DMedia objects that are created for each additional drive, and
1218 which hold basic information about partitions.
1224 A pointer to a descriptor containing the name of the media driver,
1227 const TDesC* iDeviceName;
1237 A set of utility functions used in the management of local media drivers.
1242 IMPORT_C static TInt RegisterMediaDevice(TMediaDevice aDevice, TInt aDriveCount, const TInt* aDriveList, DPrimaryMediaBase* aPrimaryMedia, TInt aNumMedia, const TDesC& aName);
1243 IMPORT_C static TInt RegisterPasswordStore(TPasswordStore* aStore);
1244 IMPORT_C static TPasswordStore* PasswordStore();
1245 #if !defined(__WINS__)
1246 IMPORT_C static TInt RegisterPagingDevice(DPrimaryMediaBase* aPrimaryMedia, const TInt* aPagingDriveList, TInt aDriveCount, TUint aPagingType, TInt aReadShift, TUint aNumPages);
1248 IMPORT_C static TInt RegisterDmaDevice(DPrimaryMediaBase* aPrimaryMedia,
1249 TInt aMediaBlockSize,
1250 TInt aDmaMaxAddressable,
1251 TInt aDmaAlignment);
1257 inline TInt TLocDrv::Connect(DLocalDrive* aLocalDrive)
1258 { return iPrimaryMedia->Connect(aLocalDrive); }
1263 inline void TLocDrv::Disconnect(DLocalDrive* aLocalDrive)
1264 { iPrimaryMedia->Disconnect(aLocalDrive); }
1269 inline TInt TLocDrv::Request(TLocDrvRequest& aRequest)
1270 { return iPrimaryMedia->Request(aRequest); }
1273 Returns the length of the media, in bytes, according to the partition information.
1275 @return Total length of the media, in bytes.
1279 inline Int64 DMedia::MediaLenInBytes()
1280 {return(iPartitionInfo.iMediaSizeInBytes);}
1283 Returns the unique media ID for this device.
1285 @return The device ID that was set in the call to DMedia::Create().
1286 The return value will be one of the enumerators declared in TMediaDevice
1290 inline TMediaDevice DMedia::DeviceType()
1294 Returns the total number of partitions that exist on the media according to the
1295 partition information.
1297 This will always be less than or equal to KMaxPartitionEntries.
1299 @return Number of partitions that exist on the media.
1301 @see KMaxPartitionEntries
1304 inline TInt DMedia::PartitionCount()
1305 {return(iPartitionInfo.iPartitionCount);}
1308 The start address of the partition, described as a relative offset, in bytes,
1309 from the start of the media.
1311 This value is used by the local media subsystem to calculate the absolute
1312 address on the media whenever an access such as a Read, Write or Format request
1315 @param aPartition The partition whose start address is to be returned.
1317 @return The start address of the partition.
1319 @see TPartitionEntry
1322 inline Int64 DMedia::PartitionBaseAddr(TInt aPartition)
1323 {return(iPartitionInfo.iEntry[aPartition].iPartitionBaseAddr);}
1326 Returns the length of the partition, in bytes.
1328 @param aPartition The partition whose length is to be returned.
1330 @return The length of the partition.
1332 @see TPartitionEntry
1335 inline Int64 DMedia::PartitionLen(TInt aPartition)
1336 {return(iPartitionInfo.iEntry[aPartition].iPartitionLen);}
1342 A utility class for scanning MBR/EBR partition tables.
1344 class TPartitionTableScanner
1347 enum {ESectorShift=9, ESectorSize=512};
1351 SPart(const TUint8* a);
1363 IMPORT_C void Set(TUint8* aSectorBuffer, TPartitionEntry* aEntry, TInt aMaxPartitions, TInt64 aMediaSize);
1364 IMPORT_C TInt64 NextLBA();
1365 IMPORT_C TInt NumberOfPartitionsFound() const;
1366 TInt MakeEntry(const SPart& aP);
1368 TInt64 iMediaSize; // Total media size in sectors
1369 TInt64 iLBA; // LBA currently in sector buffer
1370 TInt64 iFirstEBR; // LBA of first EBR if any
1371 SEBR iStack[EMaxNest];
1373 TUint8* iSectorBuffer; // Pointer to 512 byte area where sector data is stored
1374 TPartitionEntry* iFirstEntry; // Where first scanned partition is stored
1375 TPartitionEntry* iNextEntry; // Where next scanned partition will be stored
1376 TPartitionEntry* iLimit; // iFirstEntry + max partitions