mirror of https://github.com/thesofproject/sof.git
trace: add gaps in macros for new items
Add gaps in the platform init tarce macros to allow other items to be inserted. Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
This commit is contained in:
parent
a86d2d7ae2
commit
2104ff80d4
|
@ -41,6 +41,7 @@
|
||||||
#include <platform/platform.h>
|
#include <platform/platform.h>
|
||||||
#include <platform/timer.h>
|
#include <platform/timer.h>
|
||||||
|
|
||||||
|
|
||||||
/* general trace init codes - only used at boot when main trace is not available */
|
/* general trace init codes - only used at boot when main trace is not available */
|
||||||
#define TRACE_BOOT_START 0x1000
|
#define TRACE_BOOT_START 0x1000
|
||||||
#define TRACE_BOOT_ARCH 0x2000
|
#define TRACE_BOOT_ARCH 0x2000
|
||||||
|
@ -55,15 +56,16 @@
|
||||||
#define TRACE_BOOT_SYS_SCHED (TRACE_BOOT_SYS + 0x500)
|
#define TRACE_BOOT_SYS_SCHED (TRACE_BOOT_SYS + 0x500)
|
||||||
|
|
||||||
/* platform/device specific codes */
|
/* platform/device specific codes */
|
||||||
#define TRACE_BOOT_PLATFORM_MBOX (TRACE_BOOT_PLATFORM + 0x100)
|
#define TRACE_BOOT_PLATFORM_ENTRY (TRACE_BOOT_PLATFORM + 0x100)
|
||||||
#define TRACE_BOOT_PLATFORM_SHIM (TRACE_BOOT_PLATFORM + 0x101)
|
#define TRACE_BOOT_PLATFORM_MBOX (TRACE_BOOT_PLATFORM + 0x110)
|
||||||
#define TRACE_BOOT_PLATFORM_PMC (TRACE_BOOT_PLATFORM + 0x102)
|
#define TRACE_BOOT_PLATFORM_SHIM (TRACE_BOOT_PLATFORM + 0x120)
|
||||||
#define TRACE_BOOT_PLATFORM_TIMER (TRACE_BOOT_PLATFORM + 0x103)
|
#define TRACE_BOOT_PLATFORM_PMC (TRACE_BOOT_PLATFORM + 0x130)
|
||||||
#define TRACE_BOOT_PLATFORM_CLOCK (TRACE_BOOT_PLATFORM + 0x104)
|
#define TRACE_BOOT_PLATFORM_TIMER (TRACE_BOOT_PLATFORM + 0x140)
|
||||||
#define TRACE_BOOT_PLATFORM_SSP_FREQ (TRACE_BOOT_PLATFORM + 0x105)
|
#define TRACE_BOOT_PLATFORM_CLOCK (TRACE_BOOT_PLATFORM + 0x150)
|
||||||
#define TRACE_BOOT_PLATFORM_IPC (TRACE_BOOT_PLATFORM + 0x106)
|
#define TRACE_BOOT_PLATFORM_SSP_FREQ (TRACE_BOOT_PLATFORM + 0x160)
|
||||||
#define TRACE_BOOT_PLATFORM_DMA (TRACE_BOOT_PLATFORM + 0x107)
|
#define TRACE_BOOT_PLATFORM_IPC (TRACE_BOOT_PLATFORM + 0x170)
|
||||||
#define TRACE_BOOT_PLATFORM_SSP (TRACE_BOOT_PLATFORM + 0x108)
|
#define TRACE_BOOT_PLATFORM_DMA (TRACE_BOOT_PLATFORM + 0x180)
|
||||||
|
#define TRACE_BOOT_PLATFORM_SSP (TRACE_BOOT_PLATFORM + 0x190)
|
||||||
|
|
||||||
|
|
||||||
/* trace event classes - high 8 bits*/
|
/* trace event classes - high 8 bits*/
|
||||||
|
|
Loading…
Reference in New Issue