hw: explicitly include qemu/log.h

Move the inclusion out of hw/hw.h, most files do not need it.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2015-12-15 13:16:16 +01:00
parent e6623d88f4
commit 03dd024ff5
90 changed files with 92 additions and 2 deletions

View File

@ -17,6 +17,7 @@
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "hw/arm/ast2400.h" #include "hw/arm/ast2400.h"
#include "hw/char/serial.h" #include "hw/char/serial.h"
#include "qemu/log.h"
#define AST2400_UART_5_BASE 0x00184000 #define AST2400_UART_5_BASE 0x00184000
#define AST2400_IOMEM_SIZE 0x00200000 #define AST2400_IOMEM_SIZE 0x00200000

View File

@ -37,6 +37,7 @@
#include "hw/loader.h" #include "hw/loader.h"
#include "sysemu/block-backend.h" #include "sysemu/block-backend.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/log.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
/* Nokia N8x0 support */ /* Nokia N8x0 support */

View File

@ -17,6 +17,7 @@
#include "hw/arm/arm.h" #include "hw/arm/arm.h"
#include "hw/arm/ast2400.h" #include "hw/arm/ast2400.h"
#include "hw/boards.h" #include "hw/boards.h"
#include "qemu/log.h"
static struct arm_boot_info palmetto_bmc_binfo = { static struct arm_boot_info palmetto_bmc_binfo = {
.loader_start = AST2400_SDRAM_BASE, .loader_start = AST2400_SDRAM_BASE,

View File

@ -12,6 +12,7 @@
#include "hw/hw.h" #include "hw/hw.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/arm/pxa.h" #include "hw/arm/pxa.h"
#include "qemu/log.h"
#define PXA2XX_GPIO_BANKS 4 #define PXA2XX_GPIO_BANKS 4

View File

@ -17,6 +17,7 @@
#include "hw/i2c/i2c.h" #include "hw/i2c/i2c.h"
#include "net/net.h" #include "net/net.h"
#include "hw/boards.h" #include "hw/boards.h"
#include "qemu/log.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"

View File

@ -38,6 +38,7 @@
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "hw/ssi/ssi.h" #include "hw/ssi/ssi.h"
#include "qemu/cutils.h" #include "qemu/cutils.h"
#include "qemu/log.h"
//#define DEBUG //#define DEBUG

View File

@ -23,6 +23,7 @@
#include "hw/boards.h" #include "hw/boards.h"
#include "qemu/error-report.h" #include "qemu/error-report.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "qemu/log.h"
typedef struct XlnxEP108 { typedef struct XlnxEP108 {
XlnxZynqMPState soc; XlnxZynqMPState soc;

View File

@ -22,6 +22,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/log.h"
#include "pl041.h" #include "pl041.h"
#include "lm4549.h" #include "lm4549.h"

View File

@ -27,6 +27,7 @@
#include "sysemu/blockdev.h" #include "sysemu/blockdev.h"
#include "hw/ssi/ssi.h" #include "hw/ssi/ssi.h"
#include "qemu/bitops.h" #include "qemu/bitops.h"
#include "qemu/log.h"
#ifndef M25P80_ERR_DEBUG #ifndef M25P80_ERR_DEBUG
#define M25P80_ERR_DEBUG 0 #define M25P80_ERR_DEBUG 0

View File

@ -45,6 +45,7 @@
#include "qemu/bitops.h" #include "qemu/bitops.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "qemu/host-utils.h" #include "qemu/host-utils.h"
#include "qemu/log.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"

View File

@ -22,6 +22,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/char/bcm2835_aux.h" #include "hw/char/bcm2835_aux.h"
#include "qemu/log.h"
#define AUX_IRQ 0x0 #define AUX_IRQ 0x0
#define AUX_ENABLES 0x4 #define AUX_ENABLES 0x4

View File

@ -17,6 +17,10 @@
*/ */
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h"
#include "sysemu/char.h"
#include "qemu/timer.h"
#include "qemu/log.h"
#include "hw/char/cadence_uart.h" #include "hw/char/cadence_uart.h"
#ifdef CADENCE_UART_ERR_DEBUG #ifdef CADENCE_UART_ERR_DEBUG

View File

@ -30,6 +30,7 @@
#include "hw/hw.h" #include "hw/hw.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "sysemu/char.h" #include "sysemu/char.h"
#include "qemu/log.h"
#include "hw/char/digic-uart.h" #include "hw/char/digic-uart.h"

View File

@ -22,6 +22,7 @@
#include "hw/char/imx_serial.h" #include "hw/char/imx_serial.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "sysemu/char.h" #include "sysemu/char.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX_UART #ifndef DEBUG_IMX_UART
#define DEBUG_IMX_UART 0 #define DEBUG_IMX_UART 0

View File

@ -10,6 +10,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "sysemu/char.h" #include "sysemu/char.h"
#include "qemu/log.h"
#define TYPE_PL011 "pl011" #define TYPE_PL011 "pl011"
#define PL011(obj) OBJECT_CHECK(PL011State, (obj), TYPE_PL011) #define PL011(obj) OBJECT_CHECK(PL011State, (obj), TYPE_PL011)

View File

@ -24,6 +24,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/char/stm32f2xx_usart.h" #include "hw/char/stm32f2xx_usart.h"
#include "qemu/log.h"
#ifndef STM_USART_ERR_DEBUG #ifndef STM_USART_ERR_DEBUG
#define STM_USART_ERR_DEBUG 0 #define STM_USART_ERR_DEBUG 0

View File

@ -29,6 +29,7 @@
#include "hw/display/framebuffer.h" #include "hw/display/framebuffer.h"
#include "ui/pixel_ops.h" #include "ui/pixel_ops.h"
#include "hw/misc/bcm2835_mbox_defs.h" #include "hw/misc/bcm2835_mbox_defs.h"
#include "qemu/log.h"
#define DEFAULT_VCRAM_SIZE 0x4000000 #define DEFAULT_VCRAM_SIZE 0x4000000
#define BCM2835_FB_OFFSET 0x00100000 #define BCM2835_FB_OFFSET 0x00100000

View File

@ -31,6 +31,7 @@
#include "ui/console.h" #include "ui/console.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/loader.h" #include "hw/loader.h"
#include "qemu/log.h"
/* Change to 1 to enable debugging */ /* Change to 1 to enable debugging */
#define DEBUG_CG3 0 #define DEBUG_CG3 0

View File

@ -12,6 +12,7 @@
#include "ui/console.h" #include "ui/console.h"
#include "framebuffer.h" #include "framebuffer.h"
#include "ui/pixel_ops.h" #include "ui/pixel_ops.h"
#include "qemu/log.h"
#define PL110_CR_EN 0x001 #define PL110_CR_EN 0x001
#define PL110_CR_BGR 0x100 #define PL110_CR_BGR 0x100

View File

@ -19,6 +19,7 @@
#include "hw/virtio/virtio.h" #include "hw/virtio/virtio.h"
#include "hw/virtio/virtio-gpu.h" #include "hw/virtio/virtio-gpu.h"
#include "hw/virtio/virtio-bus.h" #include "hw/virtio/virtio-bus.h"
#include "qemu/log.h"
static struct virtio_gpu_simple_resource* static struct virtio_gpu_simple_resource*
virtio_gpu_find_resource(VirtIOGPU *g, uint32_t resource_id); virtio_gpu_find_resource(VirtIOGPU *g, uint32_t resource_id);

View File

@ -6,6 +6,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "hw/dma/bcm2835_dma.h" #include "hw/dma/bcm2835_dma.h"
#include "qemu/log.h"
/* DMA CS Control and Status bits */ /* DMA CS Control and Status bits */
#define BCM2708_DMA_ACTIVE (1 << 0) #define BCM2708_DMA_ACTIVE (1 << 0)

View File

@ -10,6 +10,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "qemu/log.h"
#define PL080_MAX_CHANNELS 8 #define PL080_MAX_CHANNELS 8
#define PL080_CONF_E 0x1 #define PL080_CONF_E 0x1

View File

@ -19,6 +19,7 @@
#include "qapi/error.h" #include "qapi/error.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "sysemu/dma.h" #include "sysemu/dma.h"
#include "qemu/log.h"
#ifndef PL330_ERR_DEBUG #ifndef PL330_ERR_DEBUG
#define PL330_ERR_DEBUG 0 #define PL330_ERR_DEBUG 0

View File

@ -27,6 +27,7 @@
#include "hw/mips/mips.h" #include "hw/mips/mips.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/log.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "trace.h" #include "trace.h"

View File

@ -19,6 +19,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/gpio/imx_gpio.h" #include "hw/gpio/imx_gpio.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX_GPIO #ifndef DEBUG_IMX_GPIO
#define DEBUG_IMX_GPIO 0 #define DEBUG_IMX_GPIO 0

View File

@ -10,6 +10,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/log.h"
//#define DEBUG_PL061 1 //#define DEBUG_PL061 1

View File

@ -21,6 +21,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/i2c/imx_i2c.h" #include "hw/i2c/imx_i2c.h"
#include "hw/i2c/i2c.h" #include "hw/i2c/i2c.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX_I2C #ifndef DEBUG_IMX_I2C
#define DEBUG_IMX_I2C 0 #define DEBUG_IMX_I2C 0

View File

@ -24,6 +24,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "bitbang_i2c.h" #include "bitbang_i2c.h"
#include "qemu/log.h"
#define TYPE_VERSATILE_I2C "versatile_i2c" #define TYPE_VERSATILE_I2C "versatile_i2c"
#define VERSATILE_I2C(obj) \ #define VERSATILE_I2C(obj) \

View File

@ -10,6 +10,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/input/ps2.h" #include "hw/input/ps2.h"
#include "qemu/log.h"
#define TYPE_PL050 "pl050" #define TYPE_PL050 "pl050"
#define PL050(obj) OBJECT_CHECK(PL050State, (obj), TYPE_PL050) #define PL050(obj) OBJECT_CHECK(PL050State, (obj), TYPE_PL050)

View File

@ -20,6 +20,7 @@
#include "hw/devices.h" #include "hw/devices.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "hw/intc/allwinner-a10-pic.h" #include "hw/intc/allwinner-a10-pic.h"
#include "qemu/log.h"
static void aw_a10_pic_update(AwA10PICState *s) static void aw_a10_pic_update(AwA10PICState *s)
{ {

View File

@ -23,6 +23,7 @@
#include "gic_internal.h" #include "gic_internal.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "qom/cpu.h" #include "qom/cpu.h"
#include "qemu/log.h"
#include "trace.h" #include "trace.h"
//#define DEBUG_GIC //#define DEBUG_GIC

View File

@ -30,6 +30,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/pci/msi.h" #include "hw/pci/msi.h"
#include "sysemu/kvm.h" #include "sysemu/kvm.h"
#include "qemu/log.h"
#define TYPE_ARM_GICV2M "arm-gicv2m" #define TYPE_ARM_GICV2M "arm-gicv2m"
#define ARM_GICV2M(obj) OBJECT_CHECK(ARMGICv2mState, (obj), TYPE_ARM_GICV2M) #define ARM_GICV2M(obj) OBJECT_CHECK(ARMGICv2mState, (obj), TYPE_ARM_GICV2M)

View File

@ -19,6 +19,7 @@
#include "hw/arm/arm.h" #include "hw/arm/arm.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "gic_internal.h" #include "gic_internal.h"
#include "qemu/log.h"
typedef struct { typedef struct {
GICState gic; GICState gic;

View File

@ -14,6 +14,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/intc/bcm2835_ic.h" #include "hw/intc/bcm2835_ic.h"
#include "qemu/log.h"
#define GPU_IRQS 64 #define GPU_IRQS 64
#define ARM_IRQS 8 #define ARM_IRQS 8

View File

@ -15,6 +15,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/intc/bcm2836_control.h" #include "hw/intc/bcm2836_control.h"
#include "qemu/log.h"
#define REG_GPU_ROUTE 0x0c #define REG_GPU_ROUTE 0x0c
#define REG_TIMERCONTROL 0x40 #define REG_TIMERCONTROL 0x40

View File

@ -27,6 +27,7 @@
#include "hw/isa/isa.h" #include "hw/isa/isa.h"
#include "monitor/monitor.h" #include "monitor/monitor.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/log.h"
#include "hw/isa/i8259_internal.h" #include "hw/isa/i8259_internal.h"
/* debug PIC */ /* debug PIC */

View File

@ -17,6 +17,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/intc/imx_avic.h" #include "hw/intc/imx_avic.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX_AVIC #ifndef DEBUG_IMX_AVIC
#define DEBUG_IMX_AVIC 0 #define DEBUG_IMX_AVIC 0

View File

@ -44,6 +44,7 @@
#include "qapi/error.h" #include "qapi/error.h"
#include "qemu/bitops.h" #include "qemu/bitops.h"
#include "qapi/qmp/qerror.h" #include "qapi/qmp/qerror.h"
#include "qemu/log.h"
//#define DEBUG_OPENPIC //#define DEBUG_OPENPIC

View File

@ -9,6 +9,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/log.h"
/* The number of virtual priority levels. 16 user vectors plus the /* The number of virtual priority levels. 16 user vectors plus the
unvectored IRQ. Chained interrupts would require an additional level unvectored IRQ. Chained interrupts would require an additional level

View File

@ -10,6 +10,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/misc/arm11scu.h" #include "hw/misc/arm11scu.h"
#include "qemu/log.h"
static uint64_t mpcore_scu_read(void *opaque, hwaddr offset, static uint64_t mpcore_scu_read(void *opaque, hwaddr offset,
unsigned size) unsigned size)

View File

@ -19,6 +19,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "hw/misc/arm_integrator_debug.h" #include "hw/misc/arm_integrator_debug.h"
#include "qemu/log.h"
#define INTEGRATOR_DEBUG(obj) \ #define INTEGRATOR_DEBUG(obj) \
OBJECT_CHECK(IntegratorDebugState, (obj), TYPE_INTEGRATOR_DEBUG) OBJECT_CHECK(IntegratorDebugState, (obj), TYPE_INTEGRATOR_DEBUG)

View File

@ -20,6 +20,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/log.h"
/* L2C-310 r3p2 */ /* L2C-310 r3p2 */
#define CACHE_ID 0x410000c8 #define CACHE_ID 0x410000c8

View File

@ -14,6 +14,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/arm/primecell.h" #include "hw/arm/primecell.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/log.h"
#define LOCK_VALUE 0xa05f #define LOCK_VALUE 0xa05f

View File

@ -11,6 +11,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "hw/misc/bcm2835_mbox.h" #include "hw/misc/bcm2835_mbox.h"
#include "qemu/log.h"
#define MAIL0_PEEK 0x90 #define MAIL0_PEEK 0x90
#define MAIL0_SENDER 0x94 #define MAIL0_SENDER 0x94

View File

@ -8,6 +8,7 @@
#include "hw/misc/bcm2835_property.h" #include "hw/misc/bcm2835_property.h"
#include "hw/misc/bcm2835_mbox_defs.h" #include "hw/misc/bcm2835_mbox_defs.h"
#include "sysemu/dma.h" #include "sysemu/dma.h"
#include "qemu/log.h"
/* https://github.com/raspberrypi/firmware/wiki/Mailbox-property-interface */ /* https://github.com/raspberrypi/firmware/wiki/Mailbox-property-interface */

View File

@ -13,6 +13,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/misc/imx25_ccm.h" #include "hw/misc/imx25_ccm.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX25_CCM #ifndef DEBUG_IMX25_CCM
#define DEBUG_IMX25_CCM 0 #define DEBUG_IMX25_CCM 0

View File

@ -13,6 +13,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/misc/imx31_ccm.h" #include "hw/misc/imx31_ccm.h"
#include "qemu/log.h"
#define CKIH_FREQ 26000000 /* 26MHz crystal input */ #define CKIH_FREQ 26000000 /* 26MHz crystal input */

View File

@ -12,6 +12,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/misc/imx6_ccm.h" #include "hw/misc/imx6_ccm.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX6_CCM #ifndef DEBUG_IMX6_CCM
#define DEBUG_IMX6_CCM 0 #define DEBUG_IMX6_CCM 0

View File

@ -12,6 +12,7 @@
#include "hw/misc/imx6_src.h" #include "hw/misc/imx6_src.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/bitops.h" #include "qemu/bitops.h"
#include "qemu/log.h"
#include "arm-powerctl.h" #include "arm-powerctl.h"
#ifndef DEBUG_IMX6_SRC #ifndef DEBUG_IMX6_SRC

View File

@ -13,6 +13,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/misc/imx_ccm.h" #include "hw/misc/imx_ccm.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX_CCM #ifndef DEBUG_IMX_CCM
#define DEBUG_IMX_CCM 0 #define DEBUG_IMX_CCM 0

View File

@ -29,6 +29,7 @@
#include "qemu/timer.h" #include "qemu/timer.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/cutils.h" #include "qemu/cutils.h"
#include "qemu/log.h"
/* XXX: implement all timer modes */ /* XXX: implement all timer modes */

View File

@ -41,6 +41,7 @@
#include "hw/isa/isa.h" #include "hw/isa/isa.h"
#include "hw/ppc/mac_dbdma.h" #include "hw/ppc/mac_dbdma.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "qemu/log.h"
/* debug DBDMA */ /* debug DBDMA */
//#define DEBUG_DBDMA //#define DEBUG_DBDMA

View File

@ -11,6 +11,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "qemu/log.h"
#include "hw/hw.h" #include "hw/hw.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"

View File

@ -20,6 +20,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "cpu.h" #include "cpu.h"
#include "qemu/log.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/misc/mips_cpc.h" #include "hw/misc/mips_cpc.h"

View File

@ -20,6 +20,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "cpu.h" #include "cpu.h"
#include "qemu/log.h"
#include "hw/hw.h" #include "hw/hw.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"

View File

@ -24,6 +24,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/misc/stm32f2xx_syscfg.h" #include "hw/misc/stm32f2xx_syscfg.h"
#include "qemu/log.h"
#ifndef STM_SYSCFG_ERR_DEBUG #ifndef STM_SYSCFG_ERR_DEBUG
#define STM_SYSCFG_ERR_DEBUG 0 #define STM_SYSCFG_ERR_DEBUG 0

View File

@ -18,6 +18,7 @@
#include "hw/misc/zynq-xadc.h" #include "hw/misc/zynq-xadc.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/log.h"
enum { enum {
CFG = 0x000 / 4, CFG = 0x000 / 4,

View File

@ -19,6 +19,7 @@
#include "qemu/timer.h" #include "qemu/timer.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/log.h"
#ifndef ZYNQ_SLCR_ERR_DEBUG #ifndef ZYNQ_SLCR_ERR_DEBUG
#define ZYNQ_SLCR_ERR_DEBUG 0 #define ZYNQ_SLCR_ERR_DEBUG 0

View File

@ -21,6 +21,7 @@
#include "net/net.h" #include "net/net.h"
#include "qemu/fifo8.h" #include "qemu/fifo8.h"
#include "hw/net/allwinner_emac.h" #include "hw/net/allwinner_emac.h"
#include "qemu/log.h"
#include <zlib.h> #include <zlib.h>
static uint8_t padding[60]; static uint8_t padding[60];

View File

@ -33,6 +33,7 @@
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "etsec.h" #include "etsec.h"
#include "registers.h" #include "registers.h"
#include "qemu/log.h"
/* #define HEX_DUMP */ /* #define HEX_DUMP */
/* #define DEBUG_REGISTER */ /* #define DEBUG_REGISTER */

View File

@ -23,7 +23,7 @@
*/ */
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "net/checksum.h" #include "net/checksum.h"
#include "qemu/log.h"
#include "etsec.h" #include "etsec.h"
#include "registers.h" #include "registers.h"

View File

@ -24,6 +24,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/net/imx_fec.h" #include "hw/net/imx_fec.h"
#include "sysemu/dma.h" #include "sysemu/dma.h"
#include "qemu/log.h"
/* For crc32 */ /* For crc32 */
#include <zlib.h> #include <zlib.h>

View File

@ -16,6 +16,7 @@
#include "hw/devices.h" #include "hw/devices.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/log.h"
/* For crc32 */ /* For crc32 */
#include <zlib.h> #include <zlib.h>

View File

@ -28,6 +28,7 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "cpu.h" #include "cpu.h"
#include "hw/hw.h" #include "hw/hw.h"
#include "qemu/log.h"
#include "net/net.h" #include "net/net.h"
#include "hw/qdev.h" #include "hw/qdev.h"
#include "hw/ppc/spapr.h" #include "hw/ppc/spapr.h"

View File

@ -36,6 +36,7 @@
#include "hw/pci-host/apb.h" #include "hw/pci-host/apb.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "qemu/log.h"
/* debug APB */ /* debug APB */
//#define DEBUG_APB //#define DEBUG_APB

View File

@ -13,6 +13,7 @@
#include "hw/pci/pci_bus.h" #include "hw/pci/pci_bus.h"
#include "hw/pci/pci_host.h" #include "hw/pci/pci_host.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "qemu/log.h"
/* Old and buggy versions of QEMU used the wrong mapping from /* Old and buggy versions of QEMU used the wrong mapping from
* PCI IRQs to system interrupt lines. Unfortunately the Linux * PCI IRQs to system interrupt lines. Unfortunately the Linux

View File

@ -29,6 +29,7 @@
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "sysemu/numa.h" #include "sysemu/numa.h"
#include "hw/hw.h" #include "hw/hw.h"
#include "qemu/log.h"
#include "hw/fw-path-provider.h" #include "hw/fw-path-provider.h"
#include "elf.h" #include "elf.h"
#include "net/net.h" #include "net/net.h"

View File

@ -1,6 +1,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/log.h"
#include "cpu.h" #include "cpu.h"
#include "helper_regs.h" #include "helper_regs.h"
#include "hw/ppc/spapr.h" #include "hw/ppc/spapr.h"

View File

@ -18,6 +18,7 @@
*/ */
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/hw.h" #include "hw/hw.h"
#include "qemu/log.h"
#include "sysemu/kvm.h" #include "sysemu/kvm.h"
#include "hw/qdev.h" #include "hw/qdev.h"
#include "kvm_ppc.h" #include "kvm_ppc.h"

View File

@ -26,6 +26,7 @@
*/ */
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "cpu.h" #include "cpu.h"
#include "qemu/log.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "sysemu/char.h" #include "sysemu/char.h"
#include "hw/qdev.h" #include "hw/qdev.h"

View File

@ -22,6 +22,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "hw/hw.h" #include "hw/hw.h"
#include "qemu/log.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "hw/boards.h" #include "hw/boards.h"
#include "hw/loader.h" #include "hw/loader.h"

View File

@ -12,6 +12,7 @@
#include "sysemu/blockdev.h" #include "sysemu/blockdev.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/sd/sd.h" #include "hw/sd/sd.h"
#include "qemu/log.h"
//#define DEBUG_PL181 1 //#define DEBUG_PL181 1

View File

@ -39,6 +39,7 @@
#include "hw/qdev-properties.h" #include "hw/qdev-properties.h"
#include "qemu/error-report.h" #include "qemu/error-report.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/log.h"
//#define DEBUG_SD 1 //#define DEBUG_SD 1

View File

@ -30,6 +30,7 @@
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/bitops.h" #include "qemu/bitops.h"
#include "sdhci-internal.h" #include "sdhci-internal.h"
#include "qemu/log.h"
/* host controller debug messages */ /* host controller debug messages */
#ifndef SDHC_DEBUG #ifndef SDHC_DEBUG

View File

@ -11,6 +11,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/ssi/imx_spi.h" #include "hw/ssi/imx_spi.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX_SPI #ifndef DEBUG_IMX_SPI
#define DEBUG_IMX_SPI 0 #define DEBUG_IMX_SPI 0

View File

@ -10,6 +10,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/ssi/ssi.h" #include "hw/ssi/ssi.h"
#include "qemu/log.h"
//#define DEBUG_PL022 1 //#define DEBUG_PL022 1

View File

@ -19,6 +19,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "hw/timer/allwinner-a10-pit.h" #include "hw/timer/allwinner-a10-pit.h"
#include "qemu/log.h"
static void a10_pit_update_irq(AwA10PITState *s) static void a10_pit_update_irq(AwA10PITState *s)
{ {

View File

@ -14,6 +14,7 @@
#include "hw/qdev.h" #include "hw/qdev.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "qemu/log.h"
/* Common timer implementation. */ /* Common timer implementation. */

View File

@ -30,6 +30,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "qemu/log.h"
#include "hw/timer/digic-timer.h" #include "hw/timer/digic-timer.h"

View File

@ -16,6 +16,7 @@
#include "hw/timer/imx_epit.h" #include "hw/timer/imx_epit.h"
#include "hw/misc/imx_ccm.h" #include "hw/misc/imx_ccm.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX_EPIT #ifndef DEBUG_IMX_EPIT
#define DEBUG_IMX_EPIT 0 #define DEBUG_IMX_EPIT 0

View File

@ -16,6 +16,7 @@
#include "hw/timer/imx_gpt.h" #include "hw/timer/imx_gpt.h"
#include "hw/misc/imx_ccm.h" #include "hw/misc/imx_ccm.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "qemu/log.h"
#ifndef DEBUG_IMX_GPT #ifndef DEBUG_IMX_GPT
#define DEBUG_IMX_GPT 0 #define DEBUG_IMX_GPT 0

View File

@ -16,6 +16,7 @@
#include "qemu/timer.h" #include "qemu/timer.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/cutils.h" #include "qemu/cutils.h"
#include "qemu/log.h"
//#define DEBUG_PL031 //#define DEBUG_PL031

View File

@ -24,6 +24,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "hw/timer/stm32f2xx_timer.h" #include "hw/timer/stm32f2xx_timer.h"
#include "qemu/log.h"
#ifndef STM_TIMER_ERR_DEBUG #ifndef STM_TIMER_ERR_DEBUG
#define STM_TIMER_ERR_DEBUG 0 #define STM_TIMER_ERR_DEBUG 0

View File

@ -16,6 +16,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "hw/watchdog/wdt_diag288.h" #include "hw/watchdog/wdt_diag288.h"
#include "qemu/log.h"
static WatchdogTimerModel model = { static WatchdogTimerModel model = {
.wdt_name = TYPE_WDT_DIAG288, .wdt_name = TYPE_WDT_DIAG288,

View File

@ -11,7 +11,6 @@
#include "hw/irq.h" #include "hw/irq.h"
#include "block/aio.h" #include "block/aio.h"
#include "migration/vmstate.h" #include "migration/vmstate.h"
#include "qemu/log.h"
#include "qemu/module.h" #include "qemu/module.h"
typedef void QEMUResetHandler(void *opaque); typedef void QEMUResetHandler(void *opaque);

View File

@ -71,6 +71,7 @@
#include "trace/simple.h" #include "trace/simple.h"
#endif #endif
#include "exec/memory.h" #include "exec/memory.h"
#include "qemu/log.h"
#include "qmp-commands.h" #include "qmp-commands.h"
#include "hmp.h" #include "hmp.h"
#include "qemu/thread.h" #include "qemu/thread.h"

View File

@ -13,6 +13,7 @@
#include <cpu-qom.h> #include <cpu-qom.h>
#include "internals.h" #include "internals.h"
#include "arm-powerctl.h" #include "arm-powerctl.h"
#include "qemu/log.h"
#ifndef DEBUG_ARM_POWERCTL #ifndef DEBUG_ARM_POWERCTL
#define DEBUG_ARM_POWERCTL 0 #define DEBUG_ARM_POWERCTL 0

View File

@ -25,6 +25,7 @@
#include "hw/arm/arm.h" #include "hw/arm/arm.h"
#include "exec/memattrs.h" #include "exec/memattrs.h"
#include "hw/boards.h" #include "hw/boards.h"
#include "qemu/log.h"
const KVMCapabilityInfo kvm_arch_required_capabilities[] = { const KVMCapabilityInfo kvm_arch_required_capabilities[] = {
KVM_CAP_LAST_INFO KVM_CAP_LAST_INFO

View File

@ -22,6 +22,7 @@
#include "kvm_arm.h" #include "kvm_arm.h"
#include "internals.h" #include "internals.h"
#include "hw/arm/arm.h" #include "hw/arm/arm.h"
#include "qemu/log.h"
static inline void set_feature(uint64_t *features, int feature) static inline void set_feature(uint64_t *features, int feature)
{ {

1
vl.c
View File

@ -80,6 +80,7 @@ int main(int argc, char **argv)
#include "qemu/timer.h" #include "qemu/timer.h"
#include "sysemu/char.h" #include "sysemu/char.h"
#include "qemu/bitmap.h" #include "qemu/bitmap.h"
#include "qemu/log.h"
#include "sysemu/blockdev.h" #include "sysemu/blockdev.h"
#include "hw/block/block.h" #include "hw/block/block.h"
#include "migration/block.h" #include "migration/block.h"