From: Jean-Christophe Dubois <jcd@tribudubois.net>
To: qemu-devel@nongnu.org
Cc: Jean-Christophe Dubois <jcd@tribudubois.net>
Subject: [Qemu-devel] [PATCH v10 00/21] i.MX: Add i.MX25 support through the 3DS evaluation board.
Date: Mon, 6 Jul 2015 02:04:24 +0200 [thread overview]
Message-ID: <cover.1436138839.git.jcd@tribudubois.net> (raw)
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
In the process the KZM platform was split into an i.MX31 SOC
and a plateform part.
Also, I2C devices was added to the i.MX31 SOC.
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 (21):
i.MX: Split UART emulator in a header file and a source file
i.MX: Move serial initialization to init/realize of DeviceClass.
i.MX:Fix Coding style for UART emulator.
i.MX: Split AVIC emulator in a header file and a source file
i.MX: Fix Coding style for AVIC emulator.
i.MX: Split CCM emulator in a header file and a source file
i.MX: Fix Coding style for CCM emulator
i.MX: Split EPIT emulator in a header file and a source file
i.MX: Move Qdev EPIT construction helper as inline function.
i.MX: Fix Coding style for EPIT emulator
i.MX: Split GPT emulator in a header file and a source file
i.MX: Move Qdev GPT construction helper as inline function.
i.MX: Fix Coding style for GPT emulator
i.MX: Add SOC support for i.MX31
i.MX: KZM now uses the standalone i.MX31 SOC support
i.MX: Add I2C controller emulator
i.MX: Add FEC Ethernet Emulator
i.MX: Add SOC support for i.MX25
i.MX: Add the i.MX25 3DS PDK plateform
i.MX: Add qtest support for I2C device emulator.
i.MX: Adding i2C devices to i.MX31 SOC
default-configs/arm-softmmu.mak | 6 +
hw/arm/Makefile.objs | 4 +-
hw/arm/fsl-imx25.c | 272 +++++++++++++++
hw/arm/fsl-imx31.c | 249 ++++++++++++++
hw/arm/imx25_3ds.c | 170 ++++++++++
hw/arm/kzm.c | 212 ++++++------
hw/char/imx_serial.c | 182 +++--------
hw/i2c/Makefile.objs | 1 +
hw/i2c/imx_i2c.c | 339 +++++++++++++++++++
hw/intc/imx_avic.c | 56 +---
hw/misc/imx_ccm.c | 81 +----
hw/net/Makefile.objs | 1 +
hw/net/imx_fec.c | 709 ++++++++++++++++++++++++++++++++++++++++
hw/timer/imx_epit.c | 75 +----
hw/timer/imx_gpt.c | 96 +-----
include/hw/arm/fsl-imx25.h | 234 +++++++++++++
include/hw/arm/fsl-imx31.h | 111 +++++++
include/hw/arm/imx.h | 34 --
include/hw/char/imx_serial.h | 102 ++++++
include/hw/i2c/imx_i2c.h | 85 +++++
include/hw/intc/imx_avic.h | 55 ++++
include/hw/misc/imx_ccm.h | 91 ++++++
include/hw/net/imx_fec.h | 113 +++++++
include/hw/timer/imx_epit.h | 79 +++++
include/hw/timer/imx_gpt.h | 107 ++++++
tests/Makefile | 3 +
tests/ds1338-test.c | 75 +++++
tests/libqos/i2c-imx.c | 209 ++++++++++++
tests/libqos/i2c.h | 3 +
29 files changed, 3197 insertions(+), 557 deletions(-)
create mode 100644 hw/arm/fsl-imx25.c
create mode 100644 hw/arm/fsl-imx31.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
create mode 100644 include/hw/arm/fsl-imx31.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
next reply other threads:[~2015-07-06 0:04 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-06 0:04 Jean-Christophe Dubois [this message]
2015-07-06 0:04 ` [Qemu-devel] [PATCH v10 01/21] i.MX: Split UART emulator in a header file and a source file Jean-Christophe Dubois
2015-07-06 0:04 ` [Qemu-devel] [PATCH v10 02/21] i.MX: Move serial initialization to init/realize of DeviceClass Jean-Christophe Dubois
2015-07-06 6:40 ` Peter Crosthwaite
2015-07-06 8:01 ` jcd
2015-07-06 8:44 ` Peter Crosthwaite
2015-07-06 0:04 ` [Qemu-devel] [PATCH v10 03/21] i.MX:Fix Coding style for UART emulator Jean-Christophe Dubois
2015-07-06 0:04 ` [Qemu-devel] [PATCH v10 04/21] i.MX: Split AVIC emulator in a header file and a source file Jean-Christophe Dubois
2015-07-06 0:04 ` [Qemu-devel] [PATCH v10 05/21] i.MX: Fix Coding style for AVIC emulator Jean-Christophe Dubois
2015-07-06 0:04 ` [Qemu-devel] [PATCH v10 06/21] i.MX: Split CCM emulator in a header file and a source file Jean-Christophe Dubois
2015-07-06 0:04 ` [Qemu-devel] [PATCH v10 07/21] i.MX: Fix Coding style for CCM emulator Jean-Christophe Dubois
2015-07-06 0:04 ` [Qemu-devel] [PATCH v10 08/21] i.MX: Split EPIT emulator in a header file and a source file Jean-Christophe Dubois
2015-07-06 6:47 ` Peter Crosthwaite
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 09/21] i.MX: Move Qdev EPIT construction helper as inline function Jean-Christophe Dubois
2015-07-06 6:49 ` Peter Crosthwaite
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 10/21] i.MX: Fix Coding style for EPIT emulator Jean-Christophe Dubois
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 11/21] i.MX: Split GPT emulator in a header file and a source file Jean-Christophe Dubois
2015-07-06 6:51 ` Peter Crosthwaite
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 12/21] i.MX: Move Qdev GPT construction helper as inline function Jean-Christophe Dubois
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 13/21] i.MX: Fix Coding style for GPT emulator Jean-Christophe Dubois
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 14/21] i.MX: Add SOC support for i.MX31 Jean-Christophe Dubois
2015-07-06 7:18 ` Peter Crosthwaite
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 15/21] i.MX: KZM now uses the standalone i.MX31 SOC support Jean-Christophe Dubois
2015-07-06 7:31 ` Peter Crosthwaite
2015-07-08 18:02 ` Jean-Christophe DUBOIS
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 16/21] i.MX: Add I2C controller emulator Jean-Christophe Dubois
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 17/21] i.MX: Add FEC Ethernet Emulator Jean-Christophe Dubois
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 18/21] i.MX: Add SOC support for i.MX25 Jean-Christophe Dubois
2015-07-06 7:42 ` Peter Crosthwaite
2015-07-08 17:58 ` Jean-Christophe DUBOIS
2015-07-08 20:32 ` Peter Crosthwaite
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 19/21] i.MX: Add the i.MX25 3DS PDK plateform Jean-Christophe Dubois
2015-07-06 7:43 ` Peter Crosthwaite
2015-07-08 17:59 ` Jean-Christophe DUBOIS
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 20/21] i.MX: Add qtest support for I2C device emulator Jean-Christophe Dubois
2015-07-06 0:05 ` [Qemu-devel] [PATCH v10 21/21] i.MX: Adding i2C devices to i.MX31 SOC Jean-Christophe Dubois
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1436138839.git.jcd@tribudubois.net \
--to=jcd@tribudubois.net \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).