31 #include <linux/module.h> 32 #include <linux/kernel.h> 33 #include <linux/string.h> 34 #include <linux/slab.h> 35 #include <linux/delay.h> 36 #include <linux/device.h> 37 #include <linux/version.h> 38 #include <linux/hrtimer.h> 39 #include <linux/kthread.h> 48 #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0) 49 #include <uapi/linux/sched/types.h> 50 #include <linux/sched/types.h> 55 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0) || \ 56 (defined(CONFIG_PREEMPT_RT_FULL) && LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0)) 57 # define ec_rt_lock_interruptible(lock) \ 58 rt_mutex_lock_interruptible(lock) 60 # define ec_rt_lock_interruptible(lock) \ 61 rt_mutex_lock_interruptible(lock, 0) 64 #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 12, 47) 66 #define smp_store_release(p, v) \ 69 ACCESS_ONCE(*p) = (v); \ 72 #define smp_load_acquire(p) \ 74 typeof(*p) ___p1 = ACCESS_ONCE(*p); \ 87 #define DEBUG_INJECT 0 91 #define FORCE_OUTPUT_CORRUPTED 0 94 #define EC_SDO_INJECTION_TIMEOUT 10000 100 static cycles_t timeout_cycles;
104 static cycles_t ext_injection_timeout_cycles;
146 void ec_master_nanosleep(
const unsigned long);
147 static void sc_reset_task_kicker(
struct irq_work *work);
148 static void sc_reset_task(
struct work_struct *work);
156 #ifdef EC_HAVE_CYCLES 157 timeout_cycles = (cycles_t)
EC_IO_TIMEOUT * (cpu_khz / 1000);
158 ext_injection_timeout_cycles =
177 const uint8_t *main_mac,
178 const uint8_t *backup_mac,
186 unsigned int dev_idx, i;
188 master->
index = index;
193 for (dev_idx =
EC_DEVICE_MAIN; dev_idx < EC_MAX_NUM_DEVICES; dev_idx++) {
194 master->
macs[dev_idx] = NULL;
199 #if EC_MAX_NUM_DEVICES > 1 222 INIT_LIST_HEAD(&master->
configs);
223 INIT_LIST_HEAD(&master->
domains);
293 goto out_clear_devices;
304 goto out_clear_devices;
316 " datagram %u.\n", i);
317 goto out_clear_ext_datagrams;
329 " synchronisation datagram.\n");
330 goto out_clear_ext_datagrams;
340 " synchronisation datagram.\n");
341 goto out_clear_ref_sync;
352 " monitoring datagram.\n");
365 goto out_clear_sync_mon;
369 "EtherCAT%u", master->
index);
380 goto out_unregister_class_device;
387 out_unregister_class_device:
398 out_clear_ext_datagrams:
405 for (; dev_idx > 0; dev_idx--) {
419 unsigned int dev_idx, i;
467 list_for_each_entry_safe(eoe, next, &master->
eoe_handlers, list) {
468 list_del(&eoe->
list);
486 list_for_each_entry_safe(sc, next, &master->
configs, list) {
510 list_del_init(&request->
list);
513 request->
state = EC_INT_REQUEST_FAILURE;
521 for (slave = master->
slaves;
543 list_for_each_entry_safe(domain, next, &master->
domains, list) {
544 list_del(&domain->
list);
573 if (ec_rt_lock_interruptible(&master->
io_mutex))
588 if (ec_rt_lock_interruptible(&master->
io_mutex))
603 int (*thread_func)(
void *),
608 master->
thread = kthread_create(thread_func, master, name);
609 if (IS_ERR(master->
thread)) {
610 int err = (int) PTR_ERR(master->
thread);
611 EC_MASTER_ERR(master,
"Failed to start master thread (error %i)!\n",
621 (void) wake_up_process(master->
thread);
634 unsigned long sleep_jiffies;
643 kthread_stop(master->
thread);
652 sleep_jiffies = max(HZ / 100, 1);
653 schedule_timeout(sleep_jiffies);
737 " interrupted by signal.\n");
742 " configuration returned.\n");
755 ret = wait_event_interruptible(master->
scan_queue,
759 " interrupted by signal.\n");
764 " slave scan returned.\n");
768 for (slave = master->
slaves;
817 size_t queue_size = 0, new_queue_size = 0;
819 unsigned int datagram_count = 0;
834 EC_MASTER_DBG(master, 1,
"Injecting datagrams, queue_size=%zu\n",
848 new_queue_size = queue_size + datagram->
data_size;
849 if (new_queue_size <= master->max_queue_size) {
852 " size=%zu, queue_size=%zu\n", datagram->
name,
856 #ifdef EC_HAVE_CYCLES 857 datagram->cycles_sent = 0;
861 queue_size = new_queue_size;
866 " size=%zu, max_queue_size=%zu\n",
871 #ifdef EC_HAVE_CYCLES 872 cycles_t cycles_now = get_cycles();
874 if (cycles_now - datagram->cycles_sent
875 > ext_injection_timeout_cycles)
881 #if defined EC_RT_SYSLOG || DEBUG_INJECT 882 unsigned int time_us;
887 #if defined EC_RT_SYSLOG || DEBUG_INJECT 888 #ifdef EC_HAVE_CYCLES 889 time_us = (
unsigned int)
890 ((cycles_now - datagram->cycles_sent) * 1000LL)
893 time_us = (
unsigned int)
897 " external datagram %s size=%zu," 898 " max_queue_size=%zu\n", time_us, datagram->
name,
905 " external datagram %s size=%u, queue_size=%u\n",
917 EC_MASTER_DBG(master, 1,
"Injected %u datagrams.\n", datagram_count);
928 unsigned int send_interval
975 list_for_each_entry(queued_datagram, &master->
datagram_queue, queue) {
976 if (queued_datagram == datagram) {
980 "Datagram %p already queued (skipping).\n", datagram);
1016 size_t datagram_size;
1017 uint8_t *frame_data, *cur_data = NULL;
1019 #ifdef EC_HAVE_CYCLES 1020 cycles_t cycles_start, cycles_sent, cycles_end;
1022 unsigned long jiffies_sent;
1023 unsigned int frame_count, more_datagrams_waiting;
1024 struct list_head sent_datagrams;
1026 #ifdef EC_HAVE_CYCLES 1027 cycles_start = get_cycles();
1030 INIT_LIST_HEAD(&sent_datagrams);
1033 __func__, device_index);
1037 follows_word = NULL;
1038 more_datagrams_waiting = 0;
1057 if (cur_data - frame_data + datagram_size > ETH_DATA_LEN) {
1058 more_datagrams_waiting = 1;
1062 list_add_tail(&datagram->
sent, &sent_datagrams);
1080 follows_word = cur_data + 6;
1092 if (list_empty(&sent_datagrams)) {
1102 while (cur_data - frame_data < ETH_ZLEN - ETH_HLEN)
1105 EC_MASTER_DBG(master, 2,
"frame size: %zu\n", cur_data - frame_data);
1109 cur_data - frame_data);
1110 #ifdef EC_HAVE_CYCLES 1111 cycles_sent = get_cycles();
1113 jiffies_sent = jiffies;
1116 list_for_each_entry_safe(datagram, next, &sent_datagrams, sent) {
1118 #ifdef EC_HAVE_CYCLES 1119 datagram->cycles_sent = cycles_sent;
1122 list_del_init(&datagram->
sent);
1127 while (more_datagrams_waiting);
1129 #ifdef EC_HAVE_CYCLES 1131 cycles_end = get_cycles();
1133 " sent %u frames in %uus.\n", __func__, frame_count,
1134 (
unsigned int) (cycles_end - cycles_start) * 1000 / cpu_khz);
1150 const uint8_t *frame_data,
1154 size_t frame_size, data_size;
1155 uint8_t datagram_type, datagram_index;
1156 unsigned int cmd_follows, matched;
1157 const uint8_t *cur_data;
1163 " on %s (size %zu < %u byte):\n",
1174 cur_data = frame_data;
1180 if (unlikely(frame_size > size)) {
1183 " on %s (invalid frame size %zu for " 1184 "received size %zu):\n", device->
dev->name,
1196 while (cmd_follows) {
1204 if (unlikely(cur_data - frame_data
1208 " on %s (invalid data size %zu):\n",
1209 device->
dev->name, data_size);
1222 if (datagram->
index == datagram_index
1224 && datagram->
type == datagram_type
1243 #ifdef EC_DEBUG_RING 1258 memcpy(datagram->
data, cur_data, data_size);
1260 cur_data += data_size;
1268 #ifdef EC_HAVE_CYCLES 1269 datagram->cycles_received =
1274 list_del_init(&datagram->
queue);
1352 s32 tx_frame_rate, rx_frame_rate, tx_byte_rate, rx_byte_rate, loss_rate;
1354 unsigned int i, dev_idx;
1357 if (likely(jiffies - s->
jiffies < HZ)) {
1366 loss_rate = (loss - s->
last_loss) * 1000;
1397 #ifdef EC_USE_HRTIMER 1402 static enum hrtimer_restart ec_master_nanosleep_wakeup(
struct hrtimer *timer)
1404 struct hrtimer_sleeper *t =
1405 container_of(timer,
struct hrtimer_sleeper, timer);
1406 struct task_struct *task = t->task;
1410 wake_up_process(task);
1412 return HRTIMER_NORESTART;
1417 void ec_master_nanosleep(
const unsigned long nsecs)
1419 struct hrtimer_sleeper t;
1420 enum hrtimer_mode mode = HRTIMER_MODE_REL;
1422 #if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 15, 0) 1423 hrtimer_setup(&t.timer, ec_master_nanosleep_wakeup,
1424 CLOCK_MONOTONIC, mode);
1426 hrtimer_init(&t.timer, CLOCK_MONOTONIC, mode);
1427 t.timer.function = ec_master_nanosleep_wakeup;
1430 hrtimer_set_expires(&t.timer, ktime_set(0, nsecs));
1433 set_current_state(TASK_INTERRUPTIBLE);
1434 hrtimer_start(&t.timer, hrtimer_get_expires(&t.timer), mode);
1439 hrtimer_cancel(&t.timer);
1440 mode = HRTIMER_MODE_ABS;
1442 }
while (t.task && !signal_pending(current));
1445 #endif // EC_USE_HRTIMER 1457 unsigned int count = 0;
1459 list_for_each_entry_safe(fsm, next, &master->
fsm_exec_list, list) {
1463 list_del_init(&fsm->
list);
1480 " slave FSM execution. This is a bug!\n");
1499 list_del_init(&fsm->
list);
1509 && count < master->slave_count) {
1522 " consumed datagram %s, now %u FSMs in list.\n",
1545 #ifdef EC_USE_HRTIMER 1552 EC_MASTER_DBG(master, 1,
"Idle thread running with send interval = %u us," 1556 while (!kthread_should_stop()) {
1560 if (ec_rt_lock_interruptible(&master->
io_mutex))
1563 rt_mutex_unlock(&master->
io_mutex);
1566 if (down_interruptible(&master->
master_sem)) {
1577 if (ec_rt_lock_interruptible(&master->
io_mutex))
1583 #ifdef EC_USE_HRTIMER 1587 rt_mutex_unlock(&master->
io_mutex);
1590 #ifdef EC_USE_HRTIMER 1593 set_current_state(TASK_INTERRUPTIBLE);
1594 schedule_timeout(1);
1597 #ifdef EC_USE_HRTIMER 1605 EC_MASTER_DBG(master, 1,
"Master IDLE thread exiting...\n");
1617 unsigned int seq_rt;
1620 " with fsm interval = %u us, max data size=%zu\n",
1623 while (!kthread_should_stop()) {
1635 if (down_interruptible(&master->
master_sem)) {
1652 #ifdef EC_USE_HRTIMER 1657 set_current_state(TASK_INTERRUPTIBLE);
1658 schedule_timeout(1);
1675 static inline void set_normal_priority(
struct task_struct *p,
int nice)
1677 #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 9, 0) 1678 sched_set_normal(p, nice);
1680 struct sched_param param = { .sched_priority = 0 };
1681 sched_setscheduler(p, SCHED_NORMAL, ¶m);
1682 set_user_nice(p, nice);
1702 " because of missing callbacks!\n");
1711 EC_MASTER_ERR(master,
"Failed to start EoE thread (error %i)!\n",
1743 unsigned int none_open, sth_to_send, all_idle;
1747 while (!kthread_should_stop()) {
1751 list_for_each_entry(eoe, &master->
eoe_handlers, list) {
1765 list_for_each_entry(eoe, &master->
eoe_handlers, list) {
1776 list_for_each_entry(eoe, &master->
eoe_handlers, list) {
1785 set_current_state(TASK_INTERRUPTIBLE);
1786 schedule_timeout(1);
1808 list_for_each_entry(sc, &master->
configs, list) {
1818 #define EC_FIND_SLAVE \ 1821 for (; slave < master->slaves + master->slave_count; \ 1823 if (slave->effective_alias == alias) \ 1826 if (slave == master->slaves + master->slave_count) \ 1830 slave += position; \ 1831 if (slave < master->slaves + master->slave_count) { \ 1879 unsigned int count = 0;
1881 list_for_each_entry(sc, &master->
configs, list) {
1893 #define EC_FIND_CONFIG \ 1895 list_for_each_entry(sc, &master->configs, list) { \ 1942 unsigned int count = 0;
1944 list_for_each_entry(domain, &master->
domains, list) {
1956 #define EC_FIND_DOMAIN \ 1958 list_for_each_entry(domain, &master->domains, list) { \ 2008 unsigned int count = 0;
2010 list_for_each_entry(eoe, &master->
eoe_handlers, list) {
2032 list_for_each_entry(eoe, &master->
eoe_handlers, list) {
2100 for (slave = master->
slaves;
2114 EC_MASTER_INFO(master,
"Using slave %u as DC reference clock.\n",
2138 unsigned int *slave_position
2142 unsigned int port_index;
2152 while (port_index != 0) {
2154 *slave_position = *slave_position + 1;
2155 if (*slave_position < master->slave_count) {
2157 master->
slaves + *slave_position;
2159 slave, slave_position);
2168 port_index = next_table[port_index];
2182 unsigned int slave_position = 0;
2188 EC_MASTER_ERR(master,
"Failed to calculate bus topology.\n");
2201 for (slave = master->
slaves;
2248 slave = master->
slaves + i;
2275 EC_MASTER_DBG(master, 1,
"ecrt_master_create_domain(master = 0x%p)\n",
2281 return ERR_PTR(-ENOMEM);
2286 if (list_empty(&master->
domains)) {
2290 index = last_domain->
index + 1;
2310 return IS_ERR(d) ? NULL : d;
2317 uint32_t domain_offset;
2321 int eoe_was_running;
2324 EC_MASTER_DBG(master, 1,
"ecrt_master_activate(master = 0x%p)\n", master);
2327 EC_MASTER_WARN(master,
"%s: Master already active!\n", __func__);
2335 list_for_each_entry(domain, &master->
domains, list) {
2339 EC_MASTER_ERR(master,
"Failed to finish domain 0x%p!\n", domain);
2351 eoe_was_running = master->
eoe_thread != NULL;
2365 if (eoe_was_running) {
2394 int eoe_was_running;
2397 EC_MASTER_DBG(master, 1,
"%s(master = 0x%p)\n", __func__, master);
2406 eoe_was_running = master->
eoe_thread != NULL;
2416 for (slave = master->
slaves;
2431 list_for_each_entry(eoe, &master->
eoe_handlers, list) {
2441 if (eoe_was_running) {
2464 unsigned int seq_fsm;
2480 list_for_each_entry_safe(datagram, n,
2484 list_del_init(&datagram->
queue);
2510 unsigned int dev_idx;
2521 list_for_each_entry_safe(datagram, next, &master->
datagram_queue, queue) {
2524 #ifdef EC_HAVE_CYCLES 2526 datagram->cycles_sent > timeout_cycles) {
2531 list_del_init(&datagram->
queue);
2539 unsigned int time_us;
2540 #ifdef EC_HAVE_CYCLES 2541 time_us = (
unsigned int)
2543 datagram->cycles_sent) * 1000 / cpu_khz;
2545 time_us = (
unsigned int)
2550 " index %02X waited %u us.\n",
2551 datagram, datagram->
index, time_us);
2583 uint16_t alias, uint16_t position, uint32_t vendor_id,
2584 uint32_t product_code)
2587 unsigned int found = 0;
2590 EC_MASTER_DBG(master, 1,
"ecrt_master_slave_config(master = 0x%p," 2591 " alias = %u, position = %u, vendor_id = 0x%08x," 2592 " product_code = 0x%08x)\n",
2593 master, alias, position, vendor_id, product_code);
2595 list_for_each_entry(sc, &master->
configs, list) {
2605 " configured as 0x%08X/0x%08X before. Now configuring" 2607 vendor_id, product_code);
2608 return ERR_PTR(-ENOENT);
2611 EC_MASTER_DBG(master, 1,
"Creating slave configuration for %u:%u," 2612 " 0x%08X/0x%08X.\n",
2613 alias, position, vendor_id, product_code);
2618 " for slave configuration.\n");
2619 return ERR_PTR(-ENOMEM);
2623 alias, position, vendor_id, product_code);
2641 uint16_t alias, uint16_t position, uint32_t vendor_id,
2642 uint32_t product_code)
2645 position, vendor_id, product_code);
2646 return IS_ERR(sc) ? NULL : sc;
2674 " master_info = 0x%p)\n", master, master_info);
2688 EC_MASTER_DBG(master, 1,
"ecrt_master_scan_progress(master = 0x%p," 2689 " progress = 0x%p)\n", master, progress);
2705 if (down_interruptible(&master->
master_sem)) {
2711 if (slave == NULL) {
2749 slave_info->
name[0] = 0;
2761 void (*send_cb)(
void *),
void (*receive_cb)(
void *),
void *cb_data)
2763 EC_MASTER_DBG(master, 1,
"ecrt_master_callbacks(master = 0x%p," 2764 " send_cb = 0x%p, receive_cb = 0x%p, cb_data = 0x%p)\n",
2765 master, send_cb, receive_cb, cb_data);
2909 uint16_t index, uint8_t subindex,
const uint8_t *data,
2910 size_t data_size, uint32_t *abort_code)
2917 " slave_position = %u, index = 0x%04X, subindex = 0x%02X," 2918 " data = 0x%p, data_size = %zu, abort_code = 0x%p)\n",
2919 __func__, master, slave_position, index, subindex,
2920 data, data_size, abort_code);
2930 memcpy(request.
data, data, data_size);
2934 if (down_interruptible(&master->
master_sem)) {
2941 EC_MASTER_ERR(master,
"Slave %u does not exist!\n", slave_position);
2946 EC_SLAVE_DBG(slave, 1,
"Scheduling SDO download request.\n");
2955 request.
state != EC_INT_REQUEST_QUEUED)) {
2958 if (request.
state == EC_INT_REQUEST_QUEUED) {
2959 list_del(&request.
list);
2973 if (request.
state == EC_INT_REQUEST_SUCCESS) {
2975 }
else if (request.
errno) {
2976 ret = -request.
errno;
2988 uint16_t slave_position, uint16_t index,
const uint8_t *data,
2989 size_t data_size, uint32_t *abort_code)
2996 " slave_position = %u, index = 0x%04X," 2997 " data = 0x%p, data_size = %zu, abort_code = 0x%p)\n",
2998 __func__, master, slave_position, index, data, data_size,
3010 memcpy(request.
data, data, data_size);
3014 if (down_interruptible(&master->
master_sem)) {
3021 EC_MASTER_ERR(master,
"Slave %u does not exist!\n", slave_position);
3026 EC_SLAVE_DBG(slave, 1,
"Scheduling SDO download request" 3027 " (complete access).\n");
3036 request.
state != EC_INT_REQUEST_QUEUED)) {
3039 if (request.
state == EC_INT_REQUEST_QUEUED) {
3040 list_del(&request.
list);
3054 if (request.
state == EC_INT_REQUEST_SUCCESS) {
3056 }
else if (request.
errno) {
3057 ret = -request.
errno;
3069 uint16_t index, uint8_t subindex, uint8_t *target,
3070 size_t target_size,
size_t *result_size, uint32_t *abort_code)
3077 " slave_position = %u, index = 0x%04X, subindex = 0x%02X," 3078 " target = 0x%p, target_size = %zu, result_size = 0x%p," 3079 " abort_code = 0x%p)\n",
3080 __func__, master, slave_position, index, subindex,
3081 target, target_size, result_size, abort_code);
3087 if (down_interruptible(&master->
master_sem)) {
3095 EC_MASTER_ERR(master,
"Slave %u does not exist!\n", slave_position);
3099 EC_SLAVE_DBG(slave, 1,
"Scheduling SDO upload request.\n");
3108 request.
state != EC_INT_REQUEST_QUEUED)) {
3111 if (request.
state == EC_INT_REQUEST_QUEUED) {
3112 list_del(&request.
list);
3126 if (request.
state != EC_INT_REQUEST_SUCCESS) {
3128 if (request.
errno) {
3129 ret = -request.
errno;
3135 EC_SLAVE_ERR(slave,
"%s(): Buffer too small.\n", __func__);
3152 uint8_t drive_no, uint16_t idn,
const uint8_t *data,
size_t data_size,
3153 uint16_t *error_code)
3174 memcpy(request.
data, data, data_size);
3178 if (down_interruptible(&master->
master_sem)) {
3191 EC_SLAVE_DBG(slave, 1,
"Scheduling SoE write request.\n");
3200 request.
state != EC_INT_REQUEST_QUEUED)) {
3203 if (request.
state == EC_INT_REQUEST_QUEUED) {
3205 list_del(&request.
list);
3219 ret = request.
state == EC_INT_REQUEST_SUCCESS ? 0 : -EIO;
3228 uint8_t drive_no, uint16_t idn, uint8_t *target,
size_t target_size,
3229 size_t *result_size, uint16_t *error_code)
3245 if (down_interruptible(&master->
master_sem)) {
3253 EC_MASTER_ERR(master,
"Slave %u does not exist!\n", slave_position);
3257 EC_SLAVE_DBG(slave, 1,
"Scheduling SoE read request.\n");
3266 request.
state != EC_INT_REQUEST_QUEUED)) {
3269 if (request.
state == EC_INT_REQUEST_QUEUED) {
3270 list_del(&request.
list);
3286 if (request.
state != EC_INT_REQUEST_SUCCESS) {
3293 EC_SLAVE_ERR(slave,
"%s(): Buffer too small.\n", __func__);
3315 list_for_each_entry(sc, &master->
configs, list) {
3325 static void sc_reset_task_kicker(
struct irq_work *work)
3334 static void sc_reset_task(
struct work_struct *work)
void ec_eoe_queue(ec_eoe_t *eoe)
Queues the datagram, if necessary.
unsigned int injection_seq_fsm
Datagram injection sequence number for the FSM side.
uint32_t serial_number
Serial-Number stored on the slave.
#define EC_IO_TIMEOUT
Datagram timeout in microseconds.
ec_slave_port_desc_t desc
Physical port type.
uint16_t error_code
SoE error code.
unsigned int reserved
True, if the master is in use.
struct list_head ext_datagram_queue
Queue for non-application datagrams.
int ec_mac_is_zero(const uint8_t *)
uint16_t ring_position
Ring position.
uint32_t revision_number
Revision number.
unsigned long jiffies_sent
Jiffies, when the datagram was sent.
void ec_master_clear_config(ec_master_t *)
Clear the configuration applied by the application.
ec_datagram_t * ec_master_get_external_datagram(ec_master_t *)
Searches for a free datagram in the external datagram ring.
#define EC_ADDR_LEN
Size of the EtherCAT address field.
uint16_t ec_slave_sdo_count(const ec_slave_t *slave)
Get the number of SDOs in the dictionary.
int ecrt_master_deactivate(ec_master_t *master)
Deactivates the master.
void ec_soe_request_set_idn(ec_soe_request_t *req, uint16_t idn)
Set IDN.
int ec_rtdm_dev_init(ec_rtdm_dev_t *rtdm_dev, ec_master_t *master)
Initialize an RTDM device.
#define EC_DATAGRAM_NAME_SIZE
Size of the datagram description string.
ec_sii_t sii
Extracted SII data.
struct sk_buff * tx_skb[EC_TX_RING_SIZE]
transmit skb ring
size_t data_size
Size of the data in data.
struct semaphore config_sem
Semaphore protecting the config_busy variable and the allow_config flag.
void ec_slave_config_init(ec_slave_config_t *sc, ec_master_t *master, uint16_t alias, uint16_t position, uint32_t vendor_id, uint32_t product_code)
Slave configuration constructor.
uint8_t sync_count
Number of sync managers.
void ec_master_calc_dc(ec_master_t *master)
Distributed-clocks calculations.
int ecrt_sdo_request_write(ec_sdo_request_t *req)
Schedule an SDO write operation.
int ecrt_master_link_state(const ec_master_t *master, unsigned int dev_idx, ec_master_link_state_t *state)
Reads the current state of a redundant link.
unsigned int fsm_exec_count
Number of entries in execution list.
unsigned int num_devices
Number of devices.
u64 last_loss
Tx/Rx difference of last statistics cycle.
u64 tx_count
Number of frames sent.
const unsigned int rate_intervals[]
List of intervals for statistics [s].
uint8_t error_flag
Error flag for that slave.
void ec_master_clear(ec_master_t *master)
Destructor.
struct list_head sii_requests
SII write requests.
#define EC_SLAVE_DBG(slave, level, fmt, args...)
Convenience macro for printing slave-specific debug messages to syslog.
int ecrt_master_send(ec_master_t *master)
Sends all datagrams in the queue.
size_t data_size
Size of the process data.
unsigned long jiffies_poll
jiffies of last poll
ec_slave_t * slave
pointer to the corresponding slave
void ec_master_queue_datagram_ext(ec_master_t *master, ec_datagram_t *datagram)
Places a datagram in the non-application datagram queue.
OP (mailbox communication and input/output update)
s32 tx_byte_rates[EC_RATE_COUNT]
Transmit rates in byte/s for different statistics cycle periods.
int ecrt_master_scan_progress(ec_master_t *master, ec_master_scan_progress_t *progress)
Obtains network scan progress information.
ec_internal_request_state_t state
State of the request.
ec_slave_config_t * ec_master_get_config(const ec_master_t *master, unsigned int pos)
Get a slave configuration via its position in the list.
unsigned int slaves_responding[EC_MAX_NUM_DEVICES]
Number of responding slaves for every device.
ec_slave_port_t ports[EC_MAX_PORTS]
Ports.
void ec_fsm_master_reset(ec_fsm_master_t *fsm)
Reset state machine.
void ec_master_request_op(ec_master_t *master)
Request OP state for configured slaves.
static int ec_master_eoe_thread(void *)
Does the Ethernet over EtherCAT processing.
int ec_fsm_slave_is_ready(const ec_fsm_slave_t *fsm)
Returns, if the FSM is currently not busy and ready to execute.
unsigned int slave_count
Number of slaves in the network.
ec_slave_state_t current_state
Current application state.
void ec_master_leave_operation_phase(ec_master_t *master)
Transition function from OPERATION to IDLE phase.
int ecrt_master_sdo_download_complete(ec_master_t *master, uint16_t slave_position, uint16_t index, const uint8_t *data, size_t data_size, uint32_t *abort_code)
Executes an SDO download request to write data to a slave via complete access.
ec_domain_t * ecrt_master_create_domain(ec_master_t *master)
Creates a new process data domain.
#define ec_master_num_devices(MASTER)
Number of Ethernet devices.
#define EC_RATE_COUNT
Number of statistic rate intervals to maintain.
ec_datagram_t sync_mon_datagram
Datagram used for DC synchronisation monitoring.
EtherCAT slave structure.
ec_internal_request_state_t state
SDO request state.
uint32_t vendor_id
Vendor-ID stored on the slave.
void ec_device_clear(ec_device_t *device)
Destructor.
struct list_head list
List item.
struct list_head eoe_handlers
Ethernet over EtherCAT handlers.
uint32_t product_code
Slave product code.
ec_slave_port_link_t link
Port link state.
unsigned int slaves_responding
Sum of responding slaves on the given link.
int ec_master_thread_start(ec_master_t *, int(*)(void *), const char *)
Starts the master thread.
dev_t device_number
Device number for master cdevs.
ec_slave_port_link_t link
Port link status.
unsigned int allow_scan
True, if slave scanning is allowed.
int ecrt_master_sync_reference_clock(ec_master_t *master)
Queues the DC reference clock drift compensation datagram for sending.
size_t max_queue_size
Maximum size of datagram queue.
void ec_master_internal_receive_cb(void *cb_data)
Internal receiving callback.
uint16_t position
Index after alias.
static int ec_master_operation_thread(void *)
Master kernel thread function for OPERATION phase.
int ecrt_sdo_request_read(ec_sdo_request_t *req)
Schedule an SDO read operation.
const ec_slave_t * ec_master_find_slave_const(const ec_master_t *master, uint16_t alias, uint16_t position)
Finds a slave in the bus, given the alias and position.
#define EC_FRAME_HEADER_SIZE
Size of an EtherCAT frame header.
void ecrt_master_callbacks(ec_master_t *master, void(*send_cb)(void *), void(*receive_cb)(void *), void *cb_data)
Sets the locking callbacks.
struct list_head list
List item.
uint32_t serial_number
Serial number.
struct list_head fsm_exec_list
Slave FSM execution list.
Master scan progress information.
const ec_domain_t * ec_master_find_domain_const(const ec_master_t *master, unsigned int index)
Get a domain via its position in the list.
const ec_eoe_t * ec_master_get_eoe_handler_const(const ec_master_t *master, uint16_t index)
Get an EoE handler via its position in the list.
#define EC_WRITE_U8(DATA, VAL)
Write an 8-bit unsigned value to EtherCAT data.
unsigned int scan_index
Index of slave currently scanned.
uint32_t abort_code
SDO request abort code.
u64 dc_ref_time
Common reference timestamp for DC start times.
ec_slave_state_t slave_states[EC_MAX_NUM_DEVICES]
AL states of responding slaves for every device.
struct list_head emerg_reg_requests
Emergency register access requests.
char name[EC_DATAGRAM_NAME_SIZE]
Description of the datagram.
uint16_t alias
Slave alias.
void ec_master_send_datagrams(ec_master_t *, ec_device_index_t)
Sends the datagrams in the queue for a certain device.
void ec_device_update_stats(ec_device_t *device)
Update device statistics.
struct list_head domains
List of domains.
Finite state machine of an EtherCAT slave.
ec_datagram_t * datagram
Previous state datagram.
unsigned int link_up
true, if the given Ethernet link is up.
uint32_t delay_to_next_dc
Delay [ns] to next DC slave.
ec_fsm_slave_t fsm
Slave state machine.
#define EC_FIND_CONFIG
Common implementation for ec_master_get_config() and ec_master_get_config_const().
uint16_t working_counter
Working counter.
uint8_t * data
Pointer to SDO data.
unsigned long jiffies
Jiffies of last statistic cycle.
int16_t current_on_ebus
Power consumption in mA.
ec_slave_t * ec_master_find_slave(ec_master_t *master, uint16_t alias, uint16_t position)
Finds a slave in the bus, given the alias and position.
uint8_t link_state
device link state
static unsigned int debug_level
Debug level parameter.
u64 last_rx_count
Number of frames received of last statistics cycle.
uint8_t signal_detected
Detected signal on RX port.
const uint8_t * macs[EC_MAX_NUM_DEVICES]
Device MAC addresses.
Sent (still in the queue).
unsigned int slaves_responding
Sum of responding slaves on all Ethernet devices.
size_t data_size
Size of SDO data.
wait_queue_head_t request_queue
Wait queue for external requests from user space.
void ec_master_clear_device_stats(ec_master_t *)
Clears the common device statistics.
unsigned int run_on_cpu
bind kernel threads to this cpu
uint16_t station_address
Configured station address.
int ec_soe_request_write(ec_soe_request_t *req)
Request a write operation.
unsigned int sync_count
Number of sync managers.
struct list_head list
List head.
int ec_master_init(ec_master_t *master, unsigned int index, const uint8_t *main_mac, const uint8_t *backup_mac, dev_t device_number, struct class *class, unsigned int debug_level, unsigned int run_on_cpu)
Master constructor.
void ec_slave_clear(ec_slave_t *slave)
Slave destructor.
ec_domain_t * ecrt_master_create_domain_err(ec_master_t *master)
Same as ecrt_master_create_domain(), but with ERR_PTR() return value.
unsigned int link_up
true, if the network link is up.
void ec_datagram_output_stats(ec_datagram_t *datagram)
Outputs datagram statistics at most every second.
int ecrt_master_write_idn(ec_master_t *master, uint16_t slave_position, uint8_t drive_no, uint16_t idn, const uint8_t *data, size_t data_size, uint16_t *error_code)
Executes an SoE write request.
int ec_master_enter_idle_phase(ec_master_t *master)
Transition function from ORPHANED to IDLE phase.
ec_datagram_type_t type
Datagram type (APRD, BWR, etc.).
const ec_slave_config_t * ec_master_get_config_const(const ec_master_t *master, unsigned int pos)
Get a slave configuration via its position in the list.
Global definitions and macros.
uint32_t revision_number
Revision-Number stored on the slave.
EtherCAT master structure.
void * cb_data
Current callback data.
void ec_device_send(ec_device_t *device, size_t size)
Sends the content of the transmit socket buffer.
int ecrt_master_reference_clock_time(const ec_master_t *master, uint32_t *time)
Get the lower 32 bit of the reference clock system time.
void ec_fsm_master_init(ec_fsm_master_t *fsm, ec_master_t *master, ec_datagram_t *datagram)
Constructor.
Initial state of a new datagram.
#define EC_MASTER_DBG(master, level, fmt, args...)
Convenience macro for printing master-specific debug messages to syslog.
ec_slave_t * fsm_slave
Slave that is queried next for FSM exec.
unsigned int send_interval
Interval between two calls to ecrt_master_send().
ec_slave_t * slave
EtherCAT slave.
struct semaphore master_sem
Master semaphore.
uint8_t loop_closed
Loop closed.
uint8_t datagram_index
Current datagram index.
void ec_master_attach_slave_configs(ec_master_t *master)
Attaches the slave configurations to the slaves.
struct list_head datagram_queue
Datagram queue.
int ecrt_master_sync_reference_clock_to(ec_master_t *master, uint64_t sync_time)
Queues the DC reference clock drift compensation datagram for sending.
ec_slave_t * slave
slave the FSM runs on
char name[EC_MAX_STRING_LENGTH]
Name of the slave.
void ec_sdo_request_clear(ec_sdo_request_t *req)
SDO request destructor.
struct irq_work sc_reset_work_kicker
NMI-Safe kicker to trigger reset task above.
struct task_struct * eoe_thread
EoE thread.
struct list_head sdo_requests
SDO access requests.
int ecrt_sdo_request_index(ec_sdo_request_t *req, uint16_t index, uint8_t subindex)
Set the SDO index and subindex.
unsigned int unmatched
unmatched datagrams (received, but not queued any longer)
unsigned int ext_ring_idx_fsm
Index in external datagram ring for FSM side.
void ec_datagram_zero(ec_datagram_t *datagram)
Fills the datagram payload memory with zeros.
int ec_master_debug_level(ec_master_t *master, unsigned int level)
Set the debug level.
s32 tx_frame_rates[EC_RATE_COUNT]
Transmit rates in frames/s for different statistics cycle periods.
uint64_t app_time
Application time.
s32 rx_byte_rates[EC_RATE_COUNT]
Receive rates in byte/s for different statistics cycle periods.
Ethernet over EtherCAT (EoE)
struct list_head soe_requests
SoE requests.
#define EC_DATAGRAM_HEADER_SIZE
Size of an EtherCAT datagram header.
ec_datagram_state_t state
State.
ec_device_stats_t device_stats
Device statistics.
ec_datagram_t fsm_datagram
Datagram used for state machines.
ec_slave_config_t * config
Current configuration.
ec_master_phase_t phase
Master phase.
#define EC_WRITE_U32(DATA, VAL)
Write a 32-bit unsigned value to EtherCAT data.
ec_slave_t * slaves
Array of slaves on the bus.
void ec_domain_clear(ec_domain_t *domain)
Domain destructor.
void ec_soe_request_set_drive_no(ec_soe_request_t *req, uint8_t drive_no)
Set drive number.
void ec_slave_calc_port_delays(ec_slave_t *slave)
Calculates the port transmission delays.
int ec_domain_finish(ec_domain_t *domain, uint32_t base_address)
Finishes a domain.
static unsigned long ext_injection_timeout_jiffies
Timeout for external datagram injection [jiffies].
struct semaphore device_sem
Device semaphore.
int ec_eoe_is_idle(const ec_eoe_t *eoe)
Returns the idle state.
ec_domain_t * ec_master_find_domain(ec_master_t *master, unsigned int index)
Get a domain via its position in the list.
int ecrt_master_application_time(ec_master_t *master, uint64_t app_time)
Sets the application time.
unsigned int tx_ring_index
last ring entry used to transmit
unsigned int timeouts
datagram timeouts
ec_sdo_request_t * sdo_request
SDO request to process.
unsigned int debug_level
Master debug level.
int ec_datagram_frmw(ec_datagram_t *datagram, uint16_t configured_address, uint16_t mem_address, size_t data_size)
Initializes an EtherCAT FRMW datagram.
#define EC_SLAVE_ERR(slave, fmt, args...)
Convenience macro for printing slave-specific errors to syslog.
unsigned int ec_master_domain_count(const ec_master_t *master)
Get the number of domains.
struct list_head ext_queue
External datagram queue item, protected by ext_queue_sem.
s32 loss_rates[EC_RATE_COUNT]
Frame loss rates for different statistics cycle periods.
unsigned int corrupted
corrupted frames
struct list_head list
List item.
u64 last_tx_count
Number of frames sent of last statistics cycle.
uint32_t transmission_delay
DC system time transmission delay (offset from reference clock).
void ec_master_exec_slave_fsms(ec_master_t *)
Execute slave FSMs.
void ec_soe_request_clear(ec_soe_request_t *req)
SoE request destructor.
unsigned int ext_ring_idx_rt
Index in external datagram ring for RT side.
struct rt_mutex io_mutex
Mutex used in IDLE and OP phase.
unsigned int slave_count
Number of slaves on the bus.
unsigned int scan_busy
Current scan state.
ec_device_index_t
Master devices.
void(* receive_cb)(void *)
Current receive datagrams callback.
s32 rx_frame_rates[EC_RATE_COUNT]
Receive rates in frames/s for different statistics cycle periods.
int ecrt_master_read_idn(ec_master_t *master, uint16_t slave_position, uint8_t drive_no, uint16_t idn, uint8_t *target, size_t target_size, size_t *result_size, uint16_t *error_code)
Executes an SoE read request.
#define EC_WRITE_U16(DATA, VAL)
Write a 16-bit unsigned value to EtherCAT data.
unsigned int index
Index (just a number).
void ec_slave_calc_transmission_delays_rec(ec_slave_t *slave, uint32_t *delay)
Recursively calculates transmission delays.
void ec_master_leave_idle_phase(ec_master_t *master)
Transition function from IDLE to ORPHANED phase.
unsigned int skip_count
Number of requeues when not yet received.
ec_slave_config_t * ecrt_master_slave_config(ec_master_t *master, uint16_t alias, uint16_t position, uint32_t vendor_id, uint32_t product_code)
Obtains a slave configuration.
#define EC_READ_U32(DATA)
Read a 32-bit unsigned value from EtherCAT data.
int ec_device_init(ec_device_t *device, ec_master_t *master)
Constructor.
ec_slave_port_desc_t desc
Port descriptors.
#define EC_MASTER_WARN(master, fmt, args...)
Convenience macro for printing master-specific warnings to syslog.
int ec_fsm_slave_exec(ec_fsm_slave_t *fsm, ec_datagram_t *datagram)
Executes the current state of the state machine.
unsigned int active
Master has been activated.
struct list_head sent
Master list item for sent datagrams.
int ec_datagram_brd(ec_datagram_t *datagram, uint16_t mem_address, size_t data_size)
Initializes an EtherCAT BRD datagram.
int ec_datagram_fpwr(ec_datagram_t *datagram, uint16_t configured_address, uint16_t mem_address, size_t data_size)
Initializes an EtherCAT FPWR datagram.
int ec_master_enter_operation_phase(ec_master_t *master)
Transition function from IDLE to OPERATION phase.
uint8_t has_dc_system_time
The slave supports the DC system time register.
wait_queue_head_t scan_queue
Queue for processes that wait for slave scanning.
ec_datagram_t sync_datagram
Datagram used for DC drift compensation.
int ecrt_master_send_ext(ec_master_t *master)
Sends non-application datagrams.
#define EC_MASTER_ERR(master, fmt, args...)
Convenience macro for printing master-specific errors to syslog.
int ecrt_master_select_reference_clock(ec_master_t *master, ec_slave_config_t *sc)
Selects the reference clock for distributed clocks.
struct device * class_device
Master class device.
EtherCAT datagram structure.
void ec_master_queue_datagram(ec_master_t *master, ec_datagram_t *datagram)
Places a datagram in the datagram queue.
int ec_slave_config_attach(ec_slave_config_t *sc)
Attaches the configuration to the addressed slave object.
int ecrt_master_sync_monitor_queue(ec_master_t *master)
Queues the DC synchrony monitoring datagram for sending.
static int ec_master_idle_thread(void *)
Master kernel thread function for IDLE phase.
struct list_head configs
List of slave configurations.
ec_slave_t * slave
Slave pointer.
ec_slave_config_t * dc_ref_config
Application-selected DC reference clock slave config.
ec_device_index_t device_index
Device via which the datagram shall be / was sent.
int ec_soe_request_alloc(ec_soe_request_t *req, size_t size)
Pre-allocates the data memory.
int ecrt_master(ec_master_t *master, ec_master_info_t *master_info)
Obtains master information.
int ec_fsm_master_idle(const ec_fsm_master_t *fsm)
void ec_master_clear_slaves(ec_master_t *master)
Clear all slaves.
struct list_head list
list item
uint8_t * ec_device_tx_data(ec_device_t *device)
Returns a pointer to the device's transmit memory.
u64 last_rx_bytes
Number of bytes received of last statistics cycle.
unsigned long output_jiffies
time of last output
ec_stats_t stats
Cyclic statistics.
void ec_print_data(const uint8_t *, size_t)
Outputs frame contents for debugging purposes.
void ec_master_update_device_stats(ec_master_t *)
Updates the common device statistics.
struct semaphore scan_sem
Semaphore protecting the scan_busy variable and the allow_scan flag.
int ecrt_master_get_slave(ec_master_t *master, uint16_t slave_position, ec_slave_info_t *slave_info)
Obtains slave information.
int ec_datagram_prealloc(ec_datagram_t *datagram, size_t size)
Allocates internal payload memory.
static unsigned int run_on_cpu
Bind created kernel threads to a cpu.
uint16_t effective_alias
Effective alias address.
void ec_master_calc_transmission_delays(ec_master_t *)
Calculates the bus transmission delays.
void ec_master_clear_eoe_handlers(ec_master_t *master)
Clear and free all EoE handlers.
uint8_t al_state
Current state of the slave.
size_t data_size
Size of SDO data.
uint8_t scan_busy
true, while the master is scanning the network.
#define EC_READ_U16(DATA)
Read a 16-bit unsigned value from EtherCAT data.
void ec_master_eoe_start(ec_master_t *master)
Starts Ethernet over EtherCAT processing on demand.
u64 tx_bytes
Number of bytes sent.
void(* app_send_cb)(void *)
Application's send datagrams callback.
void * app_cb_data
Application callback data.
uint16_t ec_master_eoe_handler_count(const ec_master_t *master)
Get the number of EoE handlers.
int16_t current_on_ebus
Used current in mA.
void ec_master_clear_slave_configs(ec_master_t *)
Clear all slave configurations.
int ec_soe_request_read(ec_soe_request_t *req)
Request a read operation.
void ec_master_clear_domains(ec_master_t *)
Clear all domains.
void ec_master_find_dc_ref_clock(ec_master_t *)
Finds the DC reference clock.
struct list_head list
Used for execution list.
void ec_master_thread_stop(ec_master_t *)
Stops the master thread.
void ec_sdo_request_init(ec_sdo_request_t *req)
SDO request constructor.
#define EC_MAX_PORTS
Maximum number of slave ports.
#define EC_SDO_INJECTION_TIMEOUT
SDO injection timeout in microseconds.
int ecrt_master_sdo_download(ec_master_t *master, uint16_t slave_position, uint16_t index, uint8_t subindex, const uint8_t *data, size_t data_size, uint32_t *abort_code)
Executes an SDO download request to write data to a slave.
struct ec_slave_info_t::@7 ports[EC_MAX_PORTS]
Port information.
ec_datagram_t ext_datagram_ring[EC_EXT_RING_SIZE]
External datagram ring.
uint16_t sdo_count
Number of SDOs.
struct list_head list
List item.
#define EC_MAX_STRING_LENGTH
Maximum string length.
void ec_datagram_init(ec_datagram_t *datagram)
Constructor.
static unsigned long timeout_jiffies
Frame timeout in jiffies.
void ec_rtdm_dev_clear(ec_rtdm_dev_t *rtdm_dev)
Clear an RTDM device.
void ec_cdev_clear(ec_cdev_t *cdev)
Destructor.
ec_slave_t * next_slave
Connected slaves.
unsigned int link_up
true, if at least one Ethernet link is up.
uint32_t vendor_id
Slave vendor ID.
uint32_t receive_time
Port receive times for delay measurement.
wait_queue_head_t config_queue
Queue for processes that wait for slave configuration.
#define EC_EXT_RING_SIZE
Size of the external datagram ring.
void ec_master_internal_send_cb(void *cb_data)
Internal sending callback.
int ec_master_calc_topology_rec(ec_master_t *, ec_slave_t *, unsigned int *)
Calculates the bus topology; recursion function.
unsigned int scan_index
Index of the slave that is currently scanned.
uint16_t next_slave
Ring position of next DC slave on that port.
void ec_master_calc_topology(ec_master_t *)
Calculates the bus topology.
u64 app_time
Time of the last ecrt_master_sync() call.
void ec_slave_request_state(ec_slave_t *slave, ec_slave_state_t state)
Request a slave state and resets the error flag.
ec_datagram_t ref_sync_datagram
Datagram used for synchronizing the reference clock to the master clock.
void ec_master_output_stats(ec_master_t *master)
Output master statistics.
uint8_t base_dc_supported
Distributed clocks are supported.
#define EC_FIND_DOMAIN
Common implementation for ec_master_find_domain() and ec_master_find_domain_const().
u64 rx_count
Number of frames received.
unsigned int al_states
Application-layer states of all slaves.
int ecrt_master_activate(ec_master_t *master)
Finishes the configuration phase and prepares for cyclic operation.
struct work_struct sc_reset_work
Task to reset slave configuration.
uint8_t * data
Datagram payload.
#define EC_FIND_SLAVE
Common implementation for ec_master_find_slave() and ec_master_find_slave_const().
struct semaphore ext_queue_sem
Semaphore protecting the ext_datagram_queue.
#define EC_BYTE_TRANSMISSION_TIME_NS
Time to send a byte in nanoseconds.
uint16_t alias
The slaves alias if not equal to 0.
void ec_eoe_run(ec_eoe_t *eoe)
Runs the EoE state machine.
#define EC_READ_U8(DATA)
Read an 8-bit unsigned value from EtherCAT data.
EtherCAT slave configuration.
struct list_head queue
Master datagram queue item, protected by user-supplied mutex.
uint32_t product_code
Product-Code stored on the slave.
int ecrt_master_receive(ec_master_t *master)
Fetches received frames from the hardware and processes the datagrams.
EtherCAT device structure.
void(* app_receive_cb)(void *)
Application's receive datagrams callback.
unsigned int slave_count
Number of slaves detected.
struct net_device * dev
pointer to the assigned net_device
int ec_fsm_master_exec(ec_fsm_master_t *fsm)
Executes the current state of the state machine.
uint32_t ecrt_master_sync_monitor_process(const ec_master_t *master)
Processes the DC synchrony monitoring datagram.
void ec_soe_request_init(ec_soe_request_t *req)
SoE request constructor.
EtherCAT slave configuration structure.
ec_slave_config_t * ecrt_master_slave_config_err(ec_master_t *master, uint16_t alias, uint16_t position, uint32_t vendor_id, uint32_t product_code)
Same as ecrt_master_slave_config(), but with ERR_PTR() return value.
void ec_device_poll(ec_device_t *device)
Calls the poll function of the assigned net_device.
void ec_eoe_clear(ec_eoe_t *eoe)
EoE destructor.
unsigned int ec_master_config_count(const ec_master_t *master)
Get the number of slave configurations provided by the application.
Error while sending/receiving (dequeued).
Auto Increment Physical Write.
uint8_t address[EC_ADDR_LEN]
Recipient address.
u64 last_tx_bytes
Number of bytes sent of last statistics cycle.
int ec_sdo_request_alloc(ec_sdo_request_t *req, size_t size)
Pre-allocates the data memory.
uint32_t product_code
Vendor-specific product code.
void ec_domain_init(ec_domain_t *domain, ec_master_t *master, unsigned int index)
Domain constructor.
PREOP state (mailbox communication, no IO)
void ec_slave_config_clear(ec_slave_config_t *sc)
Slave configuration destructor.
Ethernet over EtherCAT (EoE) handler.
ec_fsm_master_t fsm
Master state machine.
ec_cdev_t cdev
Master character device.
u64 rx_bytes
Number of bytes received.
#define EC_DATAGRAM_FOOTER_SIZE
Size of an EtherCAT datagram footer.
unsigned int al_states
Application-layer states of the slaves on the given link.
#define EC_MASTER_INFO(master, fmt, args...)
Convenience macro for printing master-specific information to syslog.
unsigned int error_flag
Stop processing after an error.
uint16_t position
Offset of the slave in the ring.
uint32_t receive_time
Receive time on DC transmission delay measurement.
unsigned int config_changed
The configuration changed.
unsigned int injection_seq_rt
Datagram injection sequence number for the realtime side.
void ec_master_receive_datagrams(ec_master_t *master, ec_device_t *device, const uint8_t *frame_data, size_t size)
Processes a received frame.
Configured Address Physical Write.
#define FORCE_OUTPUT_CORRUPTED
Always output corrupted frames.
uint8_t index
Index (set by master).
uint8_t link_up
Link detected.
ec_device_t devices[EC_MAX_NUM_DEVICES]
EtherCAT devices.
void ec_slave_config_load_default_sync_config(ec_slave_config_t *sc)
Loads the default PDO assignment from the slave object.
ec_internal_request_state_t state
Request state.
unsigned int config_busy
State of slave configuration.
void ec_master_inject_external_datagrams(ec_master_t *)
Injects external datagrams that fit into the datagram queue.
int ecrt_master_sync_slave_clocks(ec_master_t *master)
Queues the DC clock drift compensation datagram for sending.
void ec_fsm_master_clear(ec_fsm_master_t *fsm)
Destructor.
int ecrt_master_state(const ec_master_t *master, ec_master_state_t *state)
Reads the current master state.
int ec_eoe_is_open(const ec_eoe_t *eoe)
Returns the state of the device.
void ec_device_clear_stats(ec_device_t *device)
Clears the frame statistics.
Sercos-over-EtherCAT request.
void ec_master_set_send_interval(ec_master_t *master, unsigned int send_interval)
Sets the expected interval between calls to ecrt_master_send and calculates the maximum amount of dat...
unsigned long jiffies_received
Jiffies, when the datagram was received.
int ecrt_master_reset(ec_master_t *master)
Retry configuring slaves.
uint8_t * data
Pointer to SDO data.
void ec_master_eoe_stop(ec_master_t *master)
Stops the Ethernet over EtherCAT processing.
void(* send_cb)(void *)
Current send datagrams callback.
int ecrt_master_sdo_upload(ec_master_t *master, uint16_t slave_position, uint16_t index, uint8_t subindex, uint8_t *target, size_t target_size, size_t *result_size, uint32_t *abort_code)
Executes an SDO upload request to read data from a slave.
uint32_t vendor_id
Vendor ID.
uint8_t complete_access
SDO shall be transferred completely.
uint32_t delay_to_next_dc
Delay to next slave with DC support behind this port [ns].
struct task_struct * thread
Master thread.
unsigned int queue_datagram
the datagram is ready for queuing
ec_slave_t * dc_ref_clock
DC reference clock slave.
int ec_cdev_init(ec_cdev_t *cdev, ec_master_t *master, dev_t dev_num)
Constructor.
unsigned int force_config
Force (re-)configuration.
#define EC_MAX_DATA_SIZE
Resulting maximum data size of a single datagram in a frame.
void ec_master_init_static(void)
Static variables initializer.
void ec_datagram_clear(ec_datagram_t *datagram)
Destructor.