Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | icebox: Fix LUT output code. | Tim 'mithro' Ansell | 2018-06-11 | 1 | -5/+5 |
| | | | | sig values where "1'b0" and "1'b1" not "0" or "1". | ||||
* | Fix icebox_html -8 mode | Clifford Wolf | 2018-06-10 | 1 | -1/+1 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fix routing description in icebox_html output | Clifford Wolf | 2018-06-10 | 1 | -2/+2 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fix "routing" vs "buffer" documentation | Clifford Wolf | 2018-06-10 | 1 | -9/+3 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Merge pull request #150 from mithro/better-error | Clifford Wolf | 2018-06-05 | 1 | -3/+10 |
|\ | | | | | Improve error message. | ||||
| * | Improve error message. | Tim 'mithro' Ansell | 2018-06-04 | 1 | -3/+10 |
|/ | | | | | | | | | | | | | | | | | | | | | Now; ----------------- Parse error in line 364: span4_y9_g7_10 <-> span4_x3_g13_5 conflicting bits ['!B12[8]', '!B12[9]', 'B12[10]'] setting:{(12, 10)} - current clear:{(12, 10), (12, 8)} clearing:{(12, 9), (12, 8)} - current set :{(12, 9)} ----------------- Previously; ----------------- File "icebox_hlc2asc.py", line 742, in apply_directive self.set_bits(bits) File "icebox_hlc2asc.py", line 762, in set_bits raise ParseError("conflicting bits") TypeError: __init__() takes 1 positional argument but 2 were given ----------------- | ||||
* | Merge pull request #147 from mithro/hlc-fixes | Clifford Wolf | 2018-06-01 | 1 | -4/+37 |
|\ | | | | | Allow routing (bidir) entries to be looked up in either direction. | ||||
| * | Allow routing (bidir) entries to be looked up in either direction. | Tim 'mithro' Ansell | 2018-06-01 | 1 | -4/+37 |
| | | |||||
* | | Merge pull request #146 from mithro/hlc-fixes | Clifford Wolf | 2018-05-31 | 1 | -5/+34 |
|\| | | | | | Support both `abc/123` and `123` forms of specifying tracks. | ||||
| * | Better error message when bit pattern is missing. | Tim 'mithro' Ansell | 2018-05-30 | 1 | -3/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously; ``` self.apply_directive('buffer', src, dst) File "/usr/local/google/home/tansell/work/catx/vtr/env/conda/bin/icebox_hlc2asc", line 698, in apply_directive bits, = [entry[0] for entry in self.db if entry[1:] == fields] ValueError: not enough values to unpack (expected 1, got 0) ``` Now: ``` Parse error in line 2108: span12_y4_g14_0 -> span4_y4_g11_7 <-> span4_x7_g4_0 No bit pattern for ['buffer', 'sp12_h_r_11', 'sp4_h_r_7'] in LogicTile(1k, 7, 4) ``` | ||||
| * | Allow prefixes in multiple chained statements. | Tim 'mithro' Ansell | 2018-05-30 | 1 | -2/+9 |
| | | | | | | | | | | | | | | | | | | | | | | IE ``` lutff_1 { lutff_1/out -> local_g2_1 -> lutff_1/in_0 local_g2_2 -> lutff_1/in_3 local_g2_7 -> lutff_1/in_2 } ``` | ||||
| * | Support both `abc/123` and `123` forms of specifying tracks. | Tim 'mithro' Ansell | 2018-05-30 | 1 | -0/+14 |
| | | | | | | | | Kind of fixes #145. | ||||
* | | Merge pull request #144 from daveshah1/unbrick | Clifford Wolf | 2018-05-30 | 1 | -3/+46 |
|\ \ | | | | | | | Add write protection disable to iceprog | ||||
| * | | Add write protection disable to iceprog | David Shah | 2018-02-12 | 1 | -3/+46 |
| | | | |||||
* | | | Merge pull request #143 from daveshah1/vlogpkg | Clifford Wolf | 2018-05-30 | 2 | -8/+18 |
|\ \ \ | |_|/ |/| | | Allow selecting package in icebox_vlog | ||||
| * | | icebox: Allow selecting package in icebox_vlog | David Shah | 2018-05-30 | 2 | -8/+18 |
|/ / | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com> | ||||
* | | Update timeline on website | Clifford Wolf | 2018-05-14 | 1 | -0/+1 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Merge pull request #139 from awygle/lm_icebox | Clifford Wolf | 2018-05-13 | 13 | -15/+521 |
|\ \ | | | | | | | Icebox support for ice40 LM | ||||
| * | | Add chipdb-lm4k.txt to .gitignore | Andrew Wygle | 2018-05-13 | 1 | -0/+1 |
| | | | |||||
| * | | Correct internal global buffers for lm4k | Andrew Wygle | 2018-05-13 | 1 | -2/+2 |
| | | | |||||
| * | | Added missing ieren entries for lm4k. | Andrew Wygle | 2018-05-13 | 2 | -27/+31 |
| | | | | | | | | | | | | Config SPI pins weren't present in ioctrl_lm4k.sh | ||||
| * | | Add lm4k chipdb to icebox Makefile. | Andrew Wygle | 2018-05-13 | 1 | -2/+8 |
| | | | |||||
| * | | Support lm4k in icebox_chipdb.py. | Andrew Wygle | 2018-05-13 | 2 | -2/+10 |
| | | | |||||
| * | | Completed first pass at icebox support for lm4k. | Andrew Wygle | 2018-05-12 | 1 | -11/+14 |
| | | | | | | | | | | | | Needs testing. | ||||
| * | | [WIP] Added colbuf and gbufin data for LM series | Andrew Wygle | 2018-05-12 | 1 | -8/+25 |
| | | | |||||
| * | | [WIP] Add partial icebox support for lm4k. | Andrew Wygle | 2018-05-12 | 8 | -12/+455 |
| | | | |||||
| * | | Add LM4K to icefuzz Makefile and fuzzconfig.py. | Andrew Wygle | 2018-05-12 | 2 | -0/+24 |
| | | | |||||
* | | | Extact reproducable chipdb-5k.txt | Clifford Wolf | 2018-05-13 | 1 | -2/+2 |
|/ / | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Merge pull request #138 from awygle/lm4k_icepack | Clifford Wolf | 2018-05-12 | 2 | -1/+68 |
|\ \ | | | | | | | LM4K support in icepack and icecube.sh | ||||
| * | | Add lm4k detection support to icepack. | Andrew Wygle | 2018-05-06 | 1 | -1/+12 |
| | | | |||||
| * | | Add LM family support to icecube.sh | Andrew Wygle | 2018-05-06 | 1 | -0/+56 |
|/ / | |||||
* | | Merge pull request #132 from daveshah1/bg121_docs | Clifford Wolf | 2018-04-24 | 2 | -6/+198 |
|\ \ | | | | | | | Add BG121 package variant and update docs | ||||
| * | | Add BG121 package variant and update docs | David Shah | 2018-04-02 | 2 | -6/+198 |
| | | | |||||
* | | | Merge pull request #133 from mcmasterg/doc | Clifford Wolf | 2018-04-24 | 2 | -4/+4 |
|\ \ \ | | | | | | | | | docs: spelling/grammer | ||||
| * | | | docs: spelling/grammer | John McMaster | 2018-04-09 | 2 | -4/+4 |
|/ / / | | | | | | | | | | Signed-off-by: John McMaster <johndmcmaster@gmail.com> | ||||
* / / | Add link to "IceStorm Learners Documentation" | Clifford Wolf | 2018-04-08 | 1 | -0/+1 |
|/ / | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Merge pull request #108 from rqou/master | Clifford Wolf | 2018-04-01 | 5 | -0/+80 |
|\ \ | | | | | | | Better emscripten support | ||||
| * | | Mount NODEFS if using emscripten and nodejs | Robert Ou | 2018-03-31 | 5 | -0/+80 |
|/ / | | | | | | | | | Mounts root directory on `/hostfs` and the current working directory on `/hostcwd` | ||||
* | | Merge pull request #131 from esden/iceprog_less_magic | Clifford Wolf | 2018-03-27 | 1 | -20/+137 |
|\ \ | | | | | | | Add MPSSE and Flash command definitions | ||||
| * | | Added some flash command definitions to decrease magic number usage. | Piotr Esden-Tempski | 2018-03-11 | 1 | -9/+49 |
| | | | |||||
| * | | Added some MPSSE command definitions to decrease magic number usage. | Piotr Esden-Tempski | 2018-03-11 | 1 | -11/+88 |
|/ / | |||||
* | | Merge pull request #130 from tomverbeure/icepll_options | Clifford Wolf | 2018-03-10 | 1 | -3/+10 |
|\ \ | | | | | | | Add -n <module_name> option | ||||
| * | | Add -n <module_name> option | Tom Verbeure | 2018-03-10 | 1 | -3/+10 |
|/ / | |||||
* | | Merge pull request #129 from daveshah1/icetime_ufix | Clifford Wolf | 2018-02-28 | 1 | -4/+10 |
|\ \ | | | | | | | Fix handling of a port name like CLKHF_FABRIC in icetime | ||||
| * | | Fix handling of a port name like CLKHF_FABRIC in icetime | David Shah | 2018-02-28 | 1 | -4/+10 |
| | | | | | | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com> | ||||
* | | | Merge pull request #126 from daveshah1/icetime_bfix | Clifford Wolf | 2018-02-20 | 1 | -4/+8 |
|\| | | | | | | | | Properly ignore unsupported cell types | ||||
| * | | Properly ignore unsupported cell types | David Shah | 2018-02-19 | 1 | -4/+8 |
| | | | |||||
* | | | Merge pull request #124 from daveshah1/ultra | Clifford Wolf | 2018-02-14 | 1 | -2/+26 |
|\| | | | | | | | | Add iCE40 Ultra (ice5lp) support to icepack | ||||
| * | | Add iCE40 Ultra (ice5lp) support to icepack | David Shah | 2018-02-13 | 1 | -2/+26 |
|/ / | |||||
* | | Merge pull request #123 from daveshah1/up5k_io | Clifford Wolf | 2018-02-13 | 1 | -1/+14 |
|\ \ | |/ |/| | Add RGB driver LED pins and I³C IOs to chipdb |