xref: /rk3399_rockchip-uboot/include/stratixII.h (revision 3c735e7437150e8615f26930c7819db85634276d)
1*3c735e74Seran liberty /*
2*3c735e74Seran liberty  * (C) Copyright 2007
3*3c735e74Seran liberty  * Eran Liberty, Extricom, eran.liberty@gmail.com
4*3c735e74Seran liberty  *
5*3c735e74Seran liberty  * See file CREDITS for list of people who contributed to this
6*3c735e74Seran liberty  * project.
7*3c735e74Seran liberty  *
8*3c735e74Seran liberty  * This program is free software; you can redistribute it and/or
9*3c735e74Seran liberty  * modify it under the terms of the GNU General Public License as
10*3c735e74Seran liberty  * published by the Free Software Foundation; either version 2 of
11*3c735e74Seran liberty  * the License, or (at your option) any later version.
12*3c735e74Seran liberty  *
13*3c735e74Seran liberty  * This program is distributed in the hope that it will be useful,
14*3c735e74Seran liberty  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15*3c735e74Seran liberty  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16*3c735e74Seran liberty  * GNU General Public License for more details.
17*3c735e74Seran liberty  *
18*3c735e74Seran liberty  * You should have received a copy of the GNU General Public License
19*3c735e74Seran liberty  * along with this program; if not, write to the Free Software
20*3c735e74Seran liberty  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*3c735e74Seran liberty  * MA 02111-1307 USA
22*3c735e74Seran liberty  *
23*3c735e74Seran liberty  */
24*3c735e74Seran liberty #ifndef _STRATIXII_H_
25*3c735e74Seran liberty #define _STRATIXII_H_
26*3c735e74Seran liberty 
27*3c735e74Seran liberty extern int StratixII_load (Altera_desc * desc, void *image, size_t size);
28*3c735e74Seran liberty extern int StratixII_dump (Altera_desc * desc, void *buf, size_t bsize);
29*3c735e74Seran liberty extern int StratixII_info (Altera_desc * desc);
30*3c735e74Seran liberty extern int StratixII_reloc (Altera_desc * desc, ulong reloc_off);
31*3c735e74Seran liberty 
32*3c735e74Seran liberty #endif				/* _STRATIXII_H_ */
33