qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v8 00/11] i.MX: Add i.MX25 support through the 3DS evaluation board.
@ 2015-06-29 20:11 Jean-Christophe Dubois
  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
                   ` (10 more replies)
  0 siblings, 11 replies; 17+ messages in thread
From: Jean-Christophe Dubois @ 2015-06-29 20:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: Jean-Christophe Dubois

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

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2015-06-30  7:29 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-29 20:11 [Qemu-devel] [PATCH v8 00/11] i.MX: Add i.MX25 support through the 3DS evaluation board Jean-Christophe Dubois
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

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).