seL4/include/machine/capdl.h
Oliver Scott ea365a8553 capdl-dump: tcbDebug list, multicore-support, add tcb command
-Use debuglist for runqueues and filter idle and root thread.
-Refactor sendEPQueue.
-Add multicore support.
-Added TCB_COMMAND, kernel now does translation
depending on how it's configured.
2019-03-20 12:55:30 +11:00

37 lines
979 B
C

/*
* Copyright 2014, General Dynamics C4 Systems
*
* This software may be distributed and modified according to the terms of
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
* See "LICENSE_GPLv2.txt" for details.
*
* @TAG(GD_GPL)
*/
#ifndef __MACHINE_CAPDL_H
#define __MACHINE_CAPDL_H
#define ESCAPE 0xaa
#define START 0xff
#define END 0xbb
#define START_ESCAPE 0xa0
#define ESCAPE_ESCAPE 0xa1
#define END_ESCAPE 0xa2
#define PD_COMMAND 0xf0
#define RQ_COMMAND 0xf1
#define EP_COMMAND 0xf2
#define CN_COMMAND 0xf3
#define TCB_COMMAND 0xfb
#define IRQ_COMMAND 0xf4
#define PT_COMMAND 0xf5
#define ASID_POOL_COMMAND 0xf6
#define IO_PT_COMMAND 0xf7
#define IO_SPACE_COMMAND 0xf8
#define VERSION_COMMAND 0xf9
#define DONE 0xfa
#define CAPDL_VERSION 0
#endif