Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0""
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // include/drivers/dma_v1.inl
15 // DMA framework public inline functions
16 // This file should not be modified when porting the DMA framework to
20 // WARNING: This file contains some APIs which are internal and are subject
21 // to change without noticed. Such APIs should therefore not be used
22 // outside the Kernel and Hardware Services package.
25 inline void TDmaChannel::Wait()
27 NKern::FMWait(&iLock);
30 inline void TDmaChannel::Signal()
32 NKern::FMSignal(&iLock);
35 inline TBool TDmaChannel::Flash()
37 return NKern::FMFlash(&iLock);
40 inline TBool TDmaChannel::IsOpened() const
42 return iController != NULL;
45 inline TBool TDmaChannel::IsQueueEmpty() const
47 return const_cast<TDmaChannel*>(this)->iReqQ.IsEmpty();
50 inline TUint32 TDmaChannel::PslId() const
55 inline TInt TDmaChannel::FailNext(TInt /*aFragmentCount*/)
57 return iController->FailNext(*this);
60 inline TInt TDmaChannel::MissNextInterrupts(TInt aInterruptCount)
62 return iController->MissNextInterrupts(*this, aInterruptCount);
65 /** Function allowing platform-specific layer to extend API with new
66 channel-specific operations.
67 @param aCmd Command identifier. Negative values are reserved for Symbian use.
68 @param aArg PSL-specific
69 @return KErrNotSupported if aCmd is not supported. PSL-specific value otherwise.
72 inline TInt TDmaChannel::Extension(TInt aCmd, TAny* aArg)
74 return iController->Extension(*this, aCmd, aArg);
77 inline const TDmac* TDmaChannel::Controller() const
82 inline TInt TDmaChannel::MaxTransferSize(TUint aFlags, TUint32 aPslInfo)
84 return iController->MaxTransferSize(*this, aFlags, aPslInfo);
87 inline TUint TDmaChannel::MemAlignMask(TUint aFlags, TUint32 aPslInfo)
89 return iController->MemAlignMask(*this, aFlags, aPslInfo);
94 /** Called when request is removed from request queue in channel */
96 inline void DDmaRequest::OnDeque()
99 iLastHdr->iNext = NULL;
100 iChannel.DoUnlink(*iLastHdr);
105 inline void TDmac::Wait()
107 NKern::FMWait(&iLock);
110 inline void TDmac::Signal()
112 NKern::FMSignal(&iLock);
115 inline SDmaPseudoDes& TDmac::HdrToDes(const SDmaDesHdr& aHdr) const
117 return static_cast<SDmaPseudoDes*>(iDesPool)[&aHdr - iHdrPool];
120 inline TAny* TDmac::HdrToHwDes(const SDmaDesHdr& aHdr) const
122 return static_cast<TUint8*>(iDesPool) + iDesSize*(&aHdr - iHdrPool);
125 inline TUint32 TDmac::DesLinToPhys(TAny* aDes) const
131 return iHwDesChunk->iPhysAddr + ((TLinAddr)aDes - iHwDesChunk->iLinAddr);
137 inline void DmaChannelMgr::Wait()
139 NKern::FMWait(&Lock);
142 inline void DmaChannelMgr::Signal()
144 NKern::FMSignal(&Lock);