hc
2024-03-22 619f0f87159c5dbd2755b1b0a0eb35784be84e7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * SPDX-License-Identifier: BSD-3-Clause
 *
 * Copyright (c) 2020 Western Digital Corporation or its affiliates.
 *
 * Authors:
 *   Anup Patel <anup.patel@wdc.com>
 */
 
#include <sbi/riscv_io.h>
#include <sbi/sbi_platform.h>
#include <sbi_utils/sys/sifive_test.h>
 
#define FINISHER_FAIL        0x3333
#define FINISHER_PASS        0x5555
#define FINISHER_RESET        0x7777
 
static void *sifive_test_base;
 
int sifive_test_system_reset(u32 type)
{
   /*
    * Tell the "finisher" that the simulation
    * was successful so that QEMU exits
    */
   switch (type) {
   case SBI_PLATFORM_RESET_SHUTDOWN:
       writew(FINISHER_PASS, sifive_test_base);
       break;
   case SBI_PLATFORM_RESET_COLD:
   case SBI_PLATFORM_RESET_WARM:
       writew(FINISHER_RESET, sifive_test_base);
       break;
   }
 
   return 0;
}
 
int sifive_test_init(unsigned long base)
{
   sifive_test_base = (void *)base;
 
   return 0;
}