[PATCH v5 0/3] hw/net/imx_fec: improve the imx fec emulator

Jean-Christophe Dubois posted 3 patches 3 years, 11 months ago
Test docker-mingw@fedora passed
Test checkpatch passed
Test asan passed
Test docker-quick@centos7 passed
Test FreeBSD passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/cover.1591272275.git.jcd@tribudubois.net
Maintainers: Peter Chubb <peter.chubb@nicta.com.au>, Peter Maydell <peter.maydell@linaro.org>, Jason Wang <jasowang@redhat.com>
hw/net/imx_fec.c     | 197 +++++++++++++++++++++----------------------
hw/net/trace-events  |  18 ++++
include/hw/net/mii.h |   4 +
3 files changed, 119 insertions(+), 100 deletions(-)
[PATCH v5 0/3] hw/net/imx_fec: improve the imx fec emulator
Posted by Jean-Christophe Dubois 3 years, 11 months ago
This series of path makes various improvement to the i.MX FEC ethernet
emulator.
  
 * PATCH 1: Convert the Ethernet emulator debug output to trace event
 * PATCH 2: Allow Ethernet PHY to be at any position on the MDIO bus
 * PATCH 3: Improve the i.MX FEC related PHY emulator by using standard
            header symbols instead of hardcoded values.

Jean-Christophe Dubois (3):
  hw/net/imx_fec: Convert debug fprintf() to trace events
  hw/net/imx_fec: Allow phy not to be the first device on the mii bus.
  hw/net/imx_fec: improve PHY implementation.

 hw/net/imx_fec.c     | 197 +++++++++++++++++++++----------------------
 hw/net/trace-events  |  18 ++++
 include/hw/net/mii.h |   4 +
 3 files changed, 119 insertions(+), 100 deletions(-)

-- 
2.25.1


Re: [PATCH v5 0/3] hw/net/imx_fec: improve the imx fec emulator
Posted by Peter Maydell 3 years, 10 months ago
On Thu, 4 Jun 2020 at 13:39, Jean-Christophe Dubois <jcd@tribudubois.net> wrote:
>
> This series of path makes various improvement to the i.MX FEC ethernet
> emulator.
>
>  * PATCH 1: Convert the Ethernet emulator debug output to trace event
>  * PATCH 2: Allow Ethernet PHY to be at any position on the MDIO bus
>  * PATCH 3: Improve the i.MX FEC related PHY emulator by using standard
>             header symbols instead of hardcoded values.
>
> Jean-Christophe Dubois (3):
>   hw/net/imx_fec: Convert debug fprintf() to trace events
>   hw/net/imx_fec: Allow phy not to be the first device on the mii bus.
>   hw/net/imx_fec: improve PHY implementation.

Hi; I've applied patch 1 to target-arm.next and left review comments
for patches 2 and 3.

thanks
-- PMM