os/boardsupport/emulator/emulatorbsp/specific/sdcard/sdcard3c/sdio/pp_sdiov.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-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 "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
// wins\specific\pp_scdv.cpp
sl@0
    15
// WINS variant
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <mmccd_ifc.h>
sl@0
    20
#include "pp_sdio.h"
sl@0
    21
#include <variantmediadef.h>
sl@0
    22
sl@0
    23
class TSDCardControllerInterfaceWins : public TMMCardControllerInterface
sl@0
    24
	{
sl@0
    25
	// Factory functions
sl@0
    26
	virtual DMMCSocket* NewSocket(TInt aSocketNum, TMMCPasswordStore* aPasswordStore);
sl@0
    27
	virtual DMMCStack* NewStack(TInt aStackNum, DMMCSocket* aSocket);
sl@0
    28
	virtual DMMCMediaChange* NewMediaChange(TInt aMcId);
sl@0
    29
	virtual DMMCPsu* NewVcc(TInt aVccNum, TInt aMcId);
sl@0
    30
	// Stack initialisation
sl@0
    31
	virtual TInt Init();
sl@0
    32
	// Machine configuration
sl@0
    33
	virtual TBool IsMMCSocket(TInt aSocket,SMediaDeviceInfo& aMediaDeviceInfo);
sl@0
    34
	virtual TInt  MediaChangeID(TInt aSocket);
sl@0
    35
	virtual TInt  VccID(TInt aSocket);
sl@0
    36
    };
sl@0
    37
sl@0
    38
sl@0
    39
TInt TSDCardControllerInterfaceWins::Init()
sl@0
    40
//
sl@0
    41
// Initialise the Controller h/w
sl@0
    42
// 
sl@0
    43
	{
sl@0
    44
	return KErrNone;
sl@0
    45
	}
sl@0
    46
sl@0
    47
TInt TSDCardControllerInterfaceWins::MediaChangeID(TInt aSocket)
sl@0
    48
//
sl@0
    49
// Return the socket's media change index
sl@0
    50
//
sl@0
    51
	{
sl@0
    52
	return aSocket;
sl@0
    53
	}
sl@0
    54
sl@0
    55
TInt TSDCardControllerInterfaceWins::VccID(TInt aSocket)
sl@0
    56
//
sl@0
    57
// Return the socket's PSU index
sl@0
    58
//
sl@0
    59
	{
sl@0
    60
	return aSocket;
sl@0
    61
	}
sl@0
    62
sl@0
    63
static const TInt DriveNumbers[MMC0_DRIVECOUNT]={MMC0_DRIVELIST};
sl@0
    64
_LIT(KLitMmcSocketName,MMC0_DRIVENAME);
sl@0
    65
TBool TSDCardControllerInterfaceWins::IsMMCSocket(TInt aSocket,SMediaDeviceInfo& aMediaDeviceInfo)
sl@0
    66
//
sl@0
    67
// Confirm whether an MMC stack is supported on the specified
sl@0
    68
// socket and if it is, the Media Info. for that socket.
sl@0
    69
//
sl@0
    70
	{
sl@0
    71
	
sl@0
    72
	if (aSocket==0)
sl@0
    73
		{
sl@0
    74
		aMediaDeviceInfo.iDevice=MEDIA_DEVICE_MMC;
sl@0
    75
		aMediaDeviceInfo.iDriveCount=MMC0_DRIVECOUNT;
sl@0
    76
		aMediaDeviceInfo.iDriveList=&DriveNumbers[0];
sl@0
    77
		aMediaDeviceInfo.iNumMedia=MMC0_NUMMEDIA;
sl@0
    78
		aMediaDeviceInfo.iDeviceName=&KLitMmcSocketName;
sl@0
    79
		return(ETrue);
sl@0
    80
		}
sl@0
    81
	else
sl@0
    82
		return(EFalse);	
sl@0
    83
	}
sl@0
    84
sl@0
    85
DMMCSocket* TSDCardControllerInterfaceWins::NewSocket(TInt aSocketNum, TMMCPasswordStore* aPasswordStore)
sl@0
    86
//
sl@0
    87
// Create a new platform-specific socket
sl@0
    88
//
sl@0
    89
	{
sl@0
    90
	return new DSDIOSocket(aSocketNum, aPasswordStore);
sl@0
    91
	}
sl@0
    92
sl@0
    93
DMMCStack* TSDCardControllerInterfaceWins::NewStack(TInt aStackNum, DMMCSocket* aSocket)
sl@0
    94
//
sl@0
    95
// Create a new platform-specific stack
sl@0
    96
//
sl@0
    97
	{
sl@0
    98
	return new DWinsSDIOStack(aStackNum, aSocket);
sl@0
    99
	}
sl@0
   100
sl@0
   101
DMMCMediaChange* TSDCardControllerInterfaceWins::NewMediaChange(TInt aMcId)
sl@0
   102
//
sl@0
   103
// Create a new platform-specific media change
sl@0
   104
//
sl@0
   105
	{
sl@0
   106
	return new DWinsMMCMediaChange(aMcId);
sl@0
   107
	}
sl@0
   108
sl@0
   109
DMMCPsu* TSDCardControllerInterfaceWins::NewVcc(TInt aVccNum, TInt aMcId)
sl@0
   110
//
sl@0
   111
// Create a new platform-specific PSU
sl@0
   112
//
sl@0
   113
	{
sl@0
   114
	return new DWinsSDIOPsu(aVccNum, aMcId);
sl@0
   115
	}
sl@0
   116
sl@0
   117
/********************************************
sl@0
   118
 * Extension entry point
sl@0
   119
 ********************************************/
sl@0
   120
sl@0
   121
DECLARE_STANDARD_EXTENSION()
sl@0
   122
	{
sl@0
   123
	__KTRACE_OPT(KPBUS1,Kern::Printf("Starting SD interface"));
sl@0
   124
	TInt r=KErrNoMemory;
sl@0
   125
	
sl@0
   126
	TSDCardControllerInterfaceWins* pI=new TSDCardControllerInterfaceWins;
sl@0
   127
	if (pI)
sl@0
   128
		r=pI->Create();
sl@0
   129
sl@0
   130
	__KTRACE_OPT(KPBUS1,Kern::Printf("Returns %d",r));
sl@0
   131
	return r;
sl@0
   132
	}
sl@0
   133