Skip to content
Snippets Groups Projects
  1. 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
  2. Apr 03, 2014
  3. Mar 26, 2014
  4. Mar 25, 2014
  5. Mar 20, 2014
  6. Mar 19, 2014
  7. Feb 27, 2014
  8. Jan 15, 2014
  9. Jan 14, 2014
  10. Nov 08, 2013
  11. Nov 07, 2013
  12. Oct 28, 2013
  13. Oct 25, 2013
  14. Oct 23, 2013
  15. Sep 20, 2013
  16. Sep 10, 2013
  17. 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