3 * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 #include <linux/types.h> /* for ulong typedef */
30 #ifndef CONFIG_MAX_FPGA_DEVICES
31 #define CONFIG_MAX_FPGA_DEVICES 5
34 /* CONFIG_FPGA bit assignments */
35 #define CONFIG_SYS_FPGA_MAN(x) (x)
36 #define CONFIG_SYS_FPGA_DEV(x) ((x) << 8 )
37 #define CONFIG_SYS_FPGA_IF(x) ((x) << 16 )
39 /* FPGA Manufacturer bits in CONFIG_FPGA */
40 #define CONFIG_SYS_FPGA_XILINX CONFIG_SYS_FPGA_MAN( 0x1 )
41 #define CONFIG_SYS_FPGA_ALTERA CONFIG_SYS_FPGA_MAN( 0x2 )
44 /* fpga_xxxx function return value definitions */
45 #define FPGA_SUCCESS 0
48 /* device numbers must be non-negative */
49 #define FPGA_INVALID_DEVICE -1
51 /* root data type defintions */
52 typedef enum { /* typedef fpga_type */
53 fpga_min_type, /* range check value */
54 fpga_xilinx, /* Xilinx Family) */
55 fpga_altera, /* unimplemented */
56 fpga_lattice, /* Lattice family */
57 fpga_undefined /* invalid range check value */
58 } fpga_type; /* end, typedef fpga_type */
60 typedef struct { /* typedef fpga_desc */
61 fpga_type devtype; /* switch value to select sub-functions */
62 void *devdesc; /* real device descriptor */
63 } fpga_desc; /* end, typedef fpga_desc */
66 /* root function definitions */
67 extern void fpga_init(void);
68 extern int fpga_add(fpga_type devtype, void *desc);
69 extern int fpga_count(void);
70 extern int fpga_load(int devnum, const void *buf, size_t bsize);
71 extern int fpga_dump(int devnum, const void *buf, size_t bsize);
72 extern int fpga_info(int devnum);