From owner-freebsd-stable@FreeBSD.ORG Thu Jul 19 18:40:13 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF8D7106564A for ; Thu, 19 Jul 2012 18:40:13 +0000 (UTC) (envelope-from psaldivia@telefoniacentro.cl) Received: from oproxy7-pub.bluehost.com (oproxy7.bluehost.com [IPv6:2605:dc00:100:2::a7]) by mx1.freebsd.org (Postfix) with SMTP id A26438FC16 for ; Thu, 19 Jul 2012 18:40:13 +0000 (UTC) Received: (qmail 18169 invoked by uid 0); 19 Jul 2012 18:40:11 -0000 Received: from unknown (HELO host66.hostmonster.com) (74.220.207.66) by oproxy7.bluehost.com with SMTP; 19 Jul 2012 18:40:08 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=telefoniacentro.cl; s=default; h=Content-Type:Subject:To:MIME-Version:From:Date:Message-ID; bh=JlFqzbDwHa8Lt+/YYKZOiSEWYeweGANMmIisftjgfog=; b=mbhvRakVCPT98byzm8QImbfTG41x4luSOcZSo0hPaMBOFW3otKLfbxB/rCHN6MuVQVGQZR19wuXEmw6PgxUPvIhCGe/gxajrLk3kuOdJPrdtYT9jqybMAw7oocTj2UdL; Received: from [201.214.66.203] (port=34023 helo=[192.168.1.223]) by host66.hostmonster.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1Srvdw-0003he-04 for freebsd-stable@freebsd.org; Thu, 19 Jul 2012 12:40:08 -0600 Message-ID: <50085482.6070804@telefoniacentro.cl> Date: Thu, 19 Jul 2012 14:40:02 -0400 From: Pablo Saldivia User-Agent: Mozilla/5.0 (X11; Linux i686; rv:13.0) Gecko/20120615 Thunderbird/13.0.1 MIME-Version: 1.0 To: freebsd-stable@freebsd.org X-Identified-User: {1380:host66.hostmonster.com:pktwokpi:telefoniacentro.cl} {sentby:smtp auth 201.214.66.203 authed with psaldivia@telefoniacentro.cl} Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: motherboard X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jul 2012 18:40:14 -0000 Hello list I have a problem with my motherboard, with four 82573L Gigabit Ethernet Controller integrated, with freebsd 8.1 only work one ethernet em1 , em0 , em2 and em3 not work dmesg info [ 5.301681] e1000e 0000:03:00.0: Disabling ASPM L1 [ 5.301706] e1000e 0000:03:00.0: PCI->APIC IRQ transform: INT A -> IRQ 18 [ 5.301727] e1000e 0000:03:00.0: setting latency timer to 64 [ 5.301963] e1000e 0000:03:00.0: irq 41 for MSI/MSI-X [ 5.302457] e1000e 0000:03:00.0: Disabling ASPM L0s [ 5.371770] e1000e 0000:03:00.0: (unregistered net_device): The NVM Checksum Is Not Valid [ 5.389922] e1000e: probe of 0000:03:00.0 failed with error -5 the problem its the same in linux and freebsd, /Windows simply doesn't check the NVM checksum and work fine :( I probe install new driver, fix the eeprom //fixeep-82573-dspd.sh / / lemon@pfSense:~$ sudo sh fixeep-82573-dspd.sh eth0 eth0: is a "82573L Gigabit Ethernet Controller" This fixup is applicable to your hardware fixeep-82573-dspd.sh: 34: Bad substitution fixeep-82573-dspd.sh: 39: Bad substitution I probe edit netdev.c in the driver and eliminate check NVM checksum / if (i == 2) { e_err("The NVM Checksum Is Not Valid\n"); err = -EIO; goto err_eeprom; } change to if (i == 2) { e_err("The NVM Checksum Is Not Valid\n"); return; } and recompile but nothing Probe bootutil of Intel tool Flasheable enable :( lemon@pfSense:~/Intel/APPS/BootUtil/Linux32$ sudo ./bootutil32 -NIC=1 -FLASHENABLE Intel(R) Ethernet Flash Firmware Utility BootUtil version 1.3.27.0 Copyright (C) 2003-2012 Intel Corporation Enabling boot ROM on port 1...Unsupported feature Port Network Address Series WOL Flash Firmware Version ==== =============== ======= === ================================= ======= 1 80014C362E39 Gigabit NO LOM,UEFI,PXE Enabled,FCOE 2 00E04C362E3A Gigabit YES LOM,PXE 3 00E04C362E3B Gigabit NO LOM,UEFI,PXE Enabled,FCOE 4 00E04C362E3C Gigabit NO LOM,UEFI,PXE Enabled,FCOE New firmware lemon@pfSense:~/Intel/APPS/BootUtil/Linux32$ sudo ./bootutil32 -UP=PXE -ALL Intel(R) Ethernet Flash Firmware Utility BootUtil version 1.3.27.0 Copyright (C) 2003-2012 Intel Corporation Flash on LOM device not supported on port 1 Flash on LOM device not supported on port 2 Flash on LOM device not supported on port 3 Flash on LOM device not supported on port 4 Port Network Address Series WOL Flash Firmware Version ==== =============== ======= === ================================= ======= 1 80014C362E39 Gigabit NO LOM,UEFI,PXE Enabled,FCOE 2 00E04C362E3A Gigabit YES LOM,PXE 3 00E04C362E3B Gigabit NO LOM,UEFI,PXE Enabled,FCOE 4 00E04C362E3C Gigabit NO LOM,UEFI,PXE Enabled,FCOE is very hard this work any idea please i need help thanks in advance