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 | * |
| 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 | |
| 25 | #include <fpga.h> |
| 26 | |
| 27 | #ifndef _ALTERA_H_ |
| 28 | #define _ALTERA_H_ |
| 29 | |
| 30 | /* |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 31 | * See include/xilinx.h for another working example. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 32 | */ |
| 33 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 34 | /* Altera Model definitions |
| 35 | *********************************************************************/ |
| 36 | #define CFG_ACEX1K CFG_FPGA_DEV( 0x1 ) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 37 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 38 | #define CFG_ALTERA_ACEX1K (CFG_FPGA_ALTERA | CFG_ACEX1K) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 39 | /* Add new models here */ |
| 40 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 41 | /* Altera Interface definitions |
| 42 | *********************************************************************/ |
| 43 | #define CFG_ALTERA_IF_PS CFG_FPGA_IF( 0x1 ) /* passive serial */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 44 | /* Add new interfaces here */ |
| 45 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 46 | typedef enum { /* typedef Altera_iface */ |
| 47 | min_altera_iface_type, /* insert all new types after this */ |
| 48 | passive_serial, /* serial data and external clock */ |
| 49 | passive_parallel_synchronous, /* parallel data */ |
| 50 | passive_parallel_asynchronous, /* parallel data */ |
| 51 | passive_serial_asynchronous, /* serial data w/ internal clock (not used) */ |
| 52 | altera_jtag_mode, /* jtag/tap serial (not used ) */ |
| 53 | max_altera_iface_type /* insert all new types before this */ |
| 54 | } Altera_iface; /* end, typedef Altera_iface */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 55 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 56 | typedef enum { /* typedef Altera_Family */ |
| 57 | min_altera_type, /* insert all new types after this */ |
| 58 | Altera_ACEX1K, /* ACEX1K Family */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 59 | /* Add new models here */ |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 60 | max_altera_type /* insert all new types before this */ |
| 61 | } Altera_Family; /* end, typedef Altera_Family */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 62 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 63 | typedef struct { /* typedef Altera_desc */ |
| 64 | Altera_Family family; /* part type */ |
| 65 | Altera_iface iface; /* interface type */ |
| 66 | size_t size; /* bytes of data part can accept */ |
| 67 | void * iface_fns;/* interface function table */ |
| 68 | void * base; /* base interface address */ |
| 69 | int cookie; /* implementation specific cookie */ |
| 70 | } Altera_desc; /* end, typedef Altera_desc */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 71 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 72 | /* Generic Altera Functions |
| 73 | *********************************************************************/ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 74 | extern int altera_load( Altera_desc *desc, void *image, size_t size ); |
| 75 | extern int altera_dump( Altera_desc *desc, void *buf, size_t bsize ); |
| 76 | extern int altera_info( Altera_desc *desc ); |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 77 | extern int altera_reloc( Altera_desc *desc, ulong reloc_offset ); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 78 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 79 | /* Board specific implementation specific function types |
| 80 | *********************************************************************/ |
| 81 | typedef int (*Altera_pre_fn)( int cookie ); |
| 82 | typedef int (*Altera_config_fn)( int assert_config, int flush, int cookie ); |
| 83 | typedef int (*Altera_status_fn)( int cookie ); |
| 84 | typedef int (*Altera_done_fn)( int cookie ); |
| 85 | typedef int (*Altera_clk_fn)( int assert_clk, int flush, int cookie ); |
| 86 | typedef int (*Altera_data_fn)( int assert_data, int flush, int cookie ); |
| 87 | typedef int (*Altera_abort_fn)( int cookie ); |
| 88 | typedef int (*Altera_post_fn)( int cookie ); |
| 89 | |
| 90 | #endif /* _ALTERA_H_ */ |