fpga.h 460 B

123456789101112131415
  1. /*
  2. * (C) Copyright 2002
  3. * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
  4. * Keith Outwater, keith_outwater@mvis.com.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. extern int mvblx_init_fpga(void);
  9. extern int fpga_status_fn(int cookie);
  10. extern int fpga_config_fn(int assert, int flush, int cookie);
  11. extern int fpga_done_fn(int cookie);
  12. extern int fpga_wr_fn(const void *buf, size_t len, int flush, int cookie);
  13. extern int fpga_null_fn(int cookie);