]> rtime.felk.cvut.cz Git - lincan.git/blob - lincan/src/boardlist.c
Header-files cleanup and CAN queue edges and ends locking reimplemented.
[lincan.git] / lincan / src / boardlist.c
1 /* boards_list.c
2  * Linux CAN-bus device driver.
3  * Written for new CAN driver version by Pavel Pisa - OCERA team member
4  * email:pisa@cmp.felk.cvut.cz
5  * This software is released under the GPL-License.
6  * Version lincan-0.2  9 Jul 2003
7  */
8
9 #include "../include/can.h"
10 #include "../include/can_sysdep.h"
11 #include "../include/main.h"
12
13 #include ".supported_cards.h"
14
15 #include "../include/pip.h"
16 #include "../include/pccan.h"
17 #include "../include/smartcan.h"
18 #include "../include/pc-i03.h"
19 #include "../include/pcm3680.h"
20 #include "../include/m437.h"
21 #include "../include/template.h"
22 #include "../include/i82527.h"
23 #include "../include/aim104.h"
24 #include "../include/pcccan.h"
25
26 extern int template_register(struct hwspecops_t *hwspecops);
27 extern int pip5_register(struct hwspecops_t *hwspecops);
28 extern int pip6_register(struct hwspecops_t *hwspecops);
29 extern int smartcan_register(struct hwspecops_t *hwspecops);
30 extern int pccanf_register(struct hwspecops_t *hwspecops);
31 extern int pccand_register(struct hwspecops_t *hwspecops);
32 extern int pccanq_register(struct hwspecops_t *hwspecops);
33 extern int nsi_register(struct hwspecops_t *hwspecops);
34 extern int cc104_register(struct hwspecops_t *hwspecops);
35 extern int pci03_register(struct hwspecops_t *hwspecops);
36 extern int pcm3680_register(struct hwspecops_t *hwspecops);
37 extern int aim104_register(struct hwspecops_t *hwspecops);
38 extern int pcccan_register(struct hwspecops_t *hwspecops);
39 extern int ssv_register(struct hwspecops_t *hwspecops);
40 extern int bfadcan_register(struct hwspecops_t *hwspecops);
41 extern int pikronisa_register(struct hwspecops_t *hwspecops);
42 extern int virtual_register(struct hwspecops_t *hwspecops);
43
44 const struct boardtype_t can_boardtypes[]={
45     #ifdef ENABLE_CARD_template
46         {"template", template_register, 1},
47     #endif
48     #ifdef ENABLE_CARD_template
49         {"virtual", virtual_register, 0},
50     #endif
51     #ifdef ENABLE_CARD_pip
52         {"pip5", pip5_register, 1},
53         {"pip6", pip6_register, 1},
54     #endif
55     #ifdef ENABLE_CARD_smartcan
56         {"smartcan", smartcan_register, 1},
57     #endif
58     #ifdef ENABLE_CARD_nsi
59         {"nsican", nsi_register, 1},
60     #endif
61     #ifdef ENABLE_CARD_cc_can104
62         {"cc104", cc104_register, 1},
63     #endif
64     #ifdef ENABLE_CARD_aim104
65         {"aim104", aim104_register, 1},
66     #endif
67     #ifdef ENABLE_CARD_pc_i03
68         {"pc-i03", pci03_register, 1},
69     #endif
70     #ifdef ENABLE_CARD_pcm3680
71         {"pcm3680", pcm3680_register, 2},
72     #endif
73     #ifdef ENABLE_CARD_pccan
74         {"pccan-f", pccanf_register, 1},
75         {"pccan-s", pccanf_register, 1},
76         {"pccan-d", pccand_register, 2},
77         {"pccan-q", pccanq_register, 4},
78     #endif
79     #ifdef ENABLE_CARD_m437
80         {"m437", m437_register, 1},
81     #endif
82     #ifdef ENABLE_CARD_pcccan
83         {"pcccan", pcccan_register, 1},
84     #endif
85     #ifdef ENABLE_CARD_ssv
86         {"ssv", ssv_register, 2},
87     #endif
88     #ifdef ENABLE_CARD_bfadcan
89         {"bfadcan", bfadcan_register, 1},
90     #endif
91     #ifdef ENABLE_CARD_pikronisa
92         {"pikronisa", pikronisa_register, 1},
93     #endif
94         {NULL}
95 };
96
97 const struct boardtype_t* boardtype_find(const char *str)
98 {
99         const struct boardtype_t *brp;
100
101         for(brp=can_boardtypes;brp->boardtype;brp++) {
102                 if(!strcmp(str,brp->boardtype))
103                         return brp;
104         }
105
106         return NULL;
107 }