Files
Yaya48 cf256aa081 Import QEMU upstream snapshot d2e570c
Upstream: https://gitlab.com/qemu-project/qemu.git

Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
2026-08-31 02:15:30 +02:00

31 lines
562 B
C

/*
* Copyright (c) 2025 Bernhard Beschow <[email protected]>
*
* i.MX 8M Plus CCM IP block emulation code
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef IMX8MP_CCM_H
#define IMX8MP_CCM_H
#include "hw/misc/imx_ccm.h"
#include "qom/object.h"
enum IMX8MPCCMRegisters {
CCM_MAX = 0xc6fc / sizeof(uint32_t) + 1,
};
#define TYPE_IMX8MP_CCM "imx8mp.ccm"
OBJECT_DECLARE_SIMPLE_TYPE(IMX8MPCCMState, IMX8MP_CCM)
struct IMX8MPCCMState {
IMXCCMState parent_obj;
MemoryRegion iomem;
uint32_t ccm[CCM_MAX];
};
#endif /* IMX8MP_CCM_H */