os/kernelhwsrv/kernel/eka/include/drivers/iic_transaction.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) 2008-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/iic_transaction.inl 
sl@0
    15
//
sl@0
    16
sl@0
    17
inline TIicBusTransfer::TIicBusTransfer() 
sl@0
    18
    : iBuffer(NULL), iNext(NULL), iTransaction(NULL) {}
sl@0
    19
sl@0
    20
inline TIicBusTransfer::TIicBusTransfer(TReqType aType, TInt8 aGranularity, TDes8* aBuffer) : iType((TInt8)aType), iNext(NULL)
sl@0
    21
    {
sl@0
    22
    __ASSERT_ALWAYS(aBuffer && aGranularity && aBuffer->Size()%(((aGranularity-1)>>3)+1)==0,Kern::Fault("TIicBusTransfer",__LINE__));
sl@0
    23
    iBufGranularity=aGranularity;
sl@0
    24
    iBuffer=aBuffer;
sl@0
    25
    }
sl@0
    26
sl@0
    27
inline void TIicBusTransfer::LinkAfter(TIicBusTransfer* aPrev)
sl@0
    28
    {
sl@0
    29
    __ASSERT_ALWAYS(aPrev && aPrev->WordWidth()==iBufGranularity,Kern::Fault("LinkAfter",__LINE__));
sl@0
    30
    iNext=aPrev;
sl@0
    31
    }
sl@0
    32
sl@0
    33
inline TInt8 TIicBusTransfer::WordWidth() 
sl@0
    34
    {return iBufGranularity;}
sl@0
    35
sl@0
    36
inline TIicBusTransfer::TReqType TIicBusTransfer::Direction() 
sl@0
    37
    {return (TIicBusTransfer::TReqType)iType;}
sl@0
    38
sl@0
    39
inline TInt TIicBusTransfer::Length()
sl@0
    40
    {
sl@0
    41
    TInt8 granularityInBytes = (TInt8)(((iBufGranularity-1)>>3)+1);
sl@0
    42
    return(iBuffer->Size()/granularityInBytes);
sl@0
    43
    }
sl@0
    44
sl@0
    45
inline const TIicBusTransfer* TIicBusTransfer::Next() 
sl@0
    46
    {return iNext;}
sl@0
    47
sl@0
    48
inline TInt TIicBusTransfer::SetTransferData(TReqType aType, TInt8 aGranularity, TDes8* aBuffer)
sl@0
    49
    {
sl@0
    50
    __ASSERT_ALWAYS(aBuffer && aGranularity && aBuffer->Size()%(((aGranularity-1)>>3)+1)==0,Kern::Fault("TIicBusTransfer",__LINE__));
sl@0
    51
    if((iTransaction==NULL)||(iTransaction->State()==TIicBusTransaction::EFree))
sl@0
    52
        {
sl@0
    53
        iType = (TInt8)aType;
sl@0
    54
        iBufGranularity = aGranularity;
sl@0
    55
        iBuffer = aBuffer;
sl@0
    56
        return KErrNone;
sl@0
    57
        }
sl@0
    58
    return KErrInUse;
sl@0
    59
    }
sl@0
    60
sl@0
    61
inline TIicBusTransaction::TIicBusTransaction(): iHeader(NULL), iFlags(NULL), iState(EFree),
sl@0
    62
    iHalfDuplexTrans(NULL), iFullDuplexTrans(NULL), iCallback(NULL){}
sl@0
    63
sl@0
    64
inline TIicBusTransaction::TIicBusTransaction(TDes8* aHeader, TIicBusTransfer* aHdTrans, TInt aPriority) :
sl@0
    65
    iHeader(aHeader), iFlags(NULL), iState(EFree), iHalfDuplexTrans(aHdTrans),
sl@0
    66
    iFullDuplexTrans(NULL), iCallback(NULL)
sl@0
    67
    {
sl@0
    68
    __ASSERT_ALWAYS((((TUint)aPriority<(TUint)KNumTrancPriorities)&&((TUint)aPriority>=0)),Kern::Fault("TIicBusTransaction",__LINE__));
sl@0
    69
    __ASSERT_ALWAYS(aHeader && aHdTrans,Kern::Fault("TIicBusTransaction",__LINE__));
sl@0
    70
    iKey = aPriority;
sl@0
    71
    }
sl@0
    72
sl@0
    73
inline TIicBusTransaction::~TIicBusTransaction()
sl@0
    74
    {__ASSERT_ALWAYS(iState==TIicBusTransaction::EFree,Kern::Fault("~TIicBusTransaction",__LINE__));}
sl@0
    75
sl@0
    76
inline TInt TIicBusTransaction::SetHalfDuplexTrans(TDes8* aHeader, TIicBusTransfer* aHdTrans)
sl@0
    77
    {
sl@0
    78
    __ASSERT_ALWAYS(aHeader && aHdTrans, Kern::Fault("SetHalfDuplexTrans",__LINE__));
sl@0
    79
    __ASSERT_ALWAYS(iState==TIicBusTransaction::EFree,Kern::Fault("SetHalfDuplexTrans",__LINE__));
sl@0
    80
    iHeader = aHeader;
sl@0
    81
    iHalfDuplexTrans = aHdTrans;
sl@0
    82
    while(aHdTrans)
sl@0
    83
        {
sl@0
    84
        aHdTrans->iTransaction=this;
sl@0
    85
        aHdTrans = (TIicBusTransfer*)(aHdTrans->Next());
sl@0
    86
        }
sl@0
    87
    return KErrNone;
sl@0
    88
    }
sl@0
    89
sl@0
    90
// The client interface for setting full duplex transaction: the API checks that it is possible to have the 2 transactions done in parallel.
sl@0
    91
// It does not check if the channel supports full duplex, so the transaction may still fail at queuing time.
sl@0
    92
inline TInt TIicBusTransaction::SetFullDuplexTrans(TIicBusTransfer* aFdTrans)
sl@0
    93
    {
sl@0
    94
    __ASSERT_ALWAYS(aFdTrans,Kern::Fault("SetFullDuplexTrans",__LINE__));
sl@0
    95
    __ASSERT_ALWAYS(iState==TIicBusTransaction::EFree,Kern::Fault("SetFullDuplexTrans",__LINE__));
sl@0
    96
    TIicBusTransfer* local = iHalfDuplexTrans;
sl@0
    97
    TIicBusTransfer* remote = aFdTrans;
sl@0
    98
    while(local && remote)
sl@0
    99
        {
sl@0
   100
        if(local->Direction()==remote->Direction())
sl@0
   101
            return KErrNotSupported;
sl@0
   102
        if(local->Next() && local->Length()<remote->Length())
sl@0
   103
            return KErrNotSupported;
sl@0
   104
        if(remote->Next() && remote->Length()<local->Length())
sl@0
   105
            return KErrNotSupported;
sl@0
   106
        local = (TIicBusTransfer*)(local->Next());
sl@0
   107
        remote = (TIicBusTransfer*)(remote->Next());
sl@0
   108
        }
sl@0
   109
    iFullDuplexTrans = aFdTrans;
sl@0
   110
    while(aFdTrans)
sl@0
   111
        {
sl@0
   112
        aFdTrans->iTransaction=this;
sl@0
   113
        aFdTrans = (TIicBusTransfer*)(aFdTrans->Next());
sl@0
   114
        }
sl@0
   115
    return KErrNone;
sl@0
   116
    }
sl@0
   117
sl@0
   118
inline TInt TIicBusTransaction::RemoveTrans(TIicBusTransfer* aTrans)
sl@0
   119
    {
sl@0
   120
    __ASSERT_ALWAYS(aTrans,Kern::Fault("RemoveTrans",__LINE__));
sl@0
   121
    __ASSERT_ALWAYS(iState==TIicBusTransaction::EFree,Kern::Fault("RemoveTrans",__LINE__));
sl@0
   122
    TIicBusTransfer* ptr = aTrans;
sl@0
   123
    while(ptr!=NULL)
sl@0
   124
        {
sl@0
   125
        ptr->iTransaction = NULL;
sl@0
   126
        ptr = (TIicBusTransfer*)(ptr->Next());
sl@0
   127
        }
sl@0
   128
    aTrans=NULL;
sl@0
   129
    return KErrNone;
sl@0
   130
    }
sl@0
   131
sl@0
   132
inline TInt TIicBusTransaction::RemoveHalfDuplexTrans() 
sl@0
   133
    {return RemoveTrans(iHalfDuplexTrans);};
sl@0
   134
sl@0
   135
inline TInt TIicBusTransaction::RemoveFullDuplexTrans() 
sl@0
   136
    {return RemoveTrans(iFullDuplexTrans);};
sl@0
   137
sl@0
   138
inline TUint TIicBusTransaction::Flags()
sl@0
   139
    {return iFlags;}
sl@0
   140
sl@0
   141
inline TIicBusTransaction::TIicBusTransaction(TDes8* aHeader, TIicBusTransfer* aHdTrans, TUint8 aFlags, TInt aPriority) : 
sl@0
   142
    iHeader(aHeader), iFlags(aFlags), iHalfDuplexTrans(aHdTrans), iFullDuplexTrans(NULL), iCallback(NULL)
sl@0
   143
    {
sl@0
   144
    __ASSERT_ALWAYS(aHeader && aHdTrans,Kern::Fault("TIicBusTransaction",__LINE__));
sl@0
   145
    iKey = aPriority;
sl@0
   146
    }
sl@0
   147
sl@0
   148
inline TUint8 TIicBusTransaction::State() 
sl@0
   149
    {return iState;}
sl@0
   150
sl@0
   151
inline TInt TIicBusTransaction::GetBusId() 
sl@0
   152
    {return iBusId;}
sl@0
   153
sl@0
   154
inline TIicBusCallback::TIicBusCallback(TIicBusCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority) 
sl@0
   155
    : TDfc(DfcFunc, this, aQue, aPriority), iTransaction(NULL), iParam(aPtr), iCallback(aFn) {}
sl@0
   156
sl@0
   157
inline TIicBusCallback::~TIicBusCallback()
sl@0
   158
    {__ASSERT_ALWAYS(!iTransaction || iTransaction->State()==TIicBusTransaction::EFree,Kern::Fault("~TIicBusCallback",__LINE__));}       
sl@0
   159
sl@0
   160
inline void TIicBusCallback::DfcFunc(TAny* aPtr)
sl@0
   161
    {
sl@0
   162
    TIicBusCallback* pCb = (TIicBusCallback*) aPtr;
sl@0
   163
    pCb->iCallback(pCb->iTransaction, pCb->iBusId, pCb->iResult, pCb->iParam);
sl@0
   164
    }
sl@0
   165
sl@0
   166
inline TIicBusSlaveCallback::TIicBusSlaveCallback(TIicBusSlaveCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority):  
sl@0
   167
    TDfc(DfcFunc, this, aQue, aPriority), iParam(aPtr), iCallback(aFn) { }
sl@0
   168
sl@0
   169
inline void TIicBusSlaveCallback::SetReturn(TInt aRet) 
sl@0
   170
    {iReturn=aRet;}
sl@0
   171
sl@0
   172
inline void TIicBusSlaveCallback::SetTxWords(TInt16 aTxWords) 
sl@0
   173
    {iTxWords=aTxWords;}
sl@0
   174
sl@0
   175
inline void TIicBusSlaveCallback::SetRxWords(TInt16 aRxWords) 
sl@0
   176
    {iRxWords=aRxWords;} 
sl@0
   177
sl@0
   178
inline TInt TIicBusSlaveCallback::GetTrigger() 
sl@0
   179
    {return iTrigger;}
sl@0
   180
sl@0
   181
inline void TIicBusSlaveCallback::SetTrigger(TInt aTrigger) 
sl@0
   182
    {iTrigger = aTrigger;}
sl@0
   183
sl@0
   184
inline TIicBusTransactionPreamble::TIicBusTransactionPreamble(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusPreamble aPreamble, TAny* aArg, TInt aPriority) :
sl@0
   185
    TIicBusTransaction(aHeader, aHdTrans, KTransactionWithPreamble, aPriority), iPreamble(aPreamble), iPreambleArg(aArg)
sl@0
   186
    {}
sl@0
   187
sl@0
   188
inline TIicBusTransactionPreamble::TIicBusTransactionPreamble(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusPreamble aPreamble, TAny* aArg, TUint8 aFlags, TInt aPriority) :
sl@0
   189
    TIicBusTransaction(aHeader, aHdTrans, aFlags, aPriority), iPreamble(aPreamble), iPreambleArg(aArg)
sl@0
   190
    {}
sl@0
   191
sl@0
   192
inline TIicBusTransactionMultiTransc::TIicBusTransactionMultiTransc(TDes8* aHeader, TIicBusTransfer* aHdTrans, TIicBusMultiTranscCbFn aMultiTransc, TAny* aArg, TInt aPriority) :
sl@0
   193
    TIicBusTransaction(aHeader, aHdTrans, KTransactionWithMultiTransc, aPriority), iMultiTransc(aMultiTransc), iMultiTranscArg(aArg)
sl@0
   194
    {}
sl@0
   195
sl@0
   196
inline TIicBusTransactionPreambleExt::TIicBusTransactionPreambleExt(TDes8* aHeader, TIicBusTransfer* aHdTrans,
sl@0
   197
    TIicBusPreamble aPreamble, TAny* aPreambleArg,
sl@0
   198
    TIicBusMultiTranscCbFn aMultiTransc, TAny* aMultiTranscArg, TInt aPriority) :
sl@0
   199
    TIicBusTransactionPreamble(aHeader, aHdTrans, aPreamble, aPreambleArg, KTransactionWithPreamble|KTransactionWithMultiTransc, aPriority),
sl@0
   200
    iMultiTransc(aMultiTransc), iMultiTranscArg(aMultiTranscArg)
sl@0
   201
    {}
sl@0
   202
sl@0
   203
inline static TInt CreateSpiBuf(TConfigSpiBufV01*& aBuf,
sl@0
   204
                                TSpiWordWidth   aWordWidth,
sl@0
   205
                                TInt32          aClkSpeedHz,
sl@0
   206
                                TSpiClkMode     aClkMode,
sl@0
   207
                                TInt32          aTimeoutPeriod,
sl@0
   208
                                TEndianness     aEndianness,
sl@0
   209
                                TBitOrder       aBitOrder,
sl@0
   210
                                TUint           aTransactionWaitCycles,
sl@0
   211
                                TSpiSsPinMode   aSSPinActiveMode)
sl@0
   212
// Utility function to create a buffer for the SPI bus
sl@0
   213
    {
sl@0
   214
    aBuf = new TConfigSpiBufV01();
sl@0
   215
    if(aBuf==NULL)
sl@0
   216
        return KErrNoMemory;
sl@0
   217
    TConfigSpiV01 *buf = &((*aBuf)());
sl@0
   218
    buf->iWordWidth = aWordWidth;
sl@0
   219
    buf->iClkSpeedHz = aClkSpeedHz;
sl@0
   220
    buf->iClkMode = aClkMode;
sl@0
   221
    buf->iTimeoutPeriod = aTimeoutPeriod;
sl@0
   222
    buf->iEndianness = aEndianness;
sl@0
   223
    buf->iBitOrder = aBitOrder;
sl@0
   224
    buf->iTransactionWaitCycles = aTransactionWaitCycles;
sl@0
   225
    buf->iSSPinActiveMode = aSSPinActiveMode;
sl@0
   226
    return KErrNone;
sl@0
   227
    }
sl@0
   228
sl@0
   229
inline static TInt CreateI2cBuf(TConfigI2cBufV01*& aBuf,
sl@0
   230
                                TI2cAddrType    aAddrType,
sl@0
   231
                                TInt32          aClkSpeedHz,
sl@0
   232
                                TEndianness     aEndianness,
sl@0
   233
                                TInt32          aTimeoutPeriod)
sl@0
   234
// Utility function to create a buffer for the I2C bus
sl@0
   235
    {
sl@0
   236
    aBuf = new TConfigI2cBufV01();
sl@0
   237
    if(aBuf==NULL)
sl@0
   238
        return KErrNoMemory;
sl@0
   239
    TConfigI2cV01 *buf = &((*aBuf)());
sl@0
   240
    buf->iAddrType = aAddrType;
sl@0
   241
    buf->iClkSpeedHz = aClkSpeedHz;
sl@0
   242
    buf->iEndianness = aEndianness;
sl@0
   243
    buf->iTimeoutPeriod = aTimeoutPeriod;
sl@0
   244
    return KErrNone;
sl@0
   245
    }