qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 0/9] Add i.MX6 (Single/Dual/Quad) support


From: Jean-Christophe DUBOIS
Subject: Re: [Qemu-devel] [PATCH v2 0/9] Add i.MX6 (Single/Dual/Quad) support
Date: Tue, 1 Mar 2016 20:18:56 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1

Peter,

Can I merge the 2 i.MX series as one depend on the other.

Thanks

JC

Le 28/02/2016 21:27, Jean-Christophe DUBOIS a écrit :
Peter,

Are you OK if I merge the 2 series (i.MX6 and SPI for i.MX6) into a single series?

Thanks.

JC

Le 08/02/2016 23:08, Jean-Christophe Dubois a écrit :
This patch series adds support for the Freescale i.MX6 processor.

For now we only support the following devices:
* up to 4 Cortex A9 cores
* A9 MPCORE (SCU, GIC, TWD)
* 5 i.MX UARTs
* 2 EPIT timers
* 1 GPT timer
* 7 GPIO controllers
* 6 SDHC controllers
* 1 CCM device
* 1 SRC device
* 3 I2C devices
* various ROM/RAM areas.

This also adds the sabrelite board as a an actual platform for i.MX6.

This series was tested by booting a 4.4 linux kernel (using the
imx_v6_v7_defconfig file as kernel configuration).

Note1: as sabrelite uses uart2 as console, you have to redirect the second
QEMU serial port to stdout.
qemu-system-arm -M sabrelite -display none ... -serial null -serial stdio

Note2: as the SPI controller is not yet supported in QEMU for i.MX you need
to disable SPI controllers in Linux DTS tree. Otherwise Linux would hang
during the boot waiting for a SPI device to respond.

Note3: You need to disable the GPIO section related to physical push buttons
in the Linux DTS tree in order to avoid excecive interrupt triggering on
GPIO devices for non existant buttons.

Jean-Christophe Dubois (9):
   i.MX: Allow GPT timer to rollover.
   i.MX: Rename CCM NOCLK to CLK_NONE for naming consistency.
   i.MX: Remove CCM useless clock computation handling.
   i.MX: Add the CLK_IPG_HIGH clock
   i.MX: Add i.MX6 CCM and ANALOG device.
   i.MX: Add i.MX6 System Reset Controller device.
   i.MX: Add i.MX6 SOC implementation.
   i.MX: Add sabrelite i.MX6 emulation.
   i.MX: Add missing descriptions in devices.

  default-configs/arm-softmmu.mak |   1 +
  hw/arm/Makefile.objs            |   1 +
  hw/arm/fsl-imx25.c              |   1 +
  hw/arm/fsl-imx31.c              |   1 +
  hw/arm/fsl-imx6.c               | 407 +++++++++++++++++++++
  hw/arm/sabrelite.c              |  93 +++++
  hw/i2c/imx_i2c.c                |   1 +
  hw/misc/Makefile.objs           |   2 +
  hw/misc/imx25_ccm.c             |  29 +-
  hw/misc/imx31_ccm.c             |  35 +-
hw/misc/imx6_ccm.c | 773 ++++++++++++++++++++++++++++++++++++++++
  hw/misc/imx6_src.c              | 353 ++++++++++++++++++
  hw/net/imx_fec.c                |   1 +
  hw/timer/imx_epit.c             |   8 +-
  hw/timer/imx_gpt.c              |  43 +--
  include/hw/arm/fsl-imx6.h       | 447 +++++++++++++++++++++++
  include/hw/misc/imx6_ccm.h      | 197 ++++++++++
  include/hw/misc/imx6_src.h      |  73 ++++
  include/hw/misc/imx_ccm.h       |  10 +-
  19 files changed, 2384 insertions(+), 92 deletions(-)
  create mode 100644 hw/arm/fsl-imx6.c
  create mode 100644 hw/arm/sabrelite.c
  create mode 100644 hw/misc/imx6_ccm.c
  create mode 100644 hw/misc/imx6_src.c
  create mode 100644 include/hw/arm/fsl-imx6.h
  create mode 100644 include/hw/misc/imx6_ccm.h
  create mode 100644 include/hw/misc/imx6_src.h








reply via email to

[Prev in Thread] Current Thread [Next in Thread]