]> git.sur5r.net Git - openocd/blob - src/flash/nor/drivers.c
flash/nor: Reorder drivers alphabetically
[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  *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.           *
18  ***************************************************************************/
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23 #include "imp.h"
24
25 extern struct flash_driver aduc702x_flash;
26 extern struct flash_driver aducm360_flash;
27 extern struct flash_driver at91sam3_flash;
28 extern struct flash_driver at91sam4_flash;
29 extern struct flash_driver at91sam4l_flash;
30 extern struct flash_driver at91sam7_flash;
31 extern struct flash_driver at91samd_flash;
32 extern struct flash_driver atsamv_flash;
33 extern struct flash_driver avr_flash;
34 extern struct flash_driver cfi_flash;
35 extern struct flash_driver dsp5680xx_flash;
36 extern struct flash_driver efm32_flash;
37 extern struct flash_driver em357_flash;
38 extern struct flash_driver faux_flash;
39 extern struct flash_driver fm3_flash;
40 extern struct flash_driver fm4_flash;
41 extern struct flash_driver jtagspi_flash;
42 extern struct flash_driver kinetis_flash;
43 extern struct flash_driver kinetis_ke_flash;
44 extern struct flash_driver lpc2000_flash;
45 extern struct flash_driver lpc288x_flash;
46 extern struct flash_driver lpc2900_flash;
47 extern struct flash_driver lpcspifi_flash;
48 extern struct flash_driver mdr_flash;
49 extern struct flash_driver mrvlqspi_flash;
50 extern struct flash_driver niietcm4_flash;
51 extern struct flash_driver nrf51_flash;
52 extern struct flash_driver numicro_flash;
53 extern struct flash_driver ocl_flash;
54 extern struct flash_driver pic32mx_flash;
55 extern struct flash_driver psoc4_flash;
56 extern struct flash_driver sim3x_flash;
57 extern struct flash_driver stellaris_flash;
58 extern struct flash_driver stm32f1x_flash;
59 extern struct flash_driver stm32f2x_flash;
60 extern struct flash_driver stm32lx_flash;
61 extern struct flash_driver stm32l4x_flash;
62 extern struct flash_driver stmsmi_flash;
63 extern struct flash_driver str7x_flash;
64 extern struct flash_driver str9x_flash;
65 extern struct flash_driver str9xpec_flash;
66 extern struct flash_driver tms470_flash;
67 extern struct flash_driver virtual_flash;
68 extern struct flash_driver xmc4xxx_flash;
69
70 /**
71  * The list of built-in flash drivers.
72  * @todo Make this dynamically extendable with loadable modules.
73  */
74 static struct flash_driver *flash_drivers[] = {
75         &aduc702x_flash,
76         &aducm360_flash,
77         &at91sam3_flash,
78         &at91sam4_flash,
79         &at91sam4l_flash,
80         &at91sam7_flash,
81         &at91samd_flash,
82         &atsamv_flash,
83         &avr_flash,
84         &cfi_flash,
85         &dsp5680xx_flash,
86         &efm32_flash,
87         &em357_flash,
88         &faux_flash,
89         &fm3_flash,
90         &fm4_flash,
91         &jtagspi_flash,
92         &kinetis_flash,
93         &kinetis_ke_flash,
94         &lpc2000_flash,
95         &lpc288x_flash,
96         &lpc2900_flash,
97         &lpcspifi_flash,
98         &mdr_flash,
99         &mrvlqspi_flash,
100         &niietcm4_flash,
101         &nrf51_flash,
102         &numicro_flash,
103         &ocl_flash,
104         &pic32mx_flash,
105         &psoc4_flash,
106         &sim3x_flash,
107         &stellaris_flash,
108         &stm32f1x_flash,
109         &stm32f2x_flash,
110         &stm32lx_flash,
111         &stm32l4x_flash,
112         &stmsmi_flash,
113         &str7x_flash,
114         &str9x_flash,
115         &str9xpec_flash,
116         &tms470_flash,
117         &virtual_flash,
118         &xmc4xxx_flash,
119         NULL,
120 };
121
122 struct flash_driver *flash_driver_find_by_name(const char *name)
123 {
124         for (unsigned i = 0; flash_drivers[i]; i++) {
125                 if (strcmp(name, flash_drivers[i]->name) == 0)
126                         return flash_drivers[i];
127         }
128         return NULL;
129 }