os/kernelhwsrv/kernel/eka/include/drivers/btrace.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) 2005-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
#include <d32btrace.h>
sl@0
    17
sl@0
    18
class TBTraceBufferK
sl@0
    19
	{
sl@0
    20
public:
sl@0
    21
	TLinAddr			iAddress;
sl@0
    22
	TUint				iStart;
sl@0
    23
	TUint				iEnd;
sl@0
    24
	TUint				iHead;
sl@0
    25
	volatile TInt		iRequestDataSize;
sl@0
    26
	TUint8*				iRecordOffsets;
sl@0
    27
	TUint				iDropped;
sl@0
    28
	DChunk*				iBufferChunk;
sl@0
    29
	volatile TDfc*		iWaitingDfc;
sl@0
    30
	BTrace::THandler	iOldBTraceHandler;
sl@0
    31
	BTrace::TControlFunction	iOldBTraceControl;
sl@0
    32
	TBool				iTimestamp2Enabled;
sl@0
    33
	TUint				iCrashReadPart;
sl@0
    34
public:
sl@0
    35
	TInt Create(TInt aSize);
sl@0
    36
	void Close();
sl@0
    37
	void Reset(TUint aMode);
sl@0
    38
	TInt RequestData(TInt aSize, TDfc* aDfc);
sl@0
    39
	static TBool Trace(TUint32 aHeader,TUint32 aHeader2,const TUint32 aContext,const TUint32 a1,const TUint32 a2,const TUint32 a3,const TUint32 aExtra,const TUint32 aPc);
sl@0
    40
	static TBool TraceWithTimestamp2(TUint32 aHeader,TUint32 aHeader2,const TUint32 aContext,const TUint32 a1,const TUint32 a2,const TUint32 a3,const TUint32 aExtra,const TUint32 aPc);	
sl@0
    41
	static TInt ControlFunction(BTrace::TControl aFunction, TAny* aArg1, TAny* aArg2);
sl@0
    42
	void CrashRead(TUint8*& aData, TUint& aSize);
sl@0
    43
private:
sl@0
    44
	static TBool Trace_Impl(TUint32 aHeader,TUint32 aHeader2,const TUint32 aContext,const TUint32 a1,const TUint32 a2,const TUint32 a3,const TUint32 aExtra, const TUint32 aPc, const TBool aIncTimestamp2);
sl@0
    45
	};
sl@0
    46
sl@0
    47
extern TBTraceBufferK Buffer;
sl@0
    48
sl@0
    49
/**
sl@0
    50
If this macro is defined a timestamp is added to each fast-trace record; if supported by the platform.
sl@0
    51
*/
sl@0
    52
#define BTRACE_INCLUDE_TIMESTAMPS
sl@0
    53
sl@0
    54
#ifdef __MARM__
sl@0
    55
#ifndef __SMP__
sl@0
    56
#define BTRACE_DRIVER_MACHINE_CODED
sl@0
    57
#endif
sl@0
    58
#endif
sl@0
    59