18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/****************************************************************************/ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci/* 58c2ecf20Sopenharmony_ci * mcfdebug.h -- ColdFire Debug Module support. 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * (C) Copyright 2001, Lineo Inc. (www.lineo.com) 88c2ecf20Sopenharmony_ci */ 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci/****************************************************************************/ 118c2ecf20Sopenharmony_ci#ifndef mcfdebug_h 128c2ecf20Sopenharmony_ci#define mcfdebug_h 138c2ecf20Sopenharmony_ci/****************************************************************************/ 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ci/* Define the debug module registers */ 168c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR 0x0 /* Configuration status */ 178c2ecf20Sopenharmony_ci#define MCFDEBUG_BAAR 0x5 /* BDM address attribute */ 188c2ecf20Sopenharmony_ci#define MCFDEBUG_AATR 0x6 /* Address attribute trigger */ 198c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR 0x7 /* Trigger definition */ 208c2ecf20Sopenharmony_ci#define MCFDEBUG_PBR 0x8 /* PC breakpoint */ 218c2ecf20Sopenharmony_ci#define MCFDEBUG_PBMR 0x9 /* PC breakpoint mask */ 228c2ecf20Sopenharmony_ci#define MCFDEBUG_ABHR 0xc /* High address breakpoint */ 238c2ecf20Sopenharmony_ci#define MCFDEBUG_ABLR 0xd /* Low address breakpoint */ 248c2ecf20Sopenharmony_ci#define MCFDEBUG_DBR 0xe /* Data breakpoint */ 258c2ecf20Sopenharmony_ci#define MCFDEBUG_DBMR 0xf /* Data breakpoint mask */ 268c2ecf20Sopenharmony_ci 278c2ecf20Sopenharmony_ci/* Define some handy constants for the trigger definition register */ 288c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_TRC_DISP 0x00000000 /* display on DDATA only */ 298c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_TRC_HALT 0x40000000 /* Processor halt on BP */ 308c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_TRC_INTR 0x80000000 /* Debug intr on BP */ 318c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_LXT1 0x00004000 /* TDR level 1 */ 328c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_LXT2 0x00008000 /* TDR level 2 */ 338c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EBL1 0x00002000 /* Enable breakpoint level 1 */ 348c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EBL2 0x20000000 /* Enable breakpoint level 2 */ 358c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDLW1 0x00001000 /* Enable data BP longword */ 368c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDLW2 0x10000000 378c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDWL1 0x00000800 /* Enable data BP lower word */ 388c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDWL2 0x08000000 398c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDWU1 0x00000400 /* Enable data BP upper word */ 408c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDWU2 0x04000000 418c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDLL1 0x00000200 /* Enable data BP low low byte */ 428c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDLL2 0x02000000 438c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDLM1 0x00000100 /* Enable data BP low mid byte */ 448c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDLM2 0x01000000 458c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDUM1 0x00000080 /* Enable data BP up mid byte */ 468c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDUM2 0x00800000 478c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDUU1 0x00000040 /* Enable data BP up up byte */ 488c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EDUU2 0x00400000 498c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_DI1 0x00000020 /* Data BP invert */ 508c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_DI2 0x00200000 518c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EAI1 0x00000010 /* Enable address BP inverted */ 528c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EAI2 0x00100000 538c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EAR1 0x00000008 /* Enable address BP range */ 548c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EAR2 0x00080000 558c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EAL1 0x00000004 /* Enable address BP low */ 568c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EAL2 0x00040000 578c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EPC1 0x00000002 /* Enable PC BP */ 588c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_EPC2 0x00020000 598c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_PCI1 0x00000001 /* PC BP invert */ 608c2ecf20Sopenharmony_ci#define MCFDEBUG_TDR_PCI2 0x00010000 618c2ecf20Sopenharmony_ci 628c2ecf20Sopenharmony_ci/* Constants for the address attribute trigger register */ 638c2ecf20Sopenharmony_ci#define MCFDEBUG_AAR_RESET 0x00000005 648c2ecf20Sopenharmony_ci/* Fields not yet implemented */ 658c2ecf20Sopenharmony_ci 668c2ecf20Sopenharmony_ci/* And some definitions for the writable sections of the CSR */ 678c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_RESET 0x00100000 688c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_PSTCLK 0x00020000 /* PSTCLK disable */ 698c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_IPW 0x00010000 /* Inhibit processor writes */ 708c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_MAP 0x00008000 /* Processor refs in emul mode */ 718c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_TRC 0x00004000 /* Emul mode on trace exception */ 728c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_EMU 0x00002000 /* Force emulation mode */ 738c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_DDC_READ 0x00000800 /* Debug data control */ 748c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_DDC_WRITE 0x00001000 758c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_UHE 0x00000400 /* User mode halt enable */ 768c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_BTB0 0x00000000 /* Branch target 0 bytes */ 778c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_BTB2 0x00000100 /* Branch target 2 bytes */ 788c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_BTB3 0x00000200 /* Branch target 3 bytes */ 798c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_BTB4 0x00000300 /* Branch target 4 bytes */ 808c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_NPL 0x00000040 /* Non-pipelined mode */ 818c2ecf20Sopenharmony_ci#define MCFDEBUG_CSR_SSM 0x00000010 /* Single step mode */ 828c2ecf20Sopenharmony_ci 838c2ecf20Sopenharmony_ci/* Constants for the BDM address attribute register */ 848c2ecf20Sopenharmony_ci#define MCFDEBUG_BAAR_RESET 0x00000005 858c2ecf20Sopenharmony_ci/* Fields not yet implemented */ 868c2ecf20Sopenharmony_ci 878c2ecf20Sopenharmony_ci 888c2ecf20Sopenharmony_ci/* This routine wrappers up the wdebug asm instruction so that the register 898c2ecf20Sopenharmony_ci * and value can be relatively easily specified. The biggest hassle here is 908c2ecf20Sopenharmony_ci * that the debug module instructions (2 longs) must be long word aligned and 918c2ecf20Sopenharmony_ci * some pointer fiddling is performed to ensure this. 928c2ecf20Sopenharmony_ci */ 938c2ecf20Sopenharmony_cistatic inline void wdebug(int reg, unsigned long data) { 948c2ecf20Sopenharmony_ci unsigned short dbg_spc[6]; 958c2ecf20Sopenharmony_ci unsigned short *dbg; 968c2ecf20Sopenharmony_ci 978c2ecf20Sopenharmony_ci // Force alignment to long word boundary 988c2ecf20Sopenharmony_ci dbg = (unsigned short *)((((unsigned long)dbg_spc) + 3) & 0xfffffffc); 998c2ecf20Sopenharmony_ci 1008c2ecf20Sopenharmony_ci // Build up the debug instruction 1018c2ecf20Sopenharmony_ci dbg[0] = 0x2c80 | (reg & 0xf); 1028c2ecf20Sopenharmony_ci dbg[1] = (data >> 16) & 0xffff; 1038c2ecf20Sopenharmony_ci dbg[2] = data & 0xffff; 1048c2ecf20Sopenharmony_ci dbg[3] = 0; 1058c2ecf20Sopenharmony_ci 1068c2ecf20Sopenharmony_ci // Perform the wdebug instruction 1078c2ecf20Sopenharmony_ci#if 0 1088c2ecf20Sopenharmony_ci // This strain is for gas which doesn't have the wdebug instructions defined 1098c2ecf20Sopenharmony_ci asm( "move.l %0, %%a0\n\t" 1108c2ecf20Sopenharmony_ci ".word 0xfbd0\n\t" 1118c2ecf20Sopenharmony_ci ".word 0x0003\n\t" 1128c2ecf20Sopenharmony_ci :: "g" (dbg) : "a0"); 1138c2ecf20Sopenharmony_ci#else 1148c2ecf20Sopenharmony_ci // And this is for when it does 1158c2ecf20Sopenharmony_ci asm( "wdebug (%0)" :: "a" (dbg)); 1168c2ecf20Sopenharmony_ci#endif 1178c2ecf20Sopenharmony_ci} 1188c2ecf20Sopenharmony_ci 1198c2ecf20Sopenharmony_ci#endif 120