/* * \file trc_pkt_types_etmv4.h * \brief OpenCSD : ETMv4 / ETE packet info * * \copyright Copyright (c) 2015,2019 ARM Limited. All Rights Reserved. */ /* * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * 3. Neither the name of the copyright holder nor the names of its contributors * may be used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef ARM_TRC_PKT_TYPES_ETMV4_H_INCLUDED #define ARM_TRC_PKT_TYPES_ETMV4_H_INCLUDED #include "opencsd/trc_pkt_types.h" /** @addtogroup trc_pkts @{*/ /** @name ETMv4 Packet Types, ETE packet Types @{*/ /** I stream packets. */ typedef enum _ocsd_etmv4_i_pkt_type { /* state of decode markers */ ETM4_PKT_I_NOTSYNC = 0x200, /*!< no sync found yet. */ ETM4_PKT_I_INCOMPLETE_EOT, /*!< flushing incomplete/empty packet at end of trace.*/ ETM4_PKT_I_NO_ERR_TYPE, /*!< error type not set for packet. */ /* markers for unknown/bad packets */ ETM4_PKT_I_BAD_SEQUENCE = 0x300, /*!< invalid sequence for packet type. */ ETM4_PKT_I_BAD_TRACEMODE, /*!< invalid packet type for this trace mode. */ ETM4_PKT_I_RESERVED, /*!< packet type reserved. */ ETM4_PKT_I_RESERVED_CFG, /*!< packet type reserved for current configuration */ /* I stream packet types. */ /* extension header. */ ETM4_PKT_I_EXTENSION = 0x00, /*!< b00000000 */ /* sync */ ETM4_PKT_I_TRACE_INFO = 0x01, /*!< b00000001 */ // timestamp ETM4_PKT_I_TIMESTAMP = 0x02, /*!< b0000001x */ ETM4_PKT_I_TRACE_ON = 0x04, /*!< b00000100 */ ETM4_PKT_I_FUNC_RET = 0x05, /*!< b00000101 (V8M only) */ // Exceptions ETM4_PKT_I_EXCEPT = 0x06, /*!< b00000110 */ ETM4_PKT_I_EXCEPT_RTN = 0x07, /*!< b00000111 (ETE invalid) */ /* unused encoding 0x08 b00001000 */ ETE_PKT_I_COMMIT_WIN_MV = 0x09, /*! b00001001 (ETE only - unused in current versions) */ ETE_PKT_I_TRANS_ST = 0x0A, /*! b00001010 (ETE only) */ ETE_PKT_I_TRANS_COMMIT = 0x0B, /*! b00001011 (ETE only) */ /* cycle count packets */ ETM4_PKT_I_CCNT_F2 = 0x0C, /*!< b0000110x */ ETM4_PKT_I_CCNT_F1 = 0x0E, /*!< b0000111x */ ETM4_PKT_I_CCNT_F3 = 0x10, /*!< b0001xxxx */ // data synchronisation markers ETM4_PKT_I_NUM_DS_MKR = 0x20, /*!< b00100xxx */ ETM4_PKT_I_UNNUM_DS_MKR = 0x28, /*!< b00101000 to b00101100 0x2C */ // speculation ETM4_PKT_I_COMMIT = 0x2D, /*!< b00101101 */ ETM4_PKT_I_CANCEL_F1 = 0x2E, /*!< b00101110 */ ETM4_PKT_I_CANCEL_F1_MISPRED = 0x2F, /*!< b00101111 */ ETM4_PKT_I_MISPREDICT = 0x30, /*!< b001100xx */ ETM4_PKT_I_CANCEL_F2 = 0x34, /*!< b001101xx */ ETM4_PKT_I_CANCEL_F3 = 0x38, /*!< b00111xxx */ /* conditional instruction tracing - (reserved encodings ETE) */ ETM4_PKT_I_COND_I_F2 = 0x40, /*!< b01000000 - b01000010 */ ETM4_PKT_I_COND_FLUSH = 0x43, /*!< b01000011 */ ETM4_PKT_I_COND_RES_F4 = 0x44, /*!< b0100010x, b01000110 */ /* unused encoding 0x47 b01000111 */ ETM4_PKT_I_COND_RES_F2 = 0x48, /*!< b0100100x, b01001010, b0100110x, b01001110 */ /* unused encodings 0x4B,0x4F b01001011, b01001111 */ ETM4_PKT_I_COND_RES_F3 = 0x50, /*!< b0101xxxx */ /* unused encodings 0x60-0x67 b01100xxx */ ETM4_PKT_I_COND_RES_F1 = 0x68, /*!< b011010xx, b0110111x 0x68-0x6B, 0x6e-0x6F */ ETM4_PKT_I_COND_I_F1 = 0x6C, /*!< b01101100 */ ETM4_PKT_I_COND_I_F3 = 0x6D, /*!< b01101101 */ // event trace ETM4_PKT_I_IGNORE = 0x70, /*!< b01110000 */ ETM4_PKT_I_EVENT = 0x71, /*!< b01110001 to 0x01111111 0x7F */ /* address and context */ ETM4_PKT_I_CTXT = 0x80, /*!< b1000000x */ ETM4_PKT_I_ADDR_CTXT_L_32IS0 = 0x82, /*!< b10000010 */ ETM4_PKT_I_ADDR_CTXT_L_32IS1, /*!< b10000011 */ /* unused encoding 0x84 b10000100 */ ETM4_PKT_I_ADDR_CTXT_L_64IS0 = 0x85, /*!< b10000101 */ ETM4_PKT_I_ADDR_CTXT_L_64IS1, /*!< b10000110 */ /* unused encoding 0x87 b10000111 */ ETE_PKT_I_TS_MARKER = 0x88, /*!< b10001000 */ /* unused encodings 0x89-0x8F b10001001 to b10001111 */ ETM4_PKT_I_ADDR_MATCH = 0x90, /*!< b10010000 to b10010010 0x92 */ /* unused encodings 0x93-0x94 b10010011 to b10010010 */ ETM4_PKT_I_ADDR_S_IS0 = 0x95, /*!< b10010101 */ ETM4_PKT_I_ADDR_S_IS1, /*!< b10010110 */ /* unused encodings 0x97 b10010111 to b10011001 0x99 */ ETM4_PKT_I_ADDR_L_32IS0 = 0x9A, /*!< b10011010 */ ETM4_PKT_I_ADDR_L_32IS1, /*!< b10011011 */ /* unused encoding 0x9C b10011100 */ ETM4_PKT_I_ADDR_L_64IS0 = 0x9D, /*!< b10011101 */ ETM4_PKT_I_ADDR_L_64IS1, /*!< b10011110 */ /* unused encoding 0x9F b10011111 */ /* Q packets */ ETM4_PKT_I_Q = 0xA0, /*!< b1010xxxx */ /* ETE source address packets, unused ETMv4 */ ETE_PKT_I_SRC_ADDR_MATCH = 0xB0, /*!< b101100xx */ ETE_PKT_I_SRC_ADDR_S_IS0 = 0xB4, /*!< b10110100 */ ETE_PKT_I_SRC_ADDR_S_IS1 = 0xB5, /*!< b10110101 */ ETE_PKT_I_SRC_ADDR_L_32IS0 = 0xB6, /*!< b10110110 */ ETE_PKT_I_SRC_ADDR_L_32IS1 = 0xB7, /*!< b10110111 */ ETE_PKT_I_SRC_ADDR_L_64IS0 = 0xB8, /*!< b10111000 */ ETE_PKT_I_SRC_ADDR_L_64IS1 = 0xB9, /*!< b10111001 */ /* unused encodings 0xBA-0xBF b10111010 - b10111111 */ /* Atom packets */ ETM4_PKT_I_ATOM_F6 = 0xC0, /*!< b11000000 - b11010100 0xC0 - 0xD4, b11100000 - b11110100 0xE0 - 0xF4 */ ETM4_PKT_I_ATOM_F5 = 0xD5, /*!< b11010101 - b11010111 0xD5 - 0xD7, b11110101 0xF5 */ ETM4_PKT_I_ATOM_F2 = 0xD8, /*!< b110110xx to 0xDB */ ETM4_PKT_I_ATOM_F4 = 0xDC, /*!< b110111xx to 0xDF */ ETM4_PKT_I_ATOM_F1 = 0xF6, /*!< b1111011x to 0xF7 */ ETM4_PKT_I_ATOM_F3 = 0xF8, /*!< b11111xxx to 0xFF */ // extension packets - follow 0x00 header ETM4_PKT_I_ASYNC = 0x100, //!< b00000000 ETM4_PKT_I_DISCARD = 0x103, //!< b00000011 ETM4_PKT_I_OVERFLOW = 0x105, //!< b00000101 // ETE extended types ETE_PKT_I_PE_RESET = 0x400, // base type is exception packet. ETE_PKT_I_TRANS_FAIL = 0x401, // base type is exception packet. } ocsd_etmv4_i_pkt_type; typedef union _etmv4_trace_info_t { uint32_t val; //!< trace info full value. struct { uint32_t cc_enabled:1; //!< 1 if cycle count enabled uint32_t cond_enabled:3; //!< conditional trace enabled type. uint32_t p0_load:1; //!< 1 if tracing with P0 load elements (for data trace) uint32_t p0_store:1; //!< 1 if tracing with P0 store elements (for data trace) uint32_t in_trans_state:1; //!< 1 if starting trace when in a transactional state (ETE trace). } bits; //!< bitfields for trace info value. } etmv4_trace_info_t; typedef struct _etmv4_context_t { struct { uint32_t EL:2; //!< exception level. uint32_t SF:1; //!< sixty four bit uint32_t NS:1; //!< none secure uint32_t updated:1; //!< updated this context packet (otherwise same as last time) uint32_t updated_c:1; //!< updated CtxtID uint32_t updated_v:1; //!< updated VMID uint32_t NSE:1; //!< PE FEAT_RME: root / realm indicator }; uint32_t ctxtID; //!< Current ctxtID uint32_t VMID; //!< current VMID } etmv4_context_t; /** a broadcast address value. */ typedef struct _etmv4_addr_val_t { ocsd_vaddr_t val; //!< Address value. uint8_t isa; //!< instruction set. } etmv4_addr_val_t; typedef struct _ocsd_etmv4_i_pkt { ocsd_etmv4_i_pkt_type type; /**< Trace packet type derived from header byte */ //** intra-packet data - valid across packets. ocsd_pkt_vaddr v_addr; //!< most recently broadcast address packet uint8_t v_addr_ISA; //!< ISA for the address packet. (0 = IS0 / 1 = IS1) etmv4_context_t context; //!< current context for PE struct { uint64_t timestamp; //!< current timestamp value uint8_t bits_changed; //!< bits updated in this timestamp packet. } ts; uint32_t cc_threshold; //!< cycle count threshold - from trace info. // single packet data - only valid for specific packet types on packet instance. ocsd_pkt_atom atom; //!< atom elements - number of atoms indicates validity of packet uint32_t cycle_count; //!< cycle count uint32_t curr_spec_depth; //!< current speculation depth uint32_t p0_key; //!< current P0 key value for data packet synchronisation uint32_t commit_elements; // data value, timestamp value, event value */ ocsd_etmv4_d_pkt_type err_type; } ocsd_etmv4_d_pkt; typedef struct _ocsd_etmv4_cfg { uint32_t reg_idr0; /**< ID0 register */ uint32_t reg_idr1; /**< ID1 register */ uint32_t reg_idr2; /**< ID2 register */ uint32_t reg_idr8; uint32_t reg_idr9; uint32_t reg_idr10; uint32_t reg_idr11; uint32_t reg_idr12; uint32_t reg_idr13; uint32_t reg_configr; /**< Config Register */ uint32_t reg_traceidr; /**< Trace Stream ID register */ ocsd_arch_version_t arch_ver; /**< Architecture version */ ocsd_core_profile_t core_prof; /**< Core Profile */ } ocsd_etmv4_cfg; #define ETE_ARCH_VERSION 0x5 #define ETE_OPFLG_PKTDEC_SRCADDR_N_ATOMS 0x00010000 /**< Split source address output ranges for N-atoms */ /** @}*/ /** @}*/ #endif // ARM_TRC_PKT_TYPES_ETMV4_H_INCLUDED /* End of File trc_pkt_types_etmv4.h */