Slashdot Mirror


Kickstarter For Open Source GPU

First time accepted submitter eekee writes "The targets are high, but so is the goal: releasing Verilog source code for a GPU implementation. The source will be open source, LGPL-licensed, and suitable for loading onto an FPGA. The first target is for a 2D GPU with PCI interface; perhaps not terribly interesting in itself, but the first stretch goal is much more exciting: full OpenGL and Direct3D graphics." Unlike the Open Graphics Project, this is starting from a working 2D accelerator and mostly working 3D accelerator cloning the features of the Number Nine Ticket to Ride hardware. If they get a meelion bucks they'll overhaul the chip to support something other than PCI (although you can bridge between PCI and PCIe) and implement a modern programmable rather than fixed-function chip. Also unlike OGP, they do not appear interested in producing hardware, instead focusing entirely on the core itself for use in FPGAs (anyone want to dust off the OGD1 design?)

59 of 108 comments (clear)

  1. Dubious Market? by Petersko · · Score: 2

    How is this not an Ouya in the making? Is there actually a market large enough for this thing to do anything but vanish without a trace?

    Apologies for the negativity. Please do correct my world view. I'm amenable.

    1. Re:Dubious Market? by Anonymous Coward · · Score: 3, Informative

      The point of this is NOT to produce a graphics card you'll stick in your PC. The card they're emulating was released in 1998. It's for embedded system designers to add graphics capabilities to a project that's already using an FPGA without completely reinventing the wheel. Speaking as someone who implemented a (very basic) 3D GPU for a class project once, it is quite a lot of work.

    2. Re:Dubious Market? by Alioth · · Score: 1

      Clearly they aren't looking for markets otherwise it would be closed source and they would be proposing to sell IP licenses or actual hardware.

      What they are doing is making a freely available Verilog implementation of a graphics chip. This means electronics designers (whether they be hobbyists or people designing embedded hardware for their business) have an accelerated graphics core that they can use with their design. Given it's an LGPL and open source design, they can adapt it to use something other than PCI (for example, whatever internal bus their embedded system may use) or given that PCI is something that's well documented, they could implement PCI in their design.

      As such it doesn't matter if the market is one person or ten million. The goal is to produce an open source graphics core that electronics designers can use, not to market something to PC users. Finding a market is up to the users of the Verliog code.

    3. Re:Dubious Market? by hattig · · Score: 1

      Well if they can find 20 commercial FPGA projects that need a 2D display controller for their FPGA that are willing to fund $10,000 each, then this Kickstarter might get funded.

      However I'm sure you can buy 2D cores (proprietary) for less money already.

      It is important in some ways to have a 2D LGPL GPU though, especially an optimised, proven design, one with hardware acceleration for drawing, text and blitting - it could benefit a lot of FPGA projects - e.g., FPGA reimplementations of classic hardware, especially Amigas (this hardware could be used for RTG support).

    4. Re:Dubious Market? by hattig · · Score: 1

      To me it looks like a last-gasp effort to get $200,000 from their old graphics IP, and possibly a nice year or two gig to enhance it.

    5. Re:Dubious Market? by Enderandrew · · Score: 2

      Why would embedded manufacturers prefer buying a GPU from someone who isn't established over the usual players? I don't think they care about having a 100% open source GPU driver.

      I applaud this in principle, I just don't think there is a massive audience for this project, especially with Nvidia's recent mea culpa to the Linux community and their new promise to help deliver solid open source drivers for their cards. Given that Nvidia wants to be the heart of every Steam box (as well as every Android gaming device) there may be some truth to Nvidia loving Linux now.

      --
      http://blindscribblings.com - Tasty pop-culture in conceptual fashion.
    6. Re:Dubious Market? by ninlilizi · · Score: 1

      I guess thats what their betting on.
      That enough people see the value in the concept, regardless of an immediate need for the product.

    7. Re:Dubious Market? by Anonymous Coward · · Score: 1

      Did you even read the Bio. on the kickstarter link,
      did you look at the company link provided?

      More like:
      1. Design GPU, then sell to S3
      2. License design back from S3
      3. Produce in the embedded space (aka Profit)
      4. Start kickstarter to improve and openly release the Design from #1

    8. Re:Dubious Market? by hairyfeet · · Score: 1

      Not to mention that there is a REASON why they have to use a design from the late 90s, anything newer has so many patents and cross licenses attached you'd sooner raise the titanic than get a FOSS card that does full D3D and OpenGL any newer than the late 90s.

      Like it or not, and I personally don't believe in allowing software patents, but as long as software patents exist you can give up on getting any kind of FOSS GPU that isn't ancient because its ALL patented by the big three and cross licensed. From S3 to HDCP its all patented, cross licensed, and requires an NDA to even look at so you can give up on having 100% FOSS hardware when it comes to GPUs, there is too much of a legal minefield between FOSS and the hardware. Hell look at AMD, even when they wanted to hand over the specs they had to wait and let the lawyers go through it first and to this day there are parts they can't share thanks to licenses.

      --
      ACs don't waste your time replying, your posts are never seen by me.
    9. Re:Dubious Market? by idunham · · Score: 2

      The Kickstarter is for a code drop, no hardware.

      According to Francis Bruno, the 2D version fits on a Cyclone II 25 or a Spartan 3.

    10. Re:Dubious Market? by idunham · · Score: 1

      Wrong. None of the projects on opencores have something that's anywhere near this far along and feature-complete.
      There are LCD controllers, text mode VGA designs, and one or two framebuffer-level VGA adapters. And framebuffer is essentially garbage.

    11. Re:Dubious Market? by idunham · · Score: 1

      This company already has somewhat of a market (air traffic being one, IIRC). But yes, it is niche.
      Now, the full product has some nice features like a builtin VNC server...

  2. This is hardware by Anonymous Coward · · Score: 4, Insightful

    A lot tougher to get right than software. In software you can implement anything you want, as badly as you want. It doesn't cost anything and it's easy to start over. So what if you have an open source GPU? How are you going to connect it to the computer? You need an above-hobbyist PCB designer (sorry, it's true), you need someone to build the boards, test them, solder on the parts (assuming you were able to make a schematic and a BOM and order the parts), test again, and then you can start debugging software as maybe hardware bugs come out at the same time.

    1. Re:This is hardware by Anonymous Coward · · Score: 1

      Keep in mind that these guys are former #9 Visual Tech. engineers, so it's not just some shmuck of the street saying lets clone a #9 card and fully open the specs.
      They have done hardware before.

    2. Re:This is hardware by SuricouRaven · · Score: 1

      This isn't aimed for plugging in to a PC. It's for embedded devices.

    3. Re:This is hardware by tlhIngan · · Score: 3

      A lot tougher to get right than software. In software you can implement anything you want, as badly as you want. It doesn't cost anything and it's easy to start over. So what if you have an open source GPU? How are you going to connect it to the computer? You need an above-hobbyist PCB designer (sorry, it's true), you need someone to build the boards, test them, solder on the parts (assuming you were able to make a schematic and a BOM and order the parts), test again, and then you can start debugging software as maybe hardware bugs come out at the same time.

      Not really - PCI (not PCIe) is fairly easy these days (it's 33MHz, so it's not "hard"). And since it's an FPGA, you just need one with a PCI compatible interface. The other parts would be a video DAC to output to VGA or an FPGA with TMDS lines (yes, they make those) to hook to DVI directly.

      Connect to a computer is easy - it's PCI, most modern PCs have one. If not, they make PCIe-to-PCI bridges that do the same thing (albeit with more work). Or I'm sure if you look around, there's a reference design card you can have that has PCIe, an FPGA and a variety of connectors and ports for plugging straight into a PC.

      And hobby manufacturing is actually fairly easy these days - given how kickstarter seems to have spawned a small industry of contract manufacturers and such with pick and place machines and all that that are reasonably affordable to use to build a small (under 1000, above 20 or so) run with.

      No, the biggest problem these guys will encounter is it's impossible to do an open-source GPU. Because everything they need to do is patented, some of it quite heavily (like S3TC - a core part of OpenGL and DirectX these days, of which there is a software and a hardware part, all owned by Via).

      And that's just 3D graphics. 2D graphics is also a minefield (stuff like overlays are patented). Or if you want to do hardware assisted video decode (patent minefield! Even if you don't want to do h.264). Since the drivers are probably going to be open, that means pushing a lot of the patented material into hardware.

      Hell, the hardware is to be honest the easiest part. Even doing the GPU is fairly straightforward.

    4. Re:This is hardware by bluefoxlucid · · Score: 1

      A lot tougher to get right than software. In software you can implement anything you want, as badly as you want. It doesn't cost anything and it's easy to start over.

      readmefirst.txt

    5. Re:This is hardware by 91degrees · · Score: 2

      Well, most of the patented stuff isn't essential. In fact they could probably do a GLES 1.1 compatible part without breaching any patents. By the time they're ready to implement any extensions, the patents will be close to expiration.

    6. Re:This is hardware by moteyalpha · · Score: 1

      What you said is exactly what I thought. As somebody who has done several high end graphics cards and even worked on the first "Paradise" VGA compatible, drivers, VESA, stuffing, ASIC, fabless, FPGA, and CAD for a board are all commodities ( and 200k isn't a big sticker price for that). I like the idea, but doing this is like asking to be sued. It is something that should be done and perhaps a better way would be to create a multi-core RISC that was so flexible that it could run from an installed microcode.
      But then if you make money you will get sued anyway by some patent troll. I wish there was more information than just a page of description as it would be nice to know how they would answer the patent question.

    7. Re:This is hardware by LoRdTAW · · Score: 1

      Its a softcore for an FPGA so you can get as sloppy as you want. Doesnt work? Debug, compile and re-load the bitfile into the FPGA. Then optimize in places that need it. I doubt this is going to make its way into an ASIC unless the design can compete with other embedded IP like the Mali or PowerVR. If you read the article they say specifically they will change the interface from PCI to another bus: "generic interface as well as AXI, Avalon and Wishbone". AXI, Avalon and Wishbone are embedded busses for on chip interconnects in ASICS and FPGA's (wishbone is opensource from opencores). However, the FPGA SoCs that are out there are quite capable little chips with embedded SoCs but no graphics which leaves a lot of opportunity. The Xilinx Zynq and the Altera SoCs both feature dual core ARM cpu's with their interconnect directly wired to dedicated FPGA I/O creating a bunch of dedicated AXI interfaces. In the case of the Zynq, you have 8 high speed multi gigabit transceivers to implement PCIe, HDMI, DVI or Displayport or whatever and a bunch of GPIO. So you can develop an open source GPU which is tied directly to the CPU bus and tie its outputs directly to an HDMI port and off to a monitor.

      Also, how does needing beyond hobbyist PCB design software make this any more of a challenge? OrCAD isn't going to break the bank if you are working with a million dollar pledge. Also, you can do a lot of design work in the basic tools like KiCAD or Eagle (though Eagle is more comprehensive.)

    8. Re:This is hardware by sergueyz · · Score: 1

      You can get away with starter kits.

      For one example, Altera has a starter kit with HDMI support. This is for previous generation of their FPGAs (Stratix IV), but still.

      What you have to do right, is to write the driver. And here we have a huge task, because no current 3D accelerator card will do any good without optimization of shaders and, more importantly, the combination of shaders and other calls, like texture loading, etc.

    9. Re:This is hardware by idunham · · Score: 1

      This fits on some pretty small Xilinx and Altera boards:
      Spartan 3, Cyclone II 25, and Cyclone III.
      If you look in the right place, $30 is likely to be enough.

    10. Re:This is hardware by idunham · · Score: 1

      Most patents affecting what they have, especially the 2D portion, should be expired by now.
      If they aren't, this probably counts as prior art in its own right.

  3. It's fine to be fabless by bill_mcgonigle · · Score: 2

    But at least make something that can be fabbed. MIPS and ARM are doing great with implementing reference designs.

    Heck, I'd *love* a Chinese factory to take an open graphics card spec and crank out $9 low-power cards for me to use in a server. PCI is fine, but it kills me to put a $50 GeForce card with a heatsink and fan in a normally headless machine!

    FPGA is a great target for distributed development; just support those who want to implement it in an an ASIC.

    --
    My God, it's Full of Source!
    OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
    1. Re:It's fine to be fabless by paskie · · Score: 1

      Why not just buy a motherboard with onboard GPU? Plenty of these around, though the offers are diminishing with the onset of APU generation of CPUs (which you probably don't really want on a server, modulo special cases). I think you are paying around $9 for the graphics card then.

      --
      It's not the fall that kills you. It's the sudden stop at the end. -Douglas Adams
    2. Re:It's fine to be fabless by sootman · · Score: 1

      > it kills me to put a $50 GeForce card with a heatsink
      > and fan in a normally headless machine!

      Then take off the heatsink and fan, duh. :-)

      --
      Dear Slashdot: next time you want to mess with the site, add a rich-text editor for comments.
    3. Re:It's fine to be fabless by washu_k · · Score: 1

      I've found a surprising number of modern motherboards that boot fine with no video card (and no onboard video). They often give a "no video" error beep, but keep on booting. Try it without any video card.

    4. Re:It's fine to be fabless by bill_mcgonigle · · Score: 1

      All server mobos have integrated GPUs.

      That would be great if it were so, but it's not.

      --
      My God, it's Full of Source!
      OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
    5. Re:It's fine to be fabless by bill_mcgonigle · · Score: 1

      No it's your own stupidity that kills you in this case if you buy those for your servers.

      Can you can point to something better or are you just spouting off again, AC?

      --
      My God, it's Full of Source!
      OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
  4. utterly utterly worthless by Anonymous Coward · · Score: 1

    With the rise of ARM, SoC parts with fully open GPU APIs of amazing power are essentially almost ZERO cost. Tiny circuit boards are available for experimenters and developers with first class 2D, 3D, Video and JPG acceleration, and even video ENCODING is becoming a common hardware feature in low-end parts.

    What exactly does the cretinous idea of 'open-source' hardware bring to the table. Sure, it's an environment for budding chip designers to cut their teeth on, but SIMULATIONS on powerful PCs actually provide this teaching resource far better. For people who simply want to USE hardware, it is of less than zero use.

    ARM hardware isn't open-source- nor ANY of the hardware 99.99999% of you use on a daily basis. What exactly are you missing because of this fact?

    Sure, a bunch of non-too-bright fiddlers would love free money from suckers to allow them to indulge in their pointless hobby. And worse, just about any GPU design of value is covered by insane numbers of existing patents, giving these chumps the perfect excuse when they fail to provide ANYTHING to their investors. And I don't mean because the big boys will actually threaten them- simply that this is a project with "meant to fail" written through it like a stick of seaside rock.

    Competition in the GPU market means that GPU cores (tried, tested and licensable) have never been cheaper or more varied in options. People who write open-source software most certainly do NOT want to be targeting some joke open-source hardware, as if this is some cretinous doctrine of a religious organisation. What all software developers need is well supported, well documented hardware that is bug free and widely used. Those that see the open-source movement as a church are mentally ill.

    1. Re:utterly utterly worthless by Tapewolf · · Score: 4, Interesting

      With the rise of ARM, SoC parts with fully open GPU APIs of amazing power are essentially almost ZERO cost. Tiny circuit boards are available for experimenters and developers with first class 2D, 3D, Video and JPG acceleration, and even video ENCODING is becoming a common hardware feature in low-end parts.

      Care to name any? Most of the ones I've heard of with any form of acceleration are using a proprietary GPU core, where you get a binary blob for Android and bugger-all else. Maybe things have changed since, but last I hard the driver situation was worse for ARM cores than it was in the PC space. Indeed, that was the rationale behind Mir - that it would be able to use the Android blobs under Ubuntu.

    2. Re:utterly utterly worthless by Anonymous Coward · · Score: 2, Informative

      These guys have licenses covering the original #9 tech that was sold to S3.
      The are former #9 engineers, not as you say non-too-bright fiddlers.

      "By mid 2000, S3 had completed the acquisition of Number Nine's assets and Number Nine had ceased operations. In 2002, two former Number Nine engineers, James Macleod and Francis Bruno, formed Silicon Spectrum, Inc., and licensed Number Nine's graphics technology from S3 to implement in FPGA devices."
      http://en.wikipedia.org/wiki/Number_Nine_Visual_Technology#Number_Nine_Video_Cards_using_Number_Nine_GPUs

      "Rather than trying to start from scratch, Silicon Spectrum licensed the same graphics technology that we had developed for Number Nine and optimized it for use in an FPGA. During that same period, both Altera and Xilinx introduced cost effective low priced FPGA chips which we could fit our design into which turned a former high end PC graphics accelerator into a lower cost solution."
      http://www.siliconspectrum.com/overview.htm

    3. Re:utterly utterly worthless by hattig · · Score: 2

      None of the GPUs in current ARM SoCs are open in any sense of the word.

      Some of them are getting painfully reversed engineered open source drivers - Lima (for Mali), Grate (for Tegra), etc. But the hardware and firmware is still closed source.

      This isn't about getting cheap hardware en-masse. It's about getting fully open source hardware at any cost. And the market for that (from a user perspective) is quite small, although the benefits for FPGA computer projects could be massive - essentially a free GPU if this gets funded.

      I don't see a problem with patents for anything but the new functionality on the $1m bounty - this is all proven pre-existing hardware being open sourced at the Verilog level.

      This will need some major backing from the open source extremists to get funded.

    4. Re:utterly utterly worthless by interval1066 · · Score: 1

      Unlike the Open Graphics Project, this is starting from a working 2D accelerator and mostly working 3D accelerator cloning the features of the Number Nine Ticket to Ride hardware.

      Not surprising since one of the reasons Number Nine closed its doors was its failure to embrace 3D acceleration quickly. Still, this is a good thing and I would love to see some one add some really cool graphics to an ARM SoC or something. Wouldn't it be cool to see some hot gfx action out of a system the size of a USB stick?

      --
      Python: 'And then suddenly you have a language which says "we're all stuck with whatever the whiniest coder wants".'
    5. Re:utterly utterly worthless by Big_Breaker · · Score: 1

      No mod points so I'll comment. The binary blobs are generally not updated after a short period - sometimes as little as year. At that point you've effectively been EOL'd by your GPU because it is incompatible with later kernels. Sometimes, as is the case with the IMX6 SOC, the drivers are old when the device is released. Mir helps because android is more likely to get updates but serously... being unable to update your two year old ARM box is super lame.

      Fortunately there are efforts to reverse engineer open source drivers but its an imperfect and time consuming endevor. It would be better to have open source from the get-go or code escrow at worst for 2-3 years. I bet you modern GPUs with reverse engineered drivers will trump FPGA implementations.

    6. Re:utterly utterly worthless by fast+turtle · · Score: 1

      Seeing as how I don't have a holographic display, why in hell do I need 3d capabilities in the fscking GPU? The first Pure Linux system I built was based on the Nvidia TNT2-M64 AGP card specifically because of 2d Graphics. Now days, you can't get a fucking card that supports 2d graphics as every fucking thing is 3d this 3d that and 3dnow. Fuck this crap. Give me a solid card that's low power, doesn't need a fucking Reactor just to power my desktop and does over 10k in GLGears like that TNT2 card did and I'd be a happy camper.

      BTW: Anyone who thinks that ARM/MIPS are open source is an idiot. They're cheap and readily available for a very reasonable license fee but they are not Open Source.

      I'll take a fully Open source design that works nicely with X11/Wayland/Mir/?ever they come up with next that does everything I need (video playback, OpenGL support, CAD/CAM) that I can tweak/optimize the fucking drivers for because I have the source over Nvidia, AMD or even Intel.

      --
      Mod me up/Mod me down: I wont frown as I've no crown
  5. Who wants this? by jandrese · · Score: 1

    If this succeeds its ultimate product will be the ability to make an expensive and slow GPU using a FPGA? One that almost certainly won't be good enough to run most games? Who is clamoring for this? If they were manufacturing their own chips instead of using FPGAs then I could see it maybe as something for a Raspberry Pi like device, but that's right out the window when you're talking about $300 FPGA chips.

    --

    I read the internet for the articles.
    1. Re:Who wants this? by Stormy+Dragon · · Score: 2

      Who is clamoring for this?

      People who fetishize the term "open source" almost to the point of religion.

    2. Re:Who wants this? by SuricouRaven · · Score: 1

      Embedded hardware designs. This doesn't get it's own FPGA - it shares an FPGA with whatever else the application requires.

  6. UltraSPARC cores already fully opensource by Anonymous Coward · · Score: 1

    Sun released the (IIRC) VHDL code for their UltraSPARC cores used in the T1 and the T2 multicore CPUs.

    1. Re:UltraSPARC cores already fully opensource by hattig · · Score: 1

      I was wondering about open source CPU cores to go along with this GPU - thanks. A better bet than the T80 or T68 core!

  7. Sounds Expensive by Gavin+Scott · · Score: 1

    I've been out of the FPGA world for a while, but I would expect anything interesting in terms of a 3D chip to require a largeish FPGA chip, and if you have to use a $200-$2000 FPGA (with exotic surface-mount and power requirements) then this seems like maybe not that much of a win.

    G.

    1. Re:Sounds Expensive by SuricouRaven · · Score: 1

      Page says the 3D part is optional - you can leave it off to save gates, if you don't need the acceleration.

    2. Re:Sounds Expensive by gmarsh · · Score: 1

      Even the highest end Virtex can't touch one of AMD/nVidia's ASICs for 3D rendering, but that isn't the target market for this design.

      Here's an evaluation board for a low end FPGA chip, emulating a full 80186 PC including CPU, BIOS, keyboard controller, and VGA video:

      http://zet.aluzina.org/index.php/Altera_DE1_Installation_guide

      The Cyclone II on that card is several years old, a modern equivalent of the FPGA is about $12. Now if you haul the x86 and everything else out, you've got plenty of room freed up to enhance up that VGA controller into something more modern. That's what they're going for here.

  8. WTF is a "meelion" by X0563511 · · Score: 1, Insightful

    That kind of shit should be stripped out by "editors." No slang, please.

    --
    For large sets, this will be our guide even unto death, for the LORD will work for each type of data it is applied to...
    1. Re:WTF is a "meelion" by Great+Big+Bird · · Score: 1

      After over ten years perusing this site, I have yet to form the opinion that editors edit the submissions in any way until there is a bunch of backlash from the comments about a minor transcription error. If there is a major error, it usually is not fixed.

    2. Re:WTF is a "meelion" by NoImNotNineVolt · · Score: 1

      It can't be an ARTICLE from El Reg if the capitalization of the HEADLINE isn't retarded and is missing any reference to BOFFINS.

      --
      Chuuch. Preach. Tabernacle.
  9. As am embedded developer.. by xtal · · Score: 3, Insightful

    Open reference designs are invaluable.. they allow integration of this into an existing design or SoC, but more interestingly, provide an easy platform to customize at the hardware level.

    --
    ..don't panic
  10. Ummm by Iconoc · · Score: 1

    This is so ridiculous I don't even know where to start. Whoever is promoting this has no idea what is involved.

    If you want to learn, buy a Xilinx demo board with a VGA or HDMI connector. You can learn something from it, and begin to see what a huge amount of work something like this requires.

    Leave your high-minded ideas for open source (or free money from Kickstarter) and get a vague of idea of what you are proposing. The costs to fab anything are enormous. A $35 PCI-Express video card with no fan is a much better bargain.

  11. How about focus on OpenCL by Anonymous Coward · · Score: 2, Interesting

    I would prefer OpenCL-only chip, for massively parallel computations. I would like some really simple CPU, like MC68000 + vector FPU, with some 128KB of private memory for each core, with thousands of cores, working on 3GHz or more. It would be even better, if cores are setup in 2D grid, so that each core can access private memory of neighbouring 4 cores.

    1. Re:How about focus on OpenCL by marcosdumay · · Score: 1

      Not exactly what you asked for. Only 1 GHz, and less cores than you asked, but there are already plenty of people complaining that it's too distributed to be useful, so I guess something like that needs to prosper before people try that OpenCL chip.

  12. Patents? by 0123456 · · Score: 1

    Designing a GPU is much easier than desiginging a GPU which doesn't violate any of the massive number of GPU patents. For a while, it seemed like 'doing something a CPU does but on a GPU' was the patent equivalent of 'doing something computers have been doing for years, but on a phone'.

  13. Drivers? Resource utilization? by mako1138 · · Score: 1

    Software drivers are a challenge, and we will work on providing some level of drivers, with the hopes that the community takes them up and pushes them to new levels and provides problem reports to us.

    I assume the #9 is not nearly as complex as a modern-day GPU, but this sentence really concerns me. As a hardware guy myself, I'd want some more experienced hands on board for the software side. And a Linux driver needs to be part of the deliverables at least.

    Also, what's the resource utilization? If this thing only runs in large Virtex-class chips then it's not terribly useful to the open-source community.

    It would be really cool to have a graphics core of this level open-sourced, but I think the audience for this project is kind of small. You could build yourself a PCI graphics card for kicks, I guess, but you'd still need a PCI motherboard. Where it gets more interesting is with the "generic interface" option. Then for example you could use a Xilinx Zynq (which is an FPGA+ARM), implement the GPU in the FPGA, and talk to it on-chip over AXI. However I have a feeling they won't get to the $600000 level needed to make this possible.

  14. Oh wow, Number(N)ine! by Rinikusu · · Score: 1

    I remember having a Number(N)ine card back in the day (an Intergraph card?). It was a little obscure but came with the territory (I think that was the card I paired with a Gravis Ultrasound, as well). Good to see someone using that tech again.

    --
    If you were me, you'd be good lookin'. - six string samurai
  15. But Why? by sirwired · · Score: 1

    They aren't exactly asking for pocket-change here. They want fairly extensive funding in order to produce a product that will be utterly worthless in the marketplace... (running a GPU on an FPGA isn't exactly going to be at the upper-right of the price/perf graph.) It'd be nice if the top contributors at least got a copy of a reference design, not just a USB stick with source on it.

    It's nice that it will be "open", but I kind of think they'll have trouble getting funding for a "hobby" project that few, if any, of the backers will even be able to use. (And even if they could, would they want to?) This would be like contributing money to a new car company so they could design (but not actually build) a hand-built, but otherwise generic, mid-size sedan, but with a riding lawnmower engine in it instead a car engine. Yeah, the whole world will get a copy of the blueprints, but why would anyone ever want to build it?

    1. Re:But Why? by 0123456 · · Score: 1

      This would be like contributing money to a new car company so they could design (but not actually build) a hand-built, but otherwise generic, mid-size sedan, but with a riding lawnmower engine in it instead a car engine. Yeah, the whole world will get a copy of the blueprints, but why would anyone ever want to build it?

      So they could still travel after the NSA backdoored their 'driverless car' and shut it down?

  16. Re:Number Nine by Hsien-Ko · · Score: 1

    Are they going to keep the tradition of reusing Beatles titles?

  17. Not really an Open Source development by hobarrera · · Score: 1

    It's funny, but it seems their development model isn't really open source, they just plan to release the source when they're done.
    Mind you, I'm not saying they're lying. They never stated their development model was open source.

    What's the big difference?
    An open source development model means the source is open from day 0, both for contributions, testing, etc, etc, etc.
    This is actually a closed development (ie: behind closed doors), which later gets published.
    The quality of the end result of both development models varies greatly.

  18. Number Nine, Silicon Spectrum, old IP by Theovon · · Score: 1

    This is from Silicon Spectrum, who bought the graphics accelerator from Number Nine (i128, Ticket-to-Ride, etc.). It appears they've deviced to open source that IP. The i128 was mostly 2D with some very limited 3D support. I don't know if they managed to develop anything with programmable shaders, but they might have. Also, I think they've been selling graphics accelerator IP for FPGAs for a while; not sure.