imx6_src.c (330724977b10f5b92610817e8b7d1dfed122df87) | imx6_src.c (3d81e8cf0c81b8b63d7d7056c450dd94bfbfd038) |
---|---|
1/* 2 * IMX6 System Reset Controller 3 * 4 * Copyright (c) 2015 Jean-Christophe Dubois <jcd@tribudubois.net> 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 "hw/misc/imx6_src.h" 13#include "migration/vmstate.h" 14#include "qemu/bitops.h" 15#include "qemu/log.h" 16#include "qemu/main-loop.h" 17#include "qemu/module.h" | 1/* 2 * IMX6 System Reset Controller 3 * 4 * Copyright (c) 2015 Jean-Christophe Dubois <jcd@tribudubois.net> 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 "hw/misc/imx6_src.h" 13#include "migration/vmstate.h" 14#include "qemu/bitops.h" 15#include "qemu/log.h" 16#include "qemu/main-loop.h" 17#include "qemu/module.h" |
18#include "arm-powerctl.h" | 18#include "target/arm/arm-powerctl.h" |
19#include "hw/core/cpu.h" 20 21#ifndef DEBUG_IMX6_SRC 22#define DEBUG_IMX6_SRC 0 23#endif 24 25#define DPRINTF(fmt, args...) \ 26 do { \ --- 285 unchanged lines hidden --- | 19#include "hw/core/cpu.h" 20 21#ifndef DEBUG_IMX6_SRC 22#define DEBUG_IMX6_SRC 0 23#endif 24 25#define DPRINTF(fmt, args...) \ 26 do { \ --- 285 unchanged lines hidden --- |