sl@0
|
1 |
// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Partition Management Abstract class for Embedded MMC devices
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@publishedPartner
|
sl@0
|
21 |
@released
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef __EMMCPTN_H__
|
sl@0
|
25 |
#define __EMMCPTN_H__
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <drivers/mmc.h>
|
sl@0
|
28 |
#include <drivers/locmedia.h>
|
sl@0
|
29 |
#include <drivers/pbusmedia.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
class DEMMCPartitionInfo : public DBase
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
* Base Abstract class for classes that define a partitioning scheme for Embedded MMC devices
|
sl@0
|
34 |
*
|
sl@0
|
35 |
* @publishedPartner
|
sl@0
|
36 |
* @released
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
* Initialise the Partition Object.
|
sl@0
|
42 |
*
|
sl@0
|
43 |
* Called as part of the creation process for the MMC Media driver.
|
sl@0
|
44 |
*
|
sl@0
|
45 |
* Initialisation can include activities such as Memory structure allocation and
|
sl@0
|
46 |
* creation of any required driver session/handles.
|
sl@0
|
47 |
*
|
sl@0
|
48 |
* @param aDriver Owning DMediaDriver class
|
sl@0
|
49 |
* @return KErrNone if successful, standard error code otherwise.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
virtual TInt Initialise(DMediaDriver* aDriver) =0;
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
* Read the partition information for the media.
|
sl@0
|
55 |
*
|
sl@0
|
56 |
* Called as a child function of the PartitionInfo() method.
|
sl@0
|
57 |
*
|
sl@0
|
58 |
* @see DMmcMediaDriverFlash::PartitionInfo()
|
sl@0
|
59 |
*
|
sl@0
|
60 |
* @param anInfo An object that, on successful return, contains the partition information.
|
sl@0
|
61 |
* @return KErrNone if successful, standard error code otherwise.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
virtual TInt PartitionInfo(TPartitionInfo& anInfo, const TMMCCallBack& aCallBack) =0;
|
sl@0
|
64 |
|
sl@0
|
65 |
/**
|
sl@0
|
66 |
* Returns partition specific drive capability attributes.
|
sl@0
|
67 |
*
|
sl@0
|
68 |
* Called as a child function of the Caps() method.
|
sl@0
|
69 |
*
|
sl@0
|
70 |
* @see DMmcMediaDriverFlash::Caps()
|
sl@0
|
71 |
*
|
sl@0
|
72 |
* @param aDrive Local drive to be queried.
|
sl@0
|
73 |
* @param aInfo Media drive capability object to be populated.
|
sl@0
|
74 |
* @return KErrNone if successful, standard error code otherwise.
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
virtual TInt PartitionCaps(TLocDrv& aDrive, TDes8& aInfo) =0;
|
sl@0
|
77 |
};
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
* Factory Method that returns an instance of a DEMMCPartitionInfo class.
|
sl@0
|
81 |
*
|
sl@0
|
82 |
* @return Newly created DEMMCPartitionInfo object.
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
IMPORT_C DEMMCPartitionInfo* CreateEmmcPartitionInfo();
|
sl@0
|
85 |
|
sl@0
|
86 |
#endif
|