diff options
| author | Tom Rini <trini@ti.com> | 2013-10-02 11:45:22 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-10-02 11:45:22 -0400 | 
| commit | 6297872cd5de4705b6318778261b1f3f64a34c11 (patch) | |
| tree | 7159ac1b03daa6906c8609b2515e42214f3bc422 /board/armadeus/apf27/fpga.h | |
| parent | 0ae39166b1babbc86da4269458da9bce198bce55 (diff) | |
| parent | f04c53762962280365005c9db12ab561a18f2692 (diff) | |
| download | olio-uboot-2014.01-6297872cd5de4705b6318778261b1f3f64a34c11.tar.xz olio-uboot-2014.01-6297872cd5de4705b6318778261b1f3f64a34c11.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'board/armadeus/apf27/fpga.h')
| -rw-r--r-- | board/armadeus/apf27/fpga.h | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/board/armadeus/apf27/fpga.h b/board/armadeus/apf27/fpga.h new file mode 100644 index 000000000..84a5244a6 --- /dev/null +++ b/board/armadeus/apf27/fpga.h @@ -0,0 +1,25 @@ +/* + * (C) Copyright 2002-2013 + * Eric Jarrige <eric.jarrige@armadeus.org> + * + * based on the files by + * Rich Ireland, Enterasys Networks, rireland@enterasys.com + * and + * Keith Outwater, keith_outwater@mvis.com + * + * SPDX-License-Identifier:     GPL-2.0+ + */ +extern void APF27_init_fpga(void); + +extern int fpga_pre_fn(int cookie); +extern int fpga_pgm_fn(int assert_pgm, int flush, int cookie); +extern int fpga_cs_fn(int assert_cs, int flush, int cookie); +extern int fpga_init_fn(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(int assert_write, int flush, int cookie); +extern int fpga_rdata_fn(unsigned char *data, int cookie); +extern int fpga_wdata_fn(unsigned char data, int flush, int cookie); +extern int fpga_abort_fn(int cookie); +extern int fpga_post_fn(int cookie); +extern int fpga_busy_fn(int cookie); |