Merge branch 'vendor/BINUTILS224'
[dragonfly.git] / sys / dev / disk / ispfw / ispfw.c
1 /*-
2  * ISP Firmware Modules for FreeBSD
3  *
4  * Copyright (c) 2000, 2001, 2006 by Matthew Jacob
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice immediately at the beginning of the file, without modification,
12  *    this list of conditions, and the following disclaimer.
13  * 2. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD: src/sys/dev/ispfw/ispfw.c,v 1.22 2010/03/05 03:37:42 sobomax Exp $
29  */
30
31 #include <sys/param.h>
32 #include <sys/firmware.h>
33 #include <sys/kernel.h>
34 #include <sys/linker.h>
35 #include <sys/module.h>
36 #include <sys/systm.h>
37
38 #if     defined(ISP_ALL) || !defined(KLD_MODULE)
39 #define ISP_1040        1
40 #define ISP_1040_IT     1
41 #define ISP_1080        1
42 #define ISP_1080_IT     1
43 #define ISP_12160       1
44 #define ISP_12160_IT    1
45 #define ISP_2100        1
46 #define ISP_2200        1
47 #define ISP_2300        1
48 #define ISP_2322        1
49 #define ISP_2400        1
50 #define ISP_2400_MULTI  1
51 #define ISP_2500        1
52 #define ISP_2500_MULTI  1
53 #endif
54
55 #ifndef MODULE_NAME
56 #define MODULE_NAME     "ispfw"
57 #endif
58
59 #if     defined(ISP_1040) || defined(ISP_1040_IT)
60 #include <dev/disk/ispfw/asm_1040.h>
61 #endif
62 #if     defined(ISP_1080) || defined(ISP_1080_IT)
63 #include <dev/disk/ispfw/asm_1080.h>
64 #endif
65 #if     defined(ISP_12160) || defined(ISP_12160_IT)
66 #include <dev/disk/ispfw/asm_12160.h>
67 #endif
68 #if     defined(ISP_2100)
69 #include <dev/disk/ispfw/asm_2100.h>
70 #endif
71 #if     defined(ISP_2200)
72 #include <dev/disk/ispfw/asm_2200.h>
73 #endif
74 #if     defined(ISP_2300)
75 #include <dev/disk/ispfw/asm_2300.h>
76 #endif
77 #if     defined(ISP_2322)
78 #include <dev/disk/ispfw/asm_2322.h>
79 #endif
80 #if     defined(ISP_2400) || defined(ISP_2400_MULTI)
81 #include <dev/disk/ispfw/asm_2400.h>
82 #endif
83 #if     defined(ISP_2500) || defined(ISP_2500_MULTI)
84 #include <dev/disk/ispfw/asm_2500.h>
85 #endif
86
87 #if     defined(ISP_1000)
88 static int      isp_1000_loaded;
89 #endif
90 #if     defined(ISP_1040)
91 static int      isp_1040_loaded;
92 #endif
93 #if     defined(ISP_1040_IT)
94 static int      isp_1040_it_loaded;
95 #endif
96 #if     defined(ISP_1080)
97 static int      isp_1080_loaded;
98 #endif
99 #if     defined(ISP_1080_IT)
100 static int      isp_1080_it_loaded;
101 #endif
102 #if     defined(ISP_12160)
103 static int      isp_12160_loaded;
104 #endif
105 #if     defined(ISP_12160_IT)
106 static int      isp_12160_it_loaded;
107 #endif
108 #if     defined(ISP_2100)
109 static int      isp_2100_loaded;
110 #endif
111 #if     defined(ISP_2200)
112 static int      isp_2200_loaded;
113 #endif
114 #if     defined(ISP_2300)
115 static int      isp_2300_loaded;
116 #endif
117 #if     defined(ISP_2322)
118 static int      isp_2322_loaded;
119 #endif
120 #if     defined(ISP_2400)
121 static int      isp_2400_loaded;
122 #endif
123 #if     defined(ISP_2400_MULTI)
124 static int      isp_2400_multi_loaded;
125 #endif
126 #if     defined(ISP_2500)
127 static int      isp_2500_loaded;
128 #endif
129 #if     defined(ISP_2500_MULTI)
130 static int      isp_2500_multi_loaded;
131 #endif
132
133 #define ISPFW_VERSION   1
134
135 #if     !defined(KLD_MODULE)
136 #define ISPFW_KLD       0
137 #else
138 #define ISPFW_KLD       1
139 #endif
140
141 #define RMACRO(token)   do {                                            \
142         if (token##_loaded)                                             \
143                 break;                                                  \
144         if (firmware_register(#token, token##_risc_code,                \
145             token##_risc_code[3] * sizeof(token##_risc_code[3]),        \
146             ISPFW_VERSION, NULL) == NULL) {                             \
147                 kprintf("%s: unable to register firmware <%s>\n",       \
148                     MODULE_NAME, #token);                               \
149                 break;                                                  \
150         }                                                               \
151         token##_loaded++;                                               \
152         if (bootverbose || ISPFW_KLD)                                   \
153                 kprintf("%s: registered firmware <%s>\n", MODULE_NAME,  \
154                     #token);                                            \
155 } while (0)
156
157 #define UMACRO(token)   do {                                            \
158         if (!token##_loaded)                                            \
159                 break;                                                  \
160         if (firmware_unregister(#token) != 0) {                         \
161                 kprintf("%s: unable to unregister firmware <%s>\n",     \
162                     MODULE_NAME, #token);                               \
163                 break;                                                  \
164         }                                                               \
165         token##_loaded--;                                               \
166         if (bootverbose || ISPFW_KLD)                                   \
167                 kprintf("%s: unregistered firmware <%s>\n", MODULE_NAME,\
168                     #token);                                            \
169 } while (0)
170
171 static void
172 do_load_fw(void)
173 {
174
175 #if     defined(ISP_1000)
176         RMACRO(isp_1000);
177 #endif
178 #if     defined(ISP_1040)
179         RMACRO(isp_1040);
180 #endif
181 #if     defined(ISP_1040_IT)
182         RMACRO(isp_1040_it);
183 #endif
184 #if     defined(ISP_1080)
185         RMACRO(isp_1080);
186 #endif
187 #if     defined(ISP_1080_IT)
188         RMACRO(isp_1080_it);
189 #endif
190 #if     defined(ISP_12160)
191         RMACRO(isp_12160);
192 #endif
193 #if     defined(ISP_12160_IT)
194         RMACRO(isp_12160_it);
195 #endif
196 #if     defined(ISP_2100)
197         RMACRO(isp_2100);
198 #endif
199 #if     defined(ISP_2200)
200         RMACRO(isp_2200);
201 #endif
202 #if     defined(ISP_2300)
203         RMACRO(isp_2300);
204 #endif
205 #if     defined(ISP_2322)
206         RMACRO(isp_2322);
207 #endif
208 #if     defined(ISP_2400)
209         RMACRO(isp_2400);
210 #endif
211 #if     defined(ISP_2400_MULTI)
212         RMACRO(isp_2400_multi);
213 #endif
214 #if     defined(ISP_2500)
215         RMACRO(isp_2500);
216 #endif
217 #if     defined(ISP_2500_MULTI)
218         RMACRO(isp_2500_multi);
219 #endif
220 }
221
222 static void
223 do_unload_fw(void)
224 {
225
226 #if     defined(ISP_1000)
227         UMACRO(isp_1000);
228 #endif
229 #if     defined(ISP_1040)
230         UMACRO(isp_1040);
231 #endif
232 #if     defined(ISP_1040_IT)
233         UMACRO(isp_1040_it);
234 #endif
235 #if     defined(ISP_1080)
236         UMACRO(isp_1080);
237 #endif
238 #if     defined(ISP_1080_IT)
239         UMACRO(isp_1080_it);
240 #endif
241 #if     defined(ISP_12160)
242         UMACRO(isp_12160);
243 #endif
244 #if     defined(ISP_12160_IT)
245         UMACRO(isp_12160_it);
246 #endif
247 #if     defined(ISP_2100)
248         UMACRO(isp_2100);
249 #endif
250 #if     defined(ISP_2200)
251         UMACRO(isp_2200);
252 #endif
253 #if     defined(ISP_2300)
254         UMACRO(isp_2300);
255 #endif
256 #if     defined(ISP_2322)
257         UMACRO(isp_2322);
258 #endif
259 #if     defined(ISP_2400)
260         UMACRO(isp_2400);
261 #endif
262 #if     defined(ISP_2400_MULTI)
263         UMACRO(isp_2400_multi);
264 #endif
265 #if     defined(ISP_2500)
266         UMACRO(isp_2500);
267 #endif
268 #if     defined(ISP_2500_MULTI)
269         UMACRO(isp_2500_multi);
270 #endif
271 }
272
273 static int
274 module_handler(module_t mod, int what, void *arg)
275 {
276
277         switch (what) {
278         case MOD_LOAD:
279                 do_load_fw();
280                 break;
281         case MOD_UNLOAD:
282                 do_unload_fw();
283                 break;
284         case MOD_SHUTDOWN:
285                 break;
286         default:
287                 return (EOPNOTSUPP);
288         }
289         return (0);
290 }
291 static moduledata_t ispfw_mod = {
292         MODULE_NAME, module_handler, NULL
293 };
294 #if     defined(ISP_ALL) || !defined(KLD_MODULE)
295 DECLARE_MODULE(ispfw, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
296 MODULE_VERSION(ispfw, 1);
297 #elif   defined(ISP_1000)
298 DECLARE_MODULE(isp_1000, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
299 MODULE_VERSION(isp_1000, 1);
300 #elif   defined(ISP_1040)
301 DECLARE_MODULE(isp_1040, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
302 MODULE_VERSION(isp_1040, 1);
303 #elif   defined(ISP_1040_IT)
304 DECLARE_MODULE(isp_1040_it, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
305 MODULE_VERSION(isp_1040_it, 1);
306 #elif   defined(ISP_1080)
307 DECLARE_MODULE(isp_1080, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
308 MODULE_VERSION(isp_1080, 1);
309 #elif   defined(ISP_1080_IT)
310 DECLARE_MODULE(isp_1080_it, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
311 MODULE_VERSION(isp_1080_it, 1);
312 #elif   defined(ISP_12160)
313 DECLARE_MODULE(isp_12160, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
314 MODULE_VERSION(isp_12160, 1);
315 #elif   defined(ISP_12160_IT)
316 DECLARE_MODULE(isp_12160_it, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
317 MODULE_VERSION(isp_12160_it, 1);
318 #elif   defined(ISP_2100)
319 DECLARE_MODULE(isp_2100, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
320 MODULE_VERSION(isp_2100, 1);
321 #elif   defined(ISP_2200)
322 DECLARE_MODULE(isp_2200, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
323 MODULE_VERSION(isp_2200, 1);
324 #elif   defined(ISP_2300)
325 DECLARE_MODULE(isp_2300, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
326 MODULE_VERSION(isp_2300, 1);
327 #elif   defined(ISP_2322)
328 DECLARE_MODULE(isp_2322, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
329 MODULE_VERSION(isp_2322, 1);
330 #elif   defined(ISP_2400)
331 DECLARE_MODULE(isp_2400, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
332 MODULE_VERSION(isp_2400, 1);
333 #elif   defined(ISP_2400_MULTI)
334 DECLARE_MODULE(isp_2400_multi, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
335 MODULE_VERSION(isp_2400_multi, 1);
336 #elif   defined(ISP_2500)
337 DECLARE_MODULE(isp_2500, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
338 MODULE_VERSION(isp_2500, 1);
339 #elif   defined(ISP_2500_MULTI)
340 DECLARE_MODULE(isp_2500_multi, ispfw_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD);
341 MODULE_VERSION(isp_2500_multi, 1);
342 #else
343 #error  "firmware not specified"
344 #endif