os/kernelhwsrv/kernel/eka/include/drivers/usbcsc.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-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
// e32\include\drivers\usbcsc.inl
sl@0
    15
// Kernel side inline header file for USB device driver.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file usbcsc.inl
sl@0
    21
 @internalTechnology
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __USBCSC_INL__
sl@0
    25
#define __USBCSC_INL__
sl@0
    26
 
sl@0
    27
sl@0
    28
//
sl@0
    29
// --- USB Logical Device Driver (LDD) ---
sl@0
    30
//
sl@0
    31
sl@0
    32
TUsbcScEndpointInfo* TUsbcScEndpoint::EndpointInfo()
sl@0
    33
	{
sl@0
    34
	return &iEndpointInfo;
sl@0
    35
	}
sl@0
    36
sl@0
    37
sl@0
    38
void TUsbcScEndpoint::SetClientReadPending(TBool aVal)
sl@0
    39
	{
sl@0
    40
	iClientReadPending = aVal;
sl@0
    41
	}
sl@0
    42
sl@0
    43
sl@0
    44
TBool TUsbcScEndpoint::ClientReadPending()
sl@0
    45
	{
sl@0
    46
	return iClientReadPending;
sl@0
    47
	}
sl@0
    48
sl@0
    49
sl@0
    50
void TUsbcScEndpoint::SetClientWritePending(TBool aVal)
sl@0
    51
	{
sl@0
    52
	iClientWritePending = aVal;
sl@0
    53
	}
sl@0
    54
sl@0
    55
sl@0
    56
TBool TUsbcScEndpoint::ClientWritePending()
sl@0
    57
	{
sl@0
    58
	return iClientWritePending;
sl@0
    59
	}
sl@0
    60
sl@0
    61
sl@0
    62
void TUsbcScEndpoint::SetRealEpNumber(TInt aRealEpNumber)
sl@0
    63
	{
sl@0
    64
	iRealEpNumber = aRealEpNumber;
sl@0
    65
	iRequestCallbackInfo->iRealEpNum = aRealEpNumber;
sl@0
    66
	}
sl@0
    67
sl@0
    68
sl@0
    69
TInt TUsbcScEndpoint::RealEpNumber() const
sl@0
    70
	{
sl@0
    71
	return iRealEpNumber;
sl@0
    72
	}
sl@0
    73
TInt TUsbcScEndpoint::EpNumber() const
sl@0
    74
	{
sl@0
    75
	return iEndpointNumber;
sl@0
    76
	}
sl@0
    77
void TUsbcScEndpoint::StartBuffer()
sl@0
    78
	{
sl@0
    79
	iBuffer->StartEndpoint(iRequestCallbackInfo, iEndpointInfo.iFlags);
sl@0
    80
	}
sl@0
    81
sl@0
    82
void TUsbcScEndpoint::SetBuffer(TUsbcScBuffer* aBuffer)
sl@0
    83
	{
sl@0
    84
		__ASSERT_ALWAYS(iBuffer==NULL, Kern::Fault("TUsbcScEndpoint::SetBuffer", __LINE__));
sl@0
    85
		iBuffer = aBuffer;
sl@0
    86
	}
sl@0
    87
sl@0
    88
TUsbcScBuffer* TUsbcScEndpoint::GetBuffer()
sl@0
    89
	{
sl@0
    90
		__ASSERT_DEBUG(iBuffer!=NULL, Kern::Fault("TUsbcScEndpoint::GetBuffer", __LINE__));
sl@0
    91
	return iBuffer;
sl@0
    92
	}
sl@0
    93
sl@0
    94
inline TBool DLddUsbcScChannel::ValidEndpoint(TInt aEndpoint)
sl@0
    95
	{
sl@0
    96
	return (aEndpoint <= iNumberOfEndpoints && aEndpoint >= 0);
sl@0
    97
	}
sl@0
    98
sl@0
    99
inline TBool DLddUsbcScChannel::Configured()
sl@0
   100
	{
sl@0
   101
	if (iValidInterface && 
sl@0
   102
		(iDeviceState == EUsbcDeviceStateConfigured || iDeviceState == EUsbcDeviceStateSuspended))
sl@0
   103
		return ETrue;
sl@0
   104
	return EFalse;
sl@0
   105
	}
sl@0
   106
sl@0
   107
#endif // __USBCSC_INL__