All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: Jean-Christophe Dubois <jcd@tribudubois.net>,
	qemu-devel@nongnu.org, peter.maydell@linaro.org
Subject: Re: [Qemu-devel] [PATCH v5 00/10] Add Ethernet device for i.MX6 SOC
Date: Mon, 30 May 2016 10:19:56 +0800	[thread overview]
Message-ID: <574BA34C.8090007@redhat.com> (raw)
In-Reply-To: <cover.1463816701.git.jcd@tribudubois.net>



On 2016年05月21日 16:01, Jean-Christophe Dubois wrote:
> This patch series adds Gb ENET Ethernet device to the i.MX6 SOC.
>
> The ENET device is an evolution of the FEC device present on the i.MX25 SOC
> and is backward compatible with it.
>
> Therefore the ENET support has been added to the actual Qemu FEC device (
> rather than adding a new device).
>
> The Patch has been tested by:
>   * Booting linux on i.MX25 PDK board emulation and accessing internet
>   * Booting linux on i.MX6 Sabrelite board emulation and accessing internet
>
> Jean-Christophe Dubois (10):
>    net: improve UDP/TCP checksum computation.
>    net: handle optional VLAN header in checksum computation.
>    i.MX: Fix FEC code for MDIO operation selection
>    i.MX: Fix FEC code for MDIO address selection
>    i.MX: Fix FEC code for ECR register reset value.
>    i.MX: reset TX/RX descriptors when FEC is disabled.
>    i.MX: Rename i.MX FEC defines to ENET_XXX
>    i.MX: move FEC device to a register array structure.
>    Add ENET/Gbps Ethernet support to FEC device
>    Add ENET device to i.MX6 SOC.
>
>   hw/arm/fsl-imx25.c        |    1 +
>   hw/arm/fsl-imx6.c         |   17 +
>   hw/net/imx_fec.c          | 1009 ++++++++++++++++++++++++++++++++++-----------
>   include/hw/arm/fsl-imx6.h |    6 +-
>   include/hw/net/imx_fec.h  |  250 ++++++++---
>   net/checksum.c            |  121 ++++--
>   6 files changed, 1077 insertions(+), 327 deletions(-)
>

Want to merge this, but I get:

Applying: net: improve UDP/TCP checksum computation.
Applying: net: handle optional VLAN header in checksum computation.
Applying: i.MX: Fix FEC code for MDIO operation selection
Applying: i.MX: Fix FEC code for MDIO address selection
Applying: i.MX: Fix FEC code for ECR register reset value.
Applying: i.MX: reset TX/RX descriptors when FEC is disabled.
Applying: i.MX: Rename i.MX FEC defines to ENET_XXX
Applying: i.MX: move FEC device to a register array structure.
Applying: Add ENET/Gbps Ethernet support to FEC device
error: patch failed: hw/net/imx_fec.c:24
error: hw/net/imx_fec.c: patch does not apply
Patch failed at 0009 Add ENET/Gbps Ethernet support to FEC device
The copy of the patch that failed is found in: .git/rebase-apply/patch
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".

  parent reply	other threads:[~2016-05-30  2:20 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-21  8:01 [Qemu-devel] [PATCH v5 00/10] Add Ethernet device for i.MX6 SOC Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 01/10] net: improve UDP/TCP checksum computation Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 02/10] net: handle optional VLAN header in " Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 03/10] i.MX: Fix FEC code for MDIO operation selection Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 04/10] i.MX: Fix FEC code for MDIO address selection Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 05/10] i.MX: Fix FEC code for ECR register reset value Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 06/10] i.MX: reset TX/RX descriptors when FEC is disabled Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 07/10] i.MX: Rename i.MX FEC defines to ENET_XXX Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 08/10] i.MX: move FEC device to a register array structure Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 09/10] Add ENET/Gbps Ethernet support to FEC device Jean-Christophe Dubois
2016-05-21  8:01 ` [Qemu-devel] [PATCH v5 10/10] Add ENET device to i.MX6 SOC Jean-Christophe Dubois
2016-05-30  2:19 ` Jason Wang [this message]
2016-05-30  6:04   ` [Qemu-devel] [PATCH v5 00/10] Add Ethernet device for " Jean-Christophe DUBOIS
2016-05-30  6:10     ` Jason Wang
2016-05-30 17:56       ` Jean-Christophe DUBOIS

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=574BA34C.8090007@redhat.com \
    --to=jasowang@redhat.com \
    --cc=jcd@tribudubois.net \
    --cc=peter.maydell@linaro.org \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.