Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / include / uapi / linux / coresight-stm.h
blob7ff3709c01b854e9250b4d6f837c744b2f7f4443
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef __UAPI_CORESIGHT_STM_H_
3 #define __UAPI_CORESIGHT_STM_H_
5 #include <linux/const.h>
7 #define STM_FLAG_TIMESTAMPED _BITUL(3)
8 #define STM_FLAG_MARKED _BITUL(4)
9 #define STM_FLAG_GUARANTEED _BITUL(7)
12 * The CoreSight STM supports guaranteed and invariant timing
13 * transactions. Guaranteed transactions are guaranteed to be
14 * traced, this might involve stalling the bus or system to
15 * ensure the transaction is accepted by the STM. While invariant
16 * timing transactions are not guaranteed to be traced, they
17 * will take an invariant amount of time regardless of the
18 * state of the STM.
20 enum {
21 STM_OPTION_GUARANTEED = 0,
22 STM_OPTION_INVARIANT,
25 #endif