Skip to content
Snippets Groups Projects
  1. Mar 20, 2018
  2. Mar 19, 2018
    • Dimitris Lampridis's avatar
      hdl: Eradicate INT from wishbone records and peripheral ports. · 61ca3f49
      Dimitris Lampridis authored
      For the few peripherals where it was being used (eg. uart, spi, etc) the output port
      has been renamed to "int_o".
      
      The only peripheral that was not touched is "wb_eic.vhd", because this one is being used
      by wbgen, and it would require users to update their wbgen tool as well. So, until a new
      tool is introduced, wbgen-generated interrupt controllers will have an output port called
      wb_int_o".
      61ca3f49
  3. Mar 09, 2018
  4. Dec 14, 2017
  5. Dec 13, 2017
  6. Feb 17, 2017
  7. Feb 14, 2017
  8. Oct 27, 2016
    • Dimitris Lampridis's avatar
      sdb: fix nibble order in commit_id field of SDB synthesis record. Closes #1399. · 2943524e
      Dimitris Lampridis authored
      This was due to a bug in the f_string2bits() which took the commit ID as a string argument, assuming that the character array of the string is (32 downto 1), while in fact the commit_id is a string(1 to 32).
      
      f_string2bits() is now  more resilient, it works with both "up" and "downto" string arguments, by checking the "ascending" attribute of the string type.
      2943524e
  9. Oct 17, 2016
  10. Sep 27, 2016
  11. Apr 22, 2016
  12. Apr 21, 2016
  13. Mar 30, 2016
    • Wesley W. Terpstra's avatar
      wishbone_pkg: fix ghdl compile errors; type not locally static · 6346131a
      Wesley W. Terpstra authored
      The subrange type might not be known in this context.
      Fixes:
        wishbone_pkg.vhd:1379:26: object subtype is not locally static
      6346131a
    • Wesley W. Terpstra's avatar
      wishbone_pkg: fix ghdl compile errors due to loop over length of a variable · 30a36213
      Wesley W. Terpstra authored
      Variable lengths might change; standard forbids length in a loop.
      Fixes:
        wishbone_pkg.vhd:1576:18: universal integer bound must be numeric literal or attribute
        wishbone_pkg.vhd:1613:18: universal integer bound must be numeric literal or attribute
        wishbone_pkg.vhd:1734:30: universal integer bound must be numeric literal or attribute
        wishbone_pkg.vhd:1771:16: universal integer bound must be numeric literal or attribute
        wishbone_pkg.vhd:1806:16: universal integer bound must be numeric literal or attribute
        wishbone_pkg.vhd:1817:16: universal integer bound must be numeric literal or attribute
      30a36213
  14. Nov 18, 2015
  15. Nov 16, 2015
  16. Feb 24, 2015
  17. Feb 17, 2015
  18. Aug 04, 2014
  19. Jul 31, 2014
  20. May 20, 2014
  21. Apr 30, 2014
  22. Apr 25, 2014
  23. Apr 17, 2014
    • Wesley W. Terpstra's avatar
      spi flash: remove initialization and move erase to software · adc49ee7
      Wesley W. Terpstra authored
      Using the volatile configuration register to configure a flash chip
      is a bad idea. The problem is that if the FPGA is reset, the flash
      may be in a state inconsistent with what the FPGA requires to boot.
      
      The correct solution is to configure the non-volatile configuration
      register on the chip to what the FPGA expects on power-on. Then use
      these same settings inside the flash core.
      
      Going this route makes it necessary for software to be able to set
      the non-volatile configuration register. Rather than making the core
      even more complicated than it is, I have elected to add a FIFO which
      software can fill to issue custom SPI commands. Since erase can only
      be done from software anyway, I removed this code and let erase use
      the custom command FIFO.
      adc49ee7
  24. Mar 28, 2014
  25. Feb 27, 2014
  26. Feb 06, 2014