author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Tue, 26 Jan 2010 13:13:38 +0200 | |
changeset 39 | 5d2844f35677 |
parent 33 | 0173bcd7697c |
permissions | -rw-r--r-- |
0 | 1 |
// Copyright (c) 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". |
|
7 |
// |
|
8 |
// Initial Contributors: |
|
9 |
// Nokia Corporation - initial contribution. |
|
10 |
// |
|
11 |
// Contributors: |
|
12 |
// |
|
13 |
// Description: |
|
14 |
// Partition Management for Embedded MMC devices |
|
15 |
// |
|
16 |
// |
|
17 |
||
18 |
#include <drivers/emmcptn.h> |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
19 |
#include "OstTraceDefinitions.h" |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
20 |
#ifdef OST_TRACE_COMPILER_IN_USE |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
21 |
#include "locmedia_ost.h" |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
22 |
#ifdef __VC32__ |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
23 |
#pragma warning(disable: 4127) // disabling warning "conditional expression is constant" |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
24 |
#endif |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
25 |
#include "emmcptnTraces.h" |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
26 |
#endif |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
27 |
|
0 | 28 |
|
29 |
const TInt KDiskSectorShift=9; |
|
30 |
||
31 |
class DLegacyEMMCPartitionInfo : public DEMMCPartitionInfo |
|
32 |
{ |
|
33 |
public: |
|
34 |
DLegacyEMMCPartitionInfo(); |
|
35 |
~DLegacyEMMCPartitionInfo(); |
|
36 |
public: |
|
37 |
virtual TInt Initialise(DMediaDriver* aDriver); |
|
38 |
virtual TInt PartitionInfo(TPartitionInfo& anInfo, const TMMCCallBack& aCallBack); |
|
39 |
virtual TInt PartitionCaps(TLocDrv& aDrive, TDes8& aInfo); |
|
40 |
||
41 |
protected: |
|
42 |
void SetPartitionEntry(TPartitionEntry* aEntry, TUint aFirstSector, TUint aNumSectors); |
|
43 |
||
44 |
private: |
|
45 |
static void SessionEndCallBack(TAny* aSelf); |
|
46 |
void DoSessionEndCallBack(); |
|
47 |
virtual TInt DecodePartitionInfo(); |
|
48 |
||
49 |
protected: |
|
50 |
DMediaDriver* iDriver; |
|
51 |
TPartitionInfo* iPartitionInfo; |
|
52 |
TMMCCallBack iSessionEndCallBack; |
|
53 |
TMMCCallBack iCallBack; // Where to report the PartitionInfo completion |
|
54 |
DMMCSession* iSession; |
|
55 |
TMMCard* iCard; |
|
56 |
TUint8* iIntBuf; |
|
57 |
}; |
|
58 |
||
59 |
DLegacyEMMCPartitionInfo::DLegacyEMMCPartitionInfo() |
|
60 |
: iSessionEndCallBack(DLegacyEMMCPartitionInfo::SessionEndCallBack, this) |
|
61 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
62 |
OstTraceFunctionEntry0( DLEGACYEMMCPARTITIONINFO_DLEGACYEMMCPARTITIONINFO_ENTRY ); |
0 | 63 |
} |
64 |
||
65 |
DLegacyEMMCPartitionInfo::~DLegacyEMMCPartitionInfo() |
|
66 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
67 |
OstTraceFunctionEntry0( DLEGACYEMMCPARTITIONINFO_DESTRUCTOR_ENTRY ); |
0 | 68 |
delete iSession; |
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
69 |
OstTraceFunctionExit0( DLEGACYEMMCPARTITIONINFO_DESTRUCTOR_EXIT ); |
0 | 70 |
} |
71 |
||
72 |
TInt DLegacyEMMCPartitionInfo::Initialise(DMediaDriver* aDriver) |
|
73 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
74 |
OstTraceFunctionEntry1( DLEGACYEMMCPARTITIONINFO_INITIALISE_ENTRY, this ); |
0 | 75 |
iDriver = aDriver; |
76 |
||
77 |
DMMCSocket* socket = ((DMMCSocket*)((DPBusPrimaryMedia*)(iDriver->iPrimaryMedia))->iSocket); |
|
78 |
if(socket == NULL) |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
79 |
{ |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
80 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_INITIALISE_EXIT1, this, KErrNoMemory ); |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
81 |
return KErrNoMemory; |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
82 |
} |
0 | 83 |
|
84 |
DMMCStack* stack = socket->Stack(0); |
|
85 |
iCard = stack->CardP(((DPBusPrimaryMedia*)(iDriver->iPrimaryMedia))->iSlotNumber); |
|
86 |
||
87 |
iSession = stack->AllocSession(iSessionEndCallBack); |
|
88 |
if (iSession == NULL) |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
89 |
return KErrNoMemory; |
0 | 90 |
|
91 |
iSession->SetStack(stack); |
|
92 |
iSession->SetCard(iCard); |
|
93 |
||
94 |
// this gets used before any access |
|
95 |
TInt bufLen, minorBufLen; |
|
96 |
stack->BufferInfo(iIntBuf, bufLen, minorBufLen); |
|
97 |
||
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
98 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_INITIALISE_EXIT2, this, KErrNone ); |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
99 |
return KErrNone; |
0 | 100 |
} |
101 |
||
102 |
TInt DLegacyEMMCPartitionInfo::PartitionInfo(TPartitionInfo& anInfo, const TMMCCallBack& aCallBack) |
|
103 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
104 |
OstTraceFunctionEntry1( DLEGACYEMMCPARTITIONINFO_PARTITIONINFO_ENTRY, this ); |
0 | 105 |
iPartitionInfo = &anInfo; |
106 |
iCallBack = aCallBack; |
|
107 |
// If media driver is persistent (see EMediaDriverPersistent), |
|
108 |
// the card may have changed since last power down, so reset CID |
|
109 |
iSession->SetCard(iCard); |
|
110 |
||
111 |
iSession->SetupCIMReadBlock(0, iIntBuf); |
|
112 |
||
113 |
TInt r = iDriver->InCritical(); |
|
114 |
if (r == KErrNone) |
|
115 |
r = iSession->Engage(); |
|
116 |
||
117 |
if(r != KErrNone) |
|
118 |
iDriver->EndInCritical(); |
|
119 |
||
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
120 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_PARTITIONINFO_EXIT, this, r ); |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
121 |
return r; |
0 | 122 |
} |
123 |
||
124 |
TInt DLegacyEMMCPartitionInfo::PartitionCaps(TLocDrv& aDrive, TDes8& aInfo) |
|
125 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
126 |
OstTraceFunctionEntry1( DLEGACYEMMCPARTITIONINFO_PARTITIONCAPS_ENTRY, this ); |
0 | 127 |
TLocalDriveCapsV6Buf& Info = static_cast< TLocalDriveCapsV6Buf&> (aInfo); |
128 |
||
129 |
// is this query for the swap partition ? |
|
130 |
if (aDrive.iPartitionType == KPartitionTypePagedData) |
|
131 |
{ |
|
132 |
Info().iFileSystemId = KDriveFileNone; |
|
133 |
Info().iDriveAtt|= KDriveAttHidden; |
|
134 |
} |
|
135 |
||
136 |
// is this query for the ROFS partition ? |
|
137 |
if (aDrive.iPartitionType == KPartitionTypeRofs) |
|
138 |
{ |
|
139 |
Info().iFileSystemId = KDriveFileSysROFS; |
|
140 |
Info().iMediaAtt&= ~KMediaAttFormattable; |
|
141 |
Info().iMediaAtt|= KMediaAttWriteProtected; |
|
142 |
} |
|
143 |
||
144 |
// is this query for the ROM partition ? |
|
145 |
if (aDrive.iPartitionType == KPartitionTypeROM) |
|
146 |
{ |
|
147 |
Info().iFileSystemId = KDriveFileNone; |
|
148 |
Info().iMediaAtt&= ~KMediaAttFormattable; |
|
149 |
Info().iMediaAtt|= KMediaAttWriteProtected; |
|
150 |
} |
|
151 |
||
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
152 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_PARTITIONCAPS_EXIT, this, KErrNone ); |
0 | 153 |
return KErrNone; |
154 |
} |
|
155 |
||
156 |
void DLegacyEMMCPartitionInfo::SessionEndCallBack(TAny* aSelf) |
|
157 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
158 |
OstTraceFunctionEntry0( DLEGACYEMMCPARTITIONINFO_SESSIONENDCALLBACK_ENTRY ); |
0 | 159 |
DLegacyEMMCPartitionInfo& self = *static_cast<DLegacyEMMCPartitionInfo*>(aSelf); |
160 |
self.DoSessionEndCallBack(); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
161 |
OstTraceFunctionExit0( DLEGACYEMMCPARTITIONINFO_SESSIONENDCALLBACK_EXIT ); |
0 | 162 |
} |
163 |
||
164 |
void DLegacyEMMCPartitionInfo::DoSessionEndCallBack() |
|
165 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
166 |
OstTraceFunctionEntry1( DLEGACYEMMCPARTITIONINFO_DOSESSIONENDCALLBACK_ENTRY, this ); |
0 | 167 |
iDriver->EndInCritical(); |
168 |
||
169 |
TInt r = iSession->EpocErrorCode(); |
|
170 |
||
171 |
if (r == KErrNone) |
|
172 |
r = DecodePartitionInfo(); |
|
173 |
||
174 |
iDriver->PartitionInfoComplete(r == KErrNone ? r : KErrNotReady); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
175 |
OstTraceFunctionExit1( DLEGACYEMMCPARTITIONINFO_DOSESSIONENDCALLBACK_EXIT, this ); |
0 | 176 |
} |
177 |
||
178 |
TInt DLegacyEMMCPartitionInfo::DecodePartitionInfo() |
|
179 |
// |
|
180 |
// decode partition info that was read into internal buffer |
|
181 |
// |
|
182 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
183 |
OstTraceFunctionEntry1( DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_ENTRY, this ); |
0 | 184 |
TUint partitionCount=iPartitionInfo->iPartitionCount=0; |
185 |
TInt defaultPartitionNumber=-1; |
|
186 |
TMBRPartitionEntry* pe; |
|
187 |
const TUint KMBRFirstPartitionOffsetAligned = KMBRFirstPartitionOffset & ~3; |
|
188 |
TInt i; |
|
189 |
||
190 |
// Read of the first sector successful so check for a Master Boot Record |
|
191 |
if (*(TUint16*)(&iIntBuf[KMBRSignatureOffset])!=0xAA55) |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
192 |
{ |
0 | 193 |
// If no valid signature give up now, No way to re-format an internal drive correctly |
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
194 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_EXIT1, this, KErrCorrupt ); |
0 | 195 |
return KErrCorrupt; |
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
196 |
} |
0 | 197 |
|
198 |
__ASSERT_COMPILE(KMBRFirstPartitionOffsetAligned + KMBRMaxPrimaryPartitions * sizeof(TMBRPartitionEntry) <= KMBRSignatureOffset); |
|
199 |
||
200 |
memmove(&iIntBuf[0], &iIntBuf[2], |
|
201 |
KMBRFirstPartitionOffsetAligned + KMBRMaxPrimaryPartitions * sizeof(TMBRPartitionEntry)); |
|
202 |
||
203 |
||
204 |
for (i=0, pe = (TMBRPartitionEntry*)(&iIntBuf[KMBRFirstPartitionOffsetAligned]); |
|
205 |
pe->iPartitionType != 0 && i < KMaxPartitionEntries; i++,pe--) |
|
206 |
{ |
|
207 |
if (pe->IsDefaultBootPartition()) |
|
208 |
{ |
|
209 |
SetPartitionEntry(&iPartitionInfo->iEntry[0],pe->iFirstSector,pe->iNumSectors); |
|
210 |
defaultPartitionNumber=i; |
|
211 |
partitionCount++; |
|
212 |
break; |
|
213 |
} |
|
214 |
} |
|
215 |
||
216 |
// Now add any other partitions |
|
217 |
for (i=0, pe = (TMBRPartitionEntry*)(&iIntBuf[KMBRFirstPartitionOffsetAligned]); |
|
218 |
pe->iPartitionType != 0 && i < KMaxPartitionEntries; i++,pe--) |
|
219 |
{ |
|
220 |
if (defaultPartitionNumber==i) |
|
221 |
{ |
|
222 |
// Already sorted |
|
223 |
} |
|
224 |
||
225 |
// FAT partition ? |
|
33
0173bcd7697c
Revision: 201001
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
226 |
else if (pe->IsValidDosPartition() || pe->IsValidFAT32Partition() || pe->IsValidExFATPartition()) |
0 | 227 |
{ |
228 |
SetPartitionEntry(&iPartitionInfo->iEntry[partitionCount],pe->iFirstSector,pe->iNumSectors); |
|
229 |
__KTRACE_OPT(KLOCDPAGING, Kern::Printf("Mmc: FAT partition found at sector #%u", pe->iFirstSector)); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
230 |
OstTrace1(TRACE_INTERNALS, DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_FAT, "FAT partition found at sector #%x", pe->iFirstSector); |
0 | 231 |
partitionCount++; |
232 |
} |
|
233 |
||
234 |
else if (pe->iPartitionType == KPartitionTypeROM) |
|
235 |
{ |
|
236 |
TPartitionEntry& partitionEntry = iPartitionInfo->iEntry[partitionCount]; |
|
237 |
SetPartitionEntry(&iPartitionInfo->iEntry[partitionCount],pe->iFirstSector,pe->iNumSectors); |
|
238 |
partitionEntry.iPartitionType = pe->iPartitionType; |
|
239 |
partitionCount++; |
|
240 |
||
241 |
__KTRACE_OPT(KLOCDPAGING, Kern::Printf("Mmc: KPartitionTypeROM found at sector #%u", pe->iFirstSector)); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
242 |
OstTrace1(TRACE_INTERNALS, DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_ROM, "KPartitionTypeROM found at sector #%x", pe->iFirstSector); |
0 | 243 |
} |
244 |
||
245 |
// ROFS partition ? |
|
246 |
else if (pe->iPartitionType == KPartitionTypeRofs) |
|
247 |
{ |
|
248 |
||
249 |
// Don't expose this for normal operation only boot? |
|
250 |
TPartitionEntry& partitionEntry = iPartitionInfo->iEntry[partitionCount]; |
|
251 |
SetPartitionEntry(&iPartitionInfo->iEntry[partitionCount],pe->iFirstSector,pe->iNumSectors); |
|
252 |
partitionEntry.iPartitionType = pe->iPartitionType; |
|
253 |
__KTRACE_OPT(KLOCDPAGING, Kern::Printf("Mmc: KPartitionTypeRofs found at sector #%u", pe->iFirstSector)); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
254 |
OstTrace1(TRACE_INTERNALS, DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_ROFS, "KPartitionTypeRofs found at sector #%x", pe->iFirstSector); |
0 | 255 |
partitionCount++; |
256 |
} |
|
257 |
||
258 |
// Swap partition ? |
|
259 |
else if (pe->iPartitionType == KPartitionTypePagedData) |
|
260 |
{ |
|
261 |
__KTRACE_OPT(KLOCDPAGING, Kern::Printf("Mmc: KPartitionTypePagedData found at sector #%u", pe->iFirstSector)); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
262 |
OstTrace1(TRACE_INTERNALS, DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_PAGED, "KPartitionTypeRofs found at sector #%x", pe->iFirstSector); |
0 | 263 |
TPartitionEntry& partitionEntry = iPartitionInfo->iEntry[partitionCount]; |
264 |
SetPartitionEntry(&iPartitionInfo->iEntry[partitionCount],pe->iFirstSector,pe->iNumSectors); |
|
265 |
partitionEntry.iPartitionType = pe->iPartitionType; |
|
266 |
partitionCount++; |
|
267 |
} |
|
268 |
} |
|
269 |
||
270 |
// Check the validity of the partition address boundaries |
|
271 |
// If there is any MBR errors |
|
272 |
if(partitionCount > 0) |
|
273 |
{ |
|
274 |
const TInt64 deviceSize = iCard->DeviceSize64(); |
|
275 |
TPartitionEntry& part = iPartitionInfo->iEntry[partitionCount - 1]; |
|
276 |
// Check that the card address space boundary is not exceeded by the last partition |
|
277 |
if(part.iPartitionBaseAddr + part.iPartitionLen > deviceSize) |
|
278 |
{ |
|
279 |
__KTRACE_OPT(KPBUSDRV, Kern::Printf("Mmc: MBR partition exceeds card memory space")); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
280 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_EXIT2, this, KErrCorrupt ); |
0 | 281 |
return KErrCorrupt; |
282 |
} |
|
283 |
||
284 |
// More than one partition. Go through all of them |
|
285 |
if (partitionCount > 0) |
|
286 |
{ |
|
287 |
for(i=partitionCount-1; i>0; i--) |
|
288 |
{ |
|
289 |
const TPartitionEntry& curr = iPartitionInfo->iEntry[i]; |
|
290 |
TPartitionEntry& prev = iPartitionInfo->iEntry[i-1]; |
|
291 |
// Check if partitions overlap |
|
292 |
if(curr.iPartitionBaseAddr < (prev.iPartitionBaseAddr + prev.iPartitionLen)) |
|
293 |
{ |
|
294 |
__KTRACE_OPT(KPBUSDRV, Kern::Printf("Mmc: Overlapping partitions")); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
295 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_EXIT3, this, KErrCorrupt ); |
0 | 296 |
return KErrCorrupt; |
297 |
} |
|
298 |
} |
|
299 |
} |
|
300 |
} |
|
301 |
||
302 |
if (defaultPartitionNumber==(-1) && partitionCount==0) |
|
303 |
{ |
|
304 |
__KTRACE_OPT(KPBUSDRV, Kern::Printf("No Valid Partitions Found!")); |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
305 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_EXIT4, this, KErrCorrupt ); |
0 | 306 |
return KErrCorrupt; |
307 |
} |
|
308 |
||
309 |
iPartitionInfo->iPartitionCount=partitionCount; |
|
310 |
iPartitionInfo->iMediaSizeInBytes=iCard->DeviceSize64(); |
|
311 |
||
312 |
#ifdef _DEBUG |
|
313 |
__KTRACE_OPT(KPBUSDRV, Kern::Printf("<Mmc:PartitionInfo (C:%d)",partitionCount)); |
|
314 |
for (TUint x=0; x<partitionCount; x++) |
|
315 |
__KTRACE_OPT(KPBUSDRV, Kern::Printf(" Partition%d (B:%xH L:%xH)",x,I64LOW(iPartitionInfo->iEntry[x].iPartitionBaseAddr),I64LOW(iPartitionInfo->iEntry[x].iPartitionLen))); |
|
316 |
#endif |
|
317 |
||
318 |
//Notify medmmc that partitioninfo is complete. |
|
319 |
iCallBack.CallBack(); |
|
320 |
||
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
321 |
OstTraceFunctionExitExt( DLEGACYEMMCPARTITIONINFO_DECODEPARTITIONINFO_EXIT5, this, KErrNone ); |
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
322 |
return KErrNone; |
0 | 323 |
} |
324 |
||
325 |
||
326 |
void DLegacyEMMCPartitionInfo::SetPartitionEntry(TPartitionEntry* aEntry, TUint aFirstSector, TUint aNumSectors) |
|
327 |
// |
|
328 |
// auxiliary static function to record partition information in TPartitionEntry object |
|
329 |
// |
|
330 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
331 |
OstTraceFunctionEntryExt( DLEGACYEMMCPARTITIONINFO_SETPARTITIONENTRY_ENTRY, this ); |
0 | 332 |
aEntry->iPartitionBaseAddr=aFirstSector; |
333 |
aEntry->iPartitionBaseAddr<<=KDiskSectorShift; |
|
334 |
aEntry->iPartitionLen=aNumSectors; |
|
335 |
aEntry->iPartitionLen<<=KDiskSectorShift; |
|
336 |
aEntry->iPartitionType=KPartitionTypeFAT12; |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
337 |
OstTraceFunctionExit1( DLEGACYEMMCPARTITIONINFO_SETPARTITIONENTRY_EXIT, this ); |
0 | 338 |
} |
339 |
||
340 |
// End - DLegacyEMMCPartitionInfo |
|
341 |
||
342 |
||
343 |
EXPORT_C DEMMCPartitionInfo* CreateEmmcPartitionInfo() |
|
344 |
{ |
|
39
5d2844f35677
Revision: 201004
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
345 |
OstTraceFunctionEntry0( _CREATEEMMCPARTITIONINFO_ENTRY ); |
0 | 346 |
return new DLegacyEMMCPartitionInfo; |
347 |
} |
|
348 |
||
349 |
DECLARE_STANDARD_EXTENSION() |
|
350 |
{ |
|
351 |
return KErrNone; |
|
352 |
} |