author | Florian Pose <fp@igh-essen.com> |
Fri, 01 Aug 2008 12:32:53 +0000 | |
changeset 1188 | 3b4e82d9904b |
parent 1179 | c0e6adec1aee |
child 1209 | 8be462afb7f4 |
child 1685 | 399ef727bf62 |
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 |
220 | 40 |
|
820 | 41 |
/*****************************************************************************/ |
42 |
||
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
43 |
// Module parameters |
220 | 44 |
#define FREQUENCY 100 |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
45 |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
46 |
// Optional features |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
47 |
#define CONFIGURE_PDOS 1 |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
48 |
#define EL3152_ALT_PDOS 0 |
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
49 |
#define EXTERNAL_MEMORY 1 |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
50 |
#define SDO_ACCESS 0 |
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 |
|
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
64 |
static ec_slave_config_t *sc_ana_in = NULL; |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
65 |
static ec_slave_config_state_t sc_ana_in_state = {}; |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
66 |
|
1080
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
67 |
// Timer |
820 | 68 |
static struct timer_list timer; |
69 |
||
70 |
/*****************************************************************************/ |
|
71 |
||
72 |
// process data |
|
73 |
static uint8_t *domain1_pd; // process data memory |
|
74 |
||
1080
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
75 |
#define AnaInSlavePos 0, 1 |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
76 |
#define AnaOutSlavePos 0, 2 |
1080
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
77 |
#define DigOutSlavePos 0, 3 |
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
78 |
|
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
79 |
#define Beckhoff_EL2004 0x00000002, 0x07D43052 |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
80 |
#define Beckhoff_EL3152 0x00000002, 0x0c503052 |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
81 |
#define Beckhoff_EL4102 0x00000002, 0x10063052 |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
82 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
83 |
// offsets for Pdo entries |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
84 |
static unsigned int off_ana_in; |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
85 |
static unsigned int off_ana_out; |
820 | 86 |
static unsigned int off_dig_out; |
87 |
||
1080
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
88 |
const static ec_pdo_entry_reg_t domain1_regs[] = { |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
89 |
#if EL3152_ALT_PDOS |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
90 |
{AnaInSlavePos, Beckhoff_EL3152, 0x6401, 1, &off_ana_in}, |
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
91 |
#else |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
92 |
{AnaInSlavePos, Beckhoff_EL3152, 0x3101, 2, &off_ana_in}, |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
93 |
#endif |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
94 |
{AnaOutSlavePos, Beckhoff_EL4102, 0x3001, 1, &off_ana_out}, |
1080
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
95 |
{DigOutSlavePos, Beckhoff_EL2004, 0x3001, 1, &off_dig_out}, |
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
96 |
{} |
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
97 |
}; |
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
98 |
|
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
99 |
static unsigned int counter = 0; |
820 | 100 |
static unsigned int blink = 0; |
101 |
||
102 |
/*****************************************************************************/ |
|
103 |
||
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
104 |
#if CONFIGURE_PDOS |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
105 |
|
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
106 |
// Analog in -------------------------- |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
107 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
108 |
static ec_pdo_entry_info_t el3152_pdo_entries[] = { |
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
109 |
{0x3101, 1, 8}, // channel 1 status |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
110 |
{0x3101, 2, 16}, // channel 1 value |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
111 |
{0x3102, 1, 8}, // channel 2 status |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
112 |
{0x3102, 2, 16}, // channel 2 value |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
113 |
{0x6401, 1, 16}, // channel 1 value (alt.) |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
114 |
{0x6401, 2, 16} // channel 2 value (alt.) |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
115 |
}; |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
116 |
|
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
117 |
#if EL3152_ALT_PDOS |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
118 |
static ec_pdo_info_t el3152_pdos[] = { |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
119 |
{0x1A10, 2, el3152_pdo_entries + 4}, |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
120 |
}; |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
121 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
122 |
static ec_sync_info_t el3152_syncs[] = { |
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
123 |
{2, EC_DIR_OUTPUT}, |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
124 |
{3, EC_DIR_INPUT, 1, el3152_pdos}, |
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
125 |
{0xff} |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
126 |
}; |
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
127 |
#else |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
128 |
static ec_pdo_info_t el3152_pdos[] = { |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
129 |
{0x1A00, 2, el3152_pdo_entries}, |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
130 |
{0x1A01, 2, el3152_pdo_entries + 2} |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
131 |
}; |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
132 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
133 |
static ec_sync_info_t el3152_syncs[] = { |
1061
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
134 |
{2, EC_DIR_OUTPUT}, |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
135 |
{3, EC_DIR_INPUT, 1, el3152_pdos}, |
1061
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
136 |
{0xff} |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
137 |
}; |
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
138 |
#endif |
809 | 139 |
|
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
140 |
// Analog out ------------------------- |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
141 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
142 |
static ec_pdo_entry_info_t el4102_pdo_entries[] = { |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
143 |
{0x3001, 1, 16}, // channel 1 value |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
144 |
{0x3002, 1, 16}, // channel 2 value |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
145 |
}; |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
146 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
147 |
static ec_pdo_info_t el4102_pdos[] = { |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
148 |
{0x1600, 1, el4102_pdo_entries}, |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
149 |
{0x1601, 1, el4102_pdo_entries + 1} |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
150 |
}; |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
151 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
152 |
static ec_sync_info_t el4102_syncs[] = { |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
153 |
{2, EC_DIR_OUTPUT, 2, el4102_pdos}, |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
154 |
{3, EC_DIR_INPUT}, |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
155 |
{0xff} |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
156 |
}; |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
157 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
158 |
// Digital out ------------------------ |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
159 |
|
851
2bb18adcd204
Removed 'const' from Pdo configuration entries.
Florian Pose <fp@igh-essen.com>
parents:
846
diff
changeset
|
160 |
static ec_pdo_entry_info_t el2004_channels[] = { |
809 | 161 |
{0x3001, 1, 1}, // Value 1 |
162 |
{0x3001, 2, 1}, // Value 2 |
|
163 |
{0x3001, 3, 1}, // Value 3 |
|
164 |
{0x3001, 4, 1} // Value 4 |
|
165 |
}; |
|
166 |
||
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
878
diff
changeset
|
167 |
static ec_pdo_info_t el2004_pdos[] = { |
1061
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
168 |
{0x1600, 1, &el2004_channels[0]}, |
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
169 |
{0x1601, 1, &el2004_channels[1]}, |
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
170 |
{0x1602, 1, &el2004_channels[2]}, |
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
171 |
{0x1603, 1, &el2004_channels[3]} |
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
172 |
}; |
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
173 |
|
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
174 |
static ec_sync_info_t el2004_syncs[] = { |
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
175 |
{0, EC_DIR_OUTPUT, 4, el2004_pdos}, |
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
176 |
{1, EC_DIR_INPUT}, |
90c3d75057e4
Adapted minimal example to sync manager configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
1027
diff
changeset
|
177 |
{0xff} |
809 | 178 |
}; |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
179 |
#endif |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
180 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
181 |
/*****************************************************************************/ |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
182 |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
183 |
#if SDO_ACCESS |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
184 |
static ec_sdo_request_t *sdo; |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
185 |
#endif |
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 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
189 |
void check_domain1_state(void) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
190 |
{ |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
191 |
ec_domain_state_t ds; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
192 |
|
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
193 |
spin_lock(&master_lock); |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
194 |
ecrt_domain_state(domain1, &ds); |
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
195 |
spin_unlock(&master_lock); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
196 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
197 |
if (ds.working_counter != domain1_state.working_counter) |
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
198 |
printk(KERN_INFO PFX "Domain1: WC %u.\n", ds.working_counter); |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
199 |
if (ds.wc_state != domain1_state.wc_state) |
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
200 |
printk(KERN_INFO PFX "Domain1: State %u.\n", ds.wc_state); |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
201 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
202 |
domain1_state = ds; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
203 |
} |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
204 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
205 |
/*****************************************************************************/ |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
206 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
207 |
void check_master_state(void) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
208 |
{ |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
209 |
ec_master_state_t ms; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
210 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
211 |
spin_lock(&master_lock); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
212 |
ecrt_master_state(master, &ms); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
213 |
spin_unlock(&master_lock); |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
214 |
|
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
215 |
if (ms.slaves_responding != master_state.slaves_responding) |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
216 |
printk(KERN_INFO PFX "%u slave(s).\n", ms.slaves_responding); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
217 |
if (ms.al_states != master_state.al_states) |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
218 |
printk(KERN_INFO PFX "AL states: 0x%02X.\n", ms.al_states); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
219 |
if (ms.link_up != master_state.link_up) |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
220 |
printk(KERN_INFO PFX "Link is %s.\n", ms.link_up ? "up" : "down"); |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
221 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
222 |
master_state = ms; |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
223 |
} |
220 | 224 |
|
225 |
/*****************************************************************************/ |
|
226 |
||
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
227 |
void check_slave_config_states(void) |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
228 |
{ |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
229 |
ec_slave_config_state_t s; |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
230 |
|
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
231 |
spin_lock(&master_lock); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
232 |
ecrt_slave_config_state(sc_ana_in, &s); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
233 |
spin_unlock(&master_lock); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
234 |
|
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
235 |
if (s.al_state != sc_ana_in_state.al_state) |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
236 |
printk(KERN_INFO PFX "AnaIn: State 0x%02X.\n", s.al_state); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
237 |
if (s.online != sc_ana_in_state.online) |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
238 |
printk(KERN_INFO PFX "AnaIn: %s.\n", s.online ? "online" : "offline"); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
239 |
if (s.operational != sc_ana_in_state.operational) |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
240 |
printk(KERN_INFO PFX "AnaIn: %soperational.\n", |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
241 |
s.operational ? "" : "Not "); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
242 |
|
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
243 |
sc_ana_in_state = s; |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
244 |
} |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
245 |
|
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
246 |
/*****************************************************************************/ |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
247 |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
248 |
#if SDO_ACCESS |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
249 |
void read_sdo(void) |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
250 |
{ |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
251 |
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
|
252 |
case EC_SDO_REQUEST_UNUSED: // request was not used yet |
867 | 253 |
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
|
254 |
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
|
255 |
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
|
256 |
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
|
257 |
break; |
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
258 |
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
|
259 |
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
|
260 |
EC_READ_U16(ecrt_sdo_request_data(sdo))); |
867 | 261 |
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
|
262 |
break; |
6e3de145421a
Introduced ec_sdo_request_state_t, making ec_request_t private again;
Florian Pose <fp@igh-essen.com>
parents:
858
diff
changeset
|
263 |
case EC_SDO_REQUEST_ERROR: |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
264 |
printk(KERN_INFO PFX "Failed to read Sdo!\n"); |
867 | 265 |
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
|
266 |
break; |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
267 |
} |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
268 |
} |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
269 |
#endif |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
270 |
|
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
271 |
/*****************************************************************************/ |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
272 |
|
820 | 273 |
void cyclic_task(unsigned long data) |
274 |
{ |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
275 |
// receive process data |
220 | 276 |
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
|
277 |
ecrt_master_receive(master); |
220 | 278 |
ecrt_domain_process(domain1); |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
279 |
spin_unlock(&master_lock); |
220 | 280 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
281 |
// check process data state (optional) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
282 |
check_domain1_state(); |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
283 |
|
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
284 |
if (counter) { |
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
285 |
counter--; |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
286 |
} else { // do this at 1 Hz |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
287 |
counter = FREQUENCY; |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
288 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
289 |
// calculate new process data |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
290 |
blink = !blink; |
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
291 |
|
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
292 |
// check for master state (optional) |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
293 |
check_master_state(); |
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
294 |
|
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
295 |
// check for islave configuration state(s) (optional) |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
296 |
check_slave_config_states(); |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
297 |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
298 |
#if SDO_ACCESS |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
299 |
// read process data Sdo |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
300 |
read_sdo(); |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
301 |
#endif |
818
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
302 |
} |
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
303 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
304 |
// write process data |
846 | 305 |
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
|
306 |
|
b6c87ae254c9
Calculate expected working counter for domains.
Florian Pose <fp@igh-essen.com>
parents:
814
diff
changeset
|
307 |
// send process data |
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
308 |
spin_lock(&master_lock); |
509
87baea61d0c7
Adjusted examples to 1.2.0 interface changes.
Florian Pose <fp@igh-essen.com>
parents:
472
diff
changeset
|
309 |
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
|
310 |
ecrt_master_send(master); |
220 | 311 |
spin_unlock(&master_lock); |
312 |
||
313 |
// restart timer |
|
314 |
timer.expires += HZ / FREQUENCY; |
|
315 |
add_timer(&timer); |
|
316 |
} |
|
317 |
||
318 |
/*****************************************************************************/ |
|
319 |
||
320 |
int request_lock(void *data) |
|
321 |
{ |
|
516
f703e33ee395
Adjusted examples to EtherLab starter kit hardware.
Florian Pose <fp@igh-essen.com>
parents:
513
diff
changeset
|
322 |
spin_lock(&master_lock); |
226
07247920a7ba
EoE with workqueue; bugfix in ec_master_init()
Florian Pose <fp@igh-essen.com>
parents:
223
diff
changeset
|
323 |
return 0; // access allowed |
220 | 324 |
} |
325 |
||
326 |
/*****************************************************************************/ |
|
327 |
||
328 |
void release_lock(void *data) |
|
329 |
{ |
|
516
f703e33ee395
Adjusted examples to EtherLab starter kit hardware.
Florian Pose <fp@igh-essen.com>
parents:
513
diff
changeset
|
330 |
spin_unlock(&master_lock); |
220 | 331 |
} |
332 |
||
333 |
/*****************************************************************************/ |
|
334 |
||
335 |
int __init init_mini_module(void) |
|
336 |
{ |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
337 |
#if CONFIGURE_PDOS |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
338 |
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
|
339 |
#endif |
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
340 |
#if EXTERNAL_MEMORY |
809 | 341 |
unsigned int size; |
342 |
#endif |
|
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
343 |
|
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
344 |
printk(KERN_INFO PFX "Starting...\n"); |
220 | 345 |
|
509
87baea61d0c7
Adjusted examples to 1.2.0 interface changes.
Florian Pose <fp@igh-essen.com>
parents:
472
diff
changeset
|
346 |
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
|
347 |
printk(KERN_ERR PFX "Requesting master 0 failed!\n"); |
220 | 348 |
goto out_return; |
349 |
} |
|
350 |
||
351 |
ecrt_master_callbacks(master, request_lock, release_lock, NULL); |
|
352 |
||
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
353 |
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
|
354 |
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
|
355 |
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
|
356 |
goto out_release_master; |
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
357 |
} |
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
358 |
|
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
359 |
if (!(sc_ana_in = ecrt_master_slave_config( |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
360 |
master, AnaInSlavePos, Beckhoff_EL3152))) { |
1022
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
361 |
printk(KERN_ERR PFX "Failed to get slave configuration.\n"); |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
362 |
goto out_release_master; |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
363 |
} |
8e49b519e6ba
Implemented ecrt_slave_config_state(); minor changes in
Florian Pose <fp@igh-essen.com>
parents:
909
diff
changeset
|
364 |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
365 |
#if CONFIGURE_PDOS |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
878
diff
changeset
|
366 |
printk(KERN_INFO PFX "Configuring Pdos...\n"); |
1179
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
367 |
if (ecrt_slave_config_pdos(sc_ana_in, EC_END, el3152_syncs)) { |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
368 |
printk(KERN_ERR PFX "Failed to configure Pdos.\n"); |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
369 |
goto out_release_master; |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
370 |
} |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
371 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
372 |
if (!(sc = ecrt_master_slave_config( |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
373 |
master, AnaOutSlavePos, Beckhoff_EL4102))) { |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
374 |
printk(KERN_ERR PFX "Failed to get slave configuration.\n"); |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
375 |
goto out_release_master; |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
376 |
} |
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
377 |
|
c0e6adec1aee
Added analog output to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1171
diff
changeset
|
378 |
if (ecrt_slave_config_pdos(sc, EC_END, el4102_syncs)) { |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
878
diff
changeset
|
379 |
printk(KERN_ERR PFX "Failed to configure Pdos.\n"); |
809 | 380 |
goto out_release_master; |
381 |
} |
|
382 |
||
1080
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
383 |
if (!(sc = ecrt_master_slave_config( |
088a61306930
Removed MSR example; adapted RTAI example; README files for examples.
Florian Pose <fp@igh-essen.com>
parents:
1061
diff
changeset
|
384 |
master, DigOutSlavePos, Beckhoff_EL2004))) { |
809 | 385 |
printk(KERN_ERR PFX "Failed to get slave configuration.\n"); |
386 |
goto out_release_master; |
|
387 |
} |
|
388 |
||
1082
ff06c58e269c
Renamed ecrt_slave_config_sync_managers() to ecrt_slave_config_pdos();
Florian Pose <fp@igh-essen.com>
parents:
1080
diff
changeset
|
389 |
if (ecrt_slave_config_pdos(sc, EC_END, el2004_syncs)) { |
879
9b395c5646ab
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
Florian Pose <fp@igh-essen.com>
parents:
878
diff
changeset
|
390 |
printk(KERN_ERR PFX "Failed to configure Pdos.\n"); |
792
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
391 |
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
|
392 |
} |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
393 |
#endif |
3778920f61e4
Implemented most realtime interface changes for version 1.4, improved
Florian Pose <fp@igh-essen.com>
parents:
654
diff
changeset
|
394 |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
395 |
#if SDO_ACCESS |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
396 |
printk(KERN_INFO PFX "Creating Sdo requests...\n"); |
1026
021b8cdeb384
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1022
diff
changeset
|
397 |
if (!(sdo = ecrt_slave_config_create_sdo_request(sc_ana_in, 0x3102, 2, 2))) { |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
398 |
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
|
399 |
goto out_release_master; |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
400 |
} |
1026
021b8cdeb384
Minor changes to minimal example.
Florian Pose <fp@igh-essen.com>
parents:
1022
diff
changeset
|
401 |
ecrt_sdo_request_timeout(sdo, 500); // ms |
858
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
402 |
#endif |
69122084d066
Basic reading realtime Sdo access working.
Florian Pose <fp@igh-essen.com>
parents:
851
diff
changeset
|
403 |
|
814 | 404 |
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
|
405 |
if (ecrt_domain_reg_pdo_entry_list(domain1, domain1_regs)) { |
814 | 406 |
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
|
407 |
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
|
408 |
} |
635
d304ef4af542
Implemented alternative PDO mapping configuration interface.
Florian Pose <fp@igh-essen.com>
parents:
612
diff
changeset
|
409 |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
410 |
#if EXTERNAL_MEMORY |
809 | 411 |
if ((size = ecrt_domain_size(domain1))) { |
820 | 412 |
if (!(domain1_pd = (uint8_t *) kmalloc(size, GFP_KERNEL))) { |
809 | 413 |
printk(KERN_ERR PFX "Failed to allocate %u bytes of process data" |
414 |
" memory!\n", size); |
|
415 |
goto out_release_master; |
|
416 |
} |
|
820 | 417 |
ecrt_domain_external_memory(domain1, domain1_pd); |
809 | 418 |
} |
419 |
#endif |
|
420 |
||
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
421 |
printk(KERN_INFO PFX "Activating master...\n"); |
220 | 422 |
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
|
423 |
printk(KERN_ERR PFX "Failed to activate master!\n"); |
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
424 |
#if EXTERNAL_MEMORY |
809 | 425 |
goto out_free_process_data; |
426 |
#else |
|
427 |
goto out_release_master; |
|
428 |
#endif |
|
429 |
} |
|
430 |
||
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
431 |
#if !EXTERNAL_MEMORY |
809 | 432 |
// Get internal process data for domain |
820 | 433 |
domain1_pd = ecrt_domain_data(domain1); |
809 | 434 |
#endif |
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
435 |
|
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
436 |
printk(KERN_INFO PFX "Starting cyclic sample thread.\n"); |
220 | 437 |
init_timer(&timer); |
820 | 438 |
timer.function = cyclic_task; |
220 | 439 |
timer.expires = jiffies + 10; |
440 |
add_timer(&timer); |
|
441 |
||
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
442 |
printk(KERN_INFO PFX "Started.\n"); |
220 | 443 |
return 0; |
444 |
||
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
445 |
#if EXTERNAL_MEMORY |
809 | 446 |
out_free_process_data: |
820 | 447 |
kfree(domain1_pd); |
809 | 448 |
#endif |
449 |
out_release_master: |
|
654
8278e1e27010
Minor changes in minimal example.
Florian Pose <fp@igh-essen.com>
parents:
643
diff
changeset
|
450 |
printk(KERN_ERR PFX "Releasing master...\n"); |
220 | 451 |
ecrt_release_master(master); |
809 | 452 |
out_return: |
654
8278e1e27010
Minor changes in minimal example.
Florian Pose <fp@igh-essen.com>
parents:
643
diff
changeset
|
453 |
printk(KERN_ERR PFX "Failed to load. Aborting.\n"); |
220 | 454 |
return -1; |
455 |
} |
|
456 |
||
457 |
/*****************************************************************************/ |
|
458 |
||
459 |
void __exit cleanup_mini_module(void) |
|
460 |
{ |
|
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
461 |
printk(KERN_INFO PFX "Stopping...\n"); |
220 | 462 |
|
449
3caf8ff4d8a2
Moved functionality of ecrt_master_deactivate() (now deprecated) to ecrt_master_release().
Florian Pose <fp@igh-essen.com>
parents:
446
diff
changeset
|
463 |
del_timer_sync(&timer); |
809 | 464 |
|
1171
de880622f253
Alternative Pdo assignment for el3162.
Florian Pose <fp@igh-essen.com>
parents:
1082
diff
changeset
|
465 |
#if EXTERNAL_MEMORY |
820 | 466 |
kfree(domain1_pd); |
809 | 467 |
#endif |
468 |
||
612
aede068f9a74
Introduced master status, ecrt_master_get_status(), tainted flag,
Florian Pose <fp@igh-essen.com>
parents:
551
diff
changeset
|
469 |
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
|
470 |
ecrt_release_master(master); |
220 | 471 |
|
654
8278e1e27010
Minor changes in minimal example.
Florian Pose <fp@igh-essen.com>
parents:
643
diff
changeset
|
472 |
printk(KERN_INFO PFX "Unloading.\n"); |
220 | 473 |
} |
474 |
||
475 |
/*****************************************************************************/ |
|
476 |
||
477 |
MODULE_LICENSE("GPL"); |
|
512
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
478 |
MODULE_AUTHOR("Florian Pose <fp@igh-essen.com>"); |
24292123d174
Shorter critical sections in examples.
Florian Pose <fp@igh-essen.com>
parents:
509
diff
changeset
|
479 |
MODULE_DESCRIPTION("EtherCAT minimal test environment"); |
220 | 480 |
|
481 |
module_init(init_mini_module); |
|
482 |
module_exit(cleanup_mini_module); |
|
483 |
||
484 |
/*****************************************************************************/ |