kerneltest/e32utils/testusbcldd/src/dtestusblogdev.cpp
author Mike Kinghan <mikek@symbian.org>
Tue, 16 Nov 2010 14:39:21 +0000
branchGCC_SURGE
changeset 303 9b85206a602c
parent 0 a41df078684a
permissions -rw-r--r--
We need a way to pass flags to rombuilds in Raptor via extension flm interfaces, so that the CPP pass of the rom input files can be informed what toolchain we are building with and conditionally include or exclude files depending on whether the toolchain could build them.

// Copyright (c) 2004-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:
// f32test\testusbcldd\src\dtestusblogdev.cpp
// 
//

#include "dtestusblogdev.h"
#include <d32usbc.h>

// global Dfc Que
TDynamicDfcQue* gDfcQ;

//
// DLL export number 1: Create a new LDD factory
//
DECLARE_STANDARD_LDD()
    {
	return(new DTestUsbcLogDevice);
	}

DTestUsbcLogDevice::DTestUsbcLogDevice() :
	iEndpoints(KMaxEndpointsPerClient+1)
	{
	iParseMask = KDeviceAllowUnit;
	iUnitsMask = 0xffffffff;
	iVersion = TVersion(KTestUsbcMajorVersion, KTestUsbcMinorVersion, KTestUsbcBuildVersion);
	}

DTestUsbcLogDevice::~DTestUsbcLogDevice()
	{
	for (TInt i = 0; i < iEndpoints.Count(); i++)
		{
		delete iEndpoints[i];
		}
	iEndpoints.Reset();
	iEndpoints.Close();

	if (gDfcQ)
		gDfcQ->Destroy();
	}
	
const TInt KDSTestUsbThreadPriority = 27;
_LIT(KDTestUsbThread,"DTestUsbThread");

TInt DTestUsbcLogDevice::Install()
	{
	// Allocate a kernel thread to run the DFC 
	TInt r = Kern::DynamicDfcQCreate(gDfcQ, KDSTestUsbThreadPriority, KDTestUsbThread);

	if (r != KErrNone)
		return r; 	

	_LIT(KName, "usbc");
	return SetName(&KName);
	}
	
void DTestUsbcLogDevice::GetCaps(TDes8& aDes) const
	{
	TPckgBuf<TCapsDevUsbc> b;
	b().version=iVersion;
	Kern::InfoCopy(aDes, b);
	}
	
TInt DTestUsbcLogDevice::Create(DLogicalChannelBase*& aChannel)
	{
	if (iEndpoints.Count() == 0)
		{
		for (TInt i = 0; i < KMaxEndpointsPerClient+1; i++)
			{
			DTestUsbcEndpoint* ep = new DTestUsbcEndpoint();
			if (!ep)
				{
				return KErrNoMemory;
				}
			TInt err = ep->Create(DLddTestUsbcChannel::iEndpointData[i].iCaps);
			if (err != KErrNone)
				{
				return err;
				}
			iEndpoints.Append(ep);
			}
		}
	aChannel = new DLddTestUsbcChannel(iEndpoints);
	return aChannel ? KErrNone : KErrNoMemory;
	}