blob: d311ee6b45fa2f3d04c00df9cf6a7cfd99a04596 [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
11 *
12 * So far only SiFive's Core Local Interruptor (CLINT) is defined.
13 */
14enum {
15 RISCV_NONE,
16 RISCV_SYSCON_CLINT, /* Core Local Interruptor (CLINT) */
17};
18
19#endif /* _ASM_SYSCON_H */