Revert "dsp5680xx: disable for now, it generates warnings"
[fw/openocd] / src / flash / nor / drivers.c
1 /***************************************************************************
2  *   Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net>             *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18  ***************************************************************************/
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22 #include "imp.h"
23
24 extern struct flash_driver lpc2000_flash;
25 extern struct flash_driver lpc288x_flash;
26 extern struct flash_driver lpc2900_flash;
27 extern struct flash_driver cfi_flash;
28 extern struct flash_driver at91sam3_flash;
29 extern struct flash_driver at91sam7_flash;
30 extern struct flash_driver str7x_flash;
31 extern struct flash_driver str9x_flash;
32 extern struct flash_driver aduc702x_flash;
33 extern struct flash_driver stellaris_flash;
34 extern struct flash_driver str9xpec_flash;
35 extern struct flash_driver stm32f1x_flash;
36 extern struct flash_driver stm32f2x_flash;
37 extern struct flash_driver tms470_flash;
38 extern struct flash_driver ecosflash_flash;
39 extern struct flash_driver ocl_flash;
40 extern struct flash_driver pic32mx_flash;
41 extern struct flash_driver avr_flash;
42 extern struct flash_driver faux_flash;
43 extern struct flash_driver virtual_flash;
44 extern struct flash_driver stmsmi_flash;
45 extern struct flash_driver em357_flash;
46 extern struct flash_driver dsp5680xx_flash;
47 extern struct flash_driver fm3_flash;
48
49 /**
50  * The list of built-in flash drivers.
51  * @todo Make this dynamically extendable with loadable modules.
52  */
53 static struct flash_driver *flash_drivers[] = {
54         &lpc2000_flash,
55         &lpc288x_flash,
56         &lpc2900_flash,
57         &cfi_flash,
58         &at91sam7_flash,
59         &at91sam3_flash,
60         &str7x_flash,
61         &str9x_flash,
62         &aduc702x_flash,
63         &stellaris_flash,
64         &str9xpec_flash,
65         &stm32f1x_flash,
66         &stm32f2x_flash,
67         &tms470_flash,
68         &ecosflash_flash,
69         &ocl_flash,
70         &pic32mx_flash,
71         &avr_flash,
72         &faux_flash,
73         &virtual_flash,
74         &stmsmi_flash,
75         &em357_flash,
76         &fm3_flash,
77         &dsp5680xx_flash,
78         NULL,
79 };
80
81 struct flash_driver *flash_driver_find_by_name(const char *name)
82 {
83         for (unsigned i = 0; flash_drivers[i]; i++)
84         {
85                 if (strcmp(name, flash_drivers[i]->name) == 0)
86                         return flash_drivers[i];
87         }
88         return NULL;
89 }