author | Florian Pose <fp@igh-essen.com> |
Thu, 13 Mar 2008 12:42:48 +0000 | |
changeset 868 | aaf175ef0171 |
parent 867 | 93a0180ee938 |
child 878 | 40c379697ebf |
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/timer.h> |
|
36 |
#include <linux/spinlock.h> |
|
37 |
#include <linux/interrupt.h> |
|
38 |
||
223
daa5e5656b35
Applied new path information to example modules.
Florian Pose <fp@igh-essen.com>
parents:
220
diff
changeset
|
39 |
#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
|
40 |
#include "../../include/ecdb.h" // EtherCAT slave database |
220 | 41 |
|
820 | 42 |
/*****************************************************************************/ |
43 |
||
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
44 |
// Module parameters |
220 | 45 |
#define FREQUENCY 100 |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
46 |
|
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
47 |
// Optional features |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
48 |
#define CONFIGURE_MAPPING |
809 | 49 |
#define EXTERNAL_MEMORY |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
50 |
#define SDO_ACCESS |
457
2b4ba84b6058
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
454
diff
changeset
|
51 |
|
820 | 52 |
#define PFX "ec_mini: " |
53 |
||
54 |
/*****************************************************************************/ |
|
220 | 55 |
|
56 |
// EtherCAT |
|
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
57 |
static ec_master_t *master = NULL; |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
58 |
static ec_master_state_t master_state = {}; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
59 |
spinlock_t master_lock = SPIN_LOCK_UNLOCKED; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
60 |
|
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
61 |
static ec_domain_t *domain1 = NULL; |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
62 |
static ec_domain_state_t domain1_state = {}; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
63 |
|
820 | 64 |
static struct timer_list timer; |
65 |
static unsigned int counter = 0; |
|
66 |
||
67 |
/*****************************************************************************/ |
|
68 |
||
69 |
// process data |
|
70 |
static uint8_t *domain1_pd; // process data memory |
|
71 |
||
72 |
static unsigned int off_ana_in; // offsets for Pdo entries |
|
73 |
static unsigned int off_dig_out; |
|
74 |
||
75 |
static unsigned int blink = 0; |
|
76 |
||
77 |
const static ec_pdo_entry_reg_t domain1_regs[] = { |
|
78 |
{0, 1, Beckhoff_EL3162, 0x3101, 2, &off_ana_in}, |
|
79 |
{0, 3, Beckhoff_EL2004, 0x3001, 1, &off_dig_out}, |
|
80 |
{} |
|
81 |
}; |
|
82 |
||
83 |
/*****************************************************************************/ |
|
84 |
||
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
85 |
#ifdef CONFIGURE_MAPPING |
851
2bb18adcd204
Removed 'const' from Pdo configuration entries.
Florian Pose <fp@igh-essen.com>
parents:
846
diff
changeset
|
86 |
static ec_pdo_entry_info_t el3162_channel1[] = { |
793
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
87 |
{0x3101, 1, 8}, // status |
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
88 |
{0x3101, 2, 16} // value |
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
89 |
}; |
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
90 |
|
851
2bb18adcd204
Removed 'const' from Pdo configuration entries.
Florian Pose <fp@igh-essen.com>
parents:
846
diff
changeset
|
91 |
static ec_pdo_entry_info_t el3162_channel2[] = { |
793
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
92 |
{0x3102, 1, 8}, // status |
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
93 |
{0x3102, 2, 16} // value |
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
94 |
}; |
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
95 |
|
851
2bb18adcd204
Removed 'const' from Pdo configuration entries.
Florian Pose <fp@igh-essen.com>
parents:
846
diff
changeset
|
96 |
static ec_pdo_info_t el3162_mapping[] = { |
793
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
97 |
{EC_DIR_INPUT, 0x1A00, 2, el3162_channel1}, |
3b297ff8284f
Fixed Pdo configuration information providing.
Florian Pose <fp@igh-essen.com>
parents:
792
diff
changeset
|
98 |
{EC_DIR_INPUT, 0x1A01, 2, el3162_channel2}, |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
99 |
}; |
809 | 100 |
|
851
2bb18adcd204
Removed 'const' from Pdo configuration entries.
Florian Pose <fp@igh-essen.com>
parents:
846
diff
changeset
|
101 |
static ec_pdo_entry_info_t el2004_channels[] = { |
809 | 102 |
{0x3001, 1, 1}, // Value 1 |
103 |
{0x3001, 2, 1}, // Value 2 |
|
104 |
{0x3001, 3, 1}, // Value 3 |
|
105 |
{0x3001, 4, 1} // Value 4 |
|
106 |
}; |
|
107 |
||
851
2bb18adcd204
Removed 'const' from Pdo configuration entries.
Florian Pose <fp@igh-essen.com>
parents:
846
diff
changeset
|
108 |
static ec_pdo_info_t el2004_mapping[] = { |
809 | 109 |
{EC_DIR_OUTPUT, 0x1600, 1, &el2004_channels[0]}, |
110 |
{EC_DIR_OUTPUT, 0x1601, 1, &el2004_channels[1]}, |
|
111 |
{EC_DIR_OUTPUT, 0x1602, 1, &el2004_channels[2]}, |
|
112 |
{EC_DIR_OUTPUT, 0x1603, 1, &el2004_channels[3]}, |
|
113 |
}; |
|
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
114 |
#endif |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
115 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
116 |
/*****************************************************************************/ |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
117 |
|
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
118 |
#ifdef SDO_ACCESS |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
119 |
static ec_sdo_request_t *sdo; |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
120 |
#endif |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
121 |
|
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
122 |
/*****************************************************************************/ |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
123 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
124 |
void check_domain1_state(void) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
125 |
{ |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
126 |
ec_domain_state_t ds; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
127 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
128 |
ecrt_domain_state(domain1, &ds); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
129 |
if (ds.working_counter != domain1_state.working_counter) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
130 |
printk(KERN_INFO PFX "domain1 working_counter changed to %u.\n", |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
131 |
ds.working_counter); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
132 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
133 |
if (ds.wc_state != domain1_state.wc_state) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
134 |
printk(KERN_INFO PFX "domain1 wc_state changed to %u.\n", |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
135 |
ds.wc_state); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
136 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
137 |
domain1_state = ds; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
138 |
} |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
139 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
140 |
/*****************************************************************************/ |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
141 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
142 |
void check_master_state(void) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
143 |
{ |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
144 |
ec_master_state_t ms; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
145 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
146 |
spin_lock(&master_lock); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
147 |
ecrt_master_state(master, &ms); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
148 |
spin_unlock(&master_lock); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
149 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
150 |
if (ms.bus_state != master_state.bus_state) { |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
151 |
printk(KERN_INFO PFX "bus state changed to %i.\n", ms.bus_state); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
152 |
} |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
153 |
if (ms.bus_tainted != master_state.bus_tainted) { |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
154 |
printk(KERN_INFO PFX "tainted flag changed to %u.\n", |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
155 |
ms.bus_tainted); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
156 |
} |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
157 |
if (ms.slaves_responding != master_state.slaves_responding) { |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
158 |
printk(KERN_INFO PFX "slaves_responding changed to %u.\n", |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
159 |
ms.slaves_responding); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
160 |
} |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
161 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
162 |
master_state = ms; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
163 |
} |
220 | 164 |
|
165 |
/*****************************************************************************/ |
|
166 |
||
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
167 |
#ifdef SDO_ACCESS |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
168 |
void read_sdo(void) |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
169 |
{ |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
170 |
switch (ecrt_sdo_request_state(sdo)) { |
861
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
171 |
case EC_SDO_REQUEST_UNUSED: // request was not used yet |
867 | 172 |
ecrt_sdo_request_read(sdo); // trigger first read |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
173 |
break; |
861
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
174 |
case EC_SDO_REQUEST_BUSY: |
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
175 |
printk(KERN_INFO PFX "Still busy...\n"); |
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
176 |
break; |
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
177 |
case EC_SDO_REQUEST_SUCCESS: |
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
178 |
printk(KERN_INFO PFX "Sdo value: 0x%04X\n", |
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
179 |
EC_READ_U16(ecrt_sdo_request_data(sdo))); |
867 | 180 |
ecrt_sdo_request_read(sdo); // trigger next read |
861
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
181 |
break; |
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
182 |
case EC_SDO_REQUEST_ERROR: |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
183 |
printk(KERN_INFO PFX "Failed to read Sdo!\n"); |
867 | 184 |
ecrt_sdo_request_read(sdo); // retry reading |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
185 |
break; |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
186 |
} |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
187 |
} |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
188 |
#endif |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
189 |
|
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
190 |
/*****************************************************************************/ |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
191 |
|
820 | 192 |
void cyclic_task(unsigned long data) |
193 |
{ |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
194 |
// receive process data |
220 | 195 |
spin_lock(&master_lock); |
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
196 |
ecrt_master_receive(master); |
220 | 197 |
ecrt_domain_process(domain1); |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
198 |
spin_unlock(&master_lock); |
220 | 199 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
200 |
// check process data state (optional) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
201 |
check_domain1_state(); |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
202 |
|
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
203 |
if (counter) { |
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
204 |
counter--; |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
205 |
} else { // do this at 1 Hz |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
206 |
counter = FREQUENCY; |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
207 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
208 |
// calculate new process data |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
209 |
blink = !blink; |
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
210 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
211 |
// check for master state (optional) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
212 |
check_master_state(); |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
213 |
|
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
214 |
#ifdef SDO_ACCESS |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
215 |
// read process data Sdo |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
216 |
read_sdo(); |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
217 |
#endif |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
218 |
} |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
219 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
220 |
// write process data |
846 | 221 |
EC_WRITE_U8(domain1_pd + off_dig_out, blink ? 0x06 : 0x09); |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
222 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
223 |
// send process data |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
224 |
spin_lock(&master_lock); |
509
87baea61d0c7
Adjusted examples to 1.2.0 interface changes.
Florian Pose <fp@igh-essen.com>
parents:
472
diff
changeset
|
225 |
ecrt_domain_queue(domain1); |
325
7833cf70c4f2
VERSION 1.1: New realtime interface, only state machines.
Florian Pose <fp@igh-essen.com>
parents:
280
diff
changeset
|
226 |
ecrt_master_send(master); |
220 | 227 |
spin_unlock(&master_lock); |
228 |
||
229 |
// restart timer |
|
230 |
timer.expires += HZ / FREQUENCY; |
|
231 |
add_timer(&timer); |
|
232 |
} |
|
233 |
||
234 |
/*****************************************************************************/ |
|
235 |
||
236 |
int request_lock(void *data) |
|
237 |
{ |
|
516
f703e33ee395
Adjusted examples to EtherLab starter kit hardware.
Florian Pose <fp@igh-essen.com>
parents:
513
diff
changeset
|
238 |
spin_lock(&master_lock); |
226
07247920a7ba
EoE with workqueue; bugfix in ec_master_init()
Florian Pose <fp@igh-essen.com>
parents:
223
diff
changeset
|
239 |
return 0; // access allowed |
220 | 240 |
} |
241 |
||
242 |
/*****************************************************************************/ |
|
243 |
||
244 |
void release_lock(void *data) |
|
245 |
{ |
|
516
f703e33ee395
Adjusted examples to EtherLab starter kit hardware.
Florian Pose <fp@igh-essen.com>
parents:
513
diff
changeset
|
246 |
spin_unlock(&master_lock); |
220 | 247 |
} |
248 |
||
249 |
/*****************************************************************************/ |
|
250 |
||
251 |
int __init init_mini_module(void) |
|
252 |
{ |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
253 |
#ifdef CONFIGURE_MAPPING |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
254 |
ec_slave_config_t *sc; |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
255 |
#endif |
809 | 256 |
#ifdef EXTERNAL_MEMORY |
257 |
unsigned int size; |
|
258 |
#endif |
|
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
259 |
|
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
260 |
printk(KERN_INFO PFX "Starting...\n"); |
220 | 261 |
|
509
87baea61d0c7
Adjusted examples to 1.2.0 interface changes.
Florian Pose <fp@igh-essen.com>
parents:
472
diff
changeset
|
262 |
if (!(master = ecrt_request_master(0))) { |
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
263 |
printk(KERN_ERR PFX "Requesting master 0 failed!\n"); |
220 | 264 |
goto out_return; |
265 |
} |
|
266 |
||
267 |
ecrt_master_callbacks(master, request_lock, release_lock, NULL); |
|
268 |
||
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
269 |
printk(KERN_INFO PFX "Registering domain...\n"); |
509
87baea61d0c7
Adjusted examples to 1.2.0 interface changes.
Florian Pose <fp@igh-essen.com>
parents:
472
diff
changeset
|
270 |
if (!(domain1 = ecrt_master_create_domain(master))) { |
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
271 |
printk(KERN_ERR PFX "Domain creation failed!\n"); |
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
272 |
goto out_release_master; |
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
273 |
} |
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
274 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
275 |
#ifdef CONFIGURE_MAPPING |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
276 |
printk(KERN_INFO PFX "Configuring Pdo mapping...\n"); |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
277 |
if (!(sc = ecrt_master_slave_config(master, 0, 1, Beckhoff_EL3162))) { |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
278 |
printk(KERN_ERR PFX "Failed to get slave configuration.\n"); |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
279 |
goto out_release_master; |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
280 |
} |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
281 |
|
809 | 282 |
if (ecrt_slave_config_mapping(sc, 2, el3162_mapping)) { |
283 |
printk(KERN_ERR PFX "Failed to configure Pdo mapping.\n"); |
|
284 |
goto out_release_master; |
|
285 |
} |
|
286 |
||
287 |
if (!(sc = ecrt_master_slave_config(master, 0, 3, Beckhoff_EL2004))) { |
|
288 |
printk(KERN_ERR PFX "Failed to get slave configuration.\n"); |
|
289 |
goto out_release_master; |
|
290 |
} |
|
291 |
||
292 |
if (ecrt_slave_config_mapping(sc, 4, el2004_mapping)) { |
|
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
293 |
printk(KERN_ERR PFX "Failed to configure Pdo mapping.\n"); |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
294 |
goto out_release_master; |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
295 |
} |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
296 |
#endif |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
297 |
|
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
298 |
#ifdef SDO_ACCESS |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
299 |
printk(KERN_INFO PFX "Creating Sdo requests...\n"); |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
300 |
if (!(sc = ecrt_master_slave_config(master, 0, 1, Beckhoff_EL3162))) { |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
301 |
printk(KERN_ERR PFX "Failed to get slave configuration.\n"); |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
302 |
goto out_release_master; |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
303 |
} |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
304 |
|
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
305 |
if (!(sdo = ecrt_slave_config_create_sdo_request(sc, 0x3102, 2, 2))) { |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
306 |
printk(KERN_ERR PFX "Failed to create Sdo request.\n"); |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
307 |
goto out_release_master; |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
308 |
} |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
309 |
#endif |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
310 |
|
814 | 311 |
printk(KERN_INFO PFX "Registering Pdo entries...\n"); |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
312 |
if (ecrt_domain_reg_pdo_entry_list(domain1, domain1_regs)) { |
814 | 313 |
printk(KERN_ERR PFX "Pdo entry registration failed!\n"); |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
314 |
goto out_release_master; |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
315 |
} |
635
d304ef4af542
Implemented alternative PDO mapping configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
612
diff
changeset
|
316 |
|
809 | 317 |
#ifdef EXTERNAL_MEMORY |
318 |
if ((size = ecrt_domain_size(domain1))) { |
|
820 | 319 |
if (!(domain1_pd = (uint8_t *) kmalloc(size, GFP_KERNEL))) { |
809 | 320 |
printk(KERN_ERR PFX "Failed to allocate %u bytes of process data" |
321 |
" memory!\n", size); |
|
322 |
goto out_release_master; |
|
323 |
} |
|
820 | 324 |
ecrt_domain_external_memory(domain1, domain1_pd); |
809 | 325 |
} |
326 |
#endif |
|
327 |
||
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
328 |
printk(KERN_INFO PFX "Activating master...\n"); |
220 | 329 |
if (ecrt_master_activate(master)) { |
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
330 |
printk(KERN_ERR PFX "Failed to activate master!\n"); |
809 | 331 |
#ifdef EXTERNAL_MEMORY |
332 |
goto out_free_process_data; |
|
333 |
#else |
|
334 |
goto out_release_master; |
|
335 |
#endif |
|
336 |
} |
|
337 |
||
338 |
#ifndef EXTERNAL_MEMORY |
|
339 |
// Get internal process data for domain |
|
820 | 340 |
domain1_pd = ecrt_domain_data(domain1); |
809 | 341 |
#endif |
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
342 |
|
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
343 |
printk(KERN_INFO PFX "Starting cyclic sample thread.\n"); |
220 | 344 |
init_timer(&timer); |
820 | 345 |
timer.function = cyclic_task; |
220 | 346 |
timer.expires = jiffies + 10; |
347 |
add_timer(&timer); |
|
348 |
||
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
349 |
printk(KERN_INFO PFX "Started.\n"); |
220 | 350 |
return 0; |
351 |
||
809 | 352 |
#ifdef EXTERNAL_MEMORY |
353 |
out_free_process_data: |
|
820 | 354 |
kfree(domain1_pd); |
809 | 355 |
#endif |
356 |
out_release_master: |
|
654
8278e1e27010
Minor changes in minimal example.
Florian Pose <fp@igh-essen.com>
parents:
643
diff
changeset
|
357 |
printk(KERN_ERR PFX "Releasing master...\n"); |
220 | 358 |
ecrt_release_master(master); |
809 | 359 |
out_return: |
654
8278e1e27010
Minor changes in minimal example.
Florian Pose <fp@igh-essen.com>
parents:
643
diff
changeset
|
360 |
printk(KERN_ERR PFX "Failed to load. Aborting.\n"); |
220 | 361 |
return -1; |
362 |
} |
|
363 |
||
364 |
/*****************************************************************************/ |
|
365 |
||
366 |
void __exit cleanup_mini_module(void) |
|
367 |
{ |
|
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
368 |
printk(KERN_INFO PFX "Stopping...\n"); |
220 | 369 |
|
449
3caf8ff4d8a2
Moved functionality of ecrt_master_deactivate() (now deprecated) to ecrt_master_release().
Florian Pose <fp@igh-essen.com>
parents:
446
diff
changeset
|
370 |
del_timer_sync(&timer); |
809 | 371 |
|
372 |
#ifdef EXTERNAL_MEMORY |
|
820 | 373 |
kfree(domain1_pd); |
809 | 374 |
#endif |
375 |
||
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
376 |
printk(KERN_INFO PFX "Releasing master...\n"); |
449
3caf8ff4d8a2
Moved functionality of ecrt_master_deactivate() (now deprecated) to ecrt_master_release().
Florian Pose <fp@igh-essen.com>
parents:
446
diff
changeset
|
377 |
ecrt_release_master(master); |
220 | 378 |
|
654
8278e1e27010
Minor changes in minimal example.
Florian Pose <fp@igh-essen.com>
parents:
643
diff
changeset
|
379 |
printk(KERN_INFO PFX "Unloading.\n"); |
220 | 380 |
} |
381 |
||
382 |
/*****************************************************************************/ |
|
383 |
||
384 |
MODULE_LICENSE("GPL"); |
|
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
385 |
MODULE_AUTHOR("Florian Pose <fp@igh-essen.com>"); |
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
386 |
MODULE_DESCRIPTION("EtherCAT minimal test environment"); |
220 | 387 |
|
388 |
module_init(init_mini_module); |
|
389 |
module_exit(cleanup_mini_module); |
|
390 |
||
391 |
/*****************************************************************************/ |