From: Jason Wang <jasowang@redhat.com>
To: Sebastian Huber <sebastian.huber@embedded-brains.de>,
qemu-devel@nongnu.org
Cc: peter.crosthwaite@xilinx.com
Subject: Re: [Qemu-devel] [PATCH] net: cadence_gem: Set initial MAC address
Date: Fri, 30 Jan 2015 13:42:53 +0800 [thread overview]
Message-ID: <54CB19DD.6030806@redhat.com> (raw)
In-Reply-To: <1422536379-18116-1-git-send-email-sebastian.huber@embedded-brains.de>
On 01/29/2015 08:59 PM, Sebastian Huber wrote:
> Set initial MAC address to the one specified by the command line.
>
> Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
> ---
> hw/net/cadence_gem.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/hw/net/cadence_gem.c b/hw/net/cadence_gem.c
> index de26609..a1aa91b 100644
> --- a/hw/net/cadence_gem.c
> +++ b/hw/net/cadence_gem.c
> @@ -1005,6 +1005,7 @@ static void gem_reset(DeviceState *d)
> {
> int i;
> GemState *s = GEM(d);
> + const uint8_t *a;
>
> DB_PRINT("\n");
>
> @@ -1023,6 +1024,11 @@ static void gem_reset(DeviceState *d)
> s->regs[GEM_DESCONF5] = 0x002f2145;
> s->regs[GEM_DESCONF6] = 0x00000200;
>
> + /* Set MAC address */
> + a = &s->conf.macaddr.a[0];
> + s->regs[GEM_SPADDR1LO] = a[0] | (a[1] << 8) | (a[2] << 16) | (a[3] << 24);
> + s->regs[GEM_SPADDR1HI] = a[4] | (a[5] << 8);
> +
> for (i = 0; i < 4; i++) {
> s->sar_active[i] = false;
> }
> @@ -1245,7 +1251,6 @@ static int gem_init(SysBusDevice *sbd)
> sysbus_init_mmio(sbd, &s->iomem);
> sysbus_init_irq(sbd, &s->irq);
> qemu_macaddr_default_if_unset(&s->conf.macaddr);
> -
This seems unnecessary.
> s->nic = qemu_new_nic(&net_gem_info, &s->conf,
> object_get_typename(OBJECT(dev)), dev->id, s);
>
Reviewed-by: Jason Wang <jasowang@redhat.com>
next prev parent reply other threads:[~2015-01-30 5:43 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-29 12:59 [Qemu-devel] [PATCH] net: cadence_gem: Set initial MAC address Sebastian Huber
2015-01-30 5:42 ` Jason Wang [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-10-12 8:25 Sebastian Huber
2015-10-14 2:18 ` Jason Wang
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=54CB19DD.6030806@redhat.com \
--to=jasowang@redhat.com \
--cc=peter.crosthwaite@xilinx.com \
--cc=qemu-devel@nongnu.org \
--cc=sebastian.huber@embedded-brains.de \
/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.