18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef XMON_BPTS_H 38c2ecf20Sopenharmony_ci#define XMON_BPTS_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_ci#define NBPTS 256 68c2ecf20Sopenharmony_ci#ifndef __ASSEMBLY__ 78c2ecf20Sopenharmony_ci#include <asm/inst.h> 88c2ecf20Sopenharmony_ci#define BPT_SIZE (sizeof(struct ppc_inst) * 2) 98c2ecf20Sopenharmony_ci#define BPT_WORDS (BPT_SIZE / sizeof(struct ppc_inst)) 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ciextern unsigned int bpt_table[NBPTS * BPT_WORDS]; 128c2ecf20Sopenharmony_ci#endif /* __ASSEMBLY__ */ 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ci#endif /* XMON_BPTS_H */ 15