imx_ccm.c (8ef94f0bc9167f246b41cb1188bf80dcd84b49fe) | imx_ccm.c (03dd024ff57733a55cd2e455f361d053c81b1b29) |
---|---|
1/* 2 * IMX31 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 * This is an abstract base class used to get a common interface to 11 * retrieve the CCM frequencies from the various i.MX SOC. 12 */ 13 14#include "qemu/osdep.h" 15#include "hw/misc/imx_ccm.h" | 1/* 2 * IMX31 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 * This is an abstract base class used to get a common interface to 11 * retrieve the CCM frequencies from the various i.MX SOC. 12 */ 13 14#include "qemu/osdep.h" 15#include "hw/misc/imx_ccm.h" |
16#include "qemu/log.h" |
|
16 17#ifndef DEBUG_IMX_CCM 18#define DEBUG_IMX_CCM 0 19#endif 20 21#define DPRINTF(fmt, args...) \ 22 do { \ 23 if (DEBUG_IMX_CCM) { \ --- 62 unchanged lines hidden --- | 17 18#ifndef DEBUG_IMX_CCM 19#define DEBUG_IMX_CCM 0 20#endif 21 22#define DPRINTF(fmt, args...) \ 23 do { \ 24 if (DEBUG_IMX_CCM) { \ --- 62 unchanged lines hidden --- |