Slashdot Mirror


GPL'ed Drivers For NVIDIA nForce Ethernet Devices

An anonymous reader writes "Manfred Spraul has released a GPLed driver for the ethernet device found in motherboards based on the Nvidia Nforce/Nforce2/Nforce3 chipsets. Drivers provided by Nvidia on the other hand, are closed. Andrew Morton has integrated this driver in the 2.6.9-mm2 release of his mm tree. And if you are using a 2.4x kernel, you may want to check out this post."

12 of 33 comments (clear)

  1. Thats nice! by pagercam2 · · Score: 3, Interesting

    Its great that drivers are available for this new chipset, but is this really worth being a /. topic???

    1. Re:Thats nice! by schapman · · Score: 5, Insightful

      yes... im picking up an nForce2 board shortly, and its nice to know that when i install linux, I'll have an option. I have found in the past that certain manufacturers make crappy drivers (Creative + SBlive platinum + winxp) and its nice to see that the people out there w/ the skills are willing to contribute. Also, a pro-open source and pro-linux site like slashdot is a great place for these people to be recognized for their work.

      --
      Wouldnt you like to be a pepper too?
    2. Re:Thats nice! by Cecil · · Score: 3, Interesting

      Yes. Yes it is.

      Perhaps you don't understand the magnitude of not having ethernet drivers available on any Linux install, and having to download them from the Internet, which is difficult, since you have no ethernet connection.

      Until now, I have considered my nForce boards impossible to install Linux on because I am not willing to spend days downloading, burning, and installing ISOs and installing all the development tools that I don't need, downloading the drivers, rebuilding the kernel to finally tweak the thing into working and then uninstalling all the development tools when I have a debian packages mirror sitting on my fileserver.

      This is good news.

  2. 2.6.9? by jamessan · · Score: 5, Funny

    Wow, I didn't know the kernel left -test status and increased 9 versions since yesterday. Andrew Morton must be on top of things to get a -mm patch out that quick, too.

    Good job editors. ;)

  3. Woo-Hoo by eriksson · · Score: 3, Interesting

    This is great - now I just need to get the XFree86 nv driver to play nice with my nForce2 w/ integrated video, and I'll be able to run a non-tainted kernel.

    Has anybody else had problems with X on such a board? There's apparantly a bug somewhere in the rendering code that crops up because the nv driver doesn't use hardware acceleration as much as the nvidia driver. I filed bug #811 on bugzilla, but no resolution yet :(

    1. Re:Woo-Hoo by Crazy+Eight · · Score: 2, Informative

      `glxinfo | grep direct'
      If that shell command returns, "direct rendering: Yes" then you've got hardware GL.

    2. Re:Woo-Hoo by mickwd · · Score: 2, Informative

      If you desperately need Serial ATA support on an NF7-S, it's available in 2.4 kernels.

      Mine works pretty well under Mandrake 9.1, perfectly under Mandrake 9.2, and perfectly under Gentoo if your use the Alan Cox kernel sources (not the "standard" Gentoo kernel, unless it's been updated since I last tried it).

      My SATA transfer rates are actually quicker (timed using "hdparm -tT") under 2.4 than 2.6.

  4. Re:nvidia ethernet drivers aren't backwards compat by 4of12 · · Score: 2, Interesting

    If I understand correctly, the Ethernet is built right onto the mainboard, with the chipset.

    Audio processing went down this route a while back. Old soundcards aren't needed when the functionality was built into the chipset.

    For high speed networking (like GigE), avoiding the PCI bus can potentially be faster.

    --
    "Provided by the management for your protection."
  5. Re:nvidia ethernet drivers aren't backwards compat by MBCook · · Score: 4, Interesting
    Not only is skipping the PCI bus important for speed, but even for slower things (like 10/100 ethernet) not being on the bus is good. It means that the chip can talk to memory or the CPU without waiting for the PCI bus to be free for it to use. Basically, it gets to skip the bus contention.

    A good analogy would be there are 5 people all trying to call one guy, and Mr. Ethernet is one of the people. By being in the chipset and not on the bus, he doesn't have to keep trying to call and getting a busy signal, he can just say his message. This is because Mr. CPU could talk to 3 or 4 people at a time (he's that fast), but the phone (PCI bus) only has one line. He just skipps the problem.

    OK, that's a bit simplified, but the fact is that not waiting on bus contention is good. The ethernet doesn't have to wait for/fight against the sound card, the tv tuner, and the add in raid controller.

    On a side note, while NE2000 is a standard, it's for ISA, and as far as I know the NE2000 PCI standard never got big. I could be wrong. And even then, that's like using VESA to controll your GeForce FX video card. You can do it, but you could lose alot of the performance and features that you paid for because VESA doesn't know about 'em.

    --
    Comment forecast: Bits of genius surrounded by a sea of mediocrity.
  6. Built-in-chipset devices don't "skip" the PCI bus. by Ayanami+Rei · · Score: 3, Informative

    The transactions occur across a much faster interconnect (which can go by different names according to the chipset design), but it's still linear and you still access resources in a PCI-like manner. Just faster.

    The only bus that was different was ISA.

    --
    THIS THING CAN TURN ON A DIME, MACROSSZERO STYLE ALSO FUCK BETA, ~NYORON
  7. And now, a chart. by ActiveSX · · Score: 5, Funny

    How much I care on the Y, title index on the X.
    ____
    / |
    / |
    1.0| / |
    | / |
    0.5| / |
    | _________________/ |
    0.0|/_ _ _ _ _ _ _ _ _ _ _ _ _ _|_ _
    GPL'ed Drivers for NVIDIA nForce...

    Way to get my hopes up, Slashdot. I guess my kernel will continue to be tainted.

  8. NVidia policy for making drivers by Drakon86 · · Score: 2, Insightful

    Reverse engineering the binary driver for the ethernet chip and making a GPL'd source tree for anyone to review is great.
    However, I don't think that it offers much except for hypothetical multiplatform portability. Without any specs it would be extremely hard to modify the driver and it's even harder to add new features.
    Now I just hope someone has the time and skills to reverse engineer the NVidia video driver and GL libraries so that my 2.6.0-test9-mm2 kernel wouldn't give me pages of tracebacks every time I launch X using the nvidia driver. :-)