wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Rich Ireland, Enterasys Networks, rireland@enterasys.com. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <fpga.h> |
| 9 | |
| 10 | #ifndef _XILINX_H_ |
| 11 | #define _XILINX_H_ |
| 12 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 13 | /* Xilinx types |
| 14 | *********************************************************************/ |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 15 | typedef enum { /* typedef xilinx_iface */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 16 | min_xilinx_iface_type, /* low range check value */ |
| 17 | slave_serial, /* serial data and external clock */ |
| 18 | master_serial, /* serial data w/ internal clock (not used) */ |
| 19 | slave_parallel, /* parallel data w/ external latch */ |
| 20 | jtag_mode, /* jtag/tap serial (not used ) */ |
| 21 | master_selectmap, /* master SelectMap (virtex2) */ |
| 22 | slave_selectmap, /* slave SelectMap (virtex2) */ |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 23 | devcfg, /* devcfg interface (zynq) */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 24 | max_xilinx_iface_type /* insert all new types before this */ |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 25 | } xilinx_iface; /* end, typedef xilinx_iface */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 26 | |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 27 | typedef enum { /* typedef xilinx_family */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 28 | min_xilinx_type, /* low range check value */ |
Michal Simek | b625b9a | 2014-03-13 11:23:43 +0100 | [diff] [blame] | 29 | xilinx_spartan2, /* Spartan-II Family */ |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 30 | xilinx_virtexE, /* Virtex-E Family */ |
Michal Simek | d9071ce | 2014-03-13 11:33:36 +0100 | [diff] [blame] | 31 | xilinx_virtex2, /* Virtex2 Family */ |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 32 | xilinx_spartan3, /* Spartan-III Family */ |
Michal Simek | d5dae85 | 2013-04-22 15:43:02 +0200 | [diff] [blame] | 33 | xilinx_zynq, /* Zynq Family */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 34 | max_xilinx_type /* insert all new types before this */ |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 35 | } xilinx_family; /* end, typedef xilinx_family */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 36 | |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 37 | typedef struct { /* typedef xilinx_desc */ |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 38 | xilinx_family family; /* part type */ |
| 39 | xilinx_iface iface; /* interface type */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 40 | size_t size; /* bytes of data part can accept */ |
| 41 | void *iface_fns; /* interface function table */ |
| 42 | int cookie; /* implementation specific cookie */ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 43 | struct xilinx_fpga_op *operations; /* operations */ |
Michal Simek | 6631db4 | 2013-04-26 15:04:48 +0200 | [diff] [blame] | 44 | char *name; /* device name in bitstream */ |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 45 | } xilinx_desc; /* end, typedef xilinx_desc */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 46 | |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 47 | struct xilinx_fpga_op { |
Michal Simek | 7a78bd2 | 2014-05-02 14:09:30 +0200 | [diff] [blame] | 48 | int (*load)(xilinx_desc *, const void *, size_t, bitstream_type); |
Siva Durga Prasad Paladugu | 1a89766 | 2014-03-14 16:35:37 +0530 | [diff] [blame] | 49 | int (*loadfs)(xilinx_desc *, const void *, size_t, fpga_fs_info *); |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 50 | int (*dump)(xilinx_desc *, const void *, size_t); |
| 51 | int (*info)(xilinx_desc *); |
| 52 | }; |
| 53 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 54 | /* Generic Xilinx Functions |
| 55 | *********************************************************************/ |
Michal Simek | 7a78bd2 | 2014-05-02 14:09:30 +0200 | [diff] [blame] | 56 | int xilinx_load(xilinx_desc *desc, const void *image, size_t size, |
| 57 | bitstream_type bstype); |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 58 | int xilinx_dump(xilinx_desc *desc, const void *buf, size_t bsize); |
| 59 | int xilinx_info(xilinx_desc *desc); |
Siva Durga Prasad Paladugu | 1a89766 | 2014-03-14 16:35:37 +0530 | [diff] [blame] | 60 | int xilinx_loadfs(xilinx_desc *desc, const void *buf, size_t bsize, |
| 61 | fpga_fs_info *fpga_fsinfo); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 62 | |
| 63 | /* Board specific implementation specific function types |
| 64 | *********************************************************************/ |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 65 | typedef int (*xilinx_pgm_fn)(int assert_pgm, int flush, int cookie); |
| 66 | typedef int (*xilinx_init_fn)(int cookie); |
| 67 | typedef int (*xilinx_err_fn)(int cookie); |
| 68 | typedef int (*xilinx_done_fn)(int cookie); |
| 69 | typedef int (*xilinx_clk_fn)(int assert_clk, int flush, int cookie); |
| 70 | typedef int (*xilinx_cs_fn)(int assert_cs, int flush, int cookie); |
| 71 | typedef int (*xilinx_wr_fn)(int assert_write, int flush, int cookie); |
| 72 | typedef int (*xilinx_rdata_fn)(unsigned char *data, int cookie); |
| 73 | typedef int (*xilinx_wdata_fn)(unsigned char data, int flush, int cookie); |
| 74 | typedef int (*xilinx_busy_fn)(int cookie); |
| 75 | typedef int (*xilinx_abort_fn)(int cookie); |
| 76 | typedef int (*xilinx_pre_fn)(int cookie); |
| 77 | typedef int (*xilinx_post_fn)(int cookie); |
| 78 | typedef int (*xilinx_bwr_fn)(void *buf, size_t len, int flush, int cookie); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 79 | |
| 80 | #endif /* _XILINX_H_ */ |