wlan_bearer/wlanldd/wlan_symbian/wlanldd_symbian/inc/EtherCardApi.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:41:05 +0100
branchRCL_3
changeset 43 d3d7683d16f5
parent 42 a828660c511c
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201029 Kit: 201035

/*
* Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:   Declaration of the RPcmNetCardIf class.
*
*/

/*
* %version: 12 %
*/

#if !defined(__ETHERAPI_H__)
#define __ETHERAPI_H__

#include "wlanlddcommon.h"
#include "FrameXferBlock.h"

#ifndef __KERNEL_MODE__
#include <e32std.h> // for RChunk
#endif

class TCapsPcmNetCd
	{
public:
	TVersion version;
	};

/**
*  User mode interface for ethernet transfer over WLAN
*
*  @since S60 v3.1
*/
class RPcmNetCardIf : public RBusLogicalChannel
	{
public:
    
    /** The asynchronous call types */
	enum TRequest
		{
		ERequestRead,
		EResumeTx,
		}; 
	
	/** The synchronous call types */
	enum TControl
		{
		EControlGetConfig,
		EControlReadCancel,
		EControlResumeTxCancel,
        ESvControlInitBuffers,
        ESvControlFreeBuffers
		}; 

	/** 
	* Calls executed in the context of the client's thread, but in 
	* supervisor mode
	*/
	enum TControlFast
	    {
	    EControlFastAllocTxBuffer = 0x0F000000,
	    EControlFastAddTxFrame,
	    };
	
public:
    
    /**
    * Open a channel
    *
    * @since S60 3.1
    */
	inline TInt Open() ;

    /**
    * Get version numbering information.
    *
    * @since S60 3.1
    * @return version required
    */
	inline TVersion	VersionRequired() const;

    /**
    * Cancel read request.
    *
    * @since S60 3.1
    */
	inline void ReadCancel() ;

    /**
    * Cancel Resume Tx request.
    *
    * @since S60 5.2
    */
	inline void ResumeTxCancel();

    /**
    * Retrieve configuration information
    *
    * @since S60 3.1
    * @param aConfig buffer for configuration info
    * @return KErrNone on success, any other on failure
    */
	inline TInt GetConfig( TDes8& aConfig ) ;

    /**
    * Allocate memory for FrameXferBlock to be used in data frame 
    * Tx- and Rx-operations. 
    * Does necessary memory allocation and maps the physical memory to 
    * calling process's address space so that the calling process
    * is able to access the memory.
    *
    * @since S60 3.1
    * @param aFrameXferBlock FrameXferBlock to be initialized by 
    *        the device driver
    * @return KErrNone on success, any other on failure
    */
    inline TInt InitialiseBuffers( 
        RFrameXferBlockProtocolStack*& aFrameXferBlock );

    /**
    * Unmap memory mapped by InitiliazeBuffers method from the client 
    * process's address space and deallocate it.
    * Every call to InitialiseBuffers must be matched by a call to
    * ReleaseBuffers.
    *
    * @since S60 3.1
    * @return KErrNone on success, any other on failure
    */
    inline TInt ReleaseBuffers();

    /**
    * Asynchronous request to get notified once Tx from the client is
    * once again allowed.
    *
    * @since S60 5.2
    * @param aStatus a TRequestStatus
    */
    inline void ResumeTx( TRequestStatus& aStatus );

    /**
    * Asynchronous frame read function
    *
    * @since S60 3.1
    * @param aStatus a TRequestStatus
    */
    inline void RequestFrame( TRequestStatus& aStatus );

	/**
	 * Allocate a Tx buffer from the shared memory.
	 * 
     * @since S60 5.2
     * @param aLength Length of the requested Tx buffer in bytes
	 * @return Pointer to the allocated buffer, on success.
	 *         NULL, in case the allocation failed. 
	 *         Note! If NULL is returned the client is not allowed to call 
	 *         AddTxFrame()(i.e. Tx flow is stopped) until the next time when
	 *         ResumeTx asynchronous request completes.
	 */
	inline TDataBuffer* AllocTxBuffer( TUint aLength );
	
	/**
	 * Add the specified Tx frame (contained in the buffer allocated from the 
	 * shared memory) to the relevant Tx queue according to the frame's AC 
	 * (i.e. priority). 
	 * The frame will automatically get transmitted in its turn.
	 *  
     * @since S60 5.2
     * @param aPacket The frame to add
     * @return ETrue if the client is allowed to continue calling this method
     *         (i.e. Tx flow is not stopped).
     *         EFalse if the client is not allowed to call this method again
     *         (i.e. Tx flow is stopped) until the next time when 
     *         ResumeTx asynchronous request completes.
	 */
	inline TBool AddTxFrame( TDataBuffer* aPacket );
	
#ifndef __KERNEL_MODE__
private:
    /** handle to kernel side shared memory chunk */
    RChunk iSharedMemoryChunk;
#endif
	};

#ifndef __KERNEL_MODE__
#include "EtherCardApi.inl"
#endif

#endif  // __ETHERAPI_H__