author | Florian Pose <fp@igh-essen.com> |
Thu, 13 Mar 2008 12:42:48 +0000 | |
changeset 868 | aaf175ef0171 |
parent 815 | 002fe9ec778f |
child 872 | d4e0380d63b3 |
permissions | -rw-r--r-- |
433 | 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 |
|
11 |
* as published by the Free Software Foundation; either version 2 of the |
|
12 |
* License, or (at your option) any later version. |
|
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 |
* |
|
23 |
* The right to use EtherCAT Technology is granted and comes free of |
|
24 |
* charge under condition of compatibility of product made by |
|
25 |
* Licensee. People intending to distribute/sell products based on the |
|
26 |
* code, have to sign an agreement to guarantee that products using |
|
27 |
* software based on IgH EtherCAT master stay compatible with the actual |
|
28 |
* EtherCAT specification (which are released themselves as an open |
|
29 |
* standard) as the (only) precondition to have the right to use EtherCAT |
|
30 |
* Technology, IP and trade marks. |
|
31 |
* |
|
32 |
*****************************************************************************/ |
|
33 |
||
34 |
/** |
|
35 |
\file |
|
36 |
EtherCAT slave information interface FSM. |
|
37 |
*/ |
|
38 |
||
39 |
/*****************************************************************************/ |
|
40 |
||
41 |
#include "globals.h" |
|
42 |
#include "mailbox.h" |
|
43 |
#include "master.h" |
|
44 |
#include "fsm_sii.h" |
|
45 |
||
758
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
46 |
/** |
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
47 |
* Read/Write timeout. [ms] |
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
48 |
*/ |
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
49 |
#define EEPROM_TIMEOUT 10 |
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
50 |
|
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
51 |
/** |
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
52 |
* Time before evaluating answer at writing. [ms] |
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
53 |
*/ |
8fa6f825eb7d
Updated Doxygen documentation.
Florian Pose <fp@igh-essen.com>
parents:
755
diff
changeset
|
54 |
#define EEPROM_INHIBIT 5 |
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
55 |
|
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
56 |
//#define SII_DEBUG |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
57 |
|
433 | 58 |
/*****************************************************************************/ |
59 |
||
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
60 |
void ec_fsm_sii_state_start_reading(ec_fsm_sii_t *); |
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
61 |
void ec_fsm_sii_state_read_check(ec_fsm_sii_t *); |
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
62 |
void ec_fsm_sii_state_read_fetch(ec_fsm_sii_t *); |
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
63 |
void ec_fsm_sii_state_start_writing(ec_fsm_sii_t *); |
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
64 |
void ec_fsm_sii_state_write_check(ec_fsm_sii_t *); |
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
65 |
void ec_fsm_sii_state_write_check2(ec_fsm_sii_t *); |
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
66 |
void ec_fsm_sii_state_end(ec_fsm_sii_t *); |
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
67 |
void ec_fsm_sii_state_error(ec_fsm_sii_t *); |
433 | 68 |
|
69 |
/*****************************************************************************/ |
|
70 |
||
71 |
/** |
|
72 |
Constructor. |
|
73 |
*/ |
|
74 |
||
75 |
void ec_fsm_sii_init(ec_fsm_sii_t *fsm, /**< finite state machine */ |
|
76 |
ec_datagram_t *datagram /**< datagram structure to use */ |
|
77 |
) |
|
78 |
{ |
|
79 |
fsm->state = NULL; |
|
80 |
fsm->datagram = datagram; |
|
81 |
} |
|
82 |
||
83 |
/*****************************************************************************/ |
|
84 |
||
85 |
/** |
|
86 |
Destructor. |
|
87 |
*/ |
|
88 |
||
89 |
void ec_fsm_sii_clear(ec_fsm_sii_t *fsm /**< finite state machine */) |
|
90 |
{ |
|
91 |
} |
|
92 |
||
93 |
/*****************************************************************************/ |
|
94 |
||
95 |
/** |
|
96 |
Initializes the SII read state machine. |
|
97 |
*/ |
|
98 |
||
99 |
void ec_fsm_sii_read(ec_fsm_sii_t *fsm, /**< finite state machine */ |
|
100 |
ec_slave_t *slave, /**< slave to read from */ |
|
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
101 |
uint16_t word_offset, /**< offset to read from */ |
433 | 102 |
ec_fsm_sii_addressing_t mode /**< addressing scheme */ |
103 |
) |
|
104 |
{ |
|
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
105 |
fsm->state = ec_fsm_sii_state_start_reading; |
433 | 106 |
fsm->slave = slave; |
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
107 |
fsm->word_offset = word_offset; |
433 | 108 |
fsm->mode = mode; |
109 |
} |
|
110 |
||
111 |
/*****************************************************************************/ |
|
112 |
||
113 |
/** |
|
114 |
Initializes the SII write state machine. |
|
115 |
*/ |
|
116 |
||
117 |
void ec_fsm_sii_write(ec_fsm_sii_t *fsm, /**< finite state machine */ |
|
118 |
ec_slave_t *slave, /**< slave to read from */ |
|
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
119 |
uint16_t word_offset, /**< offset to read from */ |
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
120 |
const uint8_t *value, /**< pointer to 2 bytes of data */ |
433 | 121 |
ec_fsm_sii_addressing_t mode /**< addressing scheme */ |
122 |
) |
|
123 |
{ |
|
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
124 |
fsm->state = ec_fsm_sii_state_start_writing; |
433 | 125 |
fsm->slave = slave; |
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
126 |
fsm->word_offset = word_offset; |
433 | 127 |
fsm->mode = mode; |
128 |
memcpy(fsm->value, value, 2); |
|
129 |
} |
|
130 |
||
131 |
/*****************************************************************************/ |
|
132 |
||
133 |
/** |
|
134 |
Executes the SII state machine. |
|
435
779a18d12e6c
Removed state machine running() methods.
Florian Pose <fp@igh-essen.com>
parents:
433
diff
changeset
|
135 |
\return false, if the state machine has terminated |
779a18d12e6c
Removed state machine running() methods.
Florian Pose <fp@igh-essen.com>
parents:
433
diff
changeset
|
136 |
*/ |
779a18d12e6c
Removed state machine running() methods.
Florian Pose <fp@igh-essen.com>
parents:
433
diff
changeset
|
137 |
|
779a18d12e6c
Removed state machine running() methods.
Florian Pose <fp@igh-essen.com>
parents:
433
diff
changeset
|
138 |
int ec_fsm_sii_exec(ec_fsm_sii_t *fsm /**< finite state machine */) |
433 | 139 |
{ |
140 |
fsm->state(fsm); |
|
435
779a18d12e6c
Removed state machine running() methods.
Florian Pose <fp@igh-essen.com>
parents:
433
diff
changeset
|
141 |
|
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
142 |
return fsm->state != ec_fsm_sii_state_end |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
143 |
&& fsm->state != ec_fsm_sii_state_error; |
433 | 144 |
} |
145 |
||
146 |
/*****************************************************************************/ |
|
147 |
||
148 |
/** |
|
149 |
Returns, if the master startup state machine terminated with success. |
|
150 |
\return non-zero if successful. |
|
151 |
*/ |
|
152 |
||
153 |
int ec_fsm_sii_success(ec_fsm_sii_t *fsm /**< Finite state machine */) |
|
154 |
{ |
|
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
155 |
return fsm->state == ec_fsm_sii_state_end; |
433 | 156 |
} |
157 |
||
158 |
/****************************************************************************** |
|
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
159 |
* state functions |
433 | 160 |
*****************************************************************************/ |
161 |
||
162 |
/** |
|
163 |
SII state: START READING. |
|
164 |
Starts reading the slave information interface. |
|
165 |
*/ |
|
166 |
||
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
167 |
void ec_fsm_sii_state_start_reading( |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
168 |
ec_fsm_sii_t *fsm /**< finite state machine */ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
169 |
) |
433 | 170 |
{ |
171 |
ec_datagram_t *datagram = fsm->datagram; |
|
172 |
||
173 |
// initiate read operation |
|
174 |
switch (fsm->mode) { |
|
815
002fe9ec778f
Implemented missing datagram types.
Florian Pose <fp@igh-essen.com>
parents:
758
diff
changeset
|
175 |
case EC_FSM_SII_USE_INCREMENT_ADDRESS: |
433 | 176 |
ec_datagram_apwr(datagram, fsm->slave->ring_position, 0x502, 4); |
177 |
break; |
|
815
002fe9ec778f
Implemented missing datagram types.
Florian Pose <fp@igh-essen.com>
parents:
758
diff
changeset
|
178 |
case EC_FSM_SII_USE_CONFIGURED_ADDRESS: |
002fe9ec778f
Implemented missing datagram types.
Florian Pose <fp@igh-essen.com>
parents:
758
diff
changeset
|
179 |
ec_datagram_fpwr(datagram, fsm->slave->station_address, 0x502, 4); |
433 | 180 |
break; |
181 |
} |
|
182 |
||
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
183 |
EC_WRITE_U8 (datagram->data, 0x80); // two address octets |
433 | 184 |
EC_WRITE_U8 (datagram->data + 1, 0x01); // request read operation |
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
185 |
EC_WRITE_U16(datagram->data + 2, fsm->word_offset); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
186 |
|
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
187 |
#ifdef SII_DEBUG |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
188 |
EC_DBG("reading SII data:\n"); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
189 |
ec_print_data(datagram->data, 4); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
190 |
#endif |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
191 |
|
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
192 |
fsm->retries = EC_FSM_RETRIES; |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
193 |
fsm->state = ec_fsm_sii_state_read_check; |
433 | 194 |
} |
195 |
||
196 |
/*****************************************************************************/ |
|
197 |
||
198 |
/** |
|
199 |
SII state: READ CHECK. |
|
200 |
Checks, if the SII-read-datagram has been sent and issues a fetch datagram. |
|
201 |
*/ |
|
202 |
||
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
203 |
void ec_fsm_sii_state_read_check( |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
204 |
ec_fsm_sii_t *fsm /**< finite state machine */ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
205 |
) |
433 | 206 |
{ |
207 |
ec_datagram_t *datagram = fsm->datagram; |
|
208 |
||
637
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
209 |
if (datagram->state == EC_DATAGRAM_TIMED_OUT && fsm->retries--) |
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
210 |
return; |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
211 |
|
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
212 |
if (datagram->state != EC_DATAGRAM_RECEIVED) { |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
213 |
fsm->state = ec_fsm_sii_state_error; |
594
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
214 |
EC_ERR("Failed to receive SII read datagram from slave %i" |
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
215 |
" (datagram state %i).\n", |
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
216 |
fsm->slave->ring_position, datagram->state); |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
217 |
return; |
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
218 |
} |
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
219 |
|
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
220 |
if (datagram->working_counter != 1) { |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
221 |
fsm->state = ec_fsm_sii_state_error; |
713
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
222 |
EC_ERR("Reception of SII read datagram failed on slave %i: ", |
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
223 |
fsm->slave->ring_position); |
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
224 |
ec_datagram_print_wc_error(datagram); |
433 | 225 |
return; |
226 |
} |
|
227 |
||
228 |
fsm->cycles_start = datagram->cycles_sent; |
|
229 |
fsm->check_once_more = 1; |
|
230 |
||
231 |
// issue check/fetch datagram |
|
232 |
switch (fsm->mode) { |
|
815
002fe9ec778f
Implemented missing datagram types.
Florian Pose <fp@igh-essen.com>
parents:
758
diff
changeset
|
233 |
case EC_FSM_SII_USE_INCREMENT_ADDRESS: |
433 | 234 |
ec_datagram_aprd(datagram, fsm->slave->ring_position, 0x502, 10); |
235 |
break; |
|
815
002fe9ec778f
Implemented missing datagram types.
Florian Pose <fp@igh-essen.com>
parents:
758
diff
changeset
|
236 |
case EC_FSM_SII_USE_CONFIGURED_ADDRESS: |
002fe9ec778f
Implemented missing datagram types.
Florian Pose <fp@igh-essen.com>
parents:
758
diff
changeset
|
237 |
ec_datagram_fprd(datagram, fsm->slave->station_address, 0x502, 10); |
433 | 238 |
break; |
239 |
} |
|
637
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
240 |
|
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
241 |
fsm->retries = EC_FSM_RETRIES; |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
242 |
fsm->state = ec_fsm_sii_state_read_fetch; |
433 | 243 |
} |
244 |
||
245 |
/*****************************************************************************/ |
|
246 |
||
247 |
/** |
|
248 |
SII state: READ FETCH. |
|
249 |
Fetches the result of an SII-read datagram. |
|
250 |
*/ |
|
251 |
||
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
252 |
void ec_fsm_sii_state_read_fetch( |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
253 |
ec_fsm_sii_t *fsm /**< finite state machine */ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
254 |
) |
433 | 255 |
{ |
256 |
ec_datagram_t *datagram = fsm->datagram; |
|
257 |
||
637
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
258 |
if (datagram->state == EC_DATAGRAM_TIMED_OUT && fsm->retries--) |
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
259 |
return; |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
260 |
|
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
261 |
if (datagram->state != EC_DATAGRAM_RECEIVED) { |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
262 |
fsm->state = ec_fsm_sii_state_error; |
594
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
263 |
EC_ERR("Failed to receive SII check/fetch datagram from slave %i" |
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
264 |
" (datagram state %i).\n", |
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
265 |
fsm->slave->ring_position, datagram->state); |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
266 |
return; |
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
267 |
} |
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
268 |
|
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
269 |
if (datagram->working_counter != 1) { |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
270 |
fsm->state = ec_fsm_sii_state_error; |
713
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
271 |
EC_ERR("Reception of SII check/fetch datagram failed on slave %i: ", |
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
272 |
fsm->slave->ring_position); |
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
273 |
ec_datagram_print_wc_error(datagram); |
433 | 274 |
return; |
275 |
} |
|
276 |
||
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
277 |
#ifdef SII_DEBUG |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
278 |
EC_DBG("checking SII read state:\n"); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
279 |
ec_print_data(datagram->data, 10); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
280 |
#endif |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
281 |
|
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
282 |
if (EC_READ_U8(datagram->data + 1) & 0x20) { |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
283 |
EC_ERR("SII: Error on last SII command!\n"); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
284 |
fsm->state = ec_fsm_sii_state_error; |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
285 |
return; |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
286 |
} |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
287 |
|
433 | 288 |
// check "busy bit" |
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
289 |
if (EC_READ_U8(datagram->data + 1) & 0x81) { // busy bit or |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
290 |
// read operation busy |
433 | 291 |
// still busy... timeout? |
292 |
if (datagram->cycles_received |
|
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
293 |
- fsm->cycles_start >= (cycles_t) EEPROM_TIMEOUT * cpu_khz) { |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
294 |
if (fsm->check_once_more) { |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
295 |
fsm->check_once_more = 0; |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
296 |
} else { |
433 | 297 |
EC_ERR("SII: Read timeout.\n"); |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
298 |
fsm->state = ec_fsm_sii_state_error; |
433 | 299 |
return; |
300 |
} |
|
301 |
} |
|
302 |
||
303 |
// issue check/fetch datagram again |
|
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
304 |
fsm->retries = EC_FSM_RETRIES; |
433 | 305 |
return; |
306 |
} |
|
307 |
||
308 |
// SII value received. |
|
309 |
memcpy(fsm->value, datagram->data + 6, 4); |
|
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
310 |
fsm->state = ec_fsm_sii_state_end; |
433 | 311 |
} |
312 |
||
313 |
/*****************************************************************************/ |
|
314 |
||
315 |
/** |
|
316 |
SII state: START WRITING. |
|
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
317 |
Starts writing a word through the slave information interface. |
433 | 318 |
*/ |
319 |
||
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
320 |
void ec_fsm_sii_state_start_writing( |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
321 |
ec_fsm_sii_t *fsm /**< finite state machine */ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
322 |
) |
433 | 323 |
{ |
324 |
ec_datagram_t *datagram = fsm->datagram; |
|
325 |
||
326 |
// initiate write operation |
|
815
002fe9ec778f
Implemented missing datagram types.
Florian Pose <fp@igh-essen.com>
parents:
758
diff
changeset
|
327 |
ec_datagram_fpwr(datagram, fsm->slave->station_address, 0x502, 8); |
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
328 |
EC_WRITE_U8 (datagram->data, 0x81); // two address octets |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
329 |
// + enable write access |
433 | 330 |
EC_WRITE_U8 (datagram->data + 1, 0x02); // request write operation |
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
331 |
EC_WRITE_U16(datagram->data + 2, fsm->word_offset); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
332 |
memset(datagram->data + 4, 0x00, 2); |
433 | 333 |
memcpy(datagram->data + 6, fsm->value, 2); |
637
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
334 |
|
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
335 |
#ifdef SII_DEBUG |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
336 |
EC_DBG("writing SII data:\n"); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
337 |
ec_print_data(datagram->data, 8); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
338 |
#endif |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
339 |
|
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
340 |
fsm->retries = EC_FSM_RETRIES; |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
341 |
fsm->state = ec_fsm_sii_state_write_check; |
433 | 342 |
} |
343 |
||
344 |
/*****************************************************************************/ |
|
345 |
||
346 |
/** |
|
347 |
SII state: WRITE CHECK. |
|
348 |
*/ |
|
349 |
||
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
350 |
void ec_fsm_sii_state_write_check( |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
351 |
ec_fsm_sii_t *fsm /**< finite state machine */ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
352 |
) |
433 | 353 |
{ |
354 |
ec_datagram_t *datagram = fsm->datagram; |
|
355 |
||
637
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
356 |
if (datagram->state == EC_DATAGRAM_TIMED_OUT && fsm->retries--) |
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
357 |
return; |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
358 |
|
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
359 |
if (datagram->state != EC_DATAGRAM_RECEIVED) { |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
360 |
fsm->state = ec_fsm_sii_state_error; |
594
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
361 |
EC_ERR("Failed to receive SII write datagram for slave %i" |
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
362 |
" (datagram state %i).\n", |
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
363 |
fsm->slave->ring_position, datagram->state); |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
364 |
return; |
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
365 |
} |
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
366 |
|
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
367 |
if (datagram->working_counter != 1) { |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
368 |
fsm->state = ec_fsm_sii_state_error; |
713
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
369 |
EC_ERR("Reception of SII write datagram failed on slave %i: ", |
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
370 |
fsm->slave->ring_position); |
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
371 |
ec_datagram_print_wc_error(datagram); |
433 | 372 |
return; |
373 |
} |
|
374 |
||
375 |
fsm->cycles_start = datagram->cycles_sent; |
|
376 |
fsm->check_once_more = 1; |
|
377 |
||
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
378 |
// issue check datagram |
815
002fe9ec778f
Implemented missing datagram types.
Florian Pose <fp@igh-essen.com>
parents:
758
diff
changeset
|
379 |
ec_datagram_fprd(datagram, fsm->slave->station_address, 0x502, 2); |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
380 |
fsm->retries = EC_FSM_RETRIES; |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
381 |
fsm->state = ec_fsm_sii_state_write_check2; |
433 | 382 |
} |
383 |
||
384 |
/*****************************************************************************/ |
|
385 |
||
386 |
/** |
|
387 |
SII state: WRITE CHECK 2. |
|
388 |
*/ |
|
389 |
||
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
390 |
void ec_fsm_sii_state_write_check2( |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
391 |
ec_fsm_sii_t *fsm /**< finite state machine */ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
392 |
) |
433 | 393 |
{ |
394 |
ec_datagram_t *datagram = fsm->datagram; |
|
395 |
||
637
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
396 |
if (datagram->state == EC_DATAGRAM_TIMED_OUT && fsm->retries--) |
d5d04c868e0e
Removed ecrt_master_run(), removed datagram queueing from state
Florian Pose <fp@igh-essen.com>
parents:
600
diff
changeset
|
397 |
return; |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
398 |
|
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
399 |
if (datagram->state != EC_DATAGRAM_RECEIVED) { |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
400 |
fsm->state = ec_fsm_sii_state_error; |
594
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
401 |
EC_ERR("Failed to receive SII write check datagram from slave %i" |
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
402 |
" (datagram state %i).\n", |
07dd2a7df66e
Added datagram state to "Failed to receive..." messages.
Florian Pose <fp@igh-essen.com>
parents:
505
diff
changeset
|
403 |
fsm->slave->ring_position, datagram->state); |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
404 |
return; |
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
405 |
} |
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
406 |
|
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
407 |
if (datagram->working_counter != 1) { |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
408 |
fsm->state = ec_fsm_sii_state_error; |
713
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
409 |
EC_ERR("Reception of SII write check datagram failed on slave %i: ", |
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
410 |
fsm->slave->ring_position); |
ae41cadd25b6
Better handling of unexpected working counters; introduced
Florian Pose <fp@igh-essen.com>
parents:
637
diff
changeset
|
411 |
ec_datagram_print_wc_error(datagram); |
433 | 412 |
return; |
413 |
} |
|
414 |
||
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
415 |
#ifdef SII_DEBUG |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
416 |
EC_DBG("checking SII write state:\n"); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
417 |
ec_print_data(datagram->data, 2); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
418 |
#endif |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
419 |
|
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
420 |
if (EC_READ_U8(datagram->data + 1) & 0x20) { |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
421 |
EC_ERR("SII: Error on last SII command!\n"); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
422 |
fsm->state = ec_fsm_sii_state_error; |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
423 |
return; |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
424 |
} |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
425 |
|
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
426 |
/* FIXME: some slaves never answer with the busy flag set... |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
427 |
* wait a few ms for the write operation to complete. */ |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
428 |
if (datagram->cycles_received - fsm->cycles_start |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
429 |
< (cycles_t) EEPROM_INHIBIT * cpu_khz) { |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
430 |
#ifdef SII_DEBUG |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
431 |
EC_DBG("too early.\n"); |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
432 |
#endif |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
433 |
// issue check datagram again |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
434 |
fsm->retries = EC_FSM_RETRIES; |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
435 |
return; |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
436 |
} |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
437 |
|
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
438 |
if (EC_READ_U8(datagram->data + 1) & 0x82) { // busy bit or |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
439 |
// write operation busy bit |
433 | 440 |
// still busy... timeout? |
441 |
if (datagram->cycles_received |
|
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
442 |
- fsm->cycles_start >= (cycles_t) EEPROM_TIMEOUT * cpu_khz) { |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
443 |
if (fsm->check_once_more) { |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
444 |
fsm->check_once_more = 0; |
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
445 |
} else { |
433 | 446 |
EC_ERR("SII: Write timeout.\n"); |
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
447 |
fsm->state = ec_fsm_sii_state_error; |
433 | 448 |
return; |
449 |
} |
|
450 |
} |
|
451 |
||
755
178353fc47e5
SII writing workaround for some slaves, that don't respond correctly;
Florian Pose <fp@igh-essen.com>
parents:
754
diff
changeset
|
452 |
// issue check datagram again |
505
bc443ca0077f
State machines re-send datagrams on timeout.
Florian Pose <fp@igh-essen.com>
parents:
435
diff
changeset
|
453 |
fsm->retries = EC_FSM_RETRIES; |
433 | 454 |
return; |
455 |
} |
|
456 |
||
457 |
if (EC_READ_U8(datagram->data + 1) & 0x40) { |
|
458 |
EC_ERR("SII: Write operation failed!\n"); |
|
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
459 |
fsm->state = ec_fsm_sii_state_error; |
433 | 460 |
return; |
461 |
} |
|
462 |
||
463 |
// success |
|
753
7ba5f9cd8f7e
Renamed sii state functions.
Florian Pose <fp@igh-essen.com>
parents:
713
diff
changeset
|
464 |
fsm->state = ec_fsm_sii_state_end; |
433 | 465 |
} |
466 |
||
467 |
/*****************************************************************************/ |
|
468 |
||
469 |
/** |
|
470 |
State: ERROR. |
|
471 |
*/ |
|
472 |
||
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
473 |
void ec_fsm_sii_state_error( |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
474 |
ec_fsm_sii_t *fsm /**< finite state machine */ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
475 |
) |
433 | 476 |
{ |
477 |
} |
|
478 |
||
479 |
/*****************************************************************************/ |
|
480 |
||
481 |
/** |
|
482 |
State: END. |
|
483 |
*/ |
|
484 |
||
754
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
485 |
void ec_fsm_sii_state_end( |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
486 |
ec_fsm_sii_t *fsm /**< finite state machine */ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
487 |
) |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
488 |
{ |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
489 |
} |
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
490 |
|
0b47b49c5976
Changed unit of ec_eeprom_write_request_t from word to byte.
Florian Pose <fp@igh-essen.com>
parents:
753
diff
changeset
|
491 |
/*****************************************************************************/ |