All of lore.kernel.org
 help / color / mirror / Atom feed
From: Beniamino Galvani <b.galvani@gmail.com>
To: "Andreas Färber" <afaerber@suse.de>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Peter Crosthwaite <peter.crosthwaite@xilinx.com>,
	qemu-devel@nongnu.org, Li Guang <lig.fnst@cn.fujitsu.com>,
	Stefan Hajnoczi <stefanha@gmail.com>
Subject: Re: [Qemu-devel] [PATCH v3 2/2] hw/arm/allwinner-a10: initialize EMAC
Date: Sun, 26 Jan 2014 22:25:26 +0100	[thread overview]
Message-ID: <20140126212525.GA4675@gmail.com> (raw)
In-Reply-To: <52E44C03.7060806@suse.de>

On Sun, Jan 26, 2014 at 12:42:59AM +0100, Andreas Färber wrote:
> Am 20.01.2014 00:25, schrieb Beniamino Galvani:
> > Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
> > ---
> >  hw/arm/allwinner-a10.c         |   16 ++++++++++++++++
> >  hw/arm/cubieboard.c            |    7 +++++++
> >  include/hw/arm/allwinner-a10.h |    3 +++
> >  3 files changed, 26 insertions(+)
> > 
> > diff --git a/hw/arm/allwinner-a10.c b/hw/arm/allwinner-a10.c
> > index 4658e19..416cd49 100644
> > --- a/hw/arm/allwinner-a10.c
> > +++ b/hw/arm/allwinner-a10.c
> > @@ -31,6 +31,13 @@ static void aw_a10_init(Object *obj)
> >  
> >      object_initialize(&s->timer, sizeof(s->timer), TYPE_AW_A10_PIT);
> >      qdev_set_parent_bus(DEVICE(&s->timer), sysbus_get_default());
> > +
> > +    object_initialize(&s->emac, sizeof(s->emac), TYPE_AW_EMAC);
> > +    qdev_set_parent_bus(DEVICE(&s->emac), sysbus_get_default());
> > +    if (nd_table[0].used) {
> > +        qemu_check_nic_model(&nd_table[0], "allwinner_emac");
> 
> Please adopt new-style names with dashes, i.e. "allwinner-emac". Peter
> C.'s comment wrt TYPE_* still applies though.

Ok.

> 
> > +        qdev_set_nic_properties(DEVICE(&s->emac), &nd_table[0]);
> 
> Since you're using DEVICE() twice, you should consider using a local
> variable like you did for sysbusdev below. It's a one-time
> initialization though, so not mandatory.

For readability and also, as suggested by Peter in a previous review,
consistency with nearby code I'd prefer to keep the two casts.

> 
> > +    }
> >  }
> >  
> >  static void aw_a10_realize(DeviceState *dev, Error **errp)
> > @@ -76,6 +83,15 @@ static void aw_a10_realize(DeviceState *dev, Error **errp)
> >      sysbus_connect_irq(sysbusdev, 4, s->irq[67]);
> >      sysbus_connect_irq(sysbusdev, 5, s->irq[68]);
> >  
> > +    object_property_set_bool(OBJECT(&s->emac), true, "realized", &err);
> > +    if (err != NULL) {
> > +        error_propagate(errp, err);
> > +        return;
> > +    }
> > +    sysbusdev = SYS_BUS_DEVICE(&s->emac);
> > +    sysbus_mmio_map(sysbusdev, 0, AW_A10_EMAC_BASE);
> > +    sysbus_connect_irq(sysbusdev, 0, s->irq[55]);
> > +
> >      serial_mm_init(get_system_memory(), AW_A10_UART0_REG_BASE, 2, s->irq[1],
> >                     115200, serial_hds[0], DEVICE_NATIVE_ENDIAN);
> >  }
> > diff --git a/hw/arm/cubieboard.c b/hw/arm/cubieboard.c
> > index 3fcb6d2..b3f8f51 100644
> > --- a/hw/arm/cubieboard.c
> > +++ b/hw/arm/cubieboard.c
> > @@ -36,6 +36,13 @@ static void cubieboard_init(QEMUMachineInitArgs *args)
> >      Error *err = NULL;
> >  
> >      s->a10 = AW_A10(object_new(TYPE_AW_A10));
> > +
> > +    object_property_set_int(OBJECT(&s->a10->emac), 1, "phyaddr", &err);
> 
> "phy-addr"?

Other network adapters are using "phyaddr" so I simply copied that.
But I agree, "phy-addr" sounds better. I will change it in v4.

> 
> > +    if (err != NULL) {
> > +        error_report("Couldn't set phy address: %s\n", error_get_pretty(err));
> 
> error_report() always without trailing \n.
> 
> > +        exit(1);
> > +    }
> > +
> >      object_property_set_bool(OBJECT(s->a10), true, "realized", &err);
> >      if (err != NULL) {
> >          error_report("Couldn't realize Allwinner A10: %s\n",
> 
> Bad example. ;) Fixes welcome.

I will fix both.

Beniamino

> 
> Cheers,
> Andreas
> 
> > diff --git a/include/hw/arm/allwinner-a10.h b/include/hw/arm/allwinner-a10.h
> > index da36647..01a189b 100644
> > --- a/include/hw/arm/allwinner-a10.h
> > +++ b/include/hw/arm/allwinner-a10.h
> > @@ -6,6 +6,7 @@
> >  #include "hw/arm/arm.h"
> >  #include "hw/timer/allwinner-a10-pit.h"
> >  #include "hw/intc/allwinner-a10-pic.h"
> > +#include "hw/net/allwinner_emac.h"
> >  
> >  #include "sysemu/sysemu.h"
> >  #include "exec/address-spaces.h"
> > @@ -14,6 +15,7 @@
> >  #define AW_A10_PIC_REG_BASE     0x01c20400
> >  #define AW_A10_PIT_REG_BASE     0x01c20c00
> >  #define AW_A10_UART0_REG_BASE   0x01c28000
> > +#define AW_A10_EMAC_BASE        0x01c0b000
> >  
> >  #define AW_A10_SDRAM_BASE       0x40000000
> >  
> > @@ -29,6 +31,7 @@ typedef struct AwA10State {
> >      qemu_irq irq[AW_A10_PIC_INT_NR];
> >      AwA10PITState timer;
> >      AwA10PICState intc;
> > +    AwEmacState emac;
> >  } AwA10State;
> >  
> >  #define ALLWINNER_H_
> > 
> 
> 
> -- 
> SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
> GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

      reply	other threads:[~2014-01-26 21:26 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-19 23:25 [Qemu-devel] [PATCH v3 0/2] hw/arm: add ethernet support to Allwinner A10 Beniamino Galvani
2014-01-19 23:25 ` [Qemu-devel] [PATCH v3 1/2] hw/net: add support for Allwinner EMAC Fast Ethernet controller Beniamino Galvani
2014-01-23 13:04   ` Peter Crosthwaite
2014-01-25 13:37     ` Beniamino Galvani
2014-01-25 23:58       ` Peter Crosthwaite
2014-01-19 23:25 ` [Qemu-devel] [PATCH v3 2/2] hw/arm/allwinner-a10: initialize EMAC Beniamino Galvani
2014-01-23 13:06   ` Peter Crosthwaite
2014-01-25 23:42   ` Andreas Färber
2014-01-26 21:25     ` Beniamino Galvani [this message]

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=20140126212525.GA4675@gmail.com \
    --to=b.galvani@gmail.com \
    --cc=afaerber@suse.de \
    --cc=lig.fnst@cn.fujitsu.com \
    --cc=peter.crosthwaite@xilinx.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@gmail.com \
    /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.