imx25_ccm.c (d1f8764099022bc1173f2413331b26d4ff609a0c) imx25_ccm.c (03dd024ff57733a55cd2e455f361d053c81b1b29)
1/*
2 * IMX25 Clock Control Module
3 *
4 * Copyright (C) 2012 NICTA
5 * Updated by Jean-Christophe Dubois <jcd@tribudubois.net>
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 *
10 * To get the timer frequencies right, we need to emulate at least part of
11 * the CCM.
12 */
13
14#include "qemu/osdep.h"
15#include "hw/misc/imx25_ccm.h"
1/*
2 * IMX25 Clock Control Module
3 *
4 * Copyright (C) 2012 NICTA
5 * Updated by Jean-Christophe Dubois <jcd@tribudubois.net>
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 *
10 * To get the timer frequencies right, we need to emulate at least part of
11 * the CCM.
12 */
13
14#include "qemu/osdep.h"
15#include "hw/misc/imx25_ccm.h"
16#include "qemu/log.h"
16
17#ifndef DEBUG_IMX25_CCM
18#define DEBUG_IMX25_CCM 0
19#endif
20
21#define DPRINTF(fmt, args...) \
22 do { \
23 if (DEBUG_IMX25_CCM) { \

--- 294 unchanged lines hidden ---
17
18#ifndef DEBUG_IMX25_CCM
19#define DEBUG_IMX25_CCM 0
20#endif
21
22#define DPRINTF(fmt, args...) \
23 do { \
24 if (DEBUG_IMX25_CCM) { \

--- 294 unchanged lines hidden ---