wdenk | 024a26b | 2002-08-21 21:35:08 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Rich Ireland, Enterasys Networks, rireland@enterasys.com. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 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. |
| 12 | * |
| 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. |
| 17 | * |
| 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, |
| 21 | * MA 02111-1307 USA |
| 22 | * |
| 23 | */ |
| 24 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 25 | #include <linux/types.h> /* for ulong typedef */ |
wdenk | 024a26b | 2002-08-21 21:35:08 +0000 | [diff] [blame] | 26 | |
| 27 | #ifndef _FPGA_H_ |
| 28 | #define _FPGA_H_ |
| 29 | |
| 30 | #ifndef CONFIG_MAX_FPGA_DEVICES |
| 31 | #define CONFIG_MAX_FPGA_DEVICES 5 |
| 32 | #endif |
| 33 | |
wdenk | 024a26b | 2002-08-21 21:35:08 +0000 | [diff] [blame] | 34 | /* fpga_xxxx function return value definitions */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 35 | #define FPGA_SUCCESS 0 |
| 36 | #define FPGA_FAIL -1 |
wdenk | 024a26b | 2002-08-21 21:35:08 +0000 | [diff] [blame] | 37 | |
| 38 | /* device numbers must be non-negative */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 39 | #define FPGA_INVALID_DEVICE -1 |
wdenk | 024a26b | 2002-08-21 21:35:08 +0000 | [diff] [blame] | 40 | |
| 41 | /* root data type defintions */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 42 | typedef enum { /* typedef fpga_type */ |
| 43 | fpga_min_type, /* range check value */ |
| 44 | fpga_xilinx, /* Xilinx Family) */ |
| 45 | fpga_altera, /* unimplemented */ |
Stefano Babic | 3b8ac46 | 2010-06-29 11:47:48 +0200 | [diff] [blame] | 46 | fpga_lattice, /* Lattice family */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 47 | fpga_undefined /* invalid range check value */ |
| 48 | } fpga_type; /* end, typedef fpga_type */ |
wdenk | 024a26b | 2002-08-21 21:35:08 +0000 | [diff] [blame] | 49 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 50 | typedef struct { /* typedef fpga_desc */ |
| 51 | fpga_type devtype; /* switch value to select sub-functions */ |
| 52 | void *devdesc; /* real device descriptor */ |
| 53 | } fpga_desc; /* end, typedef fpga_desc */ |
wdenk | 024a26b | 2002-08-21 21:35:08 +0000 | [diff] [blame] | 54 | |
| 55 | |
| 56 | /* root function definitions */ |
Wolfgang Denk | e6a857d | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 57 | extern void fpga_init(void); |
| 58 | extern int fpga_add(fpga_type devtype, void *desc); |
| 59 | extern int fpga_count(void); |
| 60 | extern int fpga_load(int devnum, const void *buf, size_t bsize); |
Michal Simek | 23f4bd7 | 2013-05-01 19:02:02 +0200 | [diff] [blame] | 61 | extern int fpga_loadbitstream(int devnum, char *fpgadata, size_t size); |
Wolfgang Denk | e6a857d | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 62 | extern int fpga_dump(int devnum, const void *buf, size_t bsize); |
| 63 | extern int fpga_info(int devnum); |
Michal Simek | 6631db4 | 2013-04-26 15:04:48 +0200 | [diff] [blame] | 64 | extern const fpga_desc *const fpga_validate(int devnum, const void *buf, |
| 65 | size_t bsize, char *fn); |
wdenk | 024a26b | 2002-08-21 21:35:08 +0000 | [diff] [blame] | 66 | |
| 67 | #endif /* _FPGA_H_ */ |