xlnx-versal-efuse: hw/nvram: Remove deprecated device reset
This change implements the ResettableClass interface for the device. Signed-off-by: Tong Ho <tong.ho@amd.com> Reviewed-by: Francisco Iglesias <frasse.iglesias@gmail.com> Message-id: 20231004055339.323833-1-tong.ho@amd.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
7667b51524
commit
51244b5911
@ -2,6 +2,7 @@
|
|||||||
* QEMU model of the Versal eFuse controller
|
* QEMU model of the Versal eFuse controller
|
||||||
*
|
*
|
||||||
* Copyright (c) 2020 Xilinx Inc.
|
* Copyright (c) 2020 Xilinx Inc.
|
||||||
|
* Copyright (c) 2023 Advanced Micro Devices, Inc.
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
@ -657,9 +658,9 @@ static void efuse_ctrl_register_reset(RegisterInfo *reg)
|
|||||||
register_reset(reg);
|
register_reset(reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void efuse_ctrl_reset(DeviceState *dev)
|
static void efuse_ctrl_reset_hold(Object *obj)
|
||||||
{
|
{
|
||||||
XlnxVersalEFuseCtrl *s = XLNX_VERSAL_EFUSE_CTRL(dev);
|
XlnxVersalEFuseCtrl *s = XLNX_VERSAL_EFUSE_CTRL(obj);
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(s->regs_info); ++i) {
|
for (i = 0; i < ARRAY_SIZE(s->regs_info); ++i) {
|
||||||
@ -749,8 +750,9 @@ static Property efuse_ctrl_props[] = {
|
|||||||
static void efuse_ctrl_class_init(ObjectClass *klass, void *data)
|
static void efuse_ctrl_class_init(ObjectClass *klass, void *data)
|
||||||
{
|
{
|
||||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||||
|
ResettableClass *rc = RESETTABLE_CLASS(klass);
|
||||||
|
|
||||||
dc->reset = efuse_ctrl_reset;
|
rc->phases.hold = efuse_ctrl_reset_hold;
|
||||||
dc->realize = efuse_ctrl_realize;
|
dc->realize = efuse_ctrl_realize;
|
||||||
dc->vmsd = &vmstate_efuse_ctrl;
|
dc->vmsd = &vmstate_efuse_ctrl;
|
||||||
device_class_set_props(dc, efuse_ctrl_props);
|
device_class_set_props(dc, efuse_ctrl_props);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user