qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jean-Christophe Dubois <jcd@tribudubois.net>
To: qemu-devel@nongnu.org
Cc: Jean-Christophe Dubois <jcd@tribudubois.net>
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	[thread overview]
Message-ID: <cover.1435595414.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

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

             reply	other threads:[~2015-06-29 20:12 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-29 20:11 Jean-Christophe Dubois [this message]
2015-06-29 20:11 ` [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-30  7:04   ` Peter Crosthwaite
2015-06-29 20:11 ` [Qemu-devel] [PATCH v8 02/11] i.MX: Split the i.MX AVIC emulator " Jean-Christophe Dubois
2015-06-30  7:05   ` Peter Crosthwaite
2015-06-29 20:11 ` [Qemu-devel] [PATCH v8 03/11] i.MX: Split the i.MX CCM " Jean-Christophe Dubois
2015-06-29 20:11 ` [Qemu-devel] [PATCH v8 04/11] i.MX: Split the i.MX EPIT " Jean-Christophe Dubois
2015-06-30  7:12   ` Peter Crosthwaite
2015-06-29 20:12 ` [Qemu-devel] [PATCH v8 05/11] i.MX: Split the i.MX GPT " Jean-Christophe Dubois
2015-06-29 20:12 ` [Qemu-devel] [PATCH v8 06/11] kzm: Use modified i.MX emulators Jean-Christophe Dubois
2015-06-30  7:12   ` Peter Crosthwaite
2015-06-29 20:12 ` [Qemu-devel] [PATCH v8 07/11] i.MX: Add FEC Ethernet Emulator Jean-Christophe Dubois
2015-06-29 20:12 ` [Qemu-devel] [PATCH v8 08/11] i.MX: Add I2C controller emulator Jean-Christophe Dubois
2015-06-29 20:12 ` [Qemu-devel] [PATCH v8 09/11] i.MX25: Add the i.MX25 SOC support Jean-Christophe Dubois
2015-06-30  7:29   ` Peter Crosthwaite
2015-06-29 20:12 ` [Qemu-devel] [PATCH v8 10/11] i.MX25: Add support for the i.MX25 PDK 3DS Jean-Christophe Dubois
2015-06-29 20:12 ` [Qemu-devel] [PATCH v8 11/11] i.MX: Add qtest support for I2C device emulator 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.1435595414.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).