mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net> Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Message-id: b1d6f990229b2608bbaba24f4ff359571c0b07da.1437080501.git.jcd@tribudubois.net Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
26 lines
566 B
C
26 lines
566 B
C
/*
|
|
* i.MX31 emulation
|
|
*
|
|
* Copyright (C) 2012 Peter Chubb
|
|
* NICTA
|
|
*
|
|
* This code is released under the GPL, version 2.0 or later
|
|
* See the file `../COPYING' for details.
|
|
*/
|
|
|
|
#ifndef IMX_H
|
|
#define IMX_H
|
|
|
|
#include "hw/misc/imx_ccm.h"
|
|
|
|
void imx_serial_create(int uart, const hwaddr addr, qemu_irq irq);
|
|
|
|
void imx_timerp_create(const hwaddr addr,
|
|
qemu_irq irq,
|
|
DeviceState *ccm);
|
|
void imx_timerg_create(const hwaddr addr,
|
|
qemu_irq irq,
|
|
DeviceState *ccm);
|
|
|
|
|
|
#endif /* IMX_H */
|