2018-03-02 15:31:13 +03:00
|
|
|
/*
|
|
|
|
* QEMU Test Finisher interface
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 SiFive, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2 or later, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HW_SIFIVE_TEST_H
|
|
|
|
#define HW_SIFIVE_TEST_H
|
|
|
|
|
2019-08-12 08:23:31 +03:00
|
|
|
#include "hw/sysbus.h"
|
2020-09-01 00:07:30 +03:00
|
|
|
#include "qom/object.h"
|
2019-08-12 08:23:31 +03:00
|
|
|
|
2018-03-02 15:31:13 +03:00
|
|
|
#define TYPE_SIFIVE_TEST "riscv.sifive.test"
|
|
|
|
|
2020-09-01 00:07:30 +03:00
|
|
|
typedef struct SiFiveTestState SiFiveTestState;
|
2020-09-01 00:07:33 +03:00
|
|
|
DECLARE_INSTANCE_CHECKER(SiFiveTestState, SIFIVE_TEST,
|
|
|
|
TYPE_SIFIVE_TEST)
|
2018-03-02 15:31:13 +03:00
|
|
|
|
2020-09-01 00:07:30 +03:00
|
|
|
struct SiFiveTestState {
|
2018-03-02 15:31:13 +03:00
|
|
|
/*< private >*/
|
|
|
|
SysBusDevice parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
|
|
|
MemoryRegion mmio;
|
2020-09-01 00:07:30 +03:00
|
|
|
};
|
2018-03-02 15:31:13 +03:00
|
|
|
|
|
|
|
enum {
|
|
|
|
FINISHER_FAIL = 0x3333,
|
2019-09-05 18:55:16 +03:00
|
|
|
FINISHER_PASS = 0x5555,
|
|
|
|
FINISHER_RESET = 0x7777
|
2018-03-02 15:31:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
DeviceState *sifive_test_create(hwaddr addr);
|
|
|
|
|
|
|
|
#endif
|