diff options
| author | Anup Patel <[email protected]> | 2020-04-24 12:26:23 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2020-04-27 14:37:57 +0530 |
| commit | 6585fabbcca24bf1c1df0582d048d93b3caf7ce7 (patch) | |
| tree | f20de7aa4fde868e508c7128340c97f4ac0f51b1 /include/sbi_utils/sys | |
| parent | a9eac67ad019200e9a281a6fc10e394353a026f2 (diff) | |
lib: utils: Add SiFive test device
This patch factor-out SiFive test device related stuff into
it's own source file from qemu/virt platform. In future, we
can find SiFive test device address from device tree as well.
Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Atish Patra <[email protected]>
Diffstat (limited to 'include/sbi_utils/sys')
| -rw-r--r-- | include/sbi_utils/sys/sifive_test.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/sbi_utils/sys/sifive_test.h b/include/sbi_utils/sys/sifive_test.h new file mode 100644 index 00000000..7e153d57 --- /dev/null +++ b/include/sbi_utils/sys/sifive_test.h @@ -0,0 +1,19 @@ +/* + * SPDX-License-Identifier: BSD-3-Clause + * + * Copyright (c) 2020 Western Digital Corporation or its affiliates. + * + * Authors: + * Anup Patel <[email protected]> + */ + +#ifndef __SYS_SIFIVE_TEST_H__ +#define __SYS_SIFIVE_TEST_H__ + +#include <sbi/sbi_types.h> + +int sifive_test_system_reset(u32 type); + +int sifive_test_init(unsigned long base); + +#endif |
