87 lines
2.5 KiB
C
87 lines
2.5 KiB
C
/*
|
|
* Copyright (c) 2001 Stephen Williams (steve@icarus.com)
|
|
*
|
|
* This source code is free software; you can redistribute it
|
|
* and/or modify it in source code form 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
|
|
*/
|
|
#ifdef HAVE_CVS_IDENT
|
|
#ident "$Id: tables.c,v 1.6 2003/08/07 04:04:01 steve Exp $"
|
|
#endif
|
|
|
|
# include "fpga_priv.h"
|
|
# include <string.h>
|
|
# include <assert.h>
|
|
|
|
extern const struct device_s d_generic;
|
|
extern const struct device_s d_generic_edif;
|
|
extern const struct device_s d_lpm_edif;
|
|
extern const struct device_s d_virtex_edif;
|
|
extern const struct device_s d_virtex2_edif;
|
|
|
|
|
|
const struct device_table_s {
|
|
const char*name;
|
|
device_t driver;
|
|
} device_table[] = {
|
|
{ "generic-edif", &d_generic_edif },
|
|
{ "generic-xnf", &d_generic },
|
|
{ "lpm", &d_lpm_edif },
|
|
{ "virtex", &d_virtex_edif },
|
|
{ "virtex2", &d_virtex2_edif },
|
|
{ 0, 0 }
|
|
};
|
|
|
|
device_t device_from_arch(const char*arch)
|
|
{
|
|
unsigned idx;
|
|
|
|
assert(arch);
|
|
|
|
for (idx = 0 ; device_table[idx].name ; idx += 1) {
|
|
if (strcmp(arch, device_table[idx].name) == 0)
|
|
return device_table[idx].driver;
|
|
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* $Log: tables.c,v $
|
|
* Revision 1.6 2003/08/07 04:04:01 steve
|
|
* Add an LPM device type.
|
|
*
|
|
* Revision 1.5 2003/03/24 00:47:54 steve
|
|
* Add new virtex2 architecture family, and
|
|
* also the new edif.h EDIF management functions.
|
|
*
|
|
* Revision 1.4 2002/08/12 01:35:03 steve
|
|
* conditional ident string using autoconfig.
|
|
*
|
|
* Revision 1.3 2002/08/11 23:47:04 steve
|
|
* Add missing Log and Ident strings.
|
|
*
|
|
* Revision 1.2 2001/09/06 04:28:40 steve
|
|
* Separate the virtex and generic-edif code generators.
|
|
*
|
|
* Revision 1.1 2001/09/02 21:33:07 steve
|
|
* Rearrange the XNF code generator to be generic-xnf
|
|
* so that non-XNF code generation is also possible.
|
|
*
|
|
* Start into the virtex EDIF output driver.
|
|
*
|
|
*/
|
|
|