[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v8 00/11] i.MX: Add i.MX25 support through the 3DS e
From: |
Jean-Christophe Dubois |
Subject: |
[Qemu-devel] [PATCH v8 00/11] i.MX: Add i.MX25 support through the 3DS evaluation board. |
Date: |
Mon, 29 Jun 2015 22:11:46 +0200 |
This series of patches add the support for the i.MX25 processor through the
Freescale 3DS evaluation board.
For now a limited set of devices are supported.
* GPT timers (from i.MX31)
* EPIT timers (from i.MX31)
* Serial ports (from i.MX31)
* Ethernet FEC port
* I2C controller
This was tested by:
* booting a minimal linux system on the i.MX25_3DS platform
* booting the Xvisor hypervisor on the i.MX25_3DS platform
* booting a minimal linux system on the KZM platform
Jean-Christophe Dubois (11):
i.MX: Split the i.MX serial driver into a haeder file and a source
file
i.MX: Split the i.MX emulator into a header file and a source file
i.MX: Split the i.MX CCM emulator into a header file and a source
file.
i.MX: Split the i.MX EPIT emulator into a header file and a source
file.
i.MX: Split the i.MX GPT emulator into a header file and a source
file.
kzm: Use modified i.MX emulators.
i.MX: Add FEC Ethernet Emulator
i.MX: Add I2C controller emulator
i.MX25: Add the i.MX25 SOC support
i.MX25: Add support for the i.MX25 PDK 3DS evaluation board
i.MX: Add qtest support for I2C device emulator.
default-configs/arm-softmmu.mak | 4 +
hw/arm/Makefile.objs | 1 +
hw/arm/fsl-imx25.c | 304 +++++++++++++++++
hw/arm/imx25_3ds.c | 217 ++++++++++++
hw/arm/kzm.c | 86 ++---
hw/char/imx_serial.c | 176 +++-------
hw/i2c/Makefile.objs | 1 +
hw/i2c/imx_i2c.c | 339 +++++++++++++++++++
hw/intc/imx_avic.c | 56 +--
hw/misc/imx_ccm.c | 75 +---
hw/net/Makefile.objs | 1 +
hw/net/imx_fec.c | 733 ++++++++++++++++++++++++++++++++++++++++
hw/timer/imx_epit.c | 65 +---
hw/timer/imx_gpt.c | 86 +----
include/hw/arm/fsl-imx25.h | 52 +++
include/hw/arm/imx.h | 34 --
include/hw/char/imx_serial.h | 104 ++++++
include/hw/i2c/imx_i2c.h | 85 +++++
include/hw/intc/imx_avic.h | 56 +++
include/hw/misc/imx_ccm.h | 91 +++++
include/hw/net/imx_fec.h | 115 +++++++
include/hw/timer/imx_epit.h | 83 +++++
include/hw/timer/imx_gpt.h | 111 ++++++
tests/Makefile | 3 +
tests/ds1338-test.c | 75 ++++
tests/libqos/i2c-imx.c | 209 ++++++++++++
tests/libqos/i2c.h | 3 +
27 files changed, 2707 insertions(+), 458 deletions(-)
create mode 100644 hw/arm/fsl-imx25.c
create mode 100644 hw/arm/imx25_3ds.c
create mode 100644 hw/i2c/imx_i2c.c
create mode 100644 hw/net/imx_fec.c
create mode 100644 include/hw/arm/fsl-imx25.h
delete mode 100644 include/hw/arm/imx.h
create mode 100644 include/hw/char/imx_serial.h
create mode 100644 include/hw/i2c/imx_i2c.h
create mode 100644 include/hw/intc/imx_avic.h
create mode 100644 include/hw/misc/imx_ccm.h
create mode 100644 include/hw/net/imx_fec.h
create mode 100644 include/hw/timer/imx_epit.h
create mode 100644 include/hw/timer/imx_gpt.h
create mode 100644 tests/ds1338-test.c
create mode 100644 tests/libqos/i2c-imx.c
--
2.1.4
- [Qemu-devel] [PATCH v8 00/11] i.MX: Add i.MX25 support through the 3DS evaluation board.,
Jean-Christophe Dubois <=
- [Qemu-devel] [PATCH v8 01/11] i.MX: Split the i.MX serial driver into a header file and a source file, Jean-Christophe Dubois, 2015/06/29
- [Qemu-devel] [PATCH v8 02/11] i.MX: Split the i.MX AVIC emulator into a header file and a source file, Jean-Christophe Dubois, 2015/06/29
- [Qemu-devel] [PATCH v8 03/11] i.MX: Split the i.MX CCM emulator into a header file and a source file., Jean-Christophe Dubois, 2015/06/29
- [Qemu-devel] [PATCH v8 04/11] i.MX: Split the i.MX EPIT emulator into a header file and a source file., Jean-Christophe Dubois, 2015/06/29
- [Qemu-devel] [PATCH v8 06/11] kzm: Use modified i.MX emulators., Jean-Christophe Dubois, 2015/06/29
- [Qemu-devel] [PATCH v8 05/11] i.MX: Split the i.MX GPT emulator into a header file and a source file., Jean-Christophe Dubois, 2015/06/29