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 403

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 403 simons
#define DEFAULT_PROMPT "(gdb) "
95 106 markom
 
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 403 simons
/* Return nonzero if instruction has delay slot */
443
extern int is_delayed PARAMS ((unsigned long));
444
 
445 106 markom
/* Return non-zero if PC points to an instruction which will cause a step
446
   to execute both the instruction at PC and an instruction at PC+4.  */
447
extern int or1k_step_skips_delay PARAMS ((CORE_ADDR));
448
#define STEP_SKIPS_DELAY_P (1)
449
#define STEP_SKIPS_DELAY(pc) (or1k_step_skips_delay (pc))
450
 
451
/* DUMMY CALLS */
452
#define USE_GENERIC_DUMMY_FRAMES 1
453
#define CALL_DUMMY                   {0}
454
#define CALL_DUMMY_START_OFFSET      (0)
455
#define CALL_DUMMY_BREAKPOINT_OFFSET (0)
456
#define SIZEOF_CALL_DUMMY_WORDS      (0)
457
#define CALL_DUMMY_LOCATION          AT_ENTRY_POINT
458
#define FIX_CALL_DUMMY(DUMMY, START, FUNADDR, NARGS, ARGS, TYPE, GCCP) 
459
 
460
/* Return a location where we can set a breakpoint that will be hit
461
   when an inferior function call returns.  This is normally the
462
   program's entry point.  */
463
#define CALL_DUMMY_ADDRESS()         entry_point_address ()
464
#define SAVE_DUMMY_FRAME_TOS(SP)     generic_save_dummy_frame_tos (SP)
465
#define PC_IN_CALL_DUMMY(PC, SP, FP) generic_pc_in_call_dummy (PC, SP, FP)
466
#define PUSH_DUMMY_FRAME             generic_push_dummy_frame ()
467
 
468
/* Definitions and declarations used by or1k dependent files.  */
469
#define OR1K_INSTLEN 4          /* Length of an instruction */
470
typedef unsigned long t_inst;   /* Integer big enough to hold an instruction */
471
 
472
 
473
 
474
/* Defined in remote-or1k.c */
475
 
476
/* Target state names.  */
477
extern const char *status_name[];
478 118 markom
 
479 106 markom
/* Target state.  */
480
enum target_status
481
  {
482
    TARGET_UNDEFINED,
483
    TARGET_CONNECTING,
484
    TARGET_DISCONNECTING,
485
    TARGET_RUNNING,
486
    TARGET_STOPPED
487
  };
488
 
489
/* Compare conditions for DCRx registers.  */
490
enum enum_compare_condition
491
  {
492 118 markom
    CC_MASKED, CC_EQUAL, CC_LESS, CC_LESSE, CC_GREAT, CC_GREATE, CC_NEQUAL
493 106 markom
  };
494
 
495
/* Compare operand to compare DVRx to.  */
496
enum enum_compare_to
497
  {
498 119 markom
    CT_DISABLED, CT_FETCH, CT_LEA, CT_SEA, CT_LDATA, CT_SDATA, CT_AEA, CT_ADATA
499 106 markom
  };
500
 
501 118 markom
/* Matchpoint chaining types.  */
502
enum enum_chaining
503
  {
504
    CHAINING_NONE, CHAINING_AND, CHAINING_OR
505
  };
506 106 markom
 
507 118 markom
/* Names for cts.  */
508
#define NUM_CT_NAMES 8
509
extern const char *compare_to_names[NUM_CT_NAMES];
510
 
511 106 markom
/* DRCx struct */
512
struct dcr_struct
513
  {
514 113 markom
    enum enum_compare_to ct:3;
515
    unsigned int sc:1;
516 106 markom
    enum enum_compare_condition cc:3;
517 113 markom
    unsigned int dp:1;
518 106 markom
  };
519
 
520 118 markom
/* All data needed for a matchpoint.  */
521
struct matchpoint
522
  {
523
    struct dcr_struct dcr;
524
    unsigned int dvr;
525
    unsigned int chain_type;
526
    unsigned int cause_breakpoint;
527
  };
528
 
529
/* Trace related structures and data.  */
530
#define TRACE_FILENAME_SIZE (128)
531
extern char trace_filename[TRACE_FILENAME_SIZE];
532
#define TRACE_FILENAME (&trace_filename[0])
533
#define TRACE_DATA_SIZE (sizeof(struct htrace_data_struct))
534
 
535
struct htrace_data_struct
536
  {
537
    unsigned int unused:24;
538
    unsigned int data:32;
539
    unsigned int type:4;
540
    unsigned int reserved:3;
541
    unsigned int valid:1;
542
  };
543
 
544
enum enum_operation
545
  {
546
    TRIGOP_ANY, TRIGOP_OR, TRIGOP_AND
547
  };
548
 
549
struct htrace_event_struct
550
  {
551
    enum enum_operation operation:2;
552
    unsigned int reserved1:6;
553
    unsigned int is_valid:1;
554
    unsigned int is_trig:2;
555
    unsigned int ls_valid:1;
556
    unsigned int ls_trig:4;
557
    unsigned int reserved2:2;
558
    unsigned int bp_valid:1;
559
    unsigned int bp_trig:1;
560
    unsigned int wp_valid:1;
561
    unsigned int wp_trig:11;
562
  };
563
 
564
struct htrace_record_struct
565
  {
566
    unsigned int reserved:25;
567
    unsigned int rec:7;
568
  };
569
 
570
struct htrace_moder_struct
571
  {
572
    unsigned int reserved:29;
573
    unsigned int rec_sel_dep:1;
574
    unsigned int trace_enable:1;
575
    unsigned int contin:1;
576
  };
577
 
578
/* Number of records as defined in TAP.  */
579
#define NUM_RECORDS (8)
580
 
581
struct htrace_struct
582
  {
583
    /* Local copy of HW regs for trace.  */
584
    struct htrace_event_struct trig, qual, stop;
585
    struct htrace_record_struct recwp[MAX_MATCHPOINTS], recbp;
586
    struct htrace_moder_struct moder;
587
    /* Which matchpoints does record use?  Bitmask.  */
588
    unsigned int wp_record_uses[MAX_MATCHPOINTS];
589
  };
590
 
591
extern struct htrace_struct or1k_htrace;
592
extern int trace_size;
593
 
594
#define MAX_RECORD_NAMES 7
595
extern const char *or1k_record_names[MAX_RECORD_NAMES];
596
#define MAX_IS_NAMES 4
597
extern const char *or1k_is_names[MAX_IS_NAMES];
598
#define MAX_LS_NAMES 16
599
extern const char *or1k_ls_names[MAX_LS_NAMES];
600
 
601
/* Stuff for HW watches.  */
602
#define MAX_HW_WATCHES MAX_MATCHPOINTS
603
 
604
struct hwatch_struct
605
  {
606
    int matchpoint_start;
607
  };
608
 
609
extern int num_hw_watches;
610
extern struct hwatch_struct or1k_hwatch[MAX_HW_WATCHES];
611
 
612 106 markom
/* Possible errors are listed here.  */
613 126 chris
enum enum_errors  /* modified <chris@asics.ws> CZ 24/05/01 */
614
{
615
  /* Codes > 0 are for system errors */
616 106 markom
 
617 126 chris
  ERR_NONE = 0,
618
  ERR_CRC = -1,
619 146 chris
  ERR_MEM = -2,
620
  JTAG_PROXY_INVALID_COMMAND = -3,
621
  JTAG_PROXY_SERVER_TERMINATED = -4,
622
  JTAG_PROXY_NO_CONNECTION = -5,
623
  JTAG_PROXY_PROTOCOL_ERROR = -6,
624
  JTAG_PROXY_COMMAND_NOT_IMPLEMENTED = -7,
625
  JTAG_PROXY_INVALID_CHAIN = -8,
626
  JTAG_PROXY_INVALID_ADDRESS = -9,
627
  JTAG_PROXY_ACCESS_EXCEPTION = -10, /* Write to ROM */
628
  JTAG_PROXY_INVALID_LENGTH = -11,
629
  JTAG_PROXY_OUT_OF_MEMORY = -12,
630 126 chris
};
631
 
632 118 markom
/* All JTAG chains.  */
633 113 markom
enum jtag_chains
634
  {
635
    SC_GLOBAL,      /* 0 Global BS Chain */
636
    SC_RISC_DEBUG,  /* 1 RISC Debug Interface chain */
637
    SC_RISC_TEST,   /* 2 RISC Test Chain */
638
    SC_TRACE,       /* 3 Trace Chain */
639 362 markom
    SC_REGISTER,    /* 4 Register Chain */
640
    SC_WISHBONE,    /* 5 Wisbone Chain */
641
    SC_BLOCK        /* Block Chains */
642 113 markom
  };
643
 
644 118 markom
/* See JTAG documentation about these.  */
645
#define JI_SIZE (4)
646
enum jtag_instr
647
  {
648
    JI_EXTEST,
649
    JI_SAMPLE_PRELOAD,
650
    JI_IDCODE,
651
    JI_CHAIN_SELECT,
652
    JI_INTEST,
653
    JI_CLAMP,
654
    JI_CLAMPZ,
655
    JI_HIGHZ,
656 362 markom
    JI_DEBUG,
657 118 markom
    JI_BYPASS = 0xF
658
  };
659
 
660 113 markom
/* JTAG registers.  */
661 118 markom
#define JTAG_MODER  (0x0)
662
#define JTAG_TSEL   (0x1)
663
#define JTAG_QSEL   (0x2)
664
#define JTAG_SSEL   (0x3)
665 362 markom
#define JTAG_RISCOP (0x4)
666 118 markom
#define JTAG_RECWP0 (0x10)
667
#define JTAG_RECBP0 (0x1b)
668 113 markom
 
669 118 markom
 
670
/* Current register values.  */
671
extern unsigned int dmr1;
672
extern unsigned int dmr2;
673
extern unsigned int dsr;
674
extern unsigned int drr;
675
 
676
extern int matchpoint_user_count[MAX_MATCHPOINTS];
677
 
678
/* Current watchpoints.  */
679
extern unsigned int dvr[MAX_MATCHPOINTS];
680
extern struct dcr_struct dcr[MAX_MATCHPOINTS];
681
extern int debug_regs_changed;
682
 
683
/* Returns error name.  */
684 106 markom
extern const char *or1k_err_name PARAMS ((int e));
685
 
686 118 markom
/* Last error number.  */
687
extern int err;
688
 
689 106 markom
extern struct struct_or1k_implementation or1k_implementation;
690
extern unsigned int or1k_fetch_instruction PARAMS ((CORE_ADDR addr));
691
extern void or1k_fetch_registers PARAMS ((int regno));
692
 
693
/* Sets register/memory regno to data.  */
694 113 markom
extern void or1k_write_spr_reg PARAMS ((unsigned int regno, unsigned int data));
695 106 markom
 
696
/* Sets register/memory regno to data.  */
697 113 markom
extern unsigned int or1k_read_spr_reg PARAMS ((unsigned int regno));
698 106 markom
 
699 118 markom
/* Flushes or1k's pipeline.  */
700 113 markom
extern void or1k_flush_pipeline PARAMS ((void));
701
 
702 118 markom
/* Sifts unused matchpoints to higher indexses.  */
703
extern void sift_matchpoints ();
704
 
705 126 chris
 
706
/* Added by Chris Ziomkowski <chris@asics.ws> 24/05/01 */
707
typedef enum {
708
  JTAG_COMMAND_READ = 1,
709
  JTAG_COMMAND_WRITE = 2,
710 146 chris
  JTAG_COMMAND_BLOCK_READ = 3,
711
  JTAG_COMMAND_BLOCK_WRITE = 4,
712
  JTAG_COMMAND_CHAIN = 5,
713 126 chris
} JTAG_proxy_protocol_commands;
714
 
715
/* Each transmit structure must begin with an integer
716
   which specifies the type of command. Information
717
   after this is variable. Make sure to have all information
718
   aligned properly. If we stick with 32 bit integers, it
719
   should be portable onto every platform. These structures
720
   will be transmitted across the network in network byte
721
   order.
722
*/
723
 
724
typedef struct {
725
  uint32_t command;
726
  uint32_t length;
727
  uint32_t address;
728
  uint32_t data_H;
729
  uint32_t data_L;
730
} JTAGProxyWriteMessage;
731
 
732
typedef struct {
733
  uint32_t command;
734
  uint32_t length;
735
  uint32_t address;
736
} JTAGProxyReadMessage;
737
 
738
typedef struct {
739
  uint32_t command;
740
  uint32_t length;
741 146 chris
  uint32_t address;
742
  int32_t  nRegisters;
743
  uint32_t data[1];
744
} JTAGProxyBlockWriteMessage;
745
 
746
typedef struct {
747
  uint32_t command;
748
  uint32_t length;
749
  uint32_t address;
750
  int32_t  nRegisters;
751
} JTAGProxyBlockReadMessage;
752
 
753
typedef struct {
754
  uint32_t command;
755
  uint32_t length;
756 126 chris
  uint32_t chain;
757
} JTAGProxyChainMessage;
758
 
759
/* The responses are messages specific, however convention
760
   states the first word should be an error code. Again,
761
   sticking with 32 bit integers should provide maximum
762
   portability. */
763
 
764
typedef struct {
765
  int32_t status;
766
} JTAGProxyWriteResponse;
767
 
768
typedef struct {
769
  int32_t status;
770
  uint32_t data_H;
771
  uint32_t data_L;
772
} JTAGProxyReadResponse;
773
 
774
typedef struct {
775
  int32_t status;
776 146 chris
} JTAGProxyBlockWriteResponse;
777
 
778
typedef struct {
779
  int32_t status;
780
  int32_t nRegisters;
781
  uint32_t data[1];
782
  /* uint32_t data[nRegisters-1] still unread */
783
} JTAGProxyBlockReadResponse;
784
 
785
typedef struct {
786
  int32_t status;
787 126 chris
} JTAGProxyChainResponse;
788
 
789 146 chris
 
790 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.