xref: /openbmc/qemu/include/hw/timer/grlib_gptimer.h (revision f432962e)
1*f432962eSClément Chigot /*
2*f432962eSClément Chigot  * QEMU GRLIB GPTimer
3*f432962eSClément Chigot  *
4*f432962eSClément Chigot  * SPDX-License-Identifier: MIT
5*f432962eSClément Chigot  *
6*f432962eSClément Chigot  * Copyright (c) 2024 AdaCore
7*f432962eSClément Chigot  *
8*f432962eSClément Chigot  * Permission is hereby granted, free of charge, to any person obtaining a copy
9*f432962eSClément Chigot  * of this software and associated documentation files (the "Software"), to deal
10*f432962eSClément Chigot  * in the Software without restriction, including without limitation the rights
11*f432962eSClément Chigot  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12*f432962eSClément Chigot  * copies of the Software, and to permit persons to whom the Software is
13*f432962eSClément Chigot  * furnished to do so, subject to the following conditions:
14*f432962eSClément Chigot  *
15*f432962eSClément Chigot  * The above copyright notice and this permission notice shall be included in
16*f432962eSClément Chigot  * all copies or substantial portions of the Software.
17*f432962eSClément Chigot  *
18*f432962eSClément Chigot  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19*f432962eSClément Chigot  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20*f432962eSClément Chigot  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21*f432962eSClément Chigot  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22*f432962eSClément Chigot  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23*f432962eSClément Chigot  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24*f432962eSClément Chigot  * THE SOFTWARE.
25*f432962eSClément Chigot  */
26*f432962eSClément Chigot 
27*f432962eSClément Chigot #ifndef GRLIB_GPTIMER_H
28*f432962eSClément Chigot #define GRLIB_GPTIMER_H
29*f432962eSClément Chigot 
30*f432962eSClément Chigot #define TYPE_GRLIB_GPTIMER "grlib-gptimer"
31*f432962eSClément Chigot 
32*f432962eSClément Chigot #endif
33