hw/sd: sd: Remove duplicated codes in single/multiple block read/write
[qemu/ar7.git] / hw / tpm / tpm_ppi.c
blob72d7a3d9260839bc1464f4e776949d35ea9f821d
1 /*
2 * tpm_ppi.c - TPM Physical Presence Interface
4 * Copyright (C) 2018 IBM Corporation
6 * Authors:
7 * Stefan Berger <stefanb@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
16 #include "qapi/error.h"
17 #include "cpu.h"
18 #include "sysemu/memory_mapping.h"
19 #include "migration/vmstate.h"
20 #include "hw/acpi/tpm.h"
21 #include "tpm_ppi.h"
22 #include "trace.h"
24 void tpm_ppi_reset(TPMPPI *tpmppi)
26 if (tpmppi->buf[0x15a /* movv, docs/specs/tpm.txt */] & 0x1) {
27 GuestPhysBlockList guest_phys_blocks;
28 GuestPhysBlock *block;
30 guest_phys_blocks_init(&guest_phys_blocks);
31 guest_phys_blocks_append(&guest_phys_blocks);
32 QTAILQ_FOREACH(block, &guest_phys_blocks.head, next) {
33 trace_tpm_ppi_memset(block->host_addr,
34 block->target_end - block->target_start);
35 memset(block->host_addr, 0,
36 block->target_end - block->target_start);
37 memory_region_set_dirty(block->mr, 0,
38 block->target_end - block->target_start);
40 guest_phys_blocks_free(&guest_phys_blocks);
44 void tpm_ppi_init(TPMPPI *tpmppi, struct MemoryRegion *m,
45 hwaddr addr, Object *obj)
47 tpmppi->buf = qemu_memalign(qemu_real_host_page_size,
48 HOST_PAGE_ALIGN(TPM_PPI_ADDR_SIZE));
49 memory_region_init_ram_device_ptr(&tpmppi->ram, obj, "tpm-ppi",
50 TPM_PPI_ADDR_SIZE, tpmppi->buf);
51 vmstate_register_ram(&tpmppi->ram, DEVICE(obj));
53 memory_region_add_subregion(m, addr, &tpmppi->ram);