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_hai.inl
15 // DMA Framework - Symbian Hardware Abstraction Interface (SHAI).
22 inline void TDmac::Wait()
24 NKern::FMWait(&iLock);
27 inline void TDmac::Signal()
29 NKern::FMSignal(&iLock);
32 inline TDmaTransferArgs& TDmac::HdrToDes(const SDmaDesHdr& aHdr) const
34 return static_cast<TDmaTransferArgs*>(iDesPool)[&aHdr - iHdrPool];
37 inline TAny* TDmac::HdrToHwDes(const SDmaDesHdr& aHdr) const
39 return static_cast<TUint8*>(iDesPool) + iDesSize * (&aHdr - iHdrPool);
42 inline TUint32 TDmac::HwDesLinToPhys(TAny* aDes) const
48 return iHwDesChunk->iPhysAddr +
49 (reinterpret_cast<TLinAddr>(aDes) - iHwDesChunk->iLinAddr);