blob: 5787702e7467f53ff53bccac0e0675b343b30b20 [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/*
Sean Andersone86463f2020-09-28 10:52:24 -040010 * System controllers in a RISC-V system. These should only be used for
11 * identifying IPI controllers. Other devices should use DM to probe.
Bin Meng644a3cd2018-12-12 06:12:30 -080012 */
13enum {
14 RISCV_NONE,
Bin Meng9675d922023-06-21 23:11:46 +080015 RISCV_SYSCON_ACLINT, /* Advanced Core Local Interruptor (ACLINT) */
Yu Chien Peter Lina5dfa3b2022-10-25 23:03:50 +080016 RISCV_SYSCON_PLICSW, /* Andes PLICSW */
Bin Meng644a3cd2018-12-12 06:12:30 -080017};
18
19#endif /* _ASM_SYSCON_H */