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

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [sw/] [lib/] [source/] [neorv32_cpu.c] - Blame information for rev 12

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

Line No. Rev Author Line
1 2 zero_gravi
// #################################################################################################
2
// # << NEORV32: neorv32_cpu.c - CPU Core Functions HW Driver >>                                   #
3
// # ********************************************************************************************* #
4
// # BSD 3-Clause License                                                                          #
5
// #                                                                                               #
6
// # Copyright (c) 2020, Stephan Nolting. All rights reserved.                                     #
7
// #                                                                                               #
8
// # Redistribution and use in source and binary forms, with or without modification, are          #
9
// # permitted provided that the following conditions are met:                                     #
10
// #                                                                                               #
11
// # 1. Redistributions of source code must retain the above copyright notice, this list of        #
12
// #    conditions and the following disclaimer.                                                   #
13
// #                                                                                               #
14
// # 2. Redistributions in binary form must reproduce the above copyright notice, this list of     #
15
// #    conditions and the following disclaimer in the documentation and/or other materials        #
16
// #    provided with the distribution.                                                            #
17
// #                                                                                               #
18
// # 3. Neither the name of the copyright holder nor the names of its contributors may be used to  #
19
// #    endorse or promote products derived from this software without specific prior written      #
20
// #    permission.                                                                                #
21
// #                                                                                               #
22
// # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS   #
23
// # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF               #
24
// # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE    #
25
// # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,     #
26
// # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE #
27
// # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED    #
28
// # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING     #
29
// # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED  #
30
// # OF THE POSSIBILITY OF SUCH DAMAGE.                                                            #
31
// # ********************************************************************************************* #
32
// # The NEORV32 Processor - https://github.com/stnolting/neorv32              (c) Stephan Nolting #
33
// #################################################################################################
34
 
35
 
36
/**********************************************************************//**
37
 * @file neorv32_cpu.c
38
 * @author Stephan Nolting
39
 * @brief CPU Core Functions HW driver source file.
40
 **************************************************************************/
41
 
42
#include "neorv32.h"
43
#include "neorv32_cpu.h"
44
 
45
 
46
/**********************************************************************//**
47
 * Enable specific CPU interrupt.
48
 *
49
 * @note Interrupts have to be globally enabled via neorv32_cpu_eint(void), too.
50
 *
51
 * @param[in] irq_sel CPU interrupt select. See #NEORV32_CPU_MIE_enum.
52 12 zero_gravi
 * @return 0 if success, 1 if error (invalid irq_sel).
53 2 zero_gravi
 **************************************************************************/
54
int neorv32_cpu_irq_enable(uint8_t irq_sel) {
55
 
56
  if ((irq_sel != CPU_MIE_MSIE) && (irq_sel != CPU_MIE_MTIE) && (irq_sel != CPU_MIE_MEIE)) {
57
    return 1;
58
  }
59
 
60
  register uint32_t mask = (uint32_t)(1 << irq_sel);
61
  asm volatile ("csrrs zero, mie, %0" : : "r" (mask));
62
  return 0;
63
}
64
 
65
 
66
/**********************************************************************//**
67
 * Disable specific CPU interrupt.
68
 *
69
 * @param[in] irq_sel CPU interrupt select. See #NEORV32_CPU_MIE_enum.
70 12 zero_gravi
 * @return 0 if success, 1 if error (invalid irq_sel).
71 2 zero_gravi
 **************************************************************************/
72
int neorv32_cpu_irq_disable(uint8_t irq_sel) {
73
 
74
  if ((irq_sel != CPU_MIE_MSIE) && (irq_sel != CPU_MIE_MTIE) && (irq_sel != CPU_MIE_MEIE)) {
75
    return 1;
76
  }
77
 
78
  register uint32_t mask = (uint32_t)(1 << irq_sel);
79
  asm volatile ("csrrc zero, mie, %0" : : "r" (mask));
80
  return 0;
81
}
82
 
83
 
84
/**********************************************************************//**
85 12 zero_gravi
 * Get cycle count from cycle[h].
86
 *
87
 * @note The cycle[h] CSR is shadowed copy of the mcycle[h] CSR.
88
 *
89
 * @return Current cycle counter (64 bit).
90
 **************************************************************************/
91
uint64_t neorv32_cpu_get_cycle(void) {
92
 
93
  union {
94
    uint64_t uint64;
95
    uint32_t uint32[sizeof(uint64_t)/2];
96
  } cycles;
97
 
98
  uint32_t tmp1, tmp2, tmp3;
99
  while(1) {
100
    tmp1 = neorv32_cpu_csr_read(CSR_CYCLEH);
101
    tmp2 = neorv32_cpu_csr_read(CSR_CYCLE);
102
    tmp3 = neorv32_cpu_csr_read(CSR_CYCLEH);
103
    if (tmp1 == tmp3) {
104
      break;
105
    }
106
  }
107
 
108
  cycles.uint32[0] = tmp2;
109
  cycles.uint32[1] = tmp3;
110
 
111
  return cycles.uint64;
112
}
113
 
114
 
115
/**********************************************************************//**
116
 * Set mcycle[h] counter.
117
 *
118
 * @param[in] value New value for mcycle[h] CSR (64-bit).
119
 **************************************************************************/
120
void neorv32_cpu_set_mcycle(uint64_t value) {
121
 
122
  union {
123
    uint64_t uint64;
124
    uint32_t uint32[sizeof(uint64_t)/2];
125
  } cycles;
126
 
127
  cycles.uint64 = value;
128
 
129
  neorv32_cpu_csr_write(CSR_MCYCLE,  0);
130
  neorv32_cpu_csr_write(CSR_MCYCLEH, cycles.uint32[1]);
131
  neorv32_cpu_csr_write(CSR_MCYCLE,  cycles.uint32[0]);
132
}
133
 
134
 
135
/**********************************************************************//**
136
 * Get retired instructions counter from instret[h].
137
 *
138
 * @note The instret[h] CSR is shadowed copy of the instret[h] CSR.
139
 *
140
 * @return Current instructions counter (64 bit).
141
 **************************************************************************/
142
uint64_t neorv32_cpu_get_instret(void) {
143
 
144
  union {
145
    uint64_t uint64;
146
    uint32_t uint32[sizeof(uint64_t)/2];
147
  } cycles;
148
 
149
  uint32_t tmp1, tmp2, tmp3;
150
  while(1) {
151
    tmp1 = neorv32_cpu_csr_read(CSR_INSTRETH);
152
    tmp2 = neorv32_cpu_csr_read(CSR_INSTRET);
153
    tmp3 = neorv32_cpu_csr_read(CSR_INSTRETH);
154
    if (tmp1 == tmp3) {
155
      break;
156
    }
157
  }
158
 
159
  cycles.uint32[0] = tmp2;
160
  cycles.uint32[1] = tmp3;
161
 
162
  return cycles.uint64;
163
}
164
 
165
 
166
/**********************************************************************//**
167
 * Set retired instructions counter minstret[h].
168
 *
169
 * @param[in] value New value for mcycle[h] CSR (64-bit).
170
 **************************************************************************/
171
void neorv32_cpu_set_minstret(uint64_t value) {
172
 
173
  union {
174
    uint64_t uint64;
175
    uint32_t uint32[sizeof(uint64_t)/2];
176
  } cycles;
177
 
178
  cycles.uint64 = value;
179
 
180
  neorv32_cpu_csr_write(CSR_MINSTRET,  0);
181
  neorv32_cpu_csr_write(CSR_MINSTRETH, cycles.uint32[1]);
182
  neorv32_cpu_csr_write(CSR_MINSTRET,  cycles.uint32[0]);
183
}
184
 
185
 
186
/**********************************************************************//**
187
 * Get current system time from time[h] CSR.
188
 *
189
 * @note This function requires the MTIME system timer to be implemented.
190
 *
191
 * @return Current system time (64 bit).
192
 **************************************************************************/
193
uint64_t neorv32_cpu_get_systime(void) {
194
 
195
  union {
196
    uint64_t uint64;
197
    uint32_t uint32[sizeof(uint64_t)/2];
198
  } cycles;
199
 
200
  uint32_t tmp1, tmp2, tmp3;
201
  while(1) {
202
    tmp1 = neorv32_cpu_csr_read(CSR_TIMEH);
203
    tmp2 = neorv32_cpu_csr_read(CSR_TIME);
204
    tmp3 = neorv32_cpu_csr_read(CSR_TIMEH);
205
    if (tmp1 == tmp3) {
206
      break;
207
    }
208
  }
209
 
210
  cycles.uint32[0] = tmp2;
211
  cycles.uint32[1] = tmp3;
212
 
213
  return cycles.uint64;
214
}
215
 
216
 
217
/**********************************************************************//**
218 2 zero_gravi
 * Simple delay function (not very precise) using busy wait.
219
 *
220
 * @param[in] time_ms Time in ms to wait.
221
 **************************************************************************/
222
void neorv32_cpu_delay_ms(uint32_t time_ms) {
223
 
224 12 zero_gravi
  uint32_t clock_speed = SYSINFO_CLK >> 10; // fake divide by 1000
225 2 zero_gravi
  clock_speed = clock_speed >> 5; // divide by loop execution time (~30 cycles)
226
  uint32_t cnt = clock_speed * time_ms;
227
 
228
  // one iteration = ~30 cycles
229
  while (cnt) {
230
    asm volatile("nop");
231
    asm volatile("nop");
232
    asm volatile("nop");
233
    asm volatile("nop");
234
    cnt--;
235
  }
236
}
237
 

powered by: WebSVN 2.1.0

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