imx6_src.c (e4f70d635863cfc3e3fa7d9a6e37b569ae94d82f) imx6_src.c (03dd024ff57733a55cd2e455f361d053c81b1b29)
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 "sysemu/sysemu.h"
14#include "qemu/bitops.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 "sysemu/sysemu.h"
14#include "qemu/bitops.h"
15#include "qemu/log.h"
15#include "arm-powerctl.h"
16
17#ifndef DEBUG_IMX6_SRC
18#define DEBUG_IMX6_SRC 0
19#endif
20
21#define DPRINTF(fmt, args...) \
22 do { \

--- 242 unchanged lines hidden ---
16#include "arm-powerctl.h"
17
18#ifndef DEBUG_IMX6_SRC
19#define DEBUG_IMX6_SRC 0
20#endif
21
22#define DPRINTF(fmt, args...) \
23 do { \

--- 242 unchanged lines hidden ---