Newer
Older
/*
* (C) Copyright 2002
* Rich Ireland, Enterasys Networks, rireland@enterasys.com.
*
* SPDX-License-Identifier: GPL-2.0+
#include <common.h> /* core U-Boot definitions */
#include <xilinx.h> /* xilinx specific definitions */
#include <altera.h> /* altera specific definitions */
/* Local definitions */
#ifndef CONFIG_MAX_FPGA_DEVICES
#define CONFIG_MAX_FPGA_DEVICES 5
#endif
/* Local static data */
static int next_desc = FPGA_INVALID_DEVICE;
static fpga_desc desc_table[CONFIG_MAX_FPGA_DEVICES];
if (fn && msg)
printf("%s: No support for %s.\n", fn, msg);
else if (msg)
printf("No support for %s.\n", msg);
else
printf("No FPGA suport!\n");
}
/* fpga_get_desc
* map a device number to a descriptor
*/
static const fpga_desc *const fpga_get_desc(int devnum)
debug("%s: found fpga descriptor #%d @ 0x%p\n",
__func__, devnum, desc);
const fpga_desc *const fpga_validate(int devnum, const void *buf,
size_t bsize, char *fn)
if (!desc)
printf("%s: Invalid device number %d\n", fn, devnum);
return (fpga_desc * const)NULL;
}
return desc;
}
int ret_val = FPGA_FAIL; /* assume failure */
const fpga_desc * const desc = fpga_get_desc(devnum);
if (desc) {
debug("%s: Device Descriptor @ 0x%p\n",
__func__, desc->devdesc);
printf("Xilinx Device\nDescriptor @ 0x%p\n", desc);
ret_val = xilinx_info(desc->devdesc);
printf("Altera Device\nDescriptor @ 0x%p\n", desc);
ret_val = altera_info(desc->devdesc);
fpga_no_sup((char *)__func__, "Altera devices");
#if defined(CONFIG_FPGA_LATTICE)
printf("Lattice Device\nDescriptor @ 0x%p\n", desc);
ret_val = lattice_info(desc->devdesc);
fpga_no_sup((char *)__func__, "Lattice devices");
printf("%s: Invalid or unsupported device type %d\n",
__func__, desc->devtype);
printf("%s: Invalid device number %d\n", __func__, devnum);
/*
* fgpa_init is usually called from misc_init_r() and MUST be called
* before any of the other fpga functions are used.
*/
* Basic interface function to get the current number of devices available.
*/
* Add the device descriptor to the device table.
if (next_desc < 0) {
printf("%s: FPGA support not initialized!\n", __func__);
} else if ((devtype > fpga_min_type) && (devtype < fpga_undefined)) {
if (desc) {
if (next_desc < CONFIG_MAX_FPGA_DEVICES) {
devnum = next_desc;
desc_table[next_desc].devtype = devtype;
desc_table[next_desc++].devdesc = desc;
printf("%s: Exceeded Max FPGA device count\n",
__func__);
printf("%s: NULL device descriptor\n", __func__);
printf("%s: Unsupported FPGA type %d\n", __func__, devtype);
/*
* Convert bitstream data and load into the fpga
*/
int __weak fpga_loadbitstream(int devnum, char *fpgadata, size_t size)
{
printf("Bitstream support not implemented for this FPGA device\n");
return FPGA_FAIL;
}
int fpga_load(int devnum, const void *buf, size_t bsize)
const fpga_desc *desc = fpga_validate(devnum, buf, bsize,
(char *)__func__);
#if defined(CONFIG_FPGA_XILINX)
ret_val = xilinx_load(desc->devdesc, buf, bsize);
fpga_no_sup((char *)__func__, "Xilinx devices");
#if defined(CONFIG_FPGA_ALTERA)
ret_val = altera_load(desc->devdesc, buf, bsize);
fpga_no_sup((char *)__func__, "Altera devices");
#if defined(CONFIG_FPGA_LATTICE)
ret_val = lattice_load(desc->devdesc, buf, bsize);
fpga_no_sup((char *)__func__, "Lattice devices");
printf("%s: Invalid or unsupported device type %d\n",
__func__, desc->devtype);
int fpga_dump(int devnum, const void *buf, size_t bsize)
const fpga_desc *desc = fpga_validate(devnum, buf, bsize,
(char *)__func__);
#if defined(CONFIG_FPGA_XILINX)
ret_val = xilinx_dump(desc->devdesc, buf, bsize);
fpga_no_sup((char *)__func__, "Xilinx devices");
#if defined(CONFIG_FPGA_ALTERA)
ret_val = altera_dump(desc->devdesc, buf, bsize);
fpga_no_sup((char *)__func__, "Altera devices");
#if defined(CONFIG_FPGA_LATTICE)
ret_val = lattice_dump(desc->devdesc, buf, bsize);
fpga_no_sup((char *)__func__, "Lattice devices");
printf("%s: Invalid or unsupported device type %d\n",
__func__, desc->devtype);
* front end to fpga_dev_info. If devnum is invalid, report on all
* available devices.
*/
if (devnum == FPGA_INVALID_DEVICE) {
if (next_desc > 0) {
for (dev = 0; dev < next_desc; dev++)
fpga_dev_info(dev);
printf("%s: No FPGA devices available.\n", __func__);