blob: cf8c3b40146b5363cabb3204818920c5fc314c36 [file] [log] [blame]
/*
* dspbridge/mpu_api/inc/dbg_zones.h
*
* DSP-BIOS Bridge driver support functions for TI OMAP processors.
*
* Copyright (C) 2007 Texas Instruments, Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation version 2.1 of the License.
*
* This program is distributed .as is. WITHOUT ANY WARRANTY of any kind,
* whether express or implied; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
/*
* ======== dbg_zones.h ========
* Purpose:
* Common debug zone definitions used for DDsp tracing. Currently the GT
* module uses a single debug zone to output debug messages.
*
*
* Public Functions:
*
* Notes:
* Need to call DBG_INSTANTIATE_ZONES(initialZones, modname ,opt1, opt2)
* before using.
*
* - initialZone(s) should typically be 0x0001 (GTTRC) for GT.
* - modname is a string such as "DDSP driver"
* - opt1 and opt2 are user defined zones e.g. "Reg0 Write" *
*
*! Revision History:
*! ================
*! 03-Feb-2000 rr: DBGPARAM fields changed.
*! 02-Dec-1999 rr: DBG_SetGT define changed(for building retail and Debug)
*! 01-Oct-1999 ag: Removed #include <windows.h>
*! 26-Aug-1999 ag: Created.
*!
*/
#ifndef _DBG_ZONES_H_
#define _DBG_ZONES_H_
#ifndef LINUX /* No DEBUGZONE in Linux */
#include <dbdefs.h>
#include <dspapi.h> /* Defines used by this header */
#define DBG_ZONE_GTTRC DEBUGZONE(0)
/* The following zones are undefined */
#define DBG_ZONE_XXX1 DEBUGZONE(1)
#define DBG_ZONE_XXX2 DEBUGZONE(2)
#define DBG_ZONE_XXX3 DEBUGZONE(3)
#define DBG_ZONE_XXX4 DEBUGZONE(4)
#define DBG_ZONE_XXX5 DEBUGZONE(5)
#define DBG_ZONE_XXX6 DEBUGZONE(6)
#define DBG_ZONE_XXX7 DEBUGZONE(7)
#define DBG_ZONE_XXX8 DEBUGZONE(8)
#define DBG_ZONE_XXX9 DEBUGZONE(9)
#define DBG_ZONE_XXX10 DEBUGZONE(10)
#define DBG_ZONE_XXX11 DEBUGZONE(11)
#define DBG_ZONE_XXX12 DEBUGZONE(12)
#define DBG_ZONE_XXX13 DEBUGZONE(13)
//
// The next two are user defined
// #define DBG_ZONE_ DEBUGZONE(14)
// #define DBG_ZONE_ DEBUGZONE(15)
#define DBG_INSTANTIATE_ZONES(initialZones,modname,opt1,opt2) \
DBGPARAM dpCurSettings = \
{ \
TEXT(modname), \
{ \
TEXT("FUNCTION"), /* 0 */ \
TEXT("CLASS1"), /* 1 */ \
TEXT("CLASS2"), /* 2 */ \
TEXT("CLASS3"), /* 3 */ \
TEXT("CLASS4"), /* 4 */ \
TEXT("CLASS5"), /* 5 */ \
TEXT("SERVICES ERRORS"), /* 6 */ \
TEXT("CRITICAL ERRORS"), /* 7 */ \
TEXT("Unknown"), /* 8 */ \
TEXT("Unknown"), /* 9 */ \
TEXT("Unknown"), /* 10 */ \
TEXT("Unknown"), /* 11 */ \
TEXT("Unknown"), /* 12 */ \
TEXT("Unknown"), /* 13 */ \
TEXT(opt1), /* 14 */ \
TEXT(opt2), /* 15 */ \
}, \
(initialZones) \
};
extern DSP_STATUS DBG_SetGT_DBG();
extern DBGPARAM dpCurSettings;
#define DBG_SetGT() DBG_SetGT_DBG()
#endif /* ifndef LINUX */
#endif /*ifndef _DBG_ZONES_H_ */