diff options
author | John Wang <wangzhiqiang.bj@bytedance.com> | 2020-12-10 12:11:03 +0100 |
---|---|---|
committer | Cédric Le Goater <clg@kaod.org> | 2020-12-10 12:11:03 +0100 |
commit | 5e623f2bf1b4a43022c2fd31919c76ddb9556e17 (patch) | |
tree | 52d5054d3f7c739f6258197c234bb0add69ec211 /hw/misc/meson.build | |
parent | 5e7b204dbfae9a562fc73684986f936b97f63877 (diff) | |
download | qemu-5e623f2bf1b4a43022c2fd31919c76ddb9556e17.zip qemu-5e623f2bf1b4a43022c2fd31919c76ddb9556e17.tar.gz qemu-5e623f2bf1b4a43022c2fd31919c76ddb9556e17.tar.bz2 |
hw/misc: add an EMC141{3,4} device model
Largely inspired by the TMP421 temperature sensor, here is a model for
the EMC1413/EMC1414 temperature sensors.
Specs can be found here :
http://ww1.microchip.com/downloads/en/DeviceDoc/20005274A.pdf
Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20201122105134.671-1-wangzhiqiang.bj@bytedance.com>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'hw/misc/meson.build')
-rw-r--r-- | hw/misc/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/misc/meson.build b/hw/misc/meson.build index 1cd48e8..ce15ffc 100644 --- a/hw/misc/meson.build +++ b/hw/misc/meson.build @@ -9,6 +9,7 @@ softmmu_ss.add(when: 'CONFIG_PCI_TESTDEV', if_true: files('pci-testdev.c')) softmmu_ss.add(when: 'CONFIG_SGA', if_true: files('sga.c')) softmmu_ss.add(when: 'CONFIG_TMP105', if_true: files('tmp105.c')) softmmu_ss.add(when: 'CONFIG_TMP421', if_true: files('tmp421.c')) +softmmu_ss.add(when: 'CONFIG_EMC141X', if_true: files('emc141x.c')) softmmu_ss.add(when: 'CONFIG_UNIMP', if_true: files('unimp.c')) softmmu_ss.add(when: 'CONFIG_EMPTY_SLOT', if_true: files('empty_slot.c')) softmmu_ss.add(when: 'CONFIG_LED', if_true: files('led.c')) |