[Qemu-devel] [PATCH 0/3] i.MX: Add the i.MX6UL SOC and a reference board.

Jean-Christophe Dubois posted 3 patches 7 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/cover.1530395710.git.jcd@tribudubois.net
Test checkpatch passed
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test s390x passed
There is a newer version of this series
default-configs/arm-softmmu.mak |   1 +
hw/arm/Makefile.objs            |   1 +
hw/arm/fsl-imx6ul.c             | 649 +++++++++++++++++++++++
hw/arm/mcimx6ul-evk.c           |  86 ++++
hw/misc/Makefile.objs           |   1 +
hw/misc/imx6ul_ccm.c            | 887 ++++++++++++++++++++++++++++++++
include/hw/arm/fsl-imx6ul.h     | 339 ++++++++++++
include/hw/misc/imx6ul_ccm.h    | 228 ++++++++
8 files changed, 2192 insertions(+)
create mode 100644 hw/arm/fsl-imx6ul.c
create mode 100644 hw/arm/mcimx6ul-evk.c
create mode 100644 hw/misc/imx6ul_ccm.c
create mode 100644 include/hw/arm/fsl-imx6ul.h
create mode 100644 include/hw/misc/imx6ul_ccm.h
[Qemu-devel] [PATCH 0/3] i.MX: Add the i.MX6UL SOC and a reference board.
Posted by Jean-Christophe Dubois 7 years, 2 months ago
This series adds the i.MX6UL SOC from NXP/Freescale and the reference
evaluation board.

This series as tested by booting linux 4.18 (built using imx_v6_v7_defconfig)
on the emulated board (with the appropriate device tree).

Jean-Christophe Dubois (3):
  i.MX6UL: Add i.MX6UL specific CCM device
  i.MX6UL: Add i.MX6UL SOC
  i.MX6UL: Add Freescale i.MX6 UltraLite 14x14 EVK Board

 default-configs/arm-softmmu.mak |   1 +
 hw/arm/Makefile.objs            |   1 +
 hw/arm/fsl-imx6ul.c             | 649 +++++++++++++++++++++++
 hw/arm/mcimx6ul-evk.c           |  86 ++++
 hw/misc/Makefile.objs           |   1 +
 hw/misc/imx6ul_ccm.c            | 887 ++++++++++++++++++++++++++++++++
 include/hw/arm/fsl-imx6ul.h     | 339 ++++++++++++
 include/hw/misc/imx6ul_ccm.h    | 228 ++++++++
 8 files changed, 2192 insertions(+)
 create mode 100644 hw/arm/fsl-imx6ul.c
 create mode 100644 hw/arm/mcimx6ul-evk.c
 create mode 100644 hw/misc/imx6ul_ccm.c
 create mode 100644 include/hw/arm/fsl-imx6ul.h
 create mode 100644 include/hw/misc/imx6ul_ccm.h

-- 
2.17.1


Re: [Qemu-devel] [PATCH 0/3] i.MX: Add the i.MX6UL SOC and a reference board.
Posted by Peter Maydell 7 years, 2 months ago
On 30 June 2018 at 22:57, Jean-Christophe Dubois <jcd@tribudubois.net> wrote:
> This series adds the i.MX6UL SOC from NXP/Freescale and the reference
> evaluation board.
>
> This series as tested by booting linux 4.18 (built using imx_v6_v7_defconfig)
> on the emulated board (with the appropriate device tree).
>
> Jean-Christophe Dubois (3):
>   i.MX6UL: Add i.MX6UL specific CCM device
>   i.MX6UL: Add i.MX6UL SOC
>   i.MX6UL: Add Freescale i.MX6 UltraLite 14x14 EVK Board

Hi; thanks for this patchset. I've put it on my to-review queue,
but since it's too late to get in for softfreeze for 3.0 I'm
planning to prioritize release-related work so it may take
me a little while to get back to it.

thanks
-- PMM

Re: [Qemu-devel] [PATCH 0/3] i.MX: Add the i.MX6UL SOC and a reference board.
Posted by Jean-Christophe DUBOIS 7 years, 2 months ago
Le 01/07/2018 à 12:44, Peter Maydell a écrit :
> On 30 June 2018 at 22:57, Jean-Christophe Dubois <jcd@tribudubois.net> wrote:
>> This series adds the i.MX6UL SOC from NXP/Freescale and the reference
>> evaluation board.
>>
>> This series as tested by booting linux 4.18 (built using imx_v6_v7_defconfig)
>> on the emulated board (with the appropriate device tree).
>>
>> Jean-Christophe Dubois (3):
>>    i.MX6UL: Add i.MX6UL specific CCM device
>>    i.MX6UL: Add i.MX6UL SOC
>>    i.MX6UL: Add Freescale i.MX6 UltraLite 14x14 EVK Board
> Hi; thanks for this patchset. I've put it on my to-review queue,
> but since it's too late to get in for softfreeze for 3.0 I'm
> planning to prioritize release-related work so it may take
> me a little while to get back to it.
>
> thanks
> -- PMM
>
OK, take your time.

Also for the record, I believe the Qemu FEC/ENET device doesn't work 
with linux 4.18 on the i.MX6Q/DL sabrelite emulation.

JC