As an FPGA developer, I think this is a noble effort, but will be of limited use in porting their design (one of their stated goals).<p>Essentially all of the modules they are asking for "clones" of directly instantiate hardware primitives on the FPGA die. Many of the blocks are basically analog pieces that won't be easily synthesizable from Verilog. While the simulation would work with other tools, the block won't be able to be mapped in other FPGA architectures.
Someone please tell these people about Archipelago FPGA:<p><a href="http://www.eecs.berkeley.edu/Pubs/TechRpts/2014/EECS-2014-43.pdf" rel="nofollow">http://www.eecs.berkeley.edu/Pubs/TechRpts/2014/EECS-2014-43...</a><p>It's already at 45-65nm with configurable logic and memory cells. They're working on multipliers next. Open-source flows for bitstream and synthesis already exist that can be targeted to this if it hasn't already. Lean on those people for something to use and you might get it. Write other students working in FPGA-related fields to contribute their prototype enhancements to Archipelago and all get published. We'll get stuff over time that commercial or grant-based efforts can turn into a real chip.
It should be possible to write the majority of the code for an FPGA in a generic fashion and get the tools to infer things like RAM's by the way the Verilog or VHDL is written. Ideally, I think you should only have FPGA specific blocks in the very toplevel of a design and the majority of the design should be agnostic to the FPGA architecture. For example if you write your code like this:<p><pre><code> reg [31:0] mem[0:1023];
always @(posedge clk) begin
rd_data <= mem[rd_addr];
if (wr_en)
mem[wr_addr] <= wr_data;
end
</code></pre>
Then tools like vivado, quartus, synplify will infer a 1k x 32bits ram.
A more productive route might be to port the camera project [1] (for which the models are being requested) to use the Lattice ICE series of FPGAs and use the open source Project ICEstorm tool chain [2]?<p>That would have the dual effect of further developing the free tool chain, and sending a (small) signal to Xilinx that if they don't take Free Software seriously they will start to lose customers.<p>[1] <a href="https://github.com/Elphel/x393" rel="nofollow">https://github.com/Elphel/x393</a><p>[2] <a href="http://www.clifford.at/icestorm/" rel="nofollow">http://www.clifford.at/icestorm/</a><p>-----<p>edit: change "GPL licensed" to "open source", as a variety of licenses are used.
"I hope that in the future there will be laws that will limit the monopoly of the device manufacturers and require complete documentation for the products they release to the public."<p>Oh god, please no.<p>On another note though, I'm a big fan of the work done by Clifford in bringing up a full working synthesis toolchain for iCE40; and I'd love for Lattice to cooperate and, dare say, fund the work.<p>I would program big FPGAs if I could do it with a free toolchain. Current toolchains are really cumbersome, and assume far too much about the designer's workflow. On top of that, they're absolutely insane to set up and activate. I bought a Zybo a few months ago to try their tools out, but after activating the seat I still wasn't allowed to synthesize to my device and basically just gave up. Lattice can take credit for theirs being the least painful; but it's still not what it could be if it were modular and free.