Skip to content
Snippets Groups Projects
  1. Nov 10, 2022
  2. Mar 17, 2022
  3. Feb 09, 2017
  4. Apr 29, 2016
  5. Apr 28, 2016
  6. Apr 27, 2016
  7. Feb 18, 2015
  8. Feb 04, 2015
  9. Jul 11, 2014
  10. Apr 22, 2014
  11. Apr 14, 2014
    • Wesley W. Terpstra's avatar
      pcie/vme bug: race condition in checking empty flag and pop · 2ffc716f
      Wesley W. Terpstra authored
      The drivers were popping the slave request FIFO, whether it was empty or not.
      This seemed safe since empty FIFOs do nothing when popped. However, if the
      FIFO receives an element between the empty check and the pop, we might pop
      an element without ever seeing it. Under load this led to lost interrupts.
      2ffc716f
  12. Apr 03, 2014
  13. Mar 26, 2014
  14. Mar 25, 2014
  15. Mar 20, 2014
  16. Mar 19, 2014
  17. Feb 27, 2014
  18. Jan 15, 2014
  19. Jan 14, 2014
  20. Oct 28, 2013
  21. Oct 25, 2013
  22. Sep 04, 2013
    • Cesar Prados's avatar
      vme-wb: add the wb to vme bridge kernel module. · f96d4189
      Cesar Prados authored
      It allows to use from a vme master eb commands (e.g. eb-ls) over the vme interface.
      It follows the philosophy of pci-wb. So far only reading eb commands are supported.
      The development is in a test phase, for that reason there are hardcode values and paths.
      
      Main files:
      vme_wb.*: register the kernel module and creates two VME windows, the first for the
                setting of the CSR/CR parameters in the vme slave, and second for data
                communication.
      Module.symvers: it is needed for the correct compilation of the module sice it uses functions
                      from wishbone.ko and vmebus.ko.
      scripts for inserting and removing the module.
      f96d4189