arm-powerctl.c (c4380f7bcdcb68fdfca876db366782a807fab8f7) | arm-powerctl.c (e2d8cf9b5312ada63ffa7460dec7cf89cf0bd61e) |
---|---|
1/* 2 * QEMU support -- ARM Power Control specific functions. 3 * 4 * Copyright (c) 2016 Jean-Christophe Dubois 5 * 6 * This work is licensed under the terms of the GNU GPL, version 2 or later. 7 * See the COPYING file in the top-level directory. 8 * 9 */ 10 11#include "qemu/osdep.h" 12#include "cpu.h" 13#include "cpu-qom.h" 14#include "internals.h" 15#include "arm-powerctl.h" 16#include "qemu/log.h" 17#include "qemu/main-loop.h" 18#include "sysemu/tcg.h" | 1/* 2 * QEMU support -- ARM Power Control specific functions. 3 * 4 * Copyright (c) 2016 Jean-Christophe Dubois 5 * 6 * This work is licensed under the terms of the GNU GPL, version 2 or later. 7 * See the COPYING file in the top-level directory. 8 * 9 */ 10 11#include "qemu/osdep.h" 12#include "cpu.h" 13#include "cpu-qom.h" 14#include "internals.h" 15#include "arm-powerctl.h" 16#include "qemu/log.h" 17#include "qemu/main-loop.h" 18#include "sysemu/tcg.h" |
19#include "target/arm/multiprocessing.h" |
|
19 20#ifndef DEBUG_ARM_POWERCTL 21#define DEBUG_ARM_POWERCTL 0 22#endif 23 24#define DPRINTF(fmt, args...) \ 25 do { \ 26 if (DEBUG_ARM_POWERCTL) { \ --- 294 unchanged lines hidden --- | 20 21#ifndef DEBUG_ARM_POWERCTL 22#define DEBUG_ARM_POWERCTL 0 23#endif 24 25#define DPRINTF(fmt, args...) \ 26 do { \ 27 if (DEBUG_ARM_POWERCTL) { \ --- 294 unchanged lines hidden --- |