os/kernelhwsrv/kernel/eka/include/drivers/pccd_ifc.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-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
// e32\include\drivers\pccd_ifc.h
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 __PCCD_IFC_H__
sl@0
    25
#define __PCCD_IFC_H__
sl@0
    26
#include <pccard.h>
sl@0
    27
#include <drivers/locmedia.h>
sl@0
    28
#include <platform.h>
sl@0
    29
#include <assp.h>
sl@0
    30
sl@0
    31
#define __PCCD_MACHINE_CODED__
sl@0
    32
sl@0
    33
const TInt KMemConfigByteAccess=1;
sl@0
    34
sl@0
    35
class PccdIfc
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	static DPcCardSocket* NewSocket(TInt aSocketNum);
sl@0
    39
	static DPcCardMediaChange* NewMediaChange(TInt aMcId);
sl@0
    40
	static DPcCardVcc* NewVcc(TInt aVccNum, TInt aMcId);
sl@0
    41
	static DPccdChunkBase* NewChunk(TPccdMemType aType);
sl@0
    42
	};
sl@0
    43
sl@0
    44
	/**
sl@0
    45
	 A base class that defines a Pc Card controller interface.
sl@0
    46
	 
sl@0
    47
	 @publishedPartner
sl@0
    48
	 @released
sl@0
    49
	 */
sl@0
    50
class TPcCardControllerInterface
sl@0
    51
	{
sl@0
    52
public:
sl@0
    53
	/**
sl@0
    54
	 Allocate any resources. Only done once on kernel initialization so don't worry about cleanup if it fails.
sl@0
    55
     
sl@0
    56
	 @return KErrNone if successful in allocating memory for the Pc Card. otherwise return KErrNoMemory.
sl@0
    57
	 */
sl@0
    58
	IMPORT_C TInt Create();
sl@0
    59
public:
sl@0
    60
    /**
sl@0
    61
 	 Gets the physical address of Pc Card memory.
sl@0
    62
     
sl@0
    63
	 @param aCard  A Pc Card whose physical address to be returned.
sl@0
    64
     
sl@0
    65
	 @param aType  Memory type  of the Pc Card whose physical address to be returned.
sl@0
    66
     
sl@0
    67
	 @return Physical address of Pc Card for the given memory type.
sl@0
    68
	 
sl@0
    69
	 @see TPccdMemType
sl@0
    70
	 */    
sl@0
    71
	virtual TUint32 MemPhysicalAddress(TInt aCard,TPccdMemType aType)=0;
sl@0
    72
	/** 
sl@0
    73
	 Sets the Pc Card controller h/w.
sl@0
    74
	 
sl@0
    75
	 Initialise the Pc Card Controller h/w.
sl@0
    76
	 
sl@0
    77
	 @return KErrNone if Pc Card contorller h/w is initialised.
sl@0
    78
     */
sl@0
    79
	virtual TInt Init()=0;
sl@0
    80
    /**
sl@0
    81
	 Gets the current settings for the Pc Card.
sl@0
    82
     
sl@0
    83
	 @param aCard  A Pc Card whose signals to be indicated.
sl@0
    84
     
sl@0
    85
	 @param anInd  Has current settings for the PC Card indicator signals into 'anInd' for the specified aCard.
sl@0
    86
   	 
sl@0
    87
	 @return KErrNone if successful.
sl@0
    88
	 
sl@0
    89
	 @see TSocketIndicators.
sl@0
    90
	 */
sl@0
    91
	virtual TInt Indicators(TInt aCard,TSocketIndicators &anInd)=0;
sl@0
    92
    /**
sl@0
    93
 	 Enables the Pc Card Interface.
sl@0
    94
     
sl@0
    95
	 @param aCard  A Pc Card whose interface to be enabled.
sl@0
    96
	 */
sl@0
    97
	virtual void InterfaceOn(TInt aCard)=0;
sl@0
    98
	/**
sl@0
    99
 	 Disables the Pc Card Interface.
sl@0
   100
     
sl@0
   101
	 @param aCard  A PC Card whose interface to be disabled.
sl@0
   102
	 */
sl@0
   103
	virtual void InterfaceOff(TInt aCard)=0;
sl@0
   104
	/**
sl@0
   105
 	 To Apply/remove h/w reset.
sl@0
   106
sl@0
   107
     @param aCard  A Pc Card which has to be h/w reseted.
sl@0
   108
sl@0
   109
     @param anAssert To make the h/w reset guarented.
sl@0
   110
	 */
sl@0
   111
    virtual void CardReset(TInt aCard,TBool anAssert)=0;
sl@0
   112
	/**
sl@0
   113
 	 Gets Pc Card Rdy/Bsy status.
sl@0
   114
sl@0
   115
     @param aCard  Pc Card whose status to be returned.
sl@0
   116
sl@0
   117
	 @return True if the card is ready.
sl@0
   118
	 */
sl@0
   119
    virtual TBool CardReady(TInt aCard)=0;
sl@0
   120
	/** 
sl@0
   121
	 Configure memory configuration options.
sl@0
   122
sl@0
   123
     @param aCard   Pc Card whose memory to be configured.
sl@0
   124
     
sl@0
   125
	 @param aMemType  Type of memory to be configured.
sl@0
   126
sl@0
   127
     @param aSpeed    Access speed of the memory involved.
sl@0
   128
	 
sl@0
   129
	 @param aWaitSig  This WaitSig should never checked since repeated accesses to MECR seem to crash the system
sl@0
   130
	  in mysterious ways.
sl@0
   131
sl@0
   132
	 @param aFlag    To modify the memory configuration attributes by ORing with memory chunk setup flags pKPccdBusWidth32 and KPccdDisableWaitStateCntrl  ,
sl@0
   133
sl@0
   134
	 @return KErrNone if successful, KErrNotSupported if unsuccessful.
sl@0
   135
sl@0
   136
	 @see TPccdMemType.
sl@0
   137
sl@0
   138
	 @see TPccdAccessSpeed.
sl@0
   139
     */
sl@0
   140
	virtual TInt MemConfig(TInt aCard,TPccdMemType aMemType,TPccdAccessSpeed aSpeed,TBool aWaitSig,TUint aFlag)=0;
sl@0
   141
    /**
sl@0
   142
     Gets the information of the socket.
sl@0
   143
sl@0
   144
     @param aSocket  Socket whose information to be retrieved.
sl@0
   145
sl@0
   146
     @param anInfo  Gets the socket information in anInfo.
sl@0
   147
     
sl@0
   148
	 @see TPcCardSocketInfo.
sl@0
   149
	 */
sl@0
   150
    virtual void SocketInfo(TSocket aSocket,TPcCardSocketInfo& anInfo)=0;
sl@0
   151
	/**
sl@0
   152
     Checks the specified socket contains a card (and the media door for the socket is closed).
sl@0
   153
sl@0
   154
  	 @param anInfo  Has the socket information.
sl@0
   155
sl@0
   156
     @param aCard  Socket for which a card presence is checked.
sl@0
   157
sl@0
   158
	 @return True if the socket contians a card (and the media door for the socket is closed).
sl@0
   159
	 */
sl@0
   160
	virtual TBool CardIsPresent(TInt aCard)=0;
sl@0
   161
    /**
sl@0
   162
  	 Gets the changed state  of the specified media (ex,removed,inserted..)
sl@0
   163
     
sl@0
   164
     @param aMediaChangeId  stores the state of the specified media change
sl@0
   165
sl@0
   166
	 @return Mediastate when change to media takes place.
sl@0
   167
sl@0
   168
	 @see TMediaState.
sl@0
   169
	 */   
sl@0
   170
	virtual TMediaState MediaState(TInt aMediaChangeId)=0;
sl@0
   171
    // Pc Card PSUs
sl@0
   172
	/**
sl@0
   173
  	 Sets Vcc information for the Pc Card.
sl@0
   174
sl@0
   175
     @param aPsu    Power supply unit value supplied for the Pc Card.
sl@0
   176
sl@0
   177
     @param aninfo  Object of TPBusPsuInfo type passed to store the PSU information.
sl@0
   178
sl@0
   179
	 @see TPBusPsuInfo.
sl@0
   180
	 */
sl@0
   181
	virtual void VccInfo(TInt aPsu,TPBusPsuInfo &aninfo)=0;
sl@0
   182
	/**
sl@0
   183
     Sets Pc Card Vcc power supply OFF.
sl@0
   184
sl@0
   185
     @param aPsu  Power supply unit  for the Pc Card.
sl@0
   186
	 */
sl@0
   187
    virtual void VccOff(TInt aPsu)=0;
sl@0
   188
	/**
sl@0
   189
  	 Sets Pc Card Vcc power supply ON.
sl@0
   190
sl@0
   191
     @param aPsu  Power supply unit  for the Pc Card.
sl@0
   192
sl@0
   193
     @param aVoltageSetting  A voltage to power on Pc Card which is defined in enum TPccdSocketVcc.
sl@0
   194
sl@0
   195
	 @see TPccdSocketVcc
sl@0
   196
	 */
sl@0
   197
    virtual void VccOnFull(TInt aPsu,TPccdSocketVcc aVoltageSetting)=0;
sl@0
   198
    /**
sl@0
   199
	 Sets Pc Card Vcc power supply ON with current limit.
sl@0
   200
sl@0
   201
	 @param aPsu  Power supply unit  for the Pc Card.
sl@0
   202
sl@0
   203
 	 @param aVoltageSetting  A voltage of current limt to power on Pc Card which is defined in enum TPccdSocketVcc.
sl@0
   204
sl@0
   205
	 @see TPccdSocketVcc
sl@0
   206
	 */
sl@0
   207
    virtual void VccOnCurrentLimit(TInt aPsu,TPccdSocketVcc aVoltageSetting)=0;
sl@0
   208
    /**
sl@0
   209
	 Sets Pc Card Vcc level (normally ADC reading). Return KErrNotReady if the voltage check isn't complete.
sl@0
   210
sl@0
   211
	 @param aPsu  Power supply unit  for the Pc Card.
sl@0
   212
  	 */
sl@0
   213
    virtual TInt VccInMilliVolts(TInt aPsu)=0;
sl@0
   214
	/*
sl@0
   215
	 Gets Pc Card Vcc voltage status. 
sl@0
   216
sl@0
   217
	 An alternative to using ADC, when voltage checking is performed using a comparator arrangement. 
sl@0
   218
sl@0
   219
	 @param aPsu Power supply unit for the Pc Card.
sl@0
   220
sl@0
   221
	 @return KErrNone if successful, KErrGeneral if failed.
sl@0
   222
	 */
sl@0
   223
	virtual TInt VccVoltCheck(TInt aPsu)=0;
sl@0
   224
	// interrupts
sl@0
   225
	/** 
sl@0
   226
	 Gets a interrupt Id for Pc card.
sl@0
   227
sl@0
   228
	 @param aCard  Pc Card to which interrupts Id is requested.
sl@0
   229
sl@0
   230
	 @return InterruptId of the Pc Card.
sl@0
   231
     */
sl@0
   232
	virtual TInt IntIdIReq(TInt aCard)=0;
sl@0
   233
    /**
sl@0
   234
     Gets ready interrupt Id when ready signal is asserted  on Pc Card.
sl@0
   235
	 
sl@0
   236
     @param aCard  Pc Card which is interrupted through a ready signal.
sl@0
   237
sl@0
   238
	 @return Ready interrupt Id for the Pc Card.
sl@0
   239
     */
sl@0
   240
	virtual TInt IntIdRdyC(TInt aCard)=0;
sl@0
   241
    /**
sl@0
   242
     Gets interrupt status Id when status of Pc Card changes.
sl@0
   243
     
sl@0
   244
	 @param aCard  Pc Card which is interrupted through a change in state.
sl@0
   245
sl@0
   246
	 @return Interrupt status Id, for the Pc Card.
sl@0
   247
     */
sl@0
   248
	virtual TInt IntIdStsC(TInt aCard)=0;
sl@0
   249
    /**
sl@0
   250
     Gets Mediachange interrupt Id when media changes, i,e  when media door is Opend/Closed.
sl@0
   251
sl@0
   252
     @param aMediaChangeId  An  media chagne Id which tells whether media door is closed / Opened.
sl@0
   253
sl@0
   254
	 @return Media change interrupt id, when a change in media takes place.
sl@0
   255
     */
sl@0
   256
	virtual TInt IntIdMediaChange(TInt aMediaChangeId)=0;
sl@0
   257
	/**
sl@0
   258
     Acknowledge the media change interrupt.
sl@0
   259
sl@0
   260
     @param aMediaChangeId  An  media change Id which tells whether a door is closed / Opened.
sl@0
   261
	 */
sl@0
   262
	virtual void ClearMediaChange(TInt aMediaChangeId)=0;
sl@0
   263
	// machine configuration
sl@0
   264
	/**
sl@0
   265
     @param aSocket the socket ID.
sl@0
   266
sl@0
   267
	 @param aMediaDeviceInfo , Media information of the scoket which has to be checked.
sl@0
   268
sl@0
   269
	 @return True if Pc Card is present in the secified socket.
sl@0
   270
	 */
sl@0
   271
	virtual TBool IsPcCardSocket(TInt aSocket,SMediaDeviceInfo& aMediaDeviceInfo)=0;
sl@0
   272
	/**  
sl@0
   273
	 Gets information about from which socket does the media change took place.
sl@0
   274
	 
sl@0
   275
	 @param aSocket the socket ID.
sl@0
   276
sl@0
   277
	 @return socket from which socket does the media change took place.
sl@0
   278
	 */
sl@0
   279
	virtual TInt MediaChangeFromSocket(TInt aSocket)=0;
sl@0
   280
	/**
sl@0
   281
	 Gets from which socket does the Vcc signal is generated.
sl@0
   282
sl@0
   283
	 @param aSocket the socket ID.
sl@0
   284
sl@0
   285
	 @return socket Id from which Vcc signal is generated.
sl@0
   286
	 */
sl@0
   287
	virtual TInt VccFromSocket(TInt aSocket)=0;
sl@0
   288
    };
sl@0
   289
sl@0
   290
GLREF_D TPcCardControllerInterface* ThePccdCntrlInterface;
sl@0
   291
sl@0
   292
#endif
sl@0
   293
sl@0
   294