os/kernelhwsrv/kernel/eka/include/drivers/usbdi_hub.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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 the License "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
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @internalComponent
sl@0
    19
*/
sl@0
    20
sl@0
    21
#ifndef USBDI_HUB_H
sl@0
    22
#define USBDI_HUB_H
sl@0
    23
sl@0
    24
class DUsbHubDriver;
sl@0
    25
class DUsbDevice;
sl@0
    26
sl@0
    27
sl@0
    28
const TUint32 KFunctionDriverFrameworkSid = 0x10282B48;
sl@0
    29
sl@0
    30
/**
sl@0
    31
  Logical Device (factory class) for USB Hub Driver
sl@0
    32
*/
sl@0
    33
class DUsbHubDriverFactory : public DLogicalDevice
sl@0
    34
	{
sl@0
    35
public:
sl@0
    36
	DUsbHubDriverFactory();
sl@0
    37
	~DUsbHubDriverFactory();
sl@0
    38
private:
sl@0
    39
	//	Inherited from DLogicalDevice
sl@0
    40
	virtual TInt Install();
sl@0
    41
	virtual void GetCaps(TDes8& aDes) const;
sl@0
    42
	virtual TInt Create(DLogicalChannelBase*& aChannel);
sl@0
    43
	};
sl@0
    44
sl@0
    45
/**
sl@0
    46
*/
sl@0
    47
class DUsbHubDriverChannel : public DLogicalChannel
sl@0
    48
	{
sl@0
    49
public:
sl@0
    50
	DUsbHubDriverChannel();
sl@0
    51
	virtual ~DUsbHubDriverChannel();
sl@0
    52
	virtual TInt SendMsg(TMessageBase* aMsg);
sl@0
    53
sl@0
    54
private:
sl@0
    55
	// Panic reasons
sl@0
    56
	enum TPanic
sl@0
    57
		{
sl@0
    58
		ERequestAlreadyPending = 1
sl@0
    59
		};
sl@0
    60
	
sl@0
    61
	//	Inherited from DObject
sl@0
    62
	virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
sl@0
    63
sl@0
    64
	// Inherited from DLogicalChannel
sl@0
    65
	virtual void HandleMsg(TMessageBase* aMsg);
sl@0
    66
sl@0
    67
	// Implementation for the differnt kinds of messages sent through RBusLogicalChannel
sl@0
    68
	TInt DoControl(TInt aFunction, TAny* a1, TAny* a2);
sl@0
    69
	TInt DoRequest(TInt aReqNo, TRequestStatus* aStatus, TAny* a1, TAny* a2);
sl@0
    70
	void DoCancel(TUint aMask);
sl@0
    71
	TInt SendControl(TMessageBase* aMsg);
sl@0
    72
	TInt SendRequest(TMessageBase* aMsg);
sl@0
    73
sl@0
    74
	DUsbDevice* GetDeviceFromHandle(TAny* aSrc);
sl@0
    75
		
sl@0
    76
private:
sl@0
    77
	DUsbHubDriver*	iHubDriver;
sl@0
    78
	DThread*		iClient;
sl@0
    79
	};
sl@0
    80
sl@0
    81
#endif // USBDI_HUB_H
sl@0
    82