Software APIs
dt_rv_timer.h
Go to the documentation of this file.
1// Copyright lowRISC contributors (OpenTitan project).
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4//
5// Device table API auto-generated by `dtgen`
6
7#ifndef OPENTITAN_DT_RV_TIMER_H_
8#define OPENTITAN_DT_RV_TIMER_H_
9
10#ifdef __cplusplus
11extern "C" {
12#endif // __cplusplus
13
14/**
15 * @file
16 * @brief Device Tables (DT) for IP rv_timer and top englishbreakfast.
17 *
18 * This file contains the type definitions and global functions of the rv_timer.
19 */
20
21#include "dt_api.h"
22#include <stdint.h>
23
24
25
26/**
27 * List of instances.
28 */
29typedef enum dt_rv_timer {
30 kDtRvTimer = 0, /**< rv_timer */
31 kDtRvTimerFirst = 0, /**< \internal First instance */
32 kDtRvTimerCount = 1, /**< \internal Number of instances */
34
35/**
36 * List of register blocks.
37 *
38 * Register blocks are guaranteed to start at 0 and to be consecutively numbered.
39 */
41 kDtRvTimerRegBlockCore = 0, /**< */
42 kDtRvTimerRegBlockCount = 1, /**< \internal Number of register blocks */
44
45/** Primary register block (associated with the "primary" set of registers that control the IP). */
46static const dt_rv_timer_reg_block_t kDtRvTimerRegBlockPrimary = kDtRvTimerRegBlockCore;
47
48/**
49 * List of IRQs.
50 *
51 * IRQs are guaranteed to be numbered consecutively from 0.
52 */
53typedef enum dt_rv_timer_irq {
54 kDtRvTimerIrqTimerExpiredHart0Timer0 = 0, /**< raised if hart0's timer0 expired (mtimecmp >= mtime) */
55 kDtRvTimerIrqCount = 1, /**< \internal Number of IRQs */
57
58/**
59 * List of clock ports.
60 *
61 * Clock ports are guaranteed to be numbered consecutively from 0.
62 */
63typedef enum dt_rv_timer_clock {
64 kDtRvTimerClockClk = 0, /**< Clock port clk_i */
65 kDtRvTimerClockCount = 1, /**< \internal Number of clock ports */
67
68/**
69 * List of reset ports.
70 *
71 * Reset ports are guaranteed to be numbered consecutively from 0.
72 */
73typedef enum dt_rv_timer_reset {
74 kDtRvTimerResetRst = 0, /**< Reset port rst_ni */
75 kDtRvTimerResetCount = 1, /**< \internal Number of reset ports */
77
78/**
79 * List of supported hardware features.
80 */
81#define OPENTITAN_RV_TIMER_HAS_RISCV_CSRS_INTEGRATION 1
82#define OPENTITAN_RV_TIMER_HAS_ENABLE 1
83#define OPENTITAN_RV_TIMER_HAS_DISABLE 1
84#define OPENTITAN_RV_TIMER_HAS_INTERRUPT 1
85#define OPENTITAN_RV_TIMER_HAS_CONFIG 1
86#define OPENTITAN_RV_TIMER_HAS_COUNTER 1
87#define OPENTITAN_RV_TIMER_HAS_COMPARE 1
88
89
90
91/**
92 * Get the rv_timer instance from an instance ID
93 *
94 * For example, `dt_uart_from_instance_id(kDtInstanceIdUart3) == kDtUart3`.
95 *
96 * @param inst_id Instance ID.
97 * @return A rv_timer instance.
98 *
99 * **Note:** This function only makes sense if the instance ID has device type rv_timer,
100 * otherwise the returned value is unspecified.
101 */
103
104/**
105 * Get the instance ID of an instance.
106 *
107 * @param dt Instance of rv_timer.
108 * @return The instance ID of that instance.
109 */
111
112/**
113 * Get the register base address of an instance.
114 *
115 * @param dt Instance of rv_timer.
116 * @param reg_block The register block requested.
117 * @return The register base address of the requested block.
118 */
119uint32_t dt_rv_timer_reg_block(
120 dt_rv_timer_t dt,
121 dt_rv_timer_reg_block_t reg_block);
122
123/**
124 * Get the primary register base address of an instance.
125 *
126 * This is just a convenience function, equivalent to
127 * `dt_rv_timer_reg_block(dt, kDtRvTimerRegBlockCore)`
128 *
129 * @param dt Instance of rv_timer.
130 * @return The register base address of the primary register block.
131 */
132static inline uint32_t dt_rv_timer_primary_reg_block(
133 dt_rv_timer_t dt) {
134 return dt_rv_timer_reg_block(dt, kDtRvTimerRegBlockCore);
135}
136
137/**
138 * Get the PLIC ID of a rv_timer IRQ for a given instance.
139 *
140 * If the instance is not connected to the PLIC, this function
141 * will return `kDtPlicIrqIdNone`.
142 *
143 * @param dt Instance of rv_timer.
144 * @param irq A rv_timer IRQ.
145 * @return The PLIC ID of the IRQ of this instance.
146 */
148 dt_rv_timer_t dt,
150
151/**
152 * Convert a global IRQ ID to a local rv_timer IRQ type.
153 *
154 * @param dt Instance of rv_timer.
155 * @param irq A PLIC ID that belongs to this instance.
156 * @return The rv_timer IRQ, or `kDtRvTimerIrqCount`.
157 *
158 * **Note:** This function assumes that the PLIC ID belongs to the instance
159 * of rv_timer passed in parameter. In other words, it must be the case that
160 * `dt_rv_timer_instance_id(dt) == dt_plic_id_to_instance_id(irq)`. Otherwise, this function
161 * will return `kDtRvTimerIrqCount`.
162 */
164 dt_rv_timer_t dt,
165 dt_plic_irq_id_t irq);
166
167
168
169
170/**
171 * Get the clock signal connected to a clock port of an instance.
172 *
173 * @param dt Instance of rv_timer.
174 * @param clk Clock port.
175 * @return Clock signal.
176 */
178 dt_rv_timer_t dt,
180
181/**
182 * Get the reset signal connected to a reset port of an instance.
183 *
184 * @param dt Instance of rv_timer.
185 * @param rst Reset port.
186 * @return Reset signal.
187 */
189 dt_rv_timer_t dt,
191
192
193
194#ifdef __cplusplus
195} // extern "C"
196#endif // __cplusplus
197
198#endif // OPENTITAN_DT_RV_TIMER_H_