fpga.c 8.4 KB
Newer Older
W
wdenk 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
/*
 * (C) Copyright 2002
 * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 *
 */

/*
 *  Generic FPGA support
 */
#include <common.h>             /* core U-Boot definitions */
#include <xilinx.h>             /* xilinx specific definitions */
#include <altera.h>             /* altera specific definitions */

#if defined(CONFIG_FPGA)

#if 0
#define FPGA_DEBUG              /* define FPGA_DEBUG to get debug messages */
#endif

/* Local definitions */
#ifndef CONFIG_MAX_FPGA_DEVICES
#define CONFIG_MAX_FPGA_DEVICES		5
#endif

/* Enable/Disable debug console messages */
#ifdef FPGA_DEBUG
#define	PRINTF(fmt,args...)	printf (fmt ,##args)
#else
#define	PRINTF(fmt,args...)
#endif

/* Local static data */
static ulong relocation_offset = 0;
static int next_desc = FPGA_INVALID_DEVICE;
static fpga_desc desc_table[CONFIG_MAX_FPGA_DEVICES];

/* Local static functions */
W
Wolfgang Denk 已提交
56 57
static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_get_desc( int devnum );
static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_validate( int devnum, void *buf,
W
wdenk 已提交
58
					 size_t bsize, char *fn );
W
wdenk 已提交
59 60 61 62 63 64 65 66 67 68 69
static int fpga_dev_info( int devnum );


/* ------------------------------------------------------------------------- */

/* fpga_no_sup
 * 'no support' message function
 */
static void fpga_no_sup( char *fn, char *msg )
{
	if ( fn && msg ) {
70
		printf( "%s: No support for %s.\n", fn, msg);
W
wdenk 已提交
71
	} else if ( msg ) {
72
		printf( "No support for %s.\n", msg);
W
wdenk 已提交
73
	} else {
74
		printf( "No FPGA suport!\n");
W
wdenk 已提交
75 76 77 78 79 80 81
	}
}


/* fpga_get_desc
 *	map a device number to a descriptor
 */
W
Wolfgang Denk 已提交
82
static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_get_desc( int devnum )
W
wdenk 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
{
	fpga_desc *desc = (fpga_desc * )NULL;

	if (( devnum >= 0 ) && (devnum < next_desc )) {
		desc = &desc_table[devnum];
		PRINTF( "%s: found fpga descriptor #%d @ 0x%p\n",
				__FUNCTION__, devnum, desc );
	}

	return desc;
}


/* fpga_validate
 *	generic parameter checking code
 */
W
Wolfgang Denk 已提交
99
static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_validate( int devnum, void *buf,
W
wdenk 已提交
100
					 size_t bsize, char *fn )
W
wdenk 已提交
101
{
W
Wolfgang Denk 已提交
102
	fpga_desc * desc = fpga_get_desc( devnum );
W
wdenk 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129

	if ( !desc ) {
		printf( "%s: Invalid device number %d\n", fn, devnum );
	}

	if ( !buf ) {
		printf( "%s: Null buffer.\n", fn );
		return (fpga_desc * const)NULL;
	}
	return desc;
}


/* fpga_dev_info
 *	generic multiplexing code
 */
static int fpga_dev_info( int devnum )
{
	int ret_val = FPGA_FAIL;           /* assume failure */
	const fpga_desc * const desc = fpga_get_desc( devnum );

	if ( desc ) {
		PRINTF( "%s: Device Descriptor @ 0x%p\n",
				__FUNCTION__, desc->devdesc );

		switch ( desc->devtype ) {
		case fpga_xilinx:
130
#if defined(CONFIG_FPGA_XILINX)
W
wdenk 已提交
131 132 133
			printf( "Xilinx Device\nDescriptor @ 0x%p\n", desc );
			ret_val = xilinx_info( desc->devdesc );
#else
134
			fpga_no_sup( (char *)__FUNCTION__, "Xilinx devices" );
W
wdenk 已提交
135 136 137
#endif
			break;
		case fpga_altera:
138
#if defined(CONFIG_FPGA_ALTERA)
W
wdenk 已提交
139 140 141
			printf( "Altera Device\nDescriptor @ 0x%p\n", desc );
			ret_val = altera_info( desc->devdesc );
#else
W
Wolfgang Denk 已提交
142
			fpga_no_sup( (char *)__FUNCTION__, "Altera devices" );
W
wdenk 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
#endif
			break;
		default:
			printf( "%s: Invalid or unsupported device type %d\n",
					__FUNCTION__, desc->devtype );
		}
	} else {
		printf( "%s: Invalid device number %d\n",
			__FUNCTION__, devnum );
	}

	return ret_val;
}


/* fpga_reloc
 *	generic multiplexing code
 */
int fpga_reloc( fpga_type devtype, void *desc, ulong reloc_off )
{
	int ret_val = FPGA_FAIL;

	PRINTF( "%s: Relocating Device of type %d @ 0x%p with offset %lx\n",
				__FUNCTION__, devtype, desc, reloc_off );

	switch ( devtype ) {
	case fpga_xilinx:
170
#if defined(CONFIG_FPGA_XILINX)
W
wdenk 已提交
171 172
		ret_val = xilinx_reloc( desc, reloc_off );
#else
173
		fpga_no_sup( (char *)__FUNCTION__, "Xilinx devices" );
W
wdenk 已提交
174 175 176
#endif
		break;
	case fpga_altera:
177
#if defined(CONFIG_FPGA_ALTERA)
W
wdenk 已提交
178 179
		ret_val = altera_reloc( desc, reloc_off );
#else
W
Wolfgang Denk 已提交
180
		fpga_no_sup( (char *)__FUNCTION__, "Altera devices" );
W
wdenk 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
#endif
		break;
	default:
		printf( "%s: Invalid or unsupported device type %d\n",
			__FUNCTION__, devtype );
	}

	return ret_val;
}

/* ------------------------------------------------------------------------- */
/* fgpa_init is usually called from misc_init_r() and MUST be called
 * before any of the other fpga functions are used.
 */
void fpga_init( ulong reloc_off )
{
	relocation_offset = reloc_off;
	next_desc = 0;
	memset( desc_table, 0, sizeof(desc_table));

	PRINTF( "%s: CONFIG_FPGA = 0x%x\n", __FUNCTION__, CONFIG_FPGA );
}

/* fpga_count
 * Basic interface function to get the current number of devices available.
 */
W
Wolfgang Denk 已提交
207
int fpga_count( void )
W
wdenk 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
{
	return next_desc;
}

/* fpga_add
 *	Attempts to relocate the device/board specific interface code
 *	to the proper RAM locations and adds the device descriptor to
 *	the device table.
 */
int fpga_add( fpga_type devtype, void *desc )
{
	int devnum = FPGA_INVALID_DEVICE;

	if ( next_desc  < 0 ) {
		printf( "%s: FPGA support not initialized!\n", __FUNCTION__ );
	} else if (( devtype > fpga_min_type ) && ( devtype < fpga_undefined )) {
		if ( desc ) {
			if ( next_desc < CONFIG_MAX_FPGA_DEVICES ) {
				if ( fpga_reloc( devtype, desc, relocation_offset )
				  == FPGA_SUCCESS ) {
					devnum = next_desc;
					desc_table[next_desc].devtype = devtype;
					desc_table[next_desc++].devdesc = desc;
				} else {
					printf( "%s: Unable to relocate device interface table!\n",
						__FUNCTION__ );
				}
			} else {
				printf( "%s: Exceeded Max FPGA device count\n", __FUNCTION__ );
			}
		} else {
			printf( "%s: NULL device descriptor\n", __FUNCTION__ );
		}
	} else {
		printf( "%s: Unsupported FPGA type %d\n", __FUNCTION__, devtype );
	}

	return devnum;
}

/*
 *	Generic multiplexing code
 */
int fpga_load( int devnum, void *buf, size_t bsize )
{
	int ret_val = FPGA_FAIL;           /* assume failure */
W
Wolfgang Denk 已提交
254
	fpga_desc * desc = fpga_validate( devnum, buf, bsize, (char *)__FUNCTION__ );
W
wdenk 已提交
255 256 257 258

	if ( desc ) {
		switch ( desc->devtype ) {
		case fpga_xilinx:
259
#if defined(CONFIG_FPGA_XILINX)
W
wdenk 已提交
260 261
			ret_val = xilinx_load( desc->devdesc, buf, bsize );
#else
262
			fpga_no_sup( (char *)__FUNCTION__, "Xilinx devices" );
W
wdenk 已提交
263 264 265
#endif
			break;
		case fpga_altera:
266
#if defined(CONFIG_FPGA_ALTERA)
W
wdenk 已提交
267 268
			ret_val = altera_load( desc->devdesc, buf, bsize );
#else
W
Wolfgang Denk 已提交
269
			fpga_no_sup( (char *)__FUNCTION__, "Altera devices" );
W
wdenk 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
#endif
			break;
		default:
			printf( "%s: Invalid or unsupported device type %d\n",
				__FUNCTION__, desc->devtype );
		}
	}

	return ret_val;
}

/* fpga_dump
 *	generic multiplexing code
 */
int fpga_dump( int devnum, void *buf, size_t bsize )
{
	int ret_val = FPGA_FAIL;           /* assume failure */
W
Wolfgang Denk 已提交
287
	fpga_desc * desc = fpga_validate( devnum, buf, bsize, (char *)__FUNCTION__ );
W
wdenk 已提交
288 289 290 291

	if ( desc ) {
		switch ( desc->devtype ) {
		case fpga_xilinx:
292
#if defined(CONFIG_FPGA_XILINX)
W
wdenk 已提交
293 294
			ret_val = xilinx_dump( desc->devdesc, buf, bsize );
#else
295
			fpga_no_sup( (char *)__FUNCTION__, "Xilinx devices" );
W
wdenk 已提交
296 297 298
#endif
			break;
		case fpga_altera:
299
#if defined(CONFIG_FPGA_ALTERA)
W
wdenk 已提交
300 301
			ret_val = altera_dump( desc->devdesc, buf, bsize );
#else
W
Wolfgang Denk 已提交
302
			fpga_no_sup( (char *)__FUNCTION__, "Altera devices" );
W
wdenk 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
#endif
			break;
		default:
			printf( "%s: Invalid or unsupported device type %d\n",
				__FUNCTION__, desc->devtype );
		}
	}

	return ret_val;
}


/* fpga_info
 *	front end to fpga_dev_info.  If devnum is invalid, report on all
 *	available devices.
 */
int fpga_info( int devnum )
{
	if ( devnum == FPGA_INVALID_DEVICE ) {
		if ( next_desc > 0 ) {
			int dev;

			for ( dev = 0; dev < next_desc; dev++ ) {
				fpga_dev_info( dev );
			}
			return FPGA_SUCCESS;
		} else {
			printf( "%s: No FPGA devices available.\n", __FUNCTION__ );
			return FPGA_FAIL;
		}
	}
	else return fpga_dev_info( devnum );
}

/* ------------------------------------------------------------------------- */

#endif  /* CONFIG_FPGA */