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

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gdb/] [sim-plugins/] [breakpoint/] [breakpoint.c] - Blame information for rev 27

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 jlechner
/* SCARTS breakpoint extension module code for the GNU simulator.
2
   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
3
   Free Software Foundation, Inc.
4
   Contributed by Martin Walter <mwalter@opencores.org>
5
 
6
   This file is part of the GNU simulators.
7
 
8
   This program is free software; you can redistribute it and/or modify
9
   it under the terms of the GNU General Public License as published by
10
   the Free Software Foundation; either version 3 of the License, or
11
   (at your option) any later version.
12
 
13
   This program is distributed in the hope that it will be useful,
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
   GNU General Public License for more details.
17
 
18
   You should have received a copy of the GNU General Public License
19
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
 
21
 
22
#include <string.h>
23
#include "breakpoint.h"
24
 
25
/* Macros for machine type. */
26
#if defined __SCARTS_16__
27
  #define SCARTS_ADDR_CTYPE  uint16_t
28
#elif defined __SCARTS_32__
29
  #define SCARTS_ADDR_CTYPE  uint32_t
30
#else
31
  #error "Unsupported target machine type"
32
#endif
33
 
34
/* Macros for bit manipulations. */
35
#define read_bit(regfile, bitpos) (((regfile) >> (bitpos)) & 1)
36
#define write_bit(regfile, bitpos, value) (void)((value) ? ((regfile) |= (1 << (bitpos))) : ((regfile) &= ~(1 << (bitpos))))
37
 
38
static breakpoint_mem_t mem;
39
 
40
uint8_t*
41
get_mem (void)
42
{
43
  return mem.raw;
44
}
45
 
46
void
47
get_mem_map (SCARTS_ADDR_CTYPE* start, SCARTS_ADDR_CTYPE* size)
48
{
49
  *start = BREAKPOINT_BADDR;
50
  *size  = BREAKPOINT_SIZE;
51
}
52
 
53
uint8_t*
54
get_status (void)
55
{
56
  return &mem.regfile.STATUS;
57
}
58
 
59
int
60
mem_read (SCARTS_ADDR_CTYPE offset, uint8_t *value)
61
{
62
  if (offset >= BREAKPOINT_SIZE)
63
    return 0;
64
 
65
  *value = mem.raw[offset];
66
  return 1;
67
}
68
 
69
int
70
mem_write (SCARTS_ADDR_CTYPE offset, uint8_t value)
71
{
72
  if (offset >= BREAKPOINT_SIZE)
73
    return 0;
74
 
75
  switch (offset)
76
  {
77
    /* STATUS */
78
    case 0:
79
    /* STATUS_C */
80
    case 1:
81
      /* The STATUS and STATUS_C registers are read-only. */
82
      return 0;
83
    /* CONFIG */
84
    case 2:
85
      /* Write the BREAKPOINT_CONFIG_LOOW bit to BREAKPOINT_STATUS_LOOR. */
86
      write_bit (mem.regfile.STATUS, BREAKPOINT_STATUS_LOOR, read_bit (value, BREAKPOINT_CONFIG_LOOW));
87
 
88
      /* Check if an interrupt needs to be acknowledged. */
89
      if (read_bit (value, BREAKPOINT_CONFIG_INTA))
90
      {
91
        write_bit (mem.regfile.STATUS, BREAKPOINT_STATUS_INT, 0);
92
        write_bit (value, BREAKPOINT_CONFIG_INTA, 0);
93
      }
94
 
95
      break;
96
  }
97
 
98
  mem.raw[offset] = value;
99
  return 1;
100
}
101
 
102
void
103
reset (void)
104
{
105
  memset (mem.raw, 0, BREAKPOINT_SIZE);
106
}
107
 
108
void
109
tick (SCARTS_ADDR_CTYPE pc)
110
{
111
  uint8_t bp_cnt, step_cnt;
112
  SCARTS_ADDR_CTYPE* breakpoint;
113
 
114
  /* Check if an interrupt was triggered. */
115
  if (read_bit (mem.regfile.STATUS, BREAKPOINT_STATUS_INT))
116
    return;
117
 
118
  step_cnt = BREAKPOINT_GET_STEP_COUNT (mem.regfile.CONFIG_C);
119
  if (step_cnt > 0)
120
  {
121
    BREAKPOINT_SET_STEP_COUNT (mem.regfile.CONFIG_C, --step_cnt);
122
 
123
    if (step_cnt == 0)
124
      /* Trigger an interrupt. */
125
      write_bit (mem.regfile.STATUS, BREAKPOINT_STATUS_INT, 1);
126
  }
127
  else
128
  {
129
    bp_cnt = BREAKPOINT_GET_BP_COUNT (mem.regfile.CONFIG_C);
130
 
131
    breakpoint = (SCARTS_ADDR_CTYPE *) &mem.regfile.BP0_LO;
132
    while (bp_cnt-- > 0)
133
    {
134
#if defined __SCARTS_16__
135
      breakpoint += 2;
136
#elif defined __SCARTS_32__
137
      breakpoint += 1;
138
#endif
139
 
140
      if (*breakpoint == pc)
141
        /* Trigger an interrupt. */
142
        write_bit (mem.regfile.STATUS, BREAKPOINT_STATUS_INT, 1);
143
    }
144
  }
145
}
146
 

powered by: WebSVN 2.1.0

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