os/kernelhwsrv/kernel/eka/include/drivers/sdcard.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1999-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
// 
sl@0
    15
//
sl@0
    16
sl@0
    17
/**
sl@0
    18
 @file
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __SDCARD_INL__
sl@0
    23
#define __SDCARD_INL__
sl@0
    24
sl@0
    25
// ======== TSDCSD ========
sl@0
    26
sl@0
    27
inline TSDCSD::TSDCSD(const TCSD& aCSD) : TCSD(aCSD.iData)
sl@0
    28
	{ /* empty */ }
sl@0
    29
sl@0
    30
inline TBool TSDCSD::SDEraseBlkEn() const		{return( CSDField(46,46) );}
sl@0
    31
inline TBool TSDCSD::SDSectorSize() const		{return( CSDField(45,39) );}
sl@0
    32
inline TBool TSDCSD::SDWPGrpSize() const		{return( CSDField(38,32) );}
sl@0
    33
sl@0
    34
// ======== TSDCard ========
sl@0
    35
sl@0
    36
inline TBool TSDCard::IsSDCard() const					{return(iFlags&KSDCardIsSDCard);}
sl@0
    37
sl@0
    38
inline TUint32 TSDCard::ProtectedAreaSize() const		{return(iProtectedAreaSize);}
sl@0
    39
inline void TSDCard::SetProtectedAreaSize(TUint32 aPAS)	{iProtectedAreaSize=aPAS;}
sl@0
    40
inline void TSDCard::SetAUSize(TUint8 aAU)	{iAUSize=aAU;}
sl@0
    41
inline TUint8 TSDCard::GetAUSize() const		{return(iAUSize);}
sl@0
    42
sl@0
    43
sl@0
    44
inline TUint32 TSDCard::PARootDirEnd() const			{return iPARootDirEnd;}
sl@0
    45
inline void TSDCard::SetPARootDirEnd(TUint32 aPARootDirEnd)	{iPARootDirEnd=aPARootDirEnd;}
sl@0
    46
sl@0
    47
// ======== TSDCardArray ========
sl@0
    48
sl@0
    49
inline TSDCardArray::TSDCardArray(DSDStack* aOwningStack) : TMMCardArray(aOwningStack)
sl@0
    50
	{ /* empty */ }
sl@0
    51
sl@0
    52
inline TSDCard& TSDCardArray::Card(TUint aCardNumber) const
sl@0
    53
	{ return *static_cast<TSDCard*>(iCards[aCardNumber]); }
sl@0
    54
sl@0
    55
inline TSDCard& TSDCardArray::NewCard(TUint aCardNumber) const
sl@0
    56
	{ return *static_cast<TSDCard*>(iNewCards[aCardNumber]); }
sl@0
    57
sl@0
    58
// ========= DSDStack ========
sl@0
    59
sl@0
    60
inline DSDStack::DSDStack(TInt aBus, DMMCSocket* aSocket)
sl@0
    61
:	DMMCStack(aBus, aSocket)
sl@0
    62
	{ iMultiplexedBus = ETrue; }
sl@0
    63
sl@0
    64
inline TSDCardArray& DSDStack::CardArray() const
sl@0
    65
	{ return *static_cast<TSDCardArray*>(iCardArray); }
sl@0
    66
sl@0
    67
inline TMMCErr DSDStack::BaseModifyCardCapabilitySMST( TAny* aStackP )
sl@0
    68
	{ return( static_cast<DSDStack *>(aStackP)->DSDStack::ModifyCardCapabilitySM() ); }
sl@0
    69
sl@0
    70
// ========= DSDSession ========
sl@0
    71
sl@0
    72
inline DSDSession::DSDSession(const TMMCCallBack& aCallBack)
sl@0
    73
:	DMMCSession(aCallBack)
sl@0
    74
	{ /* empty */ }
sl@0
    75
sl@0
    76
#endif	// #ifndef __SDCARD_INL__
sl@0
    77