From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48522) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z7736-0007zX-T1 for qemu-devel@nongnu.org; Mon, 22 Jun 2015 15:06:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z7731-0003qG-JO for qemu-devel@nongnu.org; Mon, 22 Jun 2015 15:06:28 -0400 Received: from zose-mta02.web4all.fr ([185.49.20.43]:55772) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z7731-0003oq-D7 for qemu-devel@nongnu.org; Mon, 22 Jun 2015 15:06:23 -0400 Received: from localhost (localhost [127.0.0.1]) by zose-mta02.web4all.fr (Postfix) with ESMTP id 717B140086 for ; Mon, 22 Jun 2015 21:06:20 +0200 (CEST) From: Jean-Christophe Dubois Date: Mon, 22 Jun 2015 21:06:11 +0200 Message-Id: Subject: [Qemu-devel] [PATCH v7 0/4] i.MX: Add i.MX25 support through the 3DS evaluation board. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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 * booting the Xvisor hypervisor. Jean-Christophe Dubois (4): i.MX: Add FEC Ethernet Emulator. i.MX: Add I2C contoller emulator i.MX: Add i.MX25 3DS evaluation board support i.MX: Add qtest support for I2C device emulator default-configs/arm-softmmu.mak | 3 + hw/arm/Makefile.objs | 1 + hw/arm/imx25_3ds.c | 273 +++++++++++++ hw/i2c/Makefile.objs | 1 + hw/i2c/imx_i2c.c | 361 ++++++++++++++++++ hw/i2c/imx_i2c_regs.h | 63 +++ hw/net/Makefile.objs | 1 + hw/net/imx_fec.c | 820 ++++++++++++++++++++++++++++++++++++++++ include/hw/arm/imx.h | 1 + tests/Makefile | 3 + tests/ds1338-test.c | 75 ++++ tests/libqos/i2c-imx.c | 209 ++++++++++ tests/libqos/i2c.h | 3 + 13 files changed, 1814 insertions(+) create mode 100644 hw/arm/imx25_3ds.c create mode 100644 hw/i2c/imx_i2c.c create mode 100644 hw/i2c/imx_i2c_regs.h create mode 100644 hw/net/imx_fec.c create mode 100644 tests/ds1338-test.c create mode 100644 tests/libqos/i2c-imx.c -- 2.1.4