os/kernelhwsrv/kernel/eka/include/drivers/dma_v1.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) 2002-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
// include/drivers/dma_v1.inl
sl@0
    15
// DMA framework public inline functions
sl@0
    16
// This file should not be modified when porting the DMA framework to
sl@0
    17
// new hardware.
sl@0
    18
// TDmaChannel
sl@0
    19
// 
sl@0
    20
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    21
//          to change without noticed. Such APIs should therefore not be used
sl@0
    22
//          outside the Kernel and Hardware Services package.
sl@0
    23
//
sl@0
    24
sl@0
    25
inline void TDmaChannel::Wait()
sl@0
    26
	{
sl@0
    27
	NKern::FMWait(&iLock);
sl@0
    28
	}
sl@0
    29
sl@0
    30
inline void TDmaChannel::Signal()
sl@0
    31
	{
sl@0
    32
	NKern::FMSignal(&iLock);
sl@0
    33
	}
sl@0
    34
sl@0
    35
inline TBool TDmaChannel::Flash()
sl@0
    36
	{
sl@0
    37
	return NKern::FMFlash(&iLock);
sl@0
    38
	}
sl@0
    39
sl@0
    40
inline TBool TDmaChannel::IsOpened() const
sl@0
    41
	{
sl@0
    42
	return iController != NULL;
sl@0
    43
	}
sl@0
    44
sl@0
    45
inline TBool TDmaChannel::IsQueueEmpty() const
sl@0
    46
	{
sl@0
    47
	return const_cast<TDmaChannel*>(this)->iReqQ.IsEmpty();
sl@0
    48
	}
sl@0
    49
sl@0
    50
inline TUint32 TDmaChannel::PslId() const
sl@0
    51
	{
sl@0
    52
	return iPslId;
sl@0
    53
	}
sl@0
    54
sl@0
    55
inline TInt TDmaChannel::FailNext(TInt /*aFragmentCount*/)
sl@0
    56
	{
sl@0
    57
	return iController->FailNext(*this);
sl@0
    58
	}
sl@0
    59
sl@0
    60
inline TInt TDmaChannel::MissNextInterrupts(TInt aInterruptCount)
sl@0
    61
	{
sl@0
    62
	return iController->MissNextInterrupts(*this, aInterruptCount);
sl@0
    63
	}
sl@0
    64
sl@0
    65
/** Function allowing platform-specific layer to extend API with new
sl@0
    66
	channel-specific operations.
sl@0
    67
 	@param aCmd Command identifier.  Negative values are reserved for Symbian use.
sl@0
    68
	@param aArg PSL-specific
sl@0
    69
	@return KErrNotSupported if aCmd is not supported.  PSL-specific value otherwise.
sl@0
    70
 */
sl@0
    71
sl@0
    72
inline TInt TDmaChannel::Extension(TInt aCmd, TAny* aArg)
sl@0
    73
	{
sl@0
    74
	return iController->Extension(*this, aCmd, aArg);
sl@0
    75
	}
sl@0
    76
sl@0
    77
inline const TDmac* TDmaChannel::Controller() const
sl@0
    78
	{
sl@0
    79
	return iController;
sl@0
    80
	}
sl@0
    81
sl@0
    82
inline TInt TDmaChannel::MaxTransferSize(TUint aFlags, TUint32 aPslInfo)
sl@0
    83
	{
sl@0
    84
	return iController->MaxTransferSize(*this, aFlags, aPslInfo);
sl@0
    85
	}
sl@0
    86
sl@0
    87
inline TUint TDmaChannel::MemAlignMask(TUint aFlags, TUint32 aPslInfo)
sl@0
    88
	{
sl@0
    89
	return iController->MemAlignMask(*this, aFlags, aPslInfo);
sl@0
    90
	}
sl@0
    91
sl@0
    92
// DDmaRequest
sl@0
    93
sl@0
    94
/** Called when request is removed from request queue in channel */
sl@0
    95
sl@0
    96
inline void DDmaRequest::OnDeque()
sl@0
    97
	{
sl@0
    98
	iQueued = EFalse;
sl@0
    99
	iLastHdr->iNext = NULL;
sl@0
   100
	iChannel.DoUnlink(*iLastHdr);
sl@0
   101
	}
sl@0
   102
sl@0
   103
// TDmac
sl@0
   104
sl@0
   105
inline void TDmac::Wait()
sl@0
   106
	{
sl@0
   107
	NKern::FMWait(&iLock);
sl@0
   108
	}
sl@0
   109
sl@0
   110
inline void TDmac::Signal()
sl@0
   111
	{
sl@0
   112
	NKern::FMSignal(&iLock);
sl@0
   113
	}
sl@0
   114
sl@0
   115
inline SDmaPseudoDes& TDmac::HdrToDes(const SDmaDesHdr& aHdr) const
sl@0
   116
	{
sl@0
   117
	return static_cast<SDmaPseudoDes*>(iDesPool)[&aHdr - iHdrPool];
sl@0
   118
	}
sl@0
   119
sl@0
   120
inline TAny* TDmac::HdrToHwDes(const SDmaDesHdr& aHdr) const
sl@0
   121
	{
sl@0
   122
	return static_cast<TUint8*>(iDesPool) + iDesSize*(&aHdr - iHdrPool);
sl@0
   123
	}
sl@0
   124
sl@0
   125
inline TUint32 TDmac::DesLinToPhys(TAny* aDes) const
sl@0
   126
	{
sl@0
   127
#ifdef __WINS__
sl@0
   128
	(void)aDes;
sl@0
   129
	return 0xDEADBEEF;
sl@0
   130
#else
sl@0
   131
	return iHwDesChunk->iPhysAddr + ((TLinAddr)aDes - iHwDesChunk->iLinAddr);
sl@0
   132
#endif
sl@0
   133
	}
sl@0
   134
sl@0
   135
// DmaChannelMgr
sl@0
   136
sl@0
   137
inline void DmaChannelMgr::Wait()
sl@0
   138
	{
sl@0
   139
	NKern::FMWait(&Lock);
sl@0
   140
	}
sl@0
   141
sl@0
   142
inline void DmaChannelMgr::Signal()
sl@0
   143
	{
sl@0
   144
	NKern::FMSignal(&Lock);
sl@0
   145
	}
sl@0
   146
sl@0
   147
//---