OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [config/] [or1k/] [tm-or1k.h] - Blame information for rev 372

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
/* Definitions to target GDB to or1k targets.
2
   Copyright 2001 Free Software Foundation, Inc.
3
 
4
   This file is part of GDB.
5
 
6
   This program is free software; you can redistribute it and/or modify
7
   it under the terms of the GNU General Public License as published by
8
   the Free Software Foundation; either version 2 of the License, or
9
   (at your option) any later version.
10
 
11
   This program is distributed in the hope that it will be useful,
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
   GNU General Public License for more details.
15
 
16
   You should have received a copy of the GNU General Public License
17
   along with this program; if not, write to the Free Software
18
   Foundation, Inc., 59 Temple Place - Suite 330,
19
   Boston, MA 02111-1307, USA.  */
20
 
21
#ifndef TM_OR1K_H
22
#define TM_OR1K_H
23
 
24
#ifndef TARGET_OR1K
25
#define TARGET_OR1K
26
#endif
27
 
28 122 markom
#include "defs.h"
29 126 chris
#include <inttypes.h>  /* CZ */
30 122 markom
 
31 106 markom
struct value;
32
 
33
struct struct_or1k_implementation
34
  {
35
    /* Implementation version.  */
36
    unsigned int VR;
37
    /* Units present.  */
38
    unsigned int UPR;
39
    /* Number of total available matchpoints in this implementation.  */
40
    unsigned int num_matchpoints;
41 113 markom
    /* Number of currently used matchpoints.  */
42
    unsigned int num_used_matchpoints;
43 115 markom
    /* Has watchpoint driven counters.  */
44
    int has_counters;
45 106 markom
    /* Number of registers.  */
46
    unsigned int num_gpr_regs;
47 115 markom
    unsigned int num_vfpr_regs;
48
    /* Is there any vf support?  */
49 106 markom
    int vf_present;
50
 };
51
 
52
struct or1k_target_ops
53
  {
54
    /* Name this target type.  */
55
    char *to_shortname;
56
 
57
    /* Init target.  */
58
    void (*to_init) PARAMS ((char *args));
59
    /* Destruct target.  */
60
    void (*to_done) PARAMS ((void));
61
 
62 113 markom
    /* Read register.
63
       Does not fail, places error no. in err instead or call error(), if fatal.  */
64 122 markom
    ULONGEST (*to_read_reg) PARAMS ((unsigned int regno));
65 113 markom
    /* Write register.
66
       Does not fail, places error no. in err instead or call error(), if fatal.  */
67 122 markom
    void (*to_write_reg) PARAMS ((unsigned int regno, ULONGEST value));
68 106 markom
 
69 146 chris
    /* Read a block...possibly more efficient than several isolated
70
       call to read_reg...worst case the same efficiency. Returns 0
71
       on success or errno if a failure occurred. */
72
    int (*to_read_block) PARAMS ((unsigned int regno, void* block, int nRegisters));
73
 
74
    /* Write a block...possibly more efficient than several isolated
75
       call to write_reg...worst case the same efficiency. Returns 0
76
       on success or errno if a failure occurred. */
77
    int (*to_write_block) PARAMS ((unsigned int regno, void* block, int nRegisters));
78
 
79 113 markom
    /* Selects scan chain.  All register accesses are related to current scan chain.
80
       Does not fail, places error no. in err instead or call error(), if fatal.
81
       See jtag_chains enum.  */
82
    void (*to_set_chain) PARAMS ((int chain));
83 106 markom
 
84
    /* Executes extended command on the target.  */
85
    void (*to_exec_command) PARAMS ((char *args, int from_tty));
86
 
87
    /* Associated target_ops.  */
88
    struct target_ops *gdb_ops;
89
    /* Should be OPS_MAGIC. */
90
    int to_magic;
91
  };
92
 
93
 
94
#define DEFAULT_PROMPT "(or1k) "
95
 
96 113 markom
/* Context stuff. */
97
#define CURRENT_CID (0)
98
#define MAX_CID     (15)
99
 
100
 
101
/* Instruction definitions. */
102 364 markom
#define BRK_INSTR_STRUCT {0x21, 0x00, 0x00, 0x01}
103 113 markom
#define NOP_INSTR (0x15000000)
104
 
105 106 markom
/* Special purpose regisers.  */
106 113 markom
#define SPR_GROUP_SIZE_BITS (11)
107 106 markom
#define SPR_GROUP_SIZE (1 << SPR_GROUP_SIZE_BITS)
108
#define SPR_SYSTEM_GROUP (0)
109
#define SPR_DEBUG_GROUP (6)
110 115 markom
#define SPR_GPR_START  (1024)
111
#define SPR_VFPR_START ((MAX_CID + 1) * MAX_GPR_REGS + SPR_GPR_START)
112
#define OR1K_NUM_SPR_GROUPS (12)
113 106 markom
 
114
/* Define register values.  */
115
#define SPR_REG(group, index) (((group) << SPR_GROUP_SIZE_BITS) + (index))
116
 
117 115 markom
#define VR_SPRNUM SPR_REG(SPR_SYSTEM_GROUP, 0)
118
#define UPR_SPRNUM SPR_REG(SPR_SYSTEM_GROUP, 1)
119
#define CPUCFGR_SPRNUM SPR_REG(SPR_SYSTEM_GROUP, 2)
120
#define DCFGR_SPRNUM SPR_REG(SPR_SYSTEM_GROUP, 7)
121
#define PC_SPRNUM SPR_REG(SPR_SYSTEM_GROUP, 16)
122
#define SR_SPRNUM SPR_REG(SPR_SYSTEM_GROUP, 17)
123 372 markom
#define PPC_SPRNUM SPR_REG(SPR_SYSTEM_GROUP, 18)
124 113 markom
#define CCR_SPRNUM(cid) SPR_REG(SPR_SYSTEM_GROUP, 4 + (cid))
125 362 markom
#define EPCR_SPRNUM(cid) SPR_REG(SPR_SYSTEM_GROUP, 32 + (cid))
126
#define EPCR0_SPRNUM SPR_REG(SPR_SYSTEM_GROUP, 32)
127
 
128
#define DVR0_SPRNUM SPR_REG(SPR_DEBUG_GROUP, 0xee)
129
#define DCR0_SPRNUM SPR_REG(SPR_DEBUG_GROUP, 0xee)
130
#define DMR1_SPRNUM SPR_REG(SPR_DEBUG_GROUP, 16)
131
#define DMR2_SPRNUM SPR_REG(SPR_DEBUG_GROUP, 17)
132
#define DCWR0_SPRNUM SPR_REG(SPR_DEBUG_GROUP, 0xee)
133
#define DCWR1_SPRNUM SPR_REG(SPR_DEBUG_GROUP, 0xee)
134
#define DSR_SPRNUM SPR_REG(SPR_DEBUG_GROUP, 20)
135
#define DRR_SPRNUM SPR_REG(SPR_DEBUG_GROUP, 21)
136
 
137 106 markom
#define ZERO_REGNUM (0)
138
#define SP_REGNUM (1)
139
#define FP_REGNUM (2)
140
#define A0_REGNUM (3)
141
#define A5_REGNUM (8)
142
#define LR_REGNUM (9)
143
#define RV_REGNUM (11)
144 113 markom
#define VFA0_REGNUM (MAX_GPR_REGS + 0)
145
#define VFA5_REGNUM (MAX_GPR_REGS + 5)
146
#define VFRV_REGNUM (MAX_GPR_REGS + 6)
147
#define PC_REGNUM (MAX_GPR_REGS + MAX_VF_REGS + 0)
148
#define PS_REGNUM (MAX_GPR_REGS + MAX_VF_REGS + 1)
149 362 markom
#define EPCR_REGNUM (MAX_GPR_REGS + MAX_VF_REGS + 2)
150 113 markom
#define CCR_REGNUM (MAX_GPR_REGS + MAX_VF_REGS + 2)
151 106 markom
 
152 207 chris
/******** END OF ADDITIONS BY CZ ************/
153
 
154 106 markom
extern int or1k_regnum_to_sprnum PARAMS ((int regno));
155
#define REGNUM_TO_SPRNUM(regno) (or1k_regnum_to_sprnum(regno))
156
 
157
/* Defines for SPR bits.  */
158
#define DMR1_ST    (0x00400000)
159
 
160 136 chris
/* Changed by CZ 21/06/01 */
161 363 markom
#define DRR_TE     (0x00002000)
162 372 markom
#define DRR_SSE    (0x00001000)
163 136 chris
#define DRR_SCE    (0x00000800)
164
#define DRR_RE     (0x00000400)
165
#define DRR_IME    (0x00000200)
166
#define DRR_DME    (0x00000100)
167
#define DRR_HPINTE (0x00000080)
168 106 markom
#define DRR_IIE    (0x00000040)
169 136 chris
#define DRR_AE     (0x00000020)
170
#define DRR_LPINTE (0x00000010)
171
#define DRR_IPFE   (0x00000008)
172
#define DRR_DPFE   (0x00000004)
173
#define DRR_BUSEE  (0x00000002)
174
#define DRR_RSTE   (0x00000001)
175 106 markom
 
176
/* Number of matchpoints */
177
#define NUM_MATCHPOINTS (or1k_implementation.num_matchpoints)
178 118 markom
#define MAX_MATCHPOINTS (8)
179 106 markom
 
180
/* Number of machine GPR registers */
181
#define NUM_GPR_REGS (or1k_implementation.num_gpr_regs)
182
#define MAX_GPR_REGS (32)
183
 
184
/* Number of machine VF registers */
185 116 markom
#define NUM_VF_REGS (or1k_implementation.num_vfpr_regs)
186 106 markom
#define MAX_VF_REGS (32)
187
 
188
/* gdb mapping of registers */
189
#ifndef NUM_REGS
190 363 markom
#define NUM_REGS (MAX_GPR_REGS+MAX_VF_REGS+3)
191 106 markom
#endif
192
 
193
/* Can act like a little or big endian.  */
194
#if !defined (TARGET_BYTE_ORDER_DEFAULT)
195
#define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
196
#define TARGET_BYTE_ORDER_SELECTABLE_P (1)
197
#endif
198
 
199
/* Size (in bytes) of registers.  */
200
#define OR1K_SPR_REGSIZE (4)
201
#define OR1K_VF_REGSIZE (8)
202
#define OR1K_GPR_REGSIZE ((OR1K_64BIT_IMPLEMENTATION)?(8):(4))
203 113 markom
#define OR1K_VF_DOUBLE (0)
204 106 markom
 
205 113 markom
#define OR1K_IS_GPR(N) ((N) >= 0 && (N) < MAX_GPR_REGS)
206
#define OR1K_IS_VF(N) ((N) >= MAX_GPR_REGS && (N) < MAX_GPR_REGS + MAX_VF_REGS)
207 106 markom
 
208
/* Register representation is the same as in memory.  */
209
#define REGISTER_CONVERTIBLE(N) (0)
210
 
211
/* Given the register index, return the name of the corresponding
212
   register. */
213
extern char *or1k_register_name PARAMS ((int regno));
214
#define REGISTER_NAME(regno) or1k_register_name (regno)
215
 
216
/* Is this implementation 64 or 32 bit.
217
   WARNING: gdb or1k port is not yet prepared for 64b implementations!  */
218
#define OR1K_64BIT_IMPLEMENTATION 0
219
 
220
/* Number of bytes of storage in the actual machine representation for
221
   register N.  NOTE: This indirectly defines the register size
222
   transfered by the GDB protocol.  If we have 64bit processor
223
   implementation, GPR register raw size is 8B, otherwise 4B.  */
224
#define REGISTER_RAW_SIZE(N) ((OR1K_IS_GPR(N)?((OR1K_64BIT_IMPLEMENTATION)?\
225
(8):(4)):(OR1K_SPR_REGSIZE)))
226
 
227
/* Number of bytes of storage in the program's representation
228
   for register N. Same as RAW_SIZE.  */
229
#define REGISTER_VIRTUAL_SIZE(N) TYPE_LENGTH (REGISTER_VIRTUAL_TYPE (N))
230
 
231
/* Return the GDB type object for the "standard" data type of data in
232
   register N.  */
233
#define REGISTER_VIRTUAL_TYPE(N) ((OR1K_IS_GPR(N))?(\
234 113 markom
(OR1K_64BIT_IMPLEMENTATION)?builtin_type_int64:builtin_type_int\
235
):(OR1K_IS_VF(N) ? builtin_type_float : builtin_type_uint32))
236 106 markom
 
237
/* Largest value REGISTER_RAW_SIZE can have.  */
238
#define MAX_REGISTER_RAW_SIZE ((OR1K_64BIT_IMPLEMENTATION)?(8):(4))
239
 
240
/* Largest value REGISTER_VIRTUAL_SIZE can have.  */
241
#define MAX_REGISTER_VIRTUAL_SIZE ((OR1K_64BIT_IMPLEMENTATION)?(8):(4))
242
 
243
#define REGISTER_SIZE (MAX_REGISTER_VIRTUAL_SIZE)
244
 
245
/* ABI uses R3 through R8 for args.  */
246
#define OR1K_LAST_ARG_REGNUM (A5_REGNUM)
247
#define OR1K_NUM_ARG_REGS (6)
248 118 markom
 
249 106 markom
/* ABI uses VFR0 through VFR5 for float args.  */
250
#define OR1K_LAST_FP_ARG_REGNUM (VFA5_REGNUM)
251
#define OR1K_NUM_FP_ARG_REGS (6)
252
 
253
/* Should not store into R0.  */
254
#define CANNOT_STORE_REGISTER(N) ((N) == 0)
255
 
256
/* Index within `registers' of the first byte of the space for
257
   register N.  */
258
#define REGISTER_BYTE(N) ((N) * OR1K_SPR_REGSIZE)
259
 
260
/* Total amount of space needed to store our copies of the machine's
261
   register state, the array `registers'.  */
262 362 markom
#define REGISTER_BYTES (NUM_REGS * OR1K_GPR_REGSIZE)
263 106 markom
 
264 113 markom
extern void or1k_do_registers_info PARAMS ((int, int));
265
#define DO_REGISTERS_INFO(regnum, fp) or1k_do_registers_info(regnum, fp)
266
 
267
 
268
 
269 106 markom
/* BREAKPOINT_FROM_PC uses the program counter value to determine whether a
270
   16- or 32-bit breakpoint should be used.  It returns a pointer
271
   to a string of bytes that encode a breakpoint instruction, stores
272
   the length of the string to *lenptr, and adjusts the pc (if necessary) to
273
   point to the actual memory location where the breakpoint should be
274
   inserted.  */
275
extern unsigned char *or1k_breakpoint_from_pc PARAMS ((CORE_ADDR *bp_addr, int *bp_size));
276
#define BREAKPOINT_FROM_PC(pcptr, lenptr) or1k_breakpoint_from_pc (pcptr, lenptr)
277
 
278
/* Amount PC must be decremented by after a breakpoint.
279
   This is often the number of bytes in BREAKPOINT
280
   but not always.  */
281
 
282
#define DECR_PC_AFTER_BREAK 0
283
 
284 372 markom
/* Don't step over l.trap */
285
#define CANNOT_STEP_BREAKPOINT
286
 
287 113 markom
extern int or1k_insert_breakpoint (CORE_ADDR addr, char *contents_cache);
288
#define target_insert_hw_breakpoint(addr, cache) or1k_insert_breakpoint (addr, cache)
289
 
290
extern int or1k_remove_breakpoint (CORE_ADDR addr, char *contents_cache);
291
#define target_remove_hw_breakpoint(addr, cache) or1k_remove_breakpoint (addr, cache)
292
 
293
/* Watchpoint support.  */
294
#define TARGET_HAS_HARDWARE_WATCHPOINTS
295
 
296
/* Use these macros for watchpoint insertion/deletion.  */
297
/* type can be 0: write watch, 1: read watch, 2: access watch (read/write) */
298
extern int or1k_insert_watchpoint PARAMS ((CORE_ADDR addr, int len, int type));
299
#define target_insert_watchpoint(addr, len, type) \
300
        or1k_insert_watchpoint (addr, len, type)
301
 
302
extern int or1k_insert_watchpoint PARAMS ((CORE_ADDR addr, int len, int type));
303
#define target_remove_watchpoint(addr, len, type) \
304
        or1k_remove_watchpoint (addr, len, type)
305
 
306
/* We need to remove watchpoints when stepping, else we hit them again! */
307
#define HAVE_NONSTEPPABLE_WATCHPOINT
308
 
309
extern int or1k_stopped_by_watchpoint PARAMS ((void));
310
#define STOPPED_BY_WATCHPOINT(w) or1k_stopped_by_watchpoint ()
311
 
312
typedef enum bptype;
313
extern int or1k_can_use_hardware_watchpoint PARAMS ((enum bptype, int));
314
#define TARGET_CAN_USE_HARDWARE_WATCHPOINT(bp_type, cnt, ot) \
315
  or1k_can_use_hardware_watchpoint(bp_type, cnt)
316
 
317
 
318
/* Catchpoint support.  */
319
/* HACK: how do we hook to signal namings otherwise? */
320
#include "target.h"
321
extern char *target_signal_to_string PARAMS ((enum target_signal));
322 118 markom
 
323 113 markom
/* Return the name (SIGHUP, etc.) for a signal.  */
324
extern char *or1k_signal_to_name PARAMS ((enum target_signal));
325 118 markom
 
326 113 markom
/* Given a name (SIGHUP, etc.), return its signal.  */
327
extern enum target_signal or1k_signal_from_name PARAMS ((char *));
328
 
329 207 chris
#define NUM_OR1K_SIGNALS (14)
330 113 markom
 
331 106 markom
/* Extract from an array REGBUF containing the (raw) register state
332
   a function return value of type TYPE, and copy that, in virtual format,
333
   into VALBUF.  */
334
extern void or1k_extract_return_value PARAMS ((struct type *, char[], char *));
335
#define EXTRACT_RETURN_VALUE(TYPE, REGBUF, VALBUF) \
336
  or1k_extract_return_value (TYPE, REGBUF, VALBUF)
337
 
338
/* Write into appropriate registers a function return value
339
   of type TYPE, given in virtual format.  */
340
#define STORE_RETURN_VALUE(TYPE,VALBUF) \
341
  {\
342
    if (TYPE_CODE (TYPE) == TYPE_CODE_FLT)\
343
      write_register_bytes (REGISTER_BYTE (VFRV_REGNUM), VALBUF, TYPE_LENGTH (TYPE));\
344
    else\
345
      write_register_bytes (REGISTER_BYTE (RV_REGNUM), VALBUF, TYPE_LENGTH (TYPE));\
346
  }
347
 
348
/* Extract from an array REGBUF containing the (raw) register state
349
   the address in which a function should return its structure value,
350
   as a CORE_ADDR (or an expression that can be used as one).  */
351
/* The address is passed in a0 upon entry to the function, but when
352
   the function exits, the compiler has copied the value to v0.  This
353
   convention is specified by the System V ABI, so I think we can rely
354
   on it.  */
355
#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) \
356
  (extract_address (REGBUF + REGISTER_BYTE (RV_REGNUM), \
357
                    REGISTER_RAW_SIZE (RV_REGNUM)))
358
 
359
#define EXTRACT_STRUCT_VALUE_ADDRESS_P 1
360
 
361
/* Advance PC across any function entry prologue instructions
362
   to reach some "real" code.  */
363
extern CORE_ADDR or1k_skip_prologue PARAMS ((CORE_ADDR addr));
364
#define SKIP_PROLOGUE(pc) (or1k_skip_prologue (pc))
365
 
366
/* FRAMES */
367 207 chris
 
368 106 markom
#define FRAME_ARGS_ADDRESS(fi)  (fi)->frame
369
 
370
#define FRAME_LOCALS_ADDRESS(fi) (fi)->frame
371
 
372
/* FRAME_CHAIN takes a frame's nominal address
373
   and produces the frame's chain-pointer. */
374
#define FRAME_CHAIN(thisframe) (CORE_ADDR) or1k_frame_chain (thisframe)
375
extern CORE_ADDR or1k_frame_chain PARAMS ((struct frame_info *));
376
 
377
/* Discard from the stack the innermost frame, restoring all registers.  */
378
extern void or1k_pop_frame PARAMS ((void));
379
#define POP_FRAME or1k_pop_frame()
380
 
381
 
382
/* Return number of args passed to a frame.
383
   Can return -1, meaning no way to tell.  */
384
#define FRAME_NUM_ARGS(fi)      (-1)
385
 
386
/* Return number of bytes at start of arglist that are not really args.  */
387
#define FRAME_ARGS_SKIP 0
388
 
389
/* Put here the code to store, into a struct frame_saved_regs,
390
   the addresses of the saved registers of frame described by FRAME_INFO.
391
   This includes special registers such as pc and fp saved in special
392
   ways in the stack frame.  sp is even more special:
393
   the address we return for it IS the sp for the next frame.  */
394
extern void or1k_init_saved_regs PARAMS ((struct frame_info *));
395
#define FRAME_INIT_SAVED_REGS(frame_info) or1k_init_saved_regs (frame_info);
396
 
397
/* Saved Pc.  */
398
extern CORE_ADDR or1k_frame_saved_pc PARAMS ((struct frame_info *));
399
#define FRAME_SAVED_PC(FRAME) (or1k_frame_saved_pc(FRAME))
400
 
401
/* Set the return address register to point to the entry
402
   point of the program, where a breakpoint lies in wait.  */
403
extern CORE_ADDR or1k_push_return_address PARAMS ((CORE_ADDR pc, CORE_ADDR sp));
404
#define PUSH_RETURN_ADDRESS(PC, SP) (or1k_push_return_address ((PC), (SP)))
405
 
406
/* Immediately after a function call, return the saved pc.
407
   Can't always go through the frames for this because on some machines
408
   the new frame is not set up until the new function executes
409
   some instructions.  */
410
#define SAVED_PC_AFTER_CALL(frame)      read_register(LR_REGNUM)
411
 
412
/* Offset from address of function to start of its code.
413
   Zero on most machines.  */
414
#define FUNCTION_START_OFFSET (0)
415
 
416
/* Floating point is IEEE compliant */
417
#define IEEE_FLOAT
418
 
419
/* Is floating/vector unit present.  */
420
#define OR1K_VF_PRESENT (or1k_implementation.vf_present)
421
 
422 207 chris
/* #define INIT_FRAME_PC        */      /* Not necessary */
423 106 markom
 
424
/* Stack grows downward.  */
425
#define INNER_THAN(lhs,rhs) ((lhs) < (rhs))
426
 
427
/* Size of stack entry - in bytes.  */
428
#define OR1K_STACK_ALIGN (8)
429 118 markom
 
430 106 markom
/* Maximum struct size, that is still stored onto stack.  */
431
#define OR1K_STRUCT_CONV_SIZE (8)
432
#define STACK_ALIGN(addr) OR1K_STACK_ALIGN
433
 
434
#define USE_STRUCT_CONVENTION(gcc_p, type) (TYPE_LENGTH (type) > OR1K_STRUCT_CONV_SIZE)
435
 
436
/* Stack must be aligned on 32-bit boundaries when synthesizing
437
   function calls. PUSH_ARGUMENTS will handle it. */
438
extern CORE_ADDR or1k_push_arguments PARAMS ((int, struct value **, CORE_ADDR, int, CORE_ADDR));
439
#define PUSH_ARGUMENTS(nargs, args, sp, struct_return, struct_addr) \
440
(or1k_push_arguments((nargs), (args), (sp), (struct_return), (struct_addr)))
441
 
442
/* Return non-zero if PC points to an instruction which will cause a step
443
   to execute both the instruction at PC and an instruction at PC+4.  */
444
extern int or1k_step_skips_delay PARAMS ((CORE_ADDR));
445
#define STEP_SKIPS_DELAY_P (1)
446
#define STEP_SKIPS_DELAY(pc) (or1k_step_skips_delay (pc))
447
 
448
/* DUMMY CALLS */
449
#define USE_GENERIC_DUMMY_FRAMES 1
450
#define CALL_DUMMY                   {0}
451
#define CALL_DUMMY_START_OFFSET      (0)
452
#define CALL_DUMMY_BREAKPOINT_OFFSET (0)
453
#define SIZEOF_CALL_DUMMY_WORDS      (0)
454
#define CALL_DUMMY_LOCATION          AT_ENTRY_POINT
455
#define FIX_CALL_DUMMY(DUMMY, START, FUNADDR, NARGS, ARGS, TYPE, GCCP) 
456
 
457
/* Return a location where we can set a breakpoint that will be hit
458
   when an inferior function call returns.  This is normally the
459
   program's entry point.  */
460
#define CALL_DUMMY_ADDRESS()         entry_point_address ()
461
#define SAVE_DUMMY_FRAME_TOS(SP)     generic_save_dummy_frame_tos (SP)
462
#define PC_IN_CALL_DUMMY(PC, SP, FP) generic_pc_in_call_dummy (PC, SP, FP)
463
#define PUSH_DUMMY_FRAME             generic_push_dummy_frame ()
464
 
465
/* Definitions and declarations used by or1k dependent files.  */
466
#define OR1K_INSTLEN 4          /* Length of an instruction */
467
typedef unsigned long t_inst;   /* Integer big enough to hold an instruction */
468
 
469
 
470
 
471
/* Defined in remote-or1k.c */
472
 
473
/* Target state names.  */
474
extern const char *status_name[];
475 118 markom
 
476 106 markom
/* Target state.  */
477
enum target_status
478
  {
479
    TARGET_UNDEFINED,
480
    TARGET_CONNECTING,
481
    TARGET_DISCONNECTING,
482
    TARGET_RUNNING,
483
    TARGET_STOPPED
484
  };
485
 
486
/* Compare conditions for DCRx registers.  */
487
enum enum_compare_condition
488
  {
489 118 markom
    CC_MASKED, CC_EQUAL, CC_LESS, CC_LESSE, CC_GREAT, CC_GREATE, CC_NEQUAL
490 106 markom
  };
491
 
492
/* Compare operand to compare DVRx to.  */
493
enum enum_compare_to
494
  {
495 119 markom
    CT_DISABLED, CT_FETCH, CT_LEA, CT_SEA, CT_LDATA, CT_SDATA, CT_AEA, CT_ADATA
496 106 markom
  };
497
 
498 118 markom
/* Matchpoint chaining types.  */
499
enum enum_chaining
500
  {
501
    CHAINING_NONE, CHAINING_AND, CHAINING_OR
502
  };
503 106 markom
 
504 118 markom
/* Names for cts.  */
505
#define NUM_CT_NAMES 8
506
extern const char *compare_to_names[NUM_CT_NAMES];
507
 
508 106 markom
/* DRCx struct */
509
struct dcr_struct
510
  {
511 113 markom
    enum enum_compare_to ct:3;
512
    unsigned int sc:1;
513 106 markom
    enum enum_compare_condition cc:3;
514 113 markom
    unsigned int dp:1;
515 106 markom
  };
516
 
517 118 markom
/* All data needed for a matchpoint.  */
518
struct matchpoint
519
  {
520
    struct dcr_struct dcr;
521
    unsigned int dvr;
522
    unsigned int chain_type;
523
    unsigned int cause_breakpoint;
524
  };
525
 
526
/* Trace related structures and data.  */
527
#define TRACE_FILENAME_SIZE (128)
528
extern char trace_filename[TRACE_FILENAME_SIZE];
529
#define TRACE_FILENAME (&trace_filename[0])
530
#define TRACE_DATA_SIZE (sizeof(struct htrace_data_struct))
531
 
532
struct htrace_data_struct
533
  {
534
    unsigned int unused:24;
535
    unsigned int data:32;
536
    unsigned int type:4;
537
    unsigned int reserved:3;
538
    unsigned int valid:1;
539
  };
540
 
541
enum enum_operation
542
  {
543
    TRIGOP_ANY, TRIGOP_OR, TRIGOP_AND
544
  };
545
 
546
struct htrace_event_struct
547
  {
548
    enum enum_operation operation:2;
549
    unsigned int reserved1:6;
550
    unsigned int is_valid:1;
551
    unsigned int is_trig:2;
552
    unsigned int ls_valid:1;
553
    unsigned int ls_trig:4;
554
    unsigned int reserved2:2;
555
    unsigned int bp_valid:1;
556
    unsigned int bp_trig:1;
557
    unsigned int wp_valid:1;
558
    unsigned int wp_trig:11;
559
  };
560
 
561
struct htrace_record_struct
562
  {
563
    unsigned int reserved:25;
564
    unsigned int rec:7;
565
  };
566
 
567
struct htrace_moder_struct
568
  {
569
    unsigned int reserved:29;
570
    unsigned int rec_sel_dep:1;
571
    unsigned int trace_enable:1;
572
    unsigned int contin:1;
573
  };
574
 
575
/* Number of records as defined in TAP.  */
576
#define NUM_RECORDS (8)
577
 
578
struct htrace_struct
579
  {
580
    /* Local copy of HW regs for trace.  */
581
    struct htrace_event_struct trig, qual, stop;
582
    struct htrace_record_struct recwp[MAX_MATCHPOINTS], recbp;
583
    struct htrace_moder_struct moder;
584
    /* Which matchpoints does record use?  Bitmask.  */
585
    unsigned int wp_record_uses[MAX_MATCHPOINTS];
586
  };
587
 
588
extern struct htrace_struct or1k_htrace;
589
extern int trace_size;
590
 
591
#define MAX_RECORD_NAMES 7
592
extern const char *or1k_record_names[MAX_RECORD_NAMES];
593
#define MAX_IS_NAMES 4
594
extern const char *or1k_is_names[MAX_IS_NAMES];
595
#define MAX_LS_NAMES 16
596
extern const char *or1k_ls_names[MAX_LS_NAMES];
597
 
598
/* Stuff for HW watches.  */
599
#define MAX_HW_WATCHES MAX_MATCHPOINTS
600
 
601
struct hwatch_struct
602
  {
603
    int matchpoint_start;
604
  };
605
 
606
extern int num_hw_watches;
607
extern struct hwatch_struct or1k_hwatch[MAX_HW_WATCHES];
608
 
609 106 markom
/* Possible errors are listed here.  */
610 126 chris
enum enum_errors  /* modified <chris@asics.ws> CZ 24/05/01 */
611
{
612
  /* Codes > 0 are for system errors */
613 106 markom
 
614 126 chris
  ERR_NONE = 0,
615
  ERR_CRC = -1,
616 146 chris
  ERR_MEM = -2,
617
  JTAG_PROXY_INVALID_COMMAND = -3,
618
  JTAG_PROXY_SERVER_TERMINATED = -4,
619
  JTAG_PROXY_NO_CONNECTION = -5,
620
  JTAG_PROXY_PROTOCOL_ERROR = -6,
621
  JTAG_PROXY_COMMAND_NOT_IMPLEMENTED = -7,
622
  JTAG_PROXY_INVALID_CHAIN = -8,
623
  JTAG_PROXY_INVALID_ADDRESS = -9,
624
  JTAG_PROXY_ACCESS_EXCEPTION = -10, /* Write to ROM */
625
  JTAG_PROXY_INVALID_LENGTH = -11,
626
  JTAG_PROXY_OUT_OF_MEMORY = -12,
627 126 chris
};
628
 
629 118 markom
/* All JTAG chains.  */
630 113 markom
enum jtag_chains
631
  {
632
    SC_GLOBAL,      /* 0 Global BS Chain */
633
    SC_RISC_DEBUG,  /* 1 RISC Debug Interface chain */
634
    SC_RISC_TEST,   /* 2 RISC Test Chain */
635
    SC_TRACE,       /* 3 Trace Chain */
636 362 markom
    SC_REGISTER,    /* 4 Register Chain */
637
    SC_WISHBONE,    /* 5 Wisbone Chain */
638
    SC_BLOCK        /* Block Chains */
639 113 markom
  };
640
 
641 118 markom
/* See JTAG documentation about these.  */
642
#define JI_SIZE (4)
643
enum jtag_instr
644
  {
645
    JI_EXTEST,
646
    JI_SAMPLE_PRELOAD,
647
    JI_IDCODE,
648
    JI_CHAIN_SELECT,
649
    JI_INTEST,
650
    JI_CLAMP,
651
    JI_CLAMPZ,
652
    JI_HIGHZ,
653 362 markom
    JI_DEBUG,
654 118 markom
    JI_BYPASS = 0xF
655
  };
656
 
657 113 markom
/* JTAG registers.  */
658 118 markom
#define JTAG_MODER  (0x0)
659
#define JTAG_TSEL   (0x1)
660
#define JTAG_QSEL   (0x2)
661
#define JTAG_SSEL   (0x3)
662 362 markom
#define JTAG_RISCOP (0x4)
663 118 markom
#define JTAG_RECWP0 (0x10)
664
#define JTAG_RECBP0 (0x1b)
665 113 markom
 
666 118 markom
 
667
/* Current register values.  */
668
extern unsigned int dmr1;
669
extern unsigned int dmr2;
670
extern unsigned int dsr;
671
extern unsigned int drr;
672
 
673
extern int matchpoint_user_count[MAX_MATCHPOINTS];
674
 
675
/* Current watchpoints.  */
676
extern unsigned int dvr[MAX_MATCHPOINTS];
677
extern struct dcr_struct dcr[MAX_MATCHPOINTS];
678
extern int debug_regs_changed;
679
 
680
/* Returns error name.  */
681 106 markom
extern const char *or1k_err_name PARAMS ((int e));
682
 
683 118 markom
/* Last error number.  */
684
extern int err;
685
 
686 106 markom
extern struct struct_or1k_implementation or1k_implementation;
687
extern unsigned int or1k_fetch_instruction PARAMS ((CORE_ADDR addr));
688
extern void or1k_fetch_registers PARAMS ((int regno));
689
 
690
/* Sets register/memory regno to data.  */
691 113 markom
extern void or1k_write_spr_reg PARAMS ((unsigned int regno, unsigned int data));
692 106 markom
 
693
/* Sets register/memory regno to data.  */
694 113 markom
extern unsigned int or1k_read_spr_reg PARAMS ((unsigned int regno));
695 106 markom
 
696 118 markom
/* Flushes or1k's pipeline.  */
697 113 markom
extern void or1k_flush_pipeline PARAMS ((void));
698
 
699 118 markom
/* Sifts unused matchpoints to higher indexses.  */
700
extern void sift_matchpoints ();
701
 
702 126 chris
 
703
/* Added by Chris Ziomkowski <chris@asics.ws> 24/05/01 */
704
typedef enum {
705
  JTAG_COMMAND_READ = 1,
706
  JTAG_COMMAND_WRITE = 2,
707 146 chris
  JTAG_COMMAND_BLOCK_READ = 3,
708
  JTAG_COMMAND_BLOCK_WRITE = 4,
709
  JTAG_COMMAND_CHAIN = 5,
710 126 chris
} JTAG_proxy_protocol_commands;
711
 
712
/* Each transmit structure must begin with an integer
713
   which specifies the type of command. Information
714
   after this is variable. Make sure to have all information
715
   aligned properly. If we stick with 32 bit integers, it
716
   should be portable onto every platform. These structures
717
   will be transmitted across the network in network byte
718
   order.
719
*/
720
 
721
typedef struct {
722
  uint32_t command;
723
  uint32_t length;
724
  uint32_t address;
725
  uint32_t data_H;
726
  uint32_t data_L;
727
} JTAGProxyWriteMessage;
728
 
729
typedef struct {
730
  uint32_t command;
731
  uint32_t length;
732
  uint32_t address;
733
} JTAGProxyReadMessage;
734
 
735
typedef struct {
736
  uint32_t command;
737
  uint32_t length;
738 146 chris
  uint32_t address;
739
  int32_t  nRegisters;
740
  uint32_t data[1];
741
} JTAGProxyBlockWriteMessage;
742
 
743
typedef struct {
744
  uint32_t command;
745
  uint32_t length;
746
  uint32_t address;
747
  int32_t  nRegisters;
748
} JTAGProxyBlockReadMessage;
749
 
750
typedef struct {
751
  uint32_t command;
752
  uint32_t length;
753 126 chris
  uint32_t chain;
754
} JTAGProxyChainMessage;
755
 
756
/* The responses are messages specific, however convention
757
   states the first word should be an error code. Again,
758
   sticking with 32 bit integers should provide maximum
759
   portability. */
760
 
761
typedef struct {
762
  int32_t status;
763
} JTAGProxyWriteResponse;
764
 
765
typedef struct {
766
  int32_t status;
767
  uint32_t data_H;
768
  uint32_t data_L;
769
} JTAGProxyReadResponse;
770
 
771
typedef struct {
772
  int32_t status;
773 146 chris
} JTAGProxyBlockWriteResponse;
774
 
775
typedef struct {
776
  int32_t status;
777
  int32_t nRegisters;
778
  uint32_t data[1];
779
  /* uint32_t data[nRegisters-1] still unread */
780
} JTAGProxyBlockReadResponse;
781
 
782
typedef struct {
783
  int32_t status;
784 126 chris
} JTAGProxyChainResponse;
785
 
786 146 chris
 
787 106 markom
#endif /* TM_OR1K_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.