blob: 26a008ca59948393674ef9b9843b588b16fb7d89 [file] [log] [blame]
Bin Meng644a3cd2018-12-12 06:12:30 -08001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4 */
5
6#ifndef _ASM_SYSCON_H
7#define _ASM_SYSCON_H
8
9/*
10 * System controllers in a RISC-V system
Bin Meng644a3cd2018-12-12 06:12:30 -080011 */
12enum {
13 RISCV_NONE,
14 RISCV_SYSCON_CLINT, /* Core Local Interruptor (CLINT) */
Rick Chen0d389462019-04-02 15:56:39 +080015 RISCV_SYSCON_PLIC, /* Platform Level Interrupt Controller (PLIC) */
Rick Chena1f24872019-04-02 15:56:40 +080016 RISCV_SYSCON_PLMT, /* Platform Level Machine Timer (PLMT) */
Bin Meng644a3cd2018-12-12 06:12:30 -080017};
18
19#endif /* _ASM_SYSCON_H */