qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: M P <buserror@gmail.com>
To: qemu-devel Developers <qemu-devel@nongnu.org>
Cc: Michel Pollet <buserror@gmail.com>
Subject: Re: [Qemu-devel] [PATCH 00/13] Freescale mxs/imx23 + Olimex Olinuxino support
Date: Fri, 13 Dec 2013 12:53:20 +0000	[thread overview]
Message-ID: <CAMMfpEx2+YTCGfbYGtnq=PNwBwu0aebQXZFkch77BzLmDTfR1w@mail.gmail.com> (raw)
In-Reply-To: <1386770192-19585-1-git-send-email-buserror@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3446 bytes --]

Can someone give me a pointer on how the review (if any) is done for these
patches? I have to say I'm rather amazed at the rate of submission on the
mailing list, and I worried to see these patches buried further and further
down in such a short timescale :-)

Michael



On Wed, Dec 11, 2013 at 1:56 PM, Michel Pollet <buserror@gmail.com> wrote:

> This series adds support for the imx233 SoC, and also adds support for
> emulating
> an Olinux Olinuxino board with a few peripherals, as a test harness.
> The emulation works pretty well, boots linux 3.12 vanilla from an emulated
> SD card,
> has USB bridge support (but no support for USB 1.1 devices like
> mouse+keyboard), RTC
> and quite a few other bits (some of them fairly skeletal)
>
> This series has been in used for quite a few months; it was posted here a
> few month
> back and one of the question was to wether I would stick around to support
> it.
> Perhaps the fact that I reworked it all on trunk and reposted it will help
> answer
> this question.
>
> This patch series is also available on this github branch, in case its'
> more
> convenient to use the inline comment function there.
> https://github.com/buserror-uk/qemu-buserror/commits/dev-imx233
>
>
> Michel Pollet (13):
>   mxs/imx23: Add main header file
>   mxs: Add CONFIG_MXS to the arm-softmmu config
>   mxs/imx23: Add uart driver
>   mxs/imx23: Add DMA driver
>   mxs/imx23: Add the interrupt collector
>   mxs/imx23: Add digctl driver
>   mxs/imx23: Implements the pin mux, GPIOs
>   mxs/imx23: Add SSP/SPI driver
>   mxs/imx23: Add the RTC block
>   mxs/imx23: Add the timers
>   mxs/imx23: Add the USB driver
>   mxs/imx23: Main core instantiation and minor IO blocks
>   mxs/imx23: Adds support for an Olinuxino board
>
>  default-configs/arm-softmmu.mak |   1 +
>  hw/arm/Makefile.objs            |   2 +
>  hw/arm/imx233-olinuxino.c       | 169 +++++++++++++++++
>  hw/arm/imx23_digctl.c           | 110 ++++++++++++
>  hw/arm/imx23_pinctrl.c          | 293 ++++++++++++++++++++++++++++++
>  hw/arm/mxs.c                    | 388
> ++++++++++++++++++++++++++++++++++++++++
>  hw/arm/mxs.h                    | 208 +++++++++++++++++++++
>  hw/char/Makefile.objs           |   1 +
>  hw/char/mxs_uart.c              | 146 +++++++++++++++
>  hw/dma/Makefile.objs            |   1 +
>  hw/dma/mxs_dma.c                | 347 +++++++++++++++++++++++++++++++++++
>  hw/intc/Makefile.objs           |   1 +
>  hw/intc/mxs_icoll.c             | 200 +++++++++++++++++++++
>  hw/ssi/Makefile.objs            |   1 +
>  hw/ssi/mxs_spi.c                | 239 +++++++++++++++++++++++++
>  hw/timer/Makefile.objs          |   1 +
>  hw/timer/mxs_rtc.c              | 147 +++++++++++++++
>  hw/timer/mxs_timrot.c           | 271 ++++++++++++++++++++++++++++
>  hw/usb/Makefile.objs            |   1 +
>  hw/usb/mxs_usb.c                | 254 ++++++++++++++++++++++++++
>  20 files changed, 2781 insertions(+)
>  create mode 100644 hw/arm/imx233-olinuxino.c
>  create mode 100644 hw/arm/imx23_digctl.c
>  create mode 100644 hw/arm/imx23_pinctrl.c
>  create mode 100644 hw/arm/mxs.c
>  create mode 100644 hw/arm/mxs.h
>  create mode 100644 hw/char/mxs_uart.c
>  create mode 100644 hw/dma/mxs_dma.c
>  create mode 100644 hw/intc/mxs_icoll.c
>  create mode 100644 hw/ssi/mxs_spi.c
>  create mode 100644 hw/timer/mxs_rtc.c
>  create mode 100644 hw/timer/mxs_timrot.c
>  create mode 100644 hw/usb/mxs_usb.c
>
> --
> 1.8.5.1
>
>

[-- Attachment #2: Type: text/html, Size: 4136 bytes --]

  parent reply	other threads:[~2013-12-13 12:53 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-11 13:56 [Qemu-devel] [PATCH 00/13] Freescale mxs/imx23 + Olimex Olinuxino support Michel Pollet
2013-12-11 13:56 ` [Qemu-devel] [PATCH 01/13] mxs/imx23: Add main header file Michel Pollet
2013-12-11 13:56 ` [Qemu-devel] [PATCH 02/13] mxs: Add CONFIG_MXS to the arm-softmmu config Michel Pollet
2014-01-06 15:08   ` Peter Maydell
2013-12-11 13:56 ` [Qemu-devel] [PATCH 03/13] mxs/imx23: Add uart driver Michel Pollet
2014-01-06 15:19   ` Peter Maydell
2014-01-11  7:39     ` Peter Crosthwaite
2013-12-11 13:56 ` [Qemu-devel] [PATCH 04/13] mxs/imx23: Add DMA driver Michel Pollet
2014-01-06 15:35   ` Peter Maydell
2014-01-10  0:52     ` Peter Crosthwaite
2014-01-10  0:54       ` Peter Crosthwaite
2014-01-10 10:55       ` Peter Maydell
2013-12-11 13:56 ` [Qemu-devel] [PATCH 05/13] mxs/imx23: Add the interrupt collector Michel Pollet
2014-01-06 15:41   ` Peter Maydell
2014-01-11  8:29   ` Peter Crosthwaite
2013-12-11 13:56 ` [Qemu-devel] [PATCH 06/13] mxs/imx23: Add digctl driver Michel Pollet
2014-01-06 15:46   ` Peter Maydell
2014-01-08 18:39     ` M P
2014-01-08 18:55       ` Peter Maydell
2014-01-11  8:44         ` Peter Crosthwaite
2014-01-11  8:39   ` Peter Crosthwaite
2013-12-11 13:56 ` [Qemu-devel] [PATCH 07/13] mxs/imx23: Implements the pin mux, GPIOs Michel Pollet
2014-01-06 15:52   ` Peter Maydell
2014-01-08 18:16     ` M P
2013-12-11 13:56 ` [Qemu-devel] [PATCH 08/13] mxs/imx23: Add SSP/SPI driver Michel Pollet
2014-01-11  9:08   ` Peter Crosthwaite
2013-12-11 13:56 ` [Qemu-devel] [PATCH 09/13] mxs/imx23: Add the RTC block Michel Pollet
2014-01-11  9:16   ` Peter Crosthwaite
2013-12-11 13:56 ` [Qemu-devel] [PATCH 10/13] mxs/imx23: Add the timers Michel Pollet
2013-12-11 13:56 ` [Qemu-devel] [PATCH 11/13] mxs/imx23: Add the USB driver Michel Pollet
2014-01-11  9:57   ` Peter Crosthwaite
2013-12-11 13:56 ` [Qemu-devel] [PATCH 12/13] mxs/imx23: Main core instantiation and minor IO blocks Michel Pollet
2013-12-11 13:56 ` [Qemu-devel] [PATCH 13/13] mxs/imx23: Adds support for an Olinuxino board Michel Pollet
2013-12-13 12:53 ` M P [this message]
2013-12-13 13:29   ` [Qemu-devel] [PATCH 00/13] Freescale mxs/imx23 + Olimex Olinuxino support Peter Maydell
2013-12-13 13:45     ` M P

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='CAMMfpEx2+YTCGfbYGtnq=PNwBwu0aebQXZFkch77BzLmDTfR1w@mail.gmail.com' \
    --to=buserror@gmail.com \
    --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).