mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
arm: Rename hw/arm/arm.h to hw/arm/boot.h
The header file hw/arm/arm.h now includes only declarations relating to hw/arm/boot.c functionality. Rename it accordingly, and adjust its header comment. The bulk of this commit was created via perl -pi -e 's|hw/arm/arm.h|hw/arm/boot.h|' hw/arm/*.c include/hw/arm/*.h In a few cases we can just delete the #include: hw/arm/msf2-soc.c, include/hw/arm/aspeed_soc.h and include/hw/arm/bcm2836.h did not require it. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20190516163857.6430-4-peter.maydell@linaro.org
This commit is contained in:
parent
55bb1a55c7
commit
12ec8bd51e
49 changed files with 49 additions and 52 deletions
|
@ -3,7 +3,7 @@
|
|||
#include "qemu-common.h"
|
||||
#include "qemu/error-report.h"
|
||||
#include "hw/char/serial.h"
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/timer/allwinner-a10-pit.h"
|
||||
#include "hw/intc/allwinner-a10-pic.h"
|
||||
#include "hw/net/allwinner_emac.h"
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#ifndef ASPEED_SOC_H
|
||||
#define ASPEED_SOC_H
|
||||
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/intc/aspeed_vic.h"
|
||||
#include "hw/misc/aspeed_scu.h"
|
||||
#include "hw/misc/aspeed_sdmc.h"
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
#ifndef BCM2836_H
|
||||
#define BCM2836_H
|
||||
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/bcm2835_peripherals.h"
|
||||
#include "hw/intc/bcm2836_control.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Misc ARM declarations
|
||||
* ARM kernel loader.
|
||||
*
|
||||
* Copyright (c) 2006 CodeSourcery.
|
||||
* Written by Paul Brook
|
||||
|
@ -8,8 +8,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef HW_ARM_H
|
||||
#define HW_ARM_H
|
||||
#ifndef HW_ARM_BOOT_H
|
||||
#define HW_ARM_BOOT_H
|
||||
|
||||
#include "exec/memory.h"
|
||||
#include "target/arm/cpu-qom.h"
|
||||
|
@ -167,4 +167,4 @@ void arm_write_secure_board_setup_dummy_smc(ARMCPU *cpu,
|
|||
const struct arm_boot_info *info,
|
||||
hwaddr mvbar_addr);
|
||||
|
||||
#endif /* HW_ARM_H */
|
||||
#endif /* HW_ARM_BOOT_H */
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef FSL_IMX25_H
|
||||
#define FSL_IMX25_H
|
||||
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/intc/imx_avic.h"
|
||||
#include "hw/misc/imx25_ccm.h"
|
||||
#include "hw/char/imx_serial.h"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef FSL_IMX31_H
|
||||
#define FSL_IMX31_H
|
||||
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/intc/imx_avic.h"
|
||||
#include "hw/misc/imx31_ccm.h"
|
||||
#include "hw/char/imx_serial.h"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef FSL_IMX6_H
|
||||
#define FSL_IMX6_H
|
||||
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/cpu/a9mpcore.h"
|
||||
#include "hw/misc/imx6_ccm.h"
|
||||
#include "hw/misc/imx6_src.h"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef FSL_IMX6UL_H
|
||||
#define FSL_IMX6UL_H
|
||||
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/cpu/a15mpcore.h"
|
||||
#include "hw/misc/imx6ul_ccm.h"
|
||||
#include "hw/misc/imx6_src.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef FSL_IMX7_H
|
||||
#define FSL_IMX7_H
|
||||
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/cpu/a15mpcore.h"
|
||||
#include "hw/intc/imx_gpcv2.h"
|
||||
#include "hw/misc/imx7_ccm.h"
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "exec/hwaddr.h"
|
||||
#include "qemu/notify.h"
|
||||
#include "hw/boards.h"
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/block/flash.h"
|
||||
#include "sysemu/kvm.h"
|
||||
#include "hw/intc/arm_gicv3_common.h"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#define XLNX_VERSAL_H
|
||||
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/intc/arm_gicv3.h"
|
||||
|
||||
#define TYPE_XLNX_VERSAL "xlnx-versal"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#ifndef XLNX_ZYNQMP_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/arm/arm.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/intc/arm_gic.h"
|
||||
#include "hw/net/cadence_gem.h"
|
||||
#include "hw/char/cadence_uart.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue