From patchwork Sun Mar 6 19:23:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: William Dauchy X-Patchwork-Id: 85592 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3F9C2B70D3 for ; Mon, 7 Mar 2011 07:03:07 +1100 (EST) Received: from localhost ([127.0.0.1]:55832 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PwK2O-0003BE-E2 for incoming@patchwork.ozlabs.org; Sun, 06 Mar 2011 14:54:44 -0500 Received: from [140.186.70.92] (port=34347 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PwJyR-00011B-FC for qemu-devel@nongnu.org; Sun, 06 Mar 2011 14:50:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PwJeZ-0007Re-TP for qemu-devel@nongnu.org; Sun, 06 Mar 2011 14:30:09 -0500 Received: from mail-wy0-f173.google.com ([74.125.82.173]:62576) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PwJeZ-0007RQ-P6 for qemu-devel@nongnu.org; Sun, 06 Mar 2011 14:30:07 -0500 Received: by wyb29 with SMTP id 29so4066088wyb.4 for ; Sun, 06 Mar 2011 11:30:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=iB4wBsLRL+BX7zXFqGe/frC43JPD5CQvPyNSFzP9l90=; b=H0j/1rIQuMxCg3OBbVQIZ/gYFvDHUkXA4Bpx11jv3e9OAlr0kz0LuBUMBCnM7agFvn 8INKXP32/9m8W0SsPEGvMtCcM1utiFPoom3WGdCVzQjWbHSdiLqyohuVNp498Ts3rXXq eUrZBJRoZNET4XXtO+6l6fWjUuvqm7ESToQyw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=TO3gHWJkc9J7kNg7RzHnV+q0CCl9RYAZwWDcGdzpYdXvRUJZheUr1o6U0dkymIqFFE l9aVFFC7OxwsWwcq7QyhwxY8O4h7nsbCqIMg6bffURfbdkQWOIK7nWH2kSf0GYyh+pAH aO0OOhWmp9ladVae7rjYtaZHwOgeyRHdI7J4M= Received: by 10.216.82.14 with SMTP id n14mr724277wee.56.1299439806082; Sun, 06 Mar 2011 11:30:06 -0800 (PST) Received: from localhost.localdomain (hitchhiker.gandi.net [217.70.181.24]) by mx.google.com with ESMTPS id t5sm883223wes.33.2011.03.06.11.30.04 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 06 Mar 2011 11:30:05 -0800 (PST) From: William Dauchy To: blauwirbel@gmail.com Date: Sun, 6 Mar 2011 20:23:19 +0100 Message-Id: <1299439399-7546-1-git-send-email-wdauchy@gmail.com> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.82.173 Cc: qemu-devel@nongnu.org, William Dauchy Subject: [Qemu-devel] [PATCH] moving eeprom initialization X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The initialization should not be only on reset but also when initializing the device. It resolves a bug when hot plugging a pci network device: the mac address was always null. Signed-off-by: William Dauchy Signed-off-by: Wen Congyang --- hw/pcnet.c | 27 ++++++++++++++------------- hw/rtl8139.c | 24 ++++++++++++------------ 2 files changed, 26 insertions(+), 25 deletions(-) diff --git a/hw/pcnet.c b/hw/pcnet.c index db52dc5..4e30e9c 100644 --- a/hw/pcnet.c +++ b/hw/pcnet.c @@ -1557,19 +1557,6 @@ uint32_t pcnet_bcr_readw(PCNetState *s, uint32_t rap) void pcnet_h_reset(void *opaque) { PCNetState *s = opaque; - int i; - uint16_t checksum; - - /* Initialize the PROM */ - - memcpy(s->prom, s->conf.macaddr.a, 6); - s->prom[12] = s->prom[13] = 0x00; - s->prom[14] = s->prom[15] = 0x57; - - for (i = 0,checksum = 0; i < 16; i++) - checksum += s->prom[i]; - *(uint16_t *)&s->prom[12] = cpu_to_le16(checksum); - s->bcr[BCR_MSRDA] = 0x0005; s->bcr[BCR_MSWRA] = 0x0005; @@ -1736,6 +1723,9 @@ void pcnet_common_cleanup(PCNetState *d) int pcnet_common_init(DeviceState *dev, PCNetState *s, NetClientInfo *info) { + int i; + uint16_t checksum; + s->poll_timer = qemu_new_timer(vm_clock, pcnet_poll_timer, s); qemu_macaddr_default_if_unset(&s->conf.macaddr); @@ -1744,5 +1734,16 @@ int pcnet_common_init(DeviceState *dev, PCNetState *s, NetClientInfo *info) add_boot_device_path(s->conf.bootindex, dev, "/ethernet-phy@0"); + /* Initialize the PROM */ + + memcpy(s->prom, s->conf.macaddr.a, 6); + s->prom[12] = s->prom[13] = 0x00; + s->prom[14] = s->prom[15] = 0x57; + + for (i = 0, checksum = 0; i < 16; i++) { + checksum += s->prom[i]; + } + *(uint16_t *)&s->prom[12] = cpu_to_le16(checksum); + return 0; } diff --git a/hw/rtl8139.c b/hw/rtl8139.c index a22530c..8356d5a 100644 --- a/hw/rtl8139.c +++ b/hw/rtl8139.c @@ -1189,18 +1189,6 @@ static void rtl8139_reset(DeviceState *d) rtl8139_update_irq(s); - /* prepare eeprom */ - s->eeprom.contents[0] = 0x8129; -#if 1 - // PCI vendor and device ID should be mirrored here - s->eeprom.contents[1] = PCI_VENDOR_ID_REALTEK; - s->eeprom.contents[2] = PCI_DEVICE_ID_REALTEK_8139; -#endif - - s->eeprom.contents[7] = s->conf.macaddr.a[0] | s->conf.macaddr.a[1] << 8; - s->eeprom.contents[8] = s->conf.macaddr.a[2] | s->conf.macaddr.a[3] << 8; - s->eeprom.contents[9] = s->conf.macaddr.a[4] | s->conf.macaddr.a[5] << 8; - /* mark all status registers as owned by host */ for (i = 0; i < 4; ++i) { @@ -3392,6 +3380,18 @@ static int pci_rtl8139_init(PCIDevice *dev) qemu_macaddr_default_if_unset(&s->conf.macaddr); + /* prepare eeprom */ + s->eeprom.contents[0] = 0x8129; +#if 1 + /* PCI vendor and device ID should be mirrored here */ + s->eeprom.contents[1] = PCI_VENDOR_ID_REALTEK; + s->eeprom.contents[2] = PCI_DEVICE_ID_REALTEK_8139; +#endif + + s->eeprom.contents[7] = s->conf.macaddr.a[0] | s->conf.macaddr.a[1] << 8; + s->eeprom.contents[8] = s->conf.macaddr.a[2] | s->conf.macaddr.a[3] << 8; + s->eeprom.contents[9] = s->conf.macaddr.a[4] | s->conf.macaddr.a[5] << 8; + s->nic = qemu_new_nic(&net_rtl8139_info, &s->conf, dev->qdev.info->name, dev->qdev.id, s); qemu_format_nic_info_str(&s->nic->nc, s->conf.macaddr.a);