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 363

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