diff options
Diffstat (limited to 'roms/u-boot/board/matrix_vision/mvblm7/fpga.h')
-rw-r--r-- | roms/u-boot/board/matrix_vision/mvblm7/fpga.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roms/u-boot/board/matrix_vision/mvblm7/fpga.h b/roms/u-boot/board/matrix_vision/mvblm7/fpga.h new file mode 100644 index 00000000..b480c09b --- /dev/null +++ b/roms/u-boot/board/matrix_vision/mvblm7/fpga.h @@ -0,0 +1,17 @@ +/* + * (C) Copyright 2002 + * Rich Ireland, Enterasys Networks, rireland@enterasys.com. + * Keith Outwater, keith_outwater@mvis.com. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +extern int mvblm7_init_fpga(void); + +extern int fpga_pgm_fn(int assert_pgm, int flush, int cookie); +extern int fpga_status_fn(int cookie); +extern int fpga_config_fn(int assert, int flush, int cookie); +extern int fpga_done_fn(int cookie); +extern int fpga_clk_fn(int assert_clk, int flush, int cookie); +extern int fpga_wr_fn(const void *buf, size_t len, int flush, int cookie); +extern int fpga_null_fn(int cookie); |