author | Florian Pose <fp@igh-essen.com> |
Fri, 27 Oct 2006 13:58:14 +0000 | |
changeset 460 | 719ba8ccc509 |
parent 457 | 2b4ba84b6058 |
child 463 | 938de5ebe1ca |
permissions | -rw-r--r-- |
220 | 1 |
/****************************************************************************** |
2 |
* |
|
3 |
* $Id$ |
|
4 |
* |
|
5 |
* Copyright (C) 2006 Florian Pose, Ingenieurgemeinschaft IgH |
|
6 |
* |
|
7 |
* This file is part of the IgH EtherCAT Master. |
|
8 |
* |
|
9 |
* The IgH EtherCAT Master is free software; you can redistribute it |
|
10 |
* and/or modify it under the terms of the GNU General Public License |
|
246
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
11 |
* as published by the Free Software Foundation; either version 2 of the |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
12 |
* License, or (at your option) any later version. |
220 | 13 |
* |
14 |
* The IgH EtherCAT Master is distributed in the hope that it will be |
|
15 |
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17 |
* GNU General Public License for more details. |
|
18 |
* |
|
19 |
* You should have received a copy of the GNU General Public License |
|
20 |
* along with the IgH EtherCAT Master; if not, write to the Free Software |
|
21 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|
22 |
* |
|
246
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
23 |
* The right to use EtherCAT Technology is granted and comes free of |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
24 |
* charge under condition of compatibility of product made by |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
25 |
* Licensee. People intending to distribute/sell products based on the |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
26 |
* code, have to sign an agreement to guarantee that products using |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
27 |
* software based on IgH EtherCAT master stay compatible with the actual |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
28 |
* EtherCAT specification (which are released themselves as an open |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
29 |
* standard) as the (only) precondition to have the right to use EtherCAT |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
30 |
* Technology, IP and trade marks. |
0bf7c769de06
Changed license headers and added EtherCAT license notice.
Florian Pose <fp@igh-essen.com>
parents:
226
diff
changeset
|
31 |
* |
220 | 32 |
*****************************************************************************/ |
33 |
||
34 |
#include <linux/module.h> |
|
35 |
#include <linux/delay.h> |
|
36 |
#include <linux/timer.h> |
|
37 |
#include <linux/spinlock.h> |
|
38 |
#include <linux/interrupt.h> |
|
39 |
||
223
daa5e5656b35
Applied new path information to example modules.
Florian Pose <fp@igh-essen.com>
parents:
220
diff
changeset
|
40 |
#include "../../include/ecrt.h" // EtherCAT realtime interface |
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
41 |
#include "../../include/ecdb.h" // EtherCAT slave database |
220 | 42 |
|
43 |
#define FREQUENCY 100 |
|
44 |
||
457
2b4ba84b6058
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
454
diff
changeset
|
45 |
//#define KBUS |
2b4ba84b6058
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
454
diff
changeset
|
46 |
|
220 | 47 |
/*****************************************************************************/ |
48 |
||
49 |
struct timer_list timer; |
|
50 |
||
51 |
// EtherCAT |
|
52 |
ec_master_t *master = NULL; |
|
53 |
ec_domain_t *domain1 = NULL; |
|
54 |
spinlock_t master_lock = SPIN_LOCK_UNLOCKED; |
|
55 |
||
56 |
// data fields |
|
457
2b4ba84b6058
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
454
diff
changeset
|
57 |
#ifdef KBUS |
416
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
58 |
void *r_inputs; |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
59 |
void *r_outputs; |
446 | 60 |
#endif |
61 |
||
62 |
void *r_ana_in; |
|
63 |
||
64 |
#if 1 |
|
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
65 |
ec_pdo_reg_t domain1_pdos[] = { |
446 | 66 |
{"2", Beckhoff_EL3102_Input1, &r_ana_in}, |
220 | 67 |
{} |
68 |
}; |
|
416
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
69 |
#endif |
220 | 70 |
|
71 |
/*****************************************************************************/ |
|
72 |
||
73 |
void run(unsigned long data) |
|
74 |
{ |
|
75 |
static unsigned int counter = 0; |
|
416
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
76 |
static unsigned int einaus = 0; |
220 | 77 |
|
78 |
spin_lock(&master_lock); |
|
79 |
||
80 |
// receive |
|
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
81 |
ecrt_master_receive(master); |
220 | 82 |
ecrt_domain_process(domain1); |
83 |
||
84 |
// process data |
|
85 |
//k_pos = EC_READ_U32(r_ssi); |
|
457
2b4ba84b6058
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
454
diff
changeset
|
86 |
#ifdef KBUS |
454
25cc4a3b9e0a
State acknowledgement in master state machine.
Florian Pose <fp@igh-essen.com>
parents:
452
diff
changeset
|
87 |
EC_WRITE_U8(r_outputs + 2, einaus ? 0xFF : 0x00); |
457
2b4ba84b6058
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
454
diff
changeset
|
88 |
#endif |
220 | 89 |
|
90 |
// send |
|
91 |
ecrt_master_run(master); |
|
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
92 |
ecrt_master_send(master); |
220 | 93 |
|
94 |
spin_unlock(&master_lock); |
|
95 |
||
96 |
if (counter) { |
|
97 |
counter--; |
|
98 |
} |
|
99 |
else { |
|
100 |
counter = FREQUENCY; |
|
416
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
101 |
einaus = !einaus; |
220 | 102 |
} |
103 |
||
104 |
// restart timer |
|
105 |
timer.expires += HZ / FREQUENCY; |
|
106 |
add_timer(&timer); |
|
107 |
} |
|
108 |
||
109 |
/*****************************************************************************/ |
|
110 |
||
111 |
int request_lock(void *data) |
|
112 |
{ |
|
226
07247920a7ba
EoE with workqueue; bugfix in ec_master_init()
Florian Pose <fp@igh-essen.com>
parents:
223
diff
changeset
|
113 |
spin_lock_bh(&master_lock); |
07247920a7ba
EoE with workqueue; bugfix in ec_master_init()
Florian Pose <fp@igh-essen.com>
parents:
223
diff
changeset
|
114 |
return 0; // access allowed |
220 | 115 |
} |
116 |
||
117 |
/*****************************************************************************/ |
|
118 |
||
119 |
void release_lock(void *data) |
|
120 |
{ |
|
226
07247920a7ba
EoE with workqueue; bugfix in ec_master_init()
Florian Pose <fp@igh-essen.com>
parents:
223
diff
changeset
|
121 |
spin_unlock_bh(&master_lock); |
220 | 122 |
} |
123 |
||
124 |
/*****************************************************************************/ |
|
125 |
||
126 |
int __init init_mini_module(void) |
|
127 |
{ |
|
454
25cc4a3b9e0a
State acknowledgement in master state machine.
Florian Pose <fp@igh-essen.com>
parents:
452
diff
changeset
|
128 |
#if 0 |
25cc4a3b9e0a
State acknowledgement in master state machine.
Florian Pose <fp@igh-essen.com>
parents:
452
diff
changeset
|
129 |
ec_slave_t *slave; |
25cc4a3b9e0a
State acknowledgement in master state machine.
Florian Pose <fp@igh-essen.com>
parents:
452
diff
changeset
|
130 |
#endif |
329
d004349777fc
SDO configuration interface, SDO download state machine.
Florian Pose <fp@igh-essen.com>
parents:
325
diff
changeset
|
131 |
|
220 | 132 |
printk(KERN_INFO "=== Starting Minimal EtherCAT environment... ===\n"); |
133 |
||
134 |
if ((master = ecrt_request_master(0)) == NULL) { |
|
135 |
printk(KERN_ERR "Requesting master 0 failed!\n"); |
|
136 |
goto out_return; |
|
137 |
} |
|
138 |
||
139 |
ecrt_master_callbacks(master, request_lock, release_lock, NULL); |
|
140 |
||
141 |
printk(KERN_INFO "Registering domain...\n"); |
|
142 |
if (!(domain1 = ecrt_master_create_domain(master))) |
|
143 |
{ |
|
144 |
printk(KERN_ERR "Domain creation failed!\n"); |
|
145 |
goto out_release_master; |
|
146 |
} |
|
147 |
||
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
148 |
printk(KERN_INFO "Registering PDOs...\n"); |
446 | 149 |
#if 1 |
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
150 |
if (ecrt_domain_register_pdo_list(domain1, domain1_pdos)) { |
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
151 |
printk(KERN_ERR "PDO registration failed!\n"); |
220 | 152 |
goto out_release_master; |
153 |
} |
|
416
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
154 |
#endif |
446 | 155 |
|
457
2b4ba84b6058
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
454
diff
changeset
|
156 |
#ifdef KBUS |
416
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
157 |
if (!ecrt_domain_register_pdo_range(domain1, "0", Beckhoff_BK1120, |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
158 |
EC_DIR_OUTPUT, 0, 4, &r_outputs)) { |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
159 |
printk(KERN_ERR "PDO registration failed!\n"); |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
160 |
goto out_release_master; |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
161 |
} |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
162 |
if (!ecrt_domain_register_pdo_range(domain1, "0", Beckhoff_BK1120, |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
163 |
EC_DIR_INPUT, 0, 4, &r_inputs)) { |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
164 |
printk(KERN_ERR "PDO registration failed!\n"); |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
165 |
goto out_release_master; |
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
166 |
} |
446 | 167 |
#endif |
416
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
168 |
|
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
169 |
#if 0 |
348 | 170 |
if (!(slave = ecrt_master_get_slave(master, "3"))) |
329
d004349777fc
SDO configuration interface, SDO download state machine.
Florian Pose <fp@igh-essen.com>
parents:
325
diff
changeset
|
171 |
goto out_release_master; |
d004349777fc
SDO configuration interface, SDO download state machine.
Florian Pose <fp@igh-essen.com>
parents:
325
diff
changeset
|
172 |
|
d004349777fc
SDO configuration interface, SDO download state machine.
Florian Pose <fp@igh-essen.com>
parents:
325
diff
changeset
|
173 |
if (ecrt_slave_conf_sdo8(slave, 0x4061, 1, 0)) |
d004349777fc
SDO configuration interface, SDO download state machine.
Florian Pose <fp@igh-essen.com>
parents:
325
diff
changeset
|
174 |
goto out_release_master; |
416
4f007cd2a79d
ecrt_domain_register_pdo_range() implemented.
Florian Pose <fp@igh-essen.com>
parents:
348
diff
changeset
|
175 |
#endif |
329
d004349777fc
SDO configuration interface, SDO download state machine.
Florian Pose <fp@igh-essen.com>
parents:
325
diff
changeset
|
176 |
|
220 | 177 |
printk(KERN_INFO "Activating master...\n"); |
178 |
if (ecrt_master_activate(master)) { |
|
179 |
printk(KERN_ERR "Failed to activate master!\n"); |
|
180 |
goto out_release_master; |
|
181 |
} |
|
182 |
||
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
183 |
ecrt_master_prepare(master); |
220 | 184 |
|
185 |
printk("Starting cyclic sample thread.\n"); |
|
186 |
init_timer(&timer); |
|
187 |
timer.function = run; |
|
188 |
timer.expires = jiffies + 10; |
|
189 |
add_timer(&timer); |
|
190 |
||
191 |
printk(KERN_INFO "=== Minimal EtherCAT environment started. ===\n"); |
|
192 |
return 0; |
|
193 |
||
194 |
out_release_master: |
|
195 |
ecrt_release_master(master); |
|
196 |
out_return: |
|
197 |
return -1; |
|
198 |
} |
|
199 |
||
200 |
/*****************************************************************************/ |
|
201 |
||
202 |
void __exit cleanup_mini_module(void) |
|
203 |
{ |
|
204 |
printk(KERN_INFO "=== Stopping Minimal EtherCAT environment... ===\n"); |
|
205 |
||
449
3caf8ff4d8a2
Moved functionality of ecrt_master_deactivate() (now deprecated) to ecrt_master_release().
Florian Pose <fp@igh-essen.com>
parents:
446
diff
changeset
|
206 |
del_timer_sync(&timer); |
3caf8ff4d8a2
Moved functionality of ecrt_master_deactivate() (now deprecated) to ecrt_master_release().
Florian Pose <fp@igh-essen.com>
parents:
446
diff
changeset
|
207 |
printk(KERN_INFO "Releasing master...\n"); |
3caf8ff4d8a2
Moved functionality of ecrt_master_deactivate() (now deprecated) to ecrt_master_release().
Florian Pose <fp@igh-essen.com>
parents:
446
diff
changeset
|
208 |
ecrt_release_master(master); |
220 | 209 |
|
210 |
printk(KERN_INFO "=== Minimal EtherCAT environment stopped. ===\n"); |
|
211 |
} |
|
212 |
||
213 |
/*****************************************************************************/ |
|
214 |
||
215 |
MODULE_LICENSE("GPL"); |
|
216 |
MODULE_AUTHOR ("Florian Pose <fp@igh-essen.com>"); |
|
217 |
MODULE_DESCRIPTION ("EtherCAT minimal test environment"); |
|
218 |
||
219 |
module_init(init_mini_module); |
|
220 |
module_exit(cleanup_mini_module); |
|
221 |
||
222 |
/*****************************************************************************/ |
|
223 |