diff options
author | Tong Ho <tong.ho@xilinx.com> | 2021-09-16 22:23:55 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-09-30 13:42:10 +0100 |
commit | 461a6a6f199944e466ddb808516e63cf064c0105 (patch) | |
tree | b8fe771272f6028ee011d4e5cdee5dab04769747 /hw/nvram/meson.build | |
parent | 67fa02f89fbf7510b70080bbbea8ac0aa752e8ba (diff) | |
download | qemu-461a6a6f199944e466ddb808516e63cf064c0105.zip qemu-461a6a6f199944e466ddb808516e63cf064c0105.tar.gz qemu-461a6a6f199944e466ddb808516e63cf064c0105.tar.bz2 |
hw/nvram: Introduce Xilinx battery-backed ram
This device is present in Versal and ZynqMP product
families to store a 256-bit encryption key.
Co-authored-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Co-authored-by: Sai Pavan Boddu <sai.pavan.boddu@xilinx.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: Sai Pavan Boddu <sai.pavan.boddu@xilinx.com>
Signed-off-by: Tong Ho <tong.ho@xilinx.com>
Message-id: 20210917052400.1249094-5-tong.ho@xilinx.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/nvram/meson.build')
-rw-r--r-- | hw/nvram/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/nvram/meson.build b/hw/nvram/meson.build index 6dc54d9..202a546 100644 --- a/hw/nvram/meson.build +++ b/hw/nvram/meson.build @@ -16,5 +16,6 @@ softmmu_ss.add(when: 'CONFIG_XLNX_EFUSE_VERSAL', if_true: files( 'xlnx-versal-efuse-ctrl.c')) softmmu_ss.add(when: 'CONFIG_XLNX_EFUSE_ZYNQMP', if_true: files( 'xlnx-zynqmp-efuse.c')) +softmmu_ss.add(when: 'CONFIG_XLNX_BBRAM', if_true: files('xlnx-bbram.c')) specific_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr_nvram.c')) |