[Bug 209758] Broadcom 5717 C not working

2016-06-12 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #15 from commit-h...@freebsd.org ---
A commit references this bug:

Author: sephe
Date: Mon Jun 13 03:03:09 UTC 2016
New revision: 301848
URL: https://svnweb.freebsd.org/changeset/base/301848

Log:
  MFC 300985, 301103

  r300985
  bge: Support 5717 C0, which is almost same as 5720 A0

  PR: 209758
  Obtained from:  DragonFlyBSD d79f5d8f5fe94cd6769207b2901422977d502bc0
  MFC after:  1 week

  

  r301103
  bge: Force chipid to 5720 A0 for 5717 C0 in an early place

  Discussed with: yongari
  MFC after:  1 week
  Sponsored by:   Microsoft OSTC

Changes:
_U  stable/10/
  stable/10/sys/dev/bge/if_bge.c
  stable/10/sys/dev/bge/if_bgereg.h

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-30 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #14 from commit-h...@freebsd.org ---
A commit references this bug:

Author: sephe
Date: Mon May 30 06:49:02 UTC 2016
New revision: 300985
URL: https://svnweb.freebsd.org/changeset/base/300985

Log:
  bge: Support 5717 C0, which is almost same as 5720 A0

  PR:   209758
  Obtained from:DragonFlyBSD d79f5d8f5fe94cd6769207b2901422977d502bc0
  MFC after:1 week

Changes:
  head/sys/dev/bge/if_bge.c
  head/sys/dev/bge/if_bgereg.h

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

Giuliano  changed:

   What|Removed |Added

 Status|New |Closed
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #13 from Giuliano  ---
(In reply to Giuliano from comment #12)
SOLVED.

What I did:
- I follow the steps showed in the link below (until the Step 3).
https://github.com/freenas/freenas-build/wiki/FreeNAS-9.10---10-%E2%80%94-Setting-up-a-FreeNAS-build-environment

- Add the patch in the attachments
cd /usr/src
fetch -o - https://bz-attachments.freebsd.org/attachment.cgi?id=170681 | patch
-p1

- Do the remaining steps 4 and 5.

I wish to thank Ngie Cooper, Sepherosa and Stephen -- otherwise I could not
solve this problem.

Best regards,
Giuliano Sperandio

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #11 from Stephen Hurd  ---
(In reply to Giuliano from comment #9)

Add single-quotes around the URL or escape the question mark:

cd /usr/src
fetch -o - 'https://bz-attachments.freebsd.org/attachment.cgi?id=170681' |
patch -p1

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


Re: [Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread Chris H
On Thu, 26 May 2016 20:52:52 + bugzilla-nore...@freebsd.org wrote

> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758
> 
> --- Comment #9 from Giuliano  ---
> Dear Ngie,
> 
> I have triple checked typing to be sure it is not my mistake. There is a

> error: fetch: No match
fetch(1) is tripping on the question mark " ? " in the URL you were given.
you're likely using (t)csh for your shell. You'll need to quote the
URL.

Try this:
cd /usr/src

fetch -o - 'https://bz-attachments.freebsd.org/attachment.cgi?id=170681' |
patch -p1

Make *sure* that the fetch line is all on one line. I say that
because your mail client may wrap that line.

> Hmm... I can't seem to find a patch in there
> anywhere. 
>
> Best regards,
> Giuliano
> 

--Chris


___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #10 from Ngie Cooper  ---
(In reply to Giuliano from comment #9)

The command I provided is for use with FreeBSD.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #9 from Giuliano  ---
Dear Ngie,

I have triple checked typing to be sure it is not my mistake. There is a error:
fetch: No match. Hmm... I can't seem to find a patch in there anywhere.

Best regards,
Giuliano

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #8 from Ngie Cooper  ---
(In reply to Giuliano from comment #7)

cd /usr/src
fetch -o - https://bz-attachments.freebsd.org/attachment.cgi?id=170681 | patch
-p1

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #7 from Giuliano  ---
Dear Sepherosa,

I wish to thank you very much for your help. I'm sorry my ignorance but I have
looked for how to compile this patch and I did not found. Is it possible to
return the necessary commands to do this? (or a link with instructions)

Best regards,
Giuliano

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #6 from Sepherosa Ziehau  ---
Heh, it was added a long time ago.

And as for why bnx(4) in DragonflyBSD, its mainly because the bnx(4) support 4
RX rings on all chips, and 4 TX rings on 5717C/5719/5720, and well of course
multi-vector MSI-X support.  Adding these stuffs to bge(4) caused too much
trouble for me back to 2013, bge(4) is already too complex.

I have attached the patch for FreeBSD bge(4) to take over 5717C, please test.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #4 from Giuliano  ---
Actually, I have tried first to install FreeNAS 9.10. As the system doesn't
works, I started to look for why it is not working.

As I could retrieve, the source code of DragonFly BSD includes the 5717 C NIC
at if_bnx. The FreeBSD if_bge source code includes only 5717 A and 5717 B NICs.
The 'C' version is missing.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #3 from Giuliano  ---
(In reply to Ngie Cooper from comment #1)
Dear Ngie Cooper,

I have attached the output pciconf at file pciconf.out.txt.

DragonFlyBSD has also a if_bge driver. I cannot understand the difference
between if_bge and if_bnx, they seem to be quite similar.

https://www.dragonflybsd.org/cgi/web-man?command=if_bge=ANY(In reply to
Ngie Cooper from comment #1)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

--- Comment #2 from Giuliano  ---
Created attachment 170672
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=170672=edit
pciconf output

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

Mark Linimon  changed:

   What|Removed |Added

   Assignee|freebsd-b...@freebsd.org|freebsd-...@freebsd.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

Ngie Cooper  changed:

   What|Removed |Added

 CC||n...@freebsd.org

--- Comment #1 from Ngie Cooper  ---
(In reply to Giuliano from comment #0)

if_bnx [1] seems to correspond with the if_bge [2] driver based on the driver
description in the respective manpages.

Could you please attach your pciconf -lv output for the machine from
DragonflyBSD?

1. https://www.dragonflybsd.org/cgi/web-man?command=if_bnx=ANY
2.
https://www.freebsd.org/cgi/man.cgi?query=if_bge=0=0=FreeBSD+10.3-RELEASE+and+Ports=default=html

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"


[Bug 209758] Broadcom 5717 C not working

2016-05-26 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209758

Bug ID: 209758
   Summary: Broadcom 5717 C not working
   Product: Base System
   Version: 10.3-RELEASE
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-b...@freebsd.org
  Reporter: giulianosperan...@gmail.com
CC: freebsd-amd64@FreeBSD.org
CC: freebsd-amd64@FreeBSD.org

Dear Sir,

I have tried to install FreeBSD 10.3 at HP Proliant ML110 Gen9 and the NIC
driver does not work. The NIC is a Broadcom 5717 C. The driver is not attached
during boot and the ifconfig returns only loopback interface.

I have tried install Debian and tg3 driver Works. Also, DragonFlyBSD Works with
if_bnx driver.

Best regards,
Giuliano Sperandio

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-amd64@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"