28 #include <linux/module.h> 29 #include <linux/vmalloc.h> 41 #define DEBUG_LATENCY 0 46 #define ATTRIBUTES __attribute__ ((__noinline__)) 52 # include "rtdm_details.h" 55 # define ec_ioctl_lock(lock) do {} while(0) 56 # define ec_ioctl_unlock(lock) do {} while(0) 57 # define ec_ioctl_lock_interruptible(lock) (0) 58 # define ec_copy_to_user(to, from, n, ctx) \ 59 rtdm_safe_copy_to_user(ec_ioctl_to_rtdm(ctx), to, from, n) 60 # define ec_copy_from_user(to, from, n, ctx) \ 61 rtdm_safe_copy_from_user(ec_ioctl_to_rtdm(ctx), to, from, n) 63 # define ec_ioctl_lock(lock) rt_mutex_lock(lock) 64 # define ec_ioctl_unlock(lock) rt_mutex_unlock(lock) 65 # if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0) || \ 66 (defined(CONFIG_PREEMPT_RT_FULL) && LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0)) 67 # define ec_ioctl_lock_interruptible(lock) \ 68 rt_mutex_lock_interruptible(lock) 70 # define ec_ioctl_lock_interruptible(lock) \ 71 rt_mutex_lock_interruptible(lock, 0) 73 # define ec_copy_to_user(to, from, n, ctx) copy_to_user(to, from, n) 74 # define ec_copy_from_user(to, from, n, ctx) copy_from_user(to, from, n) 75 #endif // EC_IOCTL_RTDM 87 strncpy(target, source, EC_IOCTL_STRING_SIZE);
88 target[EC_IOCTL_STRING_SIZE - 1] = 0;
102 ec_ioctl_context_t *ctx
105 ec_ioctl_module_t data;
107 data.ioctl_version_magic = EC_IOCTL_VERSION_MAGIC;
110 if (ec_copy_to_user((
void __user *) arg, &data,
sizeof(data), ctx))
127 ec_ioctl_master_t io;
128 unsigned int dev_idx, j;
141 io.eoe_handler_count = 0;
158 memcpy(io.devices[dev_idx].address, device->
dev->dev_addr,
161 memcpy(io.devices[dev_idx].address,
master->
macs[dev_idx],
164 io.devices[dev_idx].attached = device->
dev ? 1 : 0;
165 io.devices[dev_idx].link_state = device->
link_state ? 1 : 0;
166 io.devices[dev_idx].tx_count = device->
tx_count;
167 io.devices[dev_idx].rx_count = device->
rx_count;
168 io.devices[dev_idx].tx_bytes = device->
tx_bytes;
169 io.devices[dev_idx].rx_bytes = device->
rx_bytes;
170 io.devices[dev_idx].tx_errors = device->
tx_errors;
172 io.devices[dev_idx].tx_frame_rates[j] =
174 io.devices[dev_idx].rx_frame_rates[j] =
176 io.devices[dev_idx].tx_byte_rates[j] =
178 io.devices[dev_idx].rx_byte_rates[j] =
189 io.tx_frame_rates[j] =
191 io.rx_frame_rates[j] =
193 io.tx_byte_rates[j] =
195 io.rx_byte_rates[j] =
208 if (copy_to_user((
void __user *) arg, &io,
sizeof(io))) {
226 ec_ioctl_slave_t data;
230 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
238 master, 0, data.position))) {
264 data.ports[i].desc = slave->
ports[i].
desc;
267 data.ports[i].link.signal_detected =
271 data.ports[i].next_slave =
274 data.ports[i].next_slave = 0xffff;
296 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
313 ec_ioctl_slave_sync_t data;
317 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
325 master, 0, data.slave_position))) {
328 data.slave_position);
334 EC_SLAVE_ERR(slave,
"Sync manager %u does not exist!\n",
339 sync = &slave->
sii.
syncs[data.sync_index];
344 data.enable = sync->
enable;
349 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
366 ec_ioctl_slave_sync_pdo_t data;
371 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
379 master, 0, data.slave_position))) {
382 data.slave_position);
388 EC_SLAVE_ERR(slave,
"Sync manager %u does not exist!\n",
393 sync = &slave->
sii.
syncs[data.sync_index];
395 &sync->
pdos, data.pdo_pos))) {
397 EC_SLAVE_ERR(slave,
"Sync manager %u does not contain a PDO with " 398 "position %u!\n", data.sync_index, data.pdo_pos);
402 data.index = pdo->
index;
408 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
425 ec_ioctl_slave_sync_pdo_entry_t data;
431 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
439 master, 0, data.slave_position))) {
442 data.slave_position);
448 EC_SLAVE_ERR(slave,
"Sync manager %u does not exist!\n",
453 sync = &slave->
sii.
syncs[data.sync_index];
455 &sync->
pdos, data.pdo_pos))) {
457 EC_SLAVE_ERR(slave,
"Sync manager %u does not contain a PDO with " 458 "position %u!\n", data.sync_index, data.pdo_pos);
463 pdo, data.entry_pos))) {
465 EC_SLAVE_ERR(slave,
"PDO 0x%04X does not contain an entry with " 466 "position %u!\n", data.pdo_pos, data.entry_pos);
470 data.index = entry->
index;
477 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
494 ec_ioctl_domain_t data;
496 unsigned int dev_idx;
498 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
522 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
539 ec_ioctl_domain_fmmu_t data;
543 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
560 " fmmu configurations.\n",
561 data.domain_index, data.fmmu_index + 1);
565 data.slave_config_alias = fmmu->
sc->
alias;
566 data.slave_config_position = fmmu->
sc->
position;
568 data.dir = fmmu->
dir;
574 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
591 ec_ioctl_domain_data_t data;
594 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
608 if (domain->
data_size != data.data_size) {
615 if (copy_to_user((
void __user *) data.target, domain->
data,
651 " Re-scanning on next possibility.\n");
667 ec_ioctl_slave_state_t data;
670 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
678 master, 0, data.slave_position))) {
681 data.slave_position);
702 ec_ioctl_slave_sdo_t data;
706 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
714 master, 0, data.slave_position))) {
717 data.slave_position);
722 slave, data.sdo_position))) {
724 EC_SLAVE_ERR(slave,
"SDO %u does not exist!\n", data.sdo_position);
728 data.sdo_index = sdo->
index;
734 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
751 ec_ioctl_slave_sdo_entry_t data;
756 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
764 master, 0, data.slave_position))) {
767 data.slave_position);
771 if (data.sdo_spec <= 0) {
773 slave, -data.sdo_spec))) {
775 EC_SLAVE_ERR(slave,
"SDO %u does not exist!\n", -data.sdo_spec);
780 slave, data.sdo_spec))) {
789 sdo, data.sdo_entry_subindex))) {
791 EC_SLAVE_ERR(slave,
"SDO entry 0x%04X:%02X does not exist!\n",
792 sdo->
index, data.sdo_entry_subindex);
814 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
831 ec_ioctl_slave_sdo_upload_t data;
835 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
839 if (!(target = kmalloc(data.target_size, GFP_KERNEL))) {
841 " for SDO upload.\n", data.target_size);
846 data.sdo_index, data.sdo_entry_subindex, target,
847 data.target_size, &data.data_size, &data.abort_code);
850 if (copy_to_user((
void __user *) data.target,
851 target, data.data_size)) {
859 if (__copy_to_user((
void __user *) arg, &data,
sizeof(data))) {
877 ec_ioctl_slave_sdo_download_t data;
881 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
885 if (!(sdo_data = kmalloc(data.data_size, GFP_KERNEL))) {
887 " for SDO download.\n", data.data_size);
891 if (copy_from_user(sdo_data, (
void __user *) data.data, data.data_size)) {
896 if (data.complete_access) {
898 data.sdo_index, sdo_data, data.data_size, &data.abort_code);
901 data.sdo_index, data.sdo_entry_subindex, sdo_data,
902 data.data_size, &data.abort_code);
907 if (__copy_to_user((
void __user *) arg, &data,
sizeof(data))) {
925 ec_ioctl_slave_sii_t data;
929 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
937 master, 0, data.slave_position))) {
940 data.slave_position);
945 || data.offset + data.nwords > slave->
sii_nwords) {
947 EC_SLAVE_ERR(slave,
"Invalid SII read offset/size %u/%u for slave SII" 948 " size %zu!\n", data.offset, data.nwords, slave->
sii_nwords);
952 if (copy_to_user((
void __user *) data.words,
953 slave->
sii_words + data.offset, data.nwords * 2))
973 ec_ioctl_slave_sii_t data;
975 unsigned int byte_size;
979 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
987 byte_size =
sizeof(uint16_t) * data.
nwords;
988 if (!(words = kmalloc(byte_size, GFP_KERNEL))) {
990 " for SII contents.\n", byte_size);
994 if (copy_from_user(words,
995 (
void __user *) data.words, byte_size)) {
1006 master, 0, data.slave_position))) {
1009 data.slave_position);
1015 INIT_LIST_HEAD(&request.
list);
1016 request.
slave = slave;
1017 request.
words = words;
1018 request.
offset = data.offset;
1019 request.
nwords = data.nwords;
1020 request.
state = EC_INT_REQUEST_QUEUED;
1029 request.
state != EC_INT_REQUEST_QUEUED)) {
1032 if (request.
state == EC_INT_REQUEST_QUEUED) {
1034 list_del(&request.
list);
1047 return request.
state == EC_INT_REQUEST_SUCCESS ? 0 : -EIO;
1061 ec_ioctl_slave_reg_t io;
1066 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io))) {
1091 master, 0, io.slave_position))) {
1106 request.
state != EC_INT_REQUEST_QUEUED)) {
1109 if (request.
state == EC_INT_REQUEST_QUEUED) {
1111 list_del(&request.
list);
1122 if (request.
state == EC_INT_REQUEST_SUCCESS) {
1123 if (copy_to_user((
void __user *) io.data, request.
data, io.size)) {
1129 return request.
state == EC_INT_REQUEST_SUCCESS ? 0 : -EIO;
1143 ec_ioctl_slave_reg_t io;
1148 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io))) {
1162 if (copy_from_user(request.
data, (
void __user *) io.data, io.size)) {
1199 request.
state != EC_INT_REQUEST_QUEUED)) {
1202 if (request.
state == EC_INT_REQUEST_QUEUED) {
1204 list_del(&request.
list);
1217 return request.
state == EC_INT_REQUEST_SUCCESS ? 0 : -EIO;
1231 ec_ioctl_config_t data;
1235 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
1243 master, data.config_index))) {
1250 data.alias = sc->
alias;
1257 data.syncs[i].pdo_count =
1268 data.dc_sync[i] = sc->
dc_sync[i];
1273 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
1290 ec_ioctl_config_pdo_t data;
1294 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
1308 master, data.config_index))) {
1323 data.index = pdo->
index;
1329 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
1346 ec_ioctl_config_pdo_entry_t data;
1351 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
1365 master, data.config_index))) {
1381 pdo, data.entry_pos))) {
1387 data.index = entry->
index;
1394 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
1411 ec_ioctl_config_sdo_t *ioctl;
1415 if (!(ioctl = kmalloc(
sizeof(*ioctl), GFP_KERNEL))) {
1419 if (copy_from_user(ioctl, (
void __user *) arg,
sizeof(*ioctl))) {
1430 master, ioctl->config_index))) {
1433 ioctl->config_index);
1439 sc, ioctl->sdo_pos))) {
1446 ioctl->index = req->
index;
1449 memcpy(ioctl->data, req->
data,
1450 min((u32) ioctl->size, (u32) EC_MAX_SDO_DATA_SIZE));
1455 if (copy_to_user((
void __user *) arg, ioctl,
sizeof(*ioctl))) {
1475 ec_ioctl_config_idn_t *ioctl;
1479 if (!(ioctl = kmalloc(
sizeof(*ioctl), GFP_KERNEL))) {
1483 if (copy_from_user(ioctl, (
void __user *) arg,
sizeof(*ioctl))) {
1494 master, ioctl->config_index))) {
1497 ioctl->config_index);
1503 sc, ioctl->idn_pos))) {
1511 ioctl->idn = req->
idn;
1514 memcpy(ioctl->data, req->
data,
1515 min((u32) ioctl->size, (u32) EC_MAX_IDN_DATA_SIZE));
1519 if (copy_to_user((
void __user *) arg, ioctl,
sizeof(*ioctl))) {
1539 ec_ioctl_config_flag_t *ioctl;
1544 if (!(ioctl = kmalloc(
sizeof(*ioctl), GFP_KERNEL))) {
1548 if (copy_from_user(ioctl, (
void __user *) arg,
sizeof(*ioctl))) {
1559 master, ioctl->config_index))) {
1562 ioctl->config_index);
1568 sc, ioctl->flag_pos))) {
1575 size = min((u32) strlen(flag->
key), (u32) EC_MAX_FLAG_KEY_SIZE - 1);
1576 memcpy(ioctl->key, flag->
key, size);
1577 ioctl->key[size] = 0x00;
1578 ioctl->value = flag->
value;
1582 if (copy_to_user((
void __user *) arg, ioctl,
sizeof(*ioctl))) {
1604 ec_ioctl_eoe_ip_t *ioctl;
1608 if (!(ioctl = kmalloc(
sizeof(*ioctl), GFP_KERNEL))) {
1612 if (copy_from_user(ioctl, (
void __user *) arg,
sizeof(*ioctl))) {
1625 ioctl->config_index);
1632 ioctl->mac_address_included = req->mac_address_included;
1633 ioctl->ip_address_included = req->ip_address_included;
1634 ioctl->subnet_mask_included = req->subnet_mask_included;
1635 ioctl->gateway_included = req->gateway_included;
1636 ioctl->dns_included = req->dns_included;
1637 ioctl->name_included = req->name_included;
1639 memcpy(ioctl->mac_address, req->mac_address, EC_ETH_ALEN);
1640 ioctl->ip_address = req->ip_address;
1641 ioctl->subnet_mask = req->subnet_mask;
1642 ioctl->gateway = req->gateway;
1643 ioctl->dns = req->dns;
1648 if (copy_to_user((
void __user *) arg, ioctl,
sizeof(*ioctl))) {
1672 ec_ioctl_eoe_handler_t data;
1675 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
1692 data.slave_position = 0xffff;
1696 data.rx_bytes = eoe->
stats.tx_bytes;
1698 data.tx_bytes = eoe->
stats.rx_bytes;
1705 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
1725 ec_ioctl_eoe_ip_t io;
1729 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io))) {
1736 req.mac_address_included = io.mac_address_included;
1737 req.ip_address_included = io.ip_address_included;
1738 req.subnet_mask_included = io.subnet_mask_included;
1739 req.gateway_included = io.gateway_included;
1740 req.dns_included = io.dns_included;
1741 req.name_included = io.name_included;
1743 memcpy(req.mac_address, io.mac_address, EC_ETH_ALEN);
1744 req.ip_address = io.ip_address;
1745 req.subnet_mask = io.subnet_mask;
1746 req.gateway = io.gateway;
1750 req.
state = EC_INT_REQUEST_QUEUED;
1757 master, 0, io.slave_position))) {
1773 req.
state != EC_INT_REQUEST_QUEUED)) {
1776 if (req.
state == EC_INT_REQUEST_QUEUED) {
1778 list_del(&req.
list);
1788 io.result = req.result;
1790 if (copy_to_user((
void __user *) arg, &io,
sizeof(io))) {
1794 return req.
state == EC_INT_REQUEST_SUCCESS ? 0 : -EIO;
1807 ec_ioctl_context_t *ctx
1832 ec_ioctl_context_t *ctx
1837 if (unlikely(!ctx->requested))
1842 return PTR_ERR(domain);
1844 return domain->
index;
1856 ec_ioctl_context_t *ctx
1859 ec_ioctl_config_t data;
1862 if (unlikely(!ctx->requested))
1865 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
1870 data.vendor_id, data.product_code);
1874 data.config_index = 0;
1882 data.config_index++;
1887 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
1902 ec_ioctl_context_t *ctx
1905 unsigned long config_index = (
unsigned long) arg;
1909 if (unlikely(!ctx->requested)) {
1919 if (config_index != 0xFFFFFFFF) {
1943 ec_ioctl_context_t *ctx
1946 ec_ioctl_master_activate_t io;
1951 if (unlikely(!ctx->requested))
1954 io.process_data = NULL;
1958 ctx->process_data_size = 0;
1969 if (ctx->process_data_size) {
1970 ctx->process_data = vmalloc(ctx->process_data_size);
1971 if (!ctx->process_data) {
1972 ctx->process_data_size = 0;
1982 ctx->process_data + offset);
1986 #if defined(EC_IOCTL_RTDM) && !defined(EC_RTDM_XENOMAI_V3) 1993 " memory to user space (code %i).\n", ret);
1999 io.process_data_size = ctx->process_data_size;
2001 #ifndef EC_IOCTL_RTDM 2011 if (copy_to_user((
void __user *) arg, &io,
2012 sizeof(ec_ioctl_master_activate_t)))
2027 ec_ioctl_context_t *ctx
2030 if (unlikely(!ctx->requested))
2045 ec_ioctl_context_t *ctx
2048 size_t send_interval;
2050 if (unlikely(!ctx->requested)) {
2054 if (copy_from_user(&send_interval, (
void __user *) arg,
2055 sizeof(send_interval))) {
2077 ec_ioctl_context_t *ctx
2082 if (unlikely(!ctx->requested)) {
2103 ec_ioctl_context_t *ctx
2108 if (unlikely(!ctx->requested)) {
2129 ec_ioctl_context_t *ctx
2139 if (ec_copy_to_user((
void __user *) arg, &data,
sizeof(data), ctx))
2154 ec_ioctl_context_t *ctx
2157 ec_ioctl_link_state_t ioctl;
2161 if (ec_copy_from_user(&ioctl, (
void __user *) arg,
sizeof(ioctl), ctx)) {
2170 if (ec_copy_to_user((
void __user *) ioctl.state,
2171 &state,
sizeof(state), ctx)) {
2187 ec_ioctl_context_t *ctx
2192 if (unlikely(!ctx->requested))
2195 if (ec_copy_from_user(&time, (
void __user *) arg,
sizeof(time), ctx)) {
2211 ec_ioctl_context_t *ctx
2216 if (unlikely(!ctx->requested)) {
2237 ec_ioctl_context_t *ctx
2243 if (unlikely(!ctx->requested))
2246 if (ec_copy_from_user(&time, (
void __user *) arg,
sizeof(time), ctx)) {
2267 ec_ioctl_context_t *ctx
2272 if (unlikely(!ctx->requested)) {
2293 ec_ioctl_context_t *ctx
2299 if (unlikely(!ctx->requested)) {
2308 if (ec_copy_to_user((
void __user *) arg, &time,
sizeof(time), ctx)) {
2324 ec_ioctl_context_t *ctx
2329 if (unlikely(!ctx->requested)) {
2350 ec_ioctl_context_t *ctx
2355 if (unlikely(!ctx->requested))
2360 if (ec_copy_to_user((
void __user *) arg, &time_diff,
2361 sizeof(time_diff), ctx))
2376 ec_ioctl_context_t *ctx
2379 #ifdef EC_IOCTL_RTDM 2397 ec_ioctl_context_t *ctx
2400 ec_ioctl_config_t data;
2405 if (unlikely(!ctx->requested)) {
2410 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
2426 if (data.syncs[i].config_this) {
2428 data.syncs[i].watchdog_mode);
2450 ec_ioctl_context_t *ctx
2453 ec_ioctl_config_t data;
2457 if (unlikely(!ctx->requested)) {
2462 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
2495 ec_ioctl_context_t *ctx
2498 ec_ioctl_config_pdo_t data;
2501 if (unlikely(!ctx->requested))
2504 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data)))
2529 ec_ioctl_context_t *ctx
2532 ec_ioctl_config_pdo_t data;
2535 if (unlikely(!ctx->requested))
2538 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data)))
2563 ec_ioctl_context_t *ctx
2566 ec_ioctl_add_pdo_entry_t data;
2569 if (unlikely(!ctx->requested))
2572 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data)))
2586 data.entry_index, data.entry_subindex, data.entry_bit_length);
2598 ec_ioctl_context_t *ctx
2601 ec_ioctl_config_pdo_t data;
2604 if (unlikely(!ctx->requested))
2607 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data)))
2632 ec_ioctl_context_t *ctx
2635 ec_ioctl_reg_pdo_entry_t data;
2640 if (unlikely(!ctx->requested))
2643 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data)))
2662 data.entry_subindex, domain, &data.bit_position);
2664 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
2679 ec_ioctl_context_t *ctx
2682 ec_ioctl_reg_pdo_pos_t io;
2687 if (unlikely(!ctx->requested)) {
2691 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io))) {
2712 io.pdo_pos, io.entry_pos, domain, &io.bit_position);
2714 if (copy_to_user((
void __user *) arg, &io,
sizeof(io)))
2729 ec_ioctl_context_t *ctx
2732 ec_ioctl_config_t data;
2736 if (unlikely(!ctx->requested))
2739 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data)))
2751 data.dc_sync[0].cycle_time,
2752 data.dc_sync[0].shift_time,
2753 data.dc_sync[1].cycle_time,
2754 data.dc_sync[1].shift_time);
2770 ec_ioctl_context_t *ctx
2773 ec_ioctl_sc_sdo_t data;
2775 uint8_t *sdo_data = NULL;
2778 if (unlikely(!ctx->requested))
2781 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data)))
2787 if (!(sdo_data = kmalloc(data.size, GFP_KERNEL))) {
2791 if (copy_from_user(sdo_data, (
void __user *) data.data, data.size)) {
2809 if (data.complete_access) {
2811 data.index, sdo_data, data.size);
2829 ec_ioctl_context_t *ctx
2832 ec_ioctl_sc_emerg_t io;
2836 if (unlikely(!ctx->requested))
2839 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io)))
2867 ec_ioctl_context_t *ctx
2870 ec_ioctl_sc_emerg_t io;
2875 if (unlikely(!ctx->requested)) {
2879 if (ec_copy_from_user(&io, (
void __user *) arg,
sizeof(io), ctx)) {
2895 if (ec_copy_to_user((
void __user *) io.target, msg,
sizeof(msg), ctx)) {
2911 ec_ioctl_context_t *ctx
2914 ec_ioctl_sc_emerg_t io;
2917 if (unlikely(!ctx->requested)) {
2921 if (ec_copy_from_user(&io, (
void __user *) arg,
sizeof(io), ctx)) {
2944 ec_ioctl_context_t *ctx
2947 ec_ioctl_sc_emerg_t io;
2951 if (unlikely(!ctx->requested)) {
2955 if (ec_copy_from_user(&io, (
void __user *) arg,
sizeof(io), ctx)) {
2973 if (ec_copy_to_user((
void __user *) arg, &io,
sizeof(io), ctx)) {
2989 ec_ioctl_context_t *ctx
2992 ec_ioctl_sdo_request_t data;
2996 if (unlikely(!ctx->requested))
2999 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
3003 data.request_index = 0;
3015 data.request_index++;
3021 data.sdo_subindex, data.size);
3023 return PTR_ERR(req);
3025 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
3040 ec_ioctl_context_t *ctx
3043 ec_ioctl_soe_request_t data;
3047 if (unlikely(!ctx->requested))
3050 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
3054 data.request_index = 0;
3066 data.request_index++;
3072 data.idn, data.size);
3074 return PTR_ERR(req);
3077 if (copy_to_user((
void __user *) arg, &data,
sizeof(data))) {
3093 ec_ioctl_context_t *ctx
3096 ec_ioctl_reg_request_t io;
3100 if (unlikely(!ctx->requested)) {
3104 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io))) {
3108 io.request_index = 0;
3128 return PTR_ERR(reg);
3131 if (copy_to_user((
void __user *) arg, &io,
sizeof(io))) {
3147 ec_ioctl_context_t *ctx
3150 ec_ioctl_voe_t data;
3154 if (unlikely(!ctx->requested))
3157 if (copy_from_user(&data, (
void __user *) arg,
sizeof(data))) {
3180 return PTR_ERR(voe);
3182 if (copy_to_user((
void __user *) arg, &data,
sizeof(data)))
3197 ec_ioctl_context_t *ctx
3200 ec_ioctl_sc_state_t data;
3205 if (unlikely(!ctx->requested))
3208 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx)) {
3223 if (ec_copy_to_user((
void __user *) data.state,
3224 &state,
sizeof(state), ctx))
3239 ec_ioctl_context_t *ctx
3242 ec_ioctl_sc_idn_t ioctl;
3244 uint8_t *data = NULL;
3247 if (unlikely(!ctx->requested))
3250 if (copy_from_user(&ioctl, (
void __user *) arg,
sizeof(ioctl)))
3256 if (!(data = kmalloc(ioctl.size, GFP_KERNEL))) {
3260 if (copy_from_user(data, (
void __user *) ioctl.data, ioctl.size)) {
3279 sc, ioctl.drive_no, ioctl.idn, ioctl.al_state, data, ioctl.size);
3293 ec_ioctl_context_t *ctx
3296 ec_ioctl_sc_flag_t ioctl;
3301 if (unlikely(!ctx->requested)) {
3305 if (copy_from_user(&ioctl, (
void __user *) arg,
sizeof(ioctl))) {
3309 if (!ioctl.key_size) {
3313 if (!(key = kmalloc(ioctl.key_size + 1, GFP_KERNEL))) {
3317 if (copy_from_user(key, (
void __user *) ioctl.key, ioctl.key_size)) {
3321 key[ioctl.key_size] =
'\0';
3350 ec_ioctl_context_t *ctx
3353 ec_ioctl_sc_state_timeout_t ioctl;
3357 if (unlikely(!ctx->requested)) {
3361 if (copy_from_user(&ioctl, (
void __user *) arg,
sizeof(ioctl))) {
3377 ioctl.to_state, ioctl.timeout_ms);
3392 ec_ioctl_context_t *ctx
3395 ec_ioctl_eoe_ip_t io;
3398 if (unlikely(!ctx->requested)) {
3402 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io))) {
3418 if (io.mac_address_included) {
3421 if (io.ip_address_included) {
3424 if (io.subnet_mask_included) {
3427 if (io.gateway_included) {
3430 if (io.dns_included) {
3433 if (io.name_included) {
3451 ec_ioctl_context_t *ctx
3456 if (unlikely(!ctx->requested)) {
3465 if (domain->
index == (
unsigned long) arg) {
3485 ec_ioctl_context_t *ctx
3491 if (unlikely(!ctx->requested))
3499 if (domain->
index == (
unsigned long) arg) {
3519 ec_ioctl_context_t *ctx
3524 if (unlikely(!ctx->requested))
3546 ec_ioctl_context_t *ctx
3552 if (unlikely(!ctx->requested))
3579 ec_ioctl_context_t *ctx
3582 ec_ioctl_domain_state_t data;
3587 if (unlikely(!ctx->requested))
3590 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx)) {
3605 if (ec_copy_to_user((
void __user *) data.state, &state,
sizeof(state),
3621 ec_ioctl_context_t *ctx
3624 ec_ioctl_sdo_request_t data;
3628 if (unlikely(!ctx->requested))
3631 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3657 ec_ioctl_context_t *ctx
3660 ec_ioctl_sdo_request_t data;
3664 if (unlikely(!ctx->requested))
3667 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3695 ec_ioctl_context_t *ctx
3698 ec_ioctl_sdo_request_t data;
3702 if (unlikely(!ctx->requested))
3705 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3725 if (ec_copy_to_user((
void __user *) arg, &data,
sizeof(data), ctx))
3740 ec_ioctl_context_t *ctx
3743 ec_ioctl_sdo_request_t data;
3747 if (unlikely(!ctx->requested))
3750 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3776 ec_ioctl_context_t *ctx
3779 ec_ioctl_sdo_request_t data;
3783 if (unlikely(!ctx->requested))
3786 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3808 if (ec_copy_from_user(req->
data, (
void __user *) data.data,
3825 ec_ioctl_context_t *ctx
3828 ec_ioctl_sdo_request_t data;
3832 if (unlikely(!ctx->requested))
3835 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3865 ec_ioctl_context_t *ctx
3868 ec_ioctl_soe_request_t data;
3872 if (unlikely(!ctx->requested))
3875 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3901 ec_ioctl_context_t *ctx
3904 ec_ioctl_soe_request_t data;
3908 if (unlikely(!ctx->requested))
3911 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3937 ec_ioctl_context_t *ctx
3940 ec_ioctl_soe_request_t data;
3944 if (unlikely(!ctx->requested))
3947 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
3969 if (ec_copy_to_user((
void __user *) arg, &data,
sizeof(data), ctx))
3984 ec_ioctl_context_t *ctx
3987 ec_ioctl_soe_request_t data;
3991 if (unlikely(!ctx->requested))
3994 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4020 ec_ioctl_context_t *ctx
4023 ec_ioctl_soe_request_t data;
4027 if (unlikely(!ctx->requested))
4030 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4052 if (ec_copy_from_user(req->
data, (
void __user *) data.data,
4069 ec_ioctl_context_t *ctx
4072 ec_ioctl_soe_request_t data;
4076 if (unlikely(!ctx->requested))
4079 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4109 ec_ioctl_context_t *ctx
4112 ec_ioctl_reg_request_t io;
4116 if (unlikely(!ctx->requested)) {
4120 if (ec_copy_from_user(&io, (
void __user *) arg,
sizeof(io), ctx)) {
4124 if (io.mem_size <= 0) {
4140 min(reg->
mem_size, io.mem_size), ctx)) {
4156 ec_ioctl_context_t *ctx
4159 ec_ioctl_reg_request_t io;
4163 if (unlikely(!ctx->requested)) {
4167 if (ec_copy_from_user(&io, (
void __user *) arg,
sizeof(io), ctx)) {
4185 if (ec_copy_to_user((
void __user *) arg, &io,
sizeof(io), ctx)) {
4201 ec_ioctl_context_t *ctx
4204 ec_ioctl_reg_request_t io;
4208 if (unlikely(!ctx->requested)) {
4212 if (ec_copy_from_user(&io, (
void __user *) arg,
sizeof(io), ctx)) {
4227 if (io.transfer_size > reg->
mem_size) {
4231 if (ec_copy_from_user(reg->
data, (
void __user *) io.data,
4232 io.transfer_size, ctx)) {
4248 ec_ioctl_context_t *ctx
4251 ec_ioctl_reg_request_t io;
4255 if (unlikely(!ctx->requested)) {
4259 if (ec_copy_from_user(&io, (
void __user *) arg,
sizeof(io), ctx)) {
4274 if (io.transfer_size > reg->
mem_size) {
4290 ec_ioctl_context_t *ctx
4293 ec_ioctl_voe_t data;
4297 uint16_t vendor_type;
4299 if (unlikely(!ctx->requested))
4302 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4305 if (ec_copy_from_user(&vendor_id, data.vendor_id,
sizeof(vendor_id), ctx))
4308 if (ec_copy_from_user(&vendor_type, data.vendor_type,
4309 sizeof(vendor_type), ctx))
4335 ec_ioctl_context_t *ctx
4338 ec_ioctl_voe_t data;
4342 uint16_t vendor_type;
4345 if (unlikely(!ctx->requested))
4348 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4366 if (likely(data.vendor_id))
4367 if (ec_copy_to_user(data.vendor_id, &vendor_id,
4368 sizeof(vendor_id), ctx))
4371 if (likely(data.vendor_type))
4372 if (ec_copy_to_user(data.vendor_type, &vendor_type,
4373 sizeof(vendor_type), ctx))
4388 ec_ioctl_context_t *ctx
4391 ec_ioctl_voe_t data;
4395 if (unlikely(!ctx->requested))
4398 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4424 ec_ioctl_context_t *ctx
4427 ec_ioctl_voe_t data;
4431 if (unlikely(!ctx->requested))
4434 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4460 ec_ioctl_context_t *ctx
4463 ec_ioctl_voe_t data;
4467 if (unlikely(!ctx->requested))
4470 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4489 (
void __user *) data.data, data.size, ctx))
4505 ec_ioctl_context_t *ctx
4508 ec_ioctl_voe_t data;
4512 if (unlikely(!ctx->requested))
4515 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4539 if (ec_copy_to_user((
void __user *) arg, &data,
sizeof(data), ctx))
4554 ec_ioctl_context_t *ctx
4557 ec_ioctl_voe_t data;
4561 if (unlikely(!ctx->requested))
4564 if (ec_copy_from_user(&data, (
void __user *) arg,
sizeof(data), ctx))
4596 ec_ioctl_slave_foe_t io;
4601 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io))) {
4627 EC_SLAVE_DBG(slave, 1,
"Scheduling FoE read request.\n");
4636 request.
state != EC_INT_REQUEST_QUEUED)) {
4639 if (request.
state == EC_INT_REQUEST_QUEUED) {
4640 list_del(&request.
list);
4652 io.result = request.
result;
4655 if (request.
state != EC_INT_REQUEST_SUCCESS) {
4659 if (request.
data_size > io.buffer_size) {
4660 EC_SLAVE_ERR(slave,
"%s(): Buffer too small.\n", __func__);
4665 if (copy_to_user((
void __user *) io.buffer,
4666 request.
buffer, io.data_size)) {
4673 if (__copy_to_user((
void __user *) arg, &io,
sizeof(io))) {
4692 ec_ioctl_slave_foe_t io;
4697 if (copy_from_user(&io, (
void __user *) arg,
sizeof(io))) {
4709 if (copy_from_user(request.
buffer,
4710 (
void __user *) io.buffer, io.buffer_size)) {
4731 EC_SLAVE_DBG(slave, 1,
"Scheduling FoE write request.\n");
4740 request.
state != EC_INT_REQUEST_QUEUED)) {
4743 if (request.
state == EC_INT_REQUEST_QUEUED) {
4745 list_del(&request.
list);
4756 io.result = request.
result;
4759 ret = request.
state == EC_INT_REQUEST_SUCCESS ? 0 : -EIO;
4761 if (__copy_to_user((
void __user *) arg, &io,
sizeof(io))) {
4780 ec_ioctl_slave_soe_read_t ioctl;
4784 if (copy_from_user(&ioctl, (
void __user *) arg,
sizeof(ioctl))) {
4788 data = kmalloc(ioctl.mem_size, GFP_KERNEL);
4796 ioctl.drive_no, ioctl.idn, data, ioctl.mem_size, &ioctl.data_size,
4803 if (copy_to_user((
void __user *) ioctl.data,
4804 data, ioctl.data_size)) {
4810 if (__copy_to_user((
void __user *) arg, &ioctl,
sizeof(ioctl))) {
4829 ec_ioctl_slave_soe_write_t ioctl;
4833 if (copy_from_user(&ioctl, (
void __user *) arg,
sizeof(ioctl))) {
4837 data = kmalloc(ioctl.data_size, GFP_KERNEL);
4843 if (copy_from_user(data, (
void __user *) ioctl.data, ioctl.data_size)) {
4849 ioctl.drive_no, ioctl.idn, data, ioctl.data_size,
4856 if (__copy_to_user((
void __user *) arg, &ioctl,
sizeof(ioctl))) {
4873 #ifndef EC_IOCTL_RTDM 4876 ec_ioctl_context_t *ctx,
4890 ec_ioctl_context_t *ctx,
4898 case EC_IOCTL_MODULE:
4901 case EC_IOCTL_MASTER_RESCAN:
4902 if (!ctx->writable) {
4908 case EC_IOCTL_MASTER_STATE:
4911 case EC_IOCTL_MASTER_LINK_STATE:
4914 case EC_IOCTL_SDO_REQUEST_TIMEOUT:
4915 if (!ctx->writable) {
4921 case EC_IOCTL_SDO_REQUEST_DATA:
4924 case EC_IOCTL_SOE_REQUEST_TIMEOUT:
4925 if (!ctx->writable) {
4931 case EC_IOCTL_SOE_REQUEST_DATA:
4934 case EC_IOCTL_REG_REQUEST_DATA:
4937 case EC_IOCTL_VOE_SEND_HEADER:
4938 if (!ctx->writable) {
4944 case EC_IOCTL_VOE_DATA:
4948 #ifdef EC_IOCTL_RTDM 4967 #ifdef EC_IOCTL_RTDM 4968 long ec_ioctl_rtdm_rt
4974 ec_ioctl_context_t *ctx,
4980 cycles_t a = get_cycles(), b;
4987 if (!ctx->writable) {
4993 case EC_IOCTL_RECEIVE:
4994 if (!ctx->writable) {
5000 case EC_IOCTL_APP_TIME:
5001 if (!ctx->writable) {
5007 case EC_IOCTL_SYNC_REF:
5008 if (!ctx->writable) {
5014 case EC_IOCTL_SYNC_REF_TO:
5015 if (!ctx->writable) {
5021 case EC_IOCTL_SYNC_SLAVES:
5022 if (!ctx->writable) {
5028 case EC_IOCTL_REF_CLOCK_TIME:
5029 if (!ctx->writable) {
5035 case EC_IOCTL_SYNC_MON_QUEUE:
5036 if (!ctx->writable) {
5042 case EC_IOCTL_SYNC_MON_PROCESS:
5043 if (!ctx->writable) {
5049 case EC_IOCTL_RESET:
5050 if (!ctx->writable) {
5056 case EC_IOCTL_SC_EMERG_POP:
5057 if (!ctx->writable) {
5063 case EC_IOCTL_SC_EMERG_CLEAR:
5064 if (!ctx->writable) {
5070 case EC_IOCTL_SC_EMERG_OVERRUNS:
5073 case EC_IOCTL_SC_STATE:
5076 case EC_IOCTL_DOMAIN_PROCESS:
5077 if (!ctx->writable) {
5083 case EC_IOCTL_DOMAIN_QUEUE:
5084 if (!ctx->writable) {
5090 case EC_IOCTL_DOMAIN_STATE:
5093 case EC_IOCTL_SDO_REQUEST_INDEX:
5094 if (!ctx->writable) {
5100 case EC_IOCTL_SDO_REQUEST_STATE:
5103 case EC_IOCTL_SDO_REQUEST_READ:
5104 if (!ctx->writable) {
5110 case EC_IOCTL_SDO_REQUEST_WRITE:
5111 if (!ctx->writable) {
5117 case EC_IOCTL_SOE_REQUEST_IDN:
5118 if (!ctx->writable) {
5124 case EC_IOCTL_SOE_REQUEST_STATE:
5127 case EC_IOCTL_SOE_REQUEST_READ:
5128 if (!ctx->writable) {
5134 case EC_IOCTL_SOE_REQUEST_WRITE:
5135 if (!ctx->writable) {
5141 case EC_IOCTL_REG_REQUEST_STATE:
5144 case EC_IOCTL_REG_REQUEST_WRITE:
5145 if (!ctx->writable) {
5151 case EC_IOCTL_REG_REQUEST_READ:
5152 if (!ctx->writable) {
5158 case EC_IOCTL_VOE_REC_HEADER:
5161 case EC_IOCTL_VOE_READ:
5162 if (!ctx->writable) {
5168 case EC_IOCTL_VOE_READ_NOSYNC:
5169 if (!ctx->writable) {
5175 case EC_IOCTL_VOE_WRITE:
5176 if (!ctx->writable) {
5182 case EC_IOCTL_VOE_EXEC:
5183 if (!ctx->writable) {
5196 t = (
unsigned int) ((b - a) * 1000LL) / cpu_khz;
5213 #ifdef EC_IOCTL_RTDM 5214 long ec_ioctl_rtdm_nrt
5220 ec_ioctl_context_t *ctx,
5225 #if DEBUG_LATENCY && !defined(EC_IOCTL_RTDM) 5226 cycles_t a = get_cycles(), b;
5232 case EC_IOCTL_MASTER:
5235 case EC_IOCTL_SLAVE:
5238 case EC_IOCTL_SLAVE_SYNC:
5241 case EC_IOCTL_SLAVE_SYNC_PDO:
5244 case EC_IOCTL_SLAVE_SYNC_PDO_ENTRY:
5247 case EC_IOCTL_DOMAIN:
5250 case EC_IOCTL_DOMAIN_FMMU:
5253 case EC_IOCTL_DOMAIN_DATA:
5256 case EC_IOCTL_MASTER_DEBUG:
5257 if (!ctx->writable) {
5263 case EC_IOCTL_SLAVE_STATE:
5264 if (!ctx->writable) {
5270 case EC_IOCTL_SLAVE_SDO:
5273 case EC_IOCTL_SLAVE_SDO_ENTRY:
5276 case EC_IOCTL_SLAVE_SDO_UPLOAD:
5277 if (!ctx->writable) {
5283 case EC_IOCTL_SLAVE_SDO_DOWNLOAD:
5284 if (!ctx->writable) {
5290 case EC_IOCTL_SLAVE_SII_READ:
5293 case EC_IOCTL_SLAVE_SII_WRITE:
5294 if (!ctx->writable) {
5300 case EC_IOCTL_SLAVE_REG_READ:
5301 if (!ctx->writable) {
5307 case EC_IOCTL_SLAVE_REG_WRITE:
5308 if (!ctx->writable) {
5314 case EC_IOCTL_SLAVE_FOE_READ:
5315 if (!ctx->writable) {
5321 case EC_IOCTL_SLAVE_FOE_WRITE:
5322 if (!ctx->writable) {
5328 case EC_IOCTL_SLAVE_SOE_READ:
5329 if (!ctx->writable) {
5335 case EC_IOCTL_SLAVE_SOE_WRITE:
5336 if (!ctx->writable) {
5343 case EC_IOCTL_SLAVE_EOE_IP_PARAM:
5344 if (!ctx->writable) {
5351 case EC_IOCTL_CONFIG:
5354 case EC_IOCTL_CONFIG_PDO:
5357 case EC_IOCTL_CONFIG_PDO_ENTRY:
5360 case EC_IOCTL_CONFIG_SDO:
5363 case EC_IOCTL_CONFIG_IDN:
5366 case EC_IOCTL_CONFIG_FLAG:
5370 case EC_IOCTL_CONFIG_EOE_IP_PARAM:
5373 case EC_IOCTL_EOE_HANDLER:
5380 case EC_IOCTL_REQUEST:
5381 if (!ctx->writable) {
5387 case EC_IOCTL_CREATE_DOMAIN:
5388 if (!ctx->writable) {
5394 case EC_IOCTL_CREATE_SLAVE_CONFIG:
5395 if (!ctx->writable) {
5401 case EC_IOCTL_SELECT_REF_CLOCK:
5402 if (!ctx->writable) {
5408 case EC_IOCTL_ACTIVATE:
5409 if (!ctx->writable) {
5415 case EC_IOCTL_DEACTIVATE:
5416 if (!ctx->writable) {
5422 case EC_IOCTL_SC_SYNC:
5423 if (!ctx->writable) {
5429 case EC_IOCTL_SC_WATCHDOG:
5430 if (!ctx->writable) {
5436 case EC_IOCTL_SC_ADD_PDO:
5437 if (!ctx->writable) {
5443 case EC_IOCTL_SC_CLEAR_PDOS:
5444 if (!ctx->writable) {
5450 case EC_IOCTL_SC_ADD_ENTRY:
5451 if (!ctx->writable) {
5457 case EC_IOCTL_SC_CLEAR_ENTRIES:
5458 if (!ctx->writable) {
5464 case EC_IOCTL_SC_REG_PDO_ENTRY:
5465 if (!ctx->writable) {
5471 case EC_IOCTL_SC_REG_PDO_POS:
5472 if (!ctx->writable) {
5478 case EC_IOCTL_SC_DC:
5479 if (!ctx->writable) {
5485 case EC_IOCTL_SC_SDO:
5486 if (!ctx->writable) {
5492 case EC_IOCTL_SC_EMERG_SIZE:
5493 if (!ctx->writable) {
5499 case EC_IOCTL_SC_SDO_REQUEST:
5500 if (!ctx->writable) {
5506 case EC_IOCTL_SC_SOE_REQUEST:
5507 if (!ctx->writable) {
5513 case EC_IOCTL_SC_REG_REQUEST:
5514 if (!ctx->writable) {
5520 case EC_IOCTL_SC_VOE:
5521 if (!ctx->writable) {
5527 case EC_IOCTL_SC_IDN:
5528 if (!ctx->writable) {
5534 case EC_IOCTL_SC_FLAG:
5535 if (!ctx->writable) {
5541 case EC_IOCTL_SC_STATE_TIMEOUT:
5542 if (!ctx->writable) {
5549 case EC_IOCTL_SC_EOE_IP_PARAM:
5550 if (!ctx->writable) {
5557 case EC_IOCTL_DOMAIN_SIZE:
5560 case EC_IOCTL_DOMAIN_OFFSET:
5563 case EC_IOCTL_SET_SEND_INTERVAL:
5564 if (!ctx->writable) {
5571 #ifdef EC_IOCTL_RTDM 5579 #if DEBUG_LATENCY && !defined(EC_IOCTL_RTDM) 5581 t = (
unsigned int) ((b - a) * 1000LL) / cpu_khz;
ec_sii_general_flags_t general_flags
General flags.
uint16_t ring_position
Ring position for emergency requests.
const ec_slave_config_t * sc
EtherCAT slave config.
static ATTRIBUTES int ec_ioctl_domain(ec_master_t *master, void *arg)
Get domain information.
ec_internal_request_state_t state
Request state.
static ATTRIBUTES int ec_ioctl_sdo_request_timeout(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sets an SDO request's timeout.
unsigned int ec_slave_config_flag_count(const ec_slave_config_t *sc)
Get the number of feature flags.
uint16_t offset
SII word offset.
ec_request_state_t ecrt_sdo_request_state(const ec_sdo_request_t *req)
Get the current state of the SDO request.
uint16_t ring_position
Ring position.
uint32_t revision_number
Revision number.
const ec_sdo_entry_t * ec_sdo_get_entry_const(const ec_sdo_t *sdo, uint8_t subindex)
Get an SDO entry from an SDO via its subindex.
static ATTRIBUTES int ec_ioctl_sc_emerg_clear(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Clear the emergency ring.
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.
uint16_t boot_rx_mailbox_offset
Bootstrap receive mailbox address.
#define EC_DATAGRAM_NAME_SIZE
Size of the datagram description string.
ec_sii_t sii
Extracted SII data.
ec_reg_request_t * ec_slave_config_find_reg_request(ec_slave_config_t *sc, unsigned int pos)
Finds a register handler via its position in the list.
static ATTRIBUTES int ec_ioctl_slave_state(ec_master_t *master, void *arg)
Set slave state.
static ATTRIBUTES int ec_ioctl_sdo_request_write(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts an SDO write operation.
int ecrt_sdo_request_write(ec_sdo_request_t *req)
Schedule an SDO write operation.
int ecrt_slave_config_pdo_assign_clear(ec_slave_config_t *sc, uint8_t sync_index)
Clear a sync manager's PDO assignment.
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.
int ecrt_voe_handler_read(ec_voe_handler_t *voe)
Start a VoE read operation.
static ATTRIBUTES int ec_ioctl_config_sdo(ec_master_t *master, void *arg)
Get slave configuration SDO information.
static ATTRIBUTES int ec_ioctl_master_link_state(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Get the link state.
u64 tx_count
Number of frames sent.
static ATTRIBUTES int ec_ioctl_slave_reg_read(ec_master_t *master, void *arg)
Read a slave's registers.
struct list_head sii_requests
SII write requests.
static ATTRIBUTES int ec_ioctl_domain_offset(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Gets the domain's offset in the total process data.
static ATTRIBUTES int ec_ioctl_create_slave_config(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Create a slave configuration.
const ec_soe_request_t * ec_slave_config_get_idn_by_pos_const(const ec_slave_config_t *sc, unsigned int pos)
Finds an IDN configuration via its position in the list.
ec_sdo_request_t * ecrt_slave_config_create_sdo_request_err(ec_slave_config_t *sc, uint16_t index, uint8_t subindex, size_t size)
Same as ecrt_slave_config_create_sdo_request(), but with ERR_PTR() return value.
#define EC_SLAVE_DBG(slave, level, fmt, args...)
Convenience macro for printing slave-specific debug messages to syslog.
static ATTRIBUTES int ec_ioctl_reg_request_read(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts an register read operation.
int ecrt_master_send(ec_master_t *master)
Sends all datagrams in the queue.
static ATTRIBUTES int ec_ioctl_slave_sdo_upload(ec_master_t *master, void *arg)
Upload SDO.
size_t data_size
Size of the process data.
int ecrt_sdo_request_timeout(ec_sdo_request_t *req, uint32_t timeout)
Set the timeout for an SDO request.
ec_slave_t * slave
pointer to the corresponding slave
static ATTRIBUTES int ec_ioctl_voe_send_header(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sets the VoE send header.
s32 tx_byte_rates[EC_RATE_COUNT]
Transmit rates in byte/s for different statistics cycle periods.
static long ec_ioctl_nrt(ec_master_t *master, ec_ioctl_context_t *ctx, unsigned int cmd, void *arg)
ioctl() function to use.
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.
size_t ec_voe_handler_mem_size(const ec_voe_handler_t *voe)
Get usable memory size.
int ecrt_soe_request_timeout(ec_soe_request_t *req, uint32_t timeout)
Set the timeout for an SoE request.
ec_slave_port_t ports[EC_MAX_PORTS]
Ports.
unsigned int tx_queue_size
Transmit queue size.
const ec_flag_t * ec_slave_config_get_flag_by_pos_const(const ec_slave_config_t *sc, unsigned int pos)
Finds a flag via its position in the list.
ec_soe_request_t * ec_slave_config_find_soe_request(ec_slave_config_t *sc, unsigned int pos)
Finds a SoE request via its position in the list.
int ecrt_slave_config_watchdog(ec_slave_config_t *sc, uint16_t divider, uint16_t intervals)
Configure a slave's watchdog times.
uint8_t * ecrt_sdo_request_data(const ec_sdo_request_t *req)
Access to the SDO request's data.
ec_slave_state_t current_state
Current application state.
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.
#define ec_master_num_devices(MASTER)
Number of Ethernet devices.
static ATTRIBUTES int ec_ioctl_domain_process(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Process the domain.
int ecrt_slave_config_reg_pdo_entry(ec_slave_config_t *sc, uint16_t index, uint8_t subindex, ec_domain_t *domain, unsigned int *bit_position)
Registers a PDO entry for process data exchange in a domain.
#define EC_RATE_COUNT
Number of statistic rate intervals to maintain.
size_t nwords
Number of words.
ec_internal_request_state_t state
SDO request state.
uint16_t address
Register address.
uint16_t bit_length
Data size in bit.
ec_direction_t dir
Direction.
static ATTRIBUTES int ec_ioctl_slave_eoe_ip_param(ec_master_t *master, void *arg)
Request EoE IP parameter setting.
size_t mem_size
Size of data memory.
void ec_foe_request_write(ec_foe_request_t *req)
Prepares a write request (master to slave).
static ATTRIBUTES int ec_ioctl_reg_request_state(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Gets an register request's state.
static ATTRIBUTES int ec_ioctl_reg_request_write(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts an register write operation.
uint32_t product_code
Slave product code.
static ATTRIBUTES int ec_ioctl_ref_clock_time(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Get the system time of the reference clock.
ec_slave_port_link_t link
Port link status.
int ecrt_master_sync_reference_clock(ec_master_t *master)
Queues the DC reference clock drift compensation datagram for sending.
void ec_master_internal_receive_cb(void *cb_data)
Internal receiving callback.
uint16_t position
Index after alias.
size_t mem_size
Size of SDO data memory.
int ecrt_slave_config_sdo(ec_slave_config_t *sc, uint16_t index, uint8_t subindex, const uint8_t *data, size_t size)
Add an SDO configuration.
int ecrt_domain_state(const ec_domain_t *domain, ec_domain_state_t *state)
Reads the state of a domain.
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.
unsigned int rescan_required
A bus rescan is required.
void ecrt_master_callbacks(ec_master_t *master, void(*send_cb)(void *), void(*receive_cb)(void *), void *cb_data)
Sets the locking callbacks.
const ec_sdo_request_t * ec_slave_config_get_sdo_by_pos_const(const ec_slave_config_t *sc, unsigned int pos)
Finds an SDO configuration via its position in the list.
int ecrt_voe_handler_write(ec_voe_handler_t *voe, size_t size)
Start a VoE write operation.
int ecrt_slave_config_sync_manager(ec_slave_config_t *sc, uint8_t sync_index, ec_direction_t dir, ec_watchdog_mode_t watchdog_mode)
Configure a sync manager.
uint32_t serial_number
Serial number.
int ec_foe_request_alloc(ec_foe_request_t *req, size_t size)
Pre-allocates the data memory.
s32 tx_frame_rates[EC_RATE_COUNT]
Transmit rates in frames/s for different statistics cycle periods.
ec_sii_coe_details_t coe_details
CoE detail flags.
char * order
Order number.
int ec_reg_request_init(ec_reg_request_t *reg, size_t size)
Register request constructor.
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.
unsigned int scan_index
Index of slave currently scanned.
static ATTRIBUTES int ec_ioctl_sync_slaves(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sync the slave clocks.
u64 dc_ref_time
Common reference timestamp for DC start times.
static ATTRIBUTES int ec_ioctl_sc_state_timeout(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sets an AL state transition timeout.
unsigned int data_size
Covered PDO size.
struct list_head emerg_reg_requests
Emergency register access requests.
uint16_t alias
Slave alias.
static ATTRIBUTES int ec_ioctl_sc_create_reg_request(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Create a register request.
struct list_head domains
List of domains.
static ATTRIBUTES int ec_ioctl_slave_soe_read(ec_master_t *master, void *arg)
Read an SoE IDN.
ec_eoe_request_t eoe_ip_param_request
EoE IP parameters.
int ecrt_slave_config_emerg_overruns(const ec_slave_config_t *sc)
Read the number of CoE emergency overruns.
struct list_head reg_requests
Register access requests.
int ecrt_soe_request_idn(ec_soe_request_t *req, uint8_t drive_no, uint16_t idn)
Set the request's drive and Sercos ID numbers.
int ecrt_slave_config_idn(ec_slave_config_t *sc, uint8_t drive_no, uint16_t idn, ec_al_state_t state, const uint8_t *data, size_t size)
Add an SoE IDN configuration.
static ATTRIBUTES int ec_ioctl_slave_sdo_entry(ec_master_t *master, void *arg)
Get slave SDO entry information.
int ecrt_slave_config_state_timeout(ec_slave_config_t *sc, ec_al_state_t from, ec_al_state_t to, unsigned int timeout_ms)
Sets the application-layer state transition timeout in ms.
uint8_t * data
Pointer to SDO data.
static ATTRIBUTES int ec_ioctl_config_pdo(ec_master_t *master, void *arg)
Get slave configuration PDO information.
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.
static ATTRIBUTES int ec_ioctl_sc_add_entry(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Add an entry to a PDO's mapping.
uint8_t link_state
device link state
int ecrt_slave_config_eoe_dns_address(ec_slave_config_t *sc, struct in_addr dns_address)
Sets the IPv4 address of the DNS server for Ethernet-over-EtherCAT (EoE) operation.
unsigned int ec_pdo_list_count(const ec_pdo_list_t *pl)
Get the number of PDOs in the list.
ec_master_t * ecrt_request_master_err(unsigned int)
Request a master.
uint16_t boot_tx_mailbox_size
Bootstrap transmit mailbox size.
uint8_t signal_detected
Detected signal on RX port.
const uint8_t * macs[EC_MAX_NUM_DEVICES]
Device MAC addresses.
uint8_t * ecrt_reg_request_data(const ec_reg_request_t *reg)
Access to the register request's data.
uint32_t result
FoE request abort code.
int ecrt_slave_config_reg_pdo_entry_pos(ec_slave_config_t *sc, uint8_t sync_index, unsigned int pdo_pos, unsigned int entry_pos, ec_domain_t *domain, unsigned int *bit_position)
Registers a PDO entry using its position.
u64 rx_count
Number of frames received.
#define EC_MAX_HOSTNAME_SIZE
Maximum hostname size.
size_t data_size
Size of SDO data.
wait_queue_head_t request_queue
Wait queue for external requests from user space.
void ec_eoe_request_init(ec_eoe_request_t *req)
EoE request constructor.
void ecrt_domain_external_memory(ec_domain_t *domain, uint8_t *mem)
Provide external memory to store the domain's process data.
int ecrt_slave_config_state(const ec_slave_config_t *sc, ec_slave_config_state_t *state)
Outputs the state of the slave configuration.
static ATTRIBUTES int ec_ioctl_config_pdo_entry(ec_master_t *master, void *arg)
Get slave configuration PDO entry information.
unsigned int sync_count
Number of sync managers.
struct list_head list
List head.
ec_domain_t * ecrt_master_create_domain_err(ec_master_t *master)
Same as ecrt_master_create_domain(), but with ERR_PTR() return value.
uint32_t tx_rate
transmit rate (bps)
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.
char * key
Flag key (null-terminated ASCII string.
uint16_t std_rx_mailbox_size
Standard receive mailbox size.
static ATTRIBUTES int ec_ioctl_slave_foe_read(ec_master_t *master, void *arg)
Read a file from a slave via FoE.
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.
uint16_t std_tx_mailbox_offset
Standard transmit mailbox address.
s32 rx_frame_rates[EC_RATE_COUNT]
Receive rates in frames/s for different statistics cycle periods.
ec_al_state_t al_state
AL state (only valid for IDN config).
static ATTRIBUTES int ec_ioctl_master_state(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Get the master state.
ec_direction_t dir
Direction.
static ATTRIBUTES int ec_ioctl_sc_emerg_overruns(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Get the number of emergency overruns.
EtherCAT master structure.
uint8_t * data
Memory for the process data.
int ecrt_domain_queue(ec_domain_t *domain)
(Re-)queues all domain datagrams in the master's datagram queue.
ec_sync_signal_t dc_sync[EC_SYNC_SIGNAL_COUNT]
DC sync signals.
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.
static ATTRIBUTES int ec_ioctl_soe_request_state(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Gets an SoE request's state.
static ATTRIBUTES int ec_ioctl_slave_foe_write(ec_master_t *master, void *arg)
Write a file to a slave via FoE.
#define EC_MASTER_DBG(master, level, fmt, args...)
Convenience macro for printing master-specific debug messages to syslog.
static ATTRIBUTES int ec_ioctl_master_rescan(ec_master_t *master, void *arg)
Issue a bus scan.
uint16_t boot_tx_mailbox_offset
Bootstrap transmit mailbox address.
const ec_pdo_entry_t * ec_pdo_find_entry_by_pos_const(const ec_pdo_t *pdo, unsigned int pos)
Finds a PDO entry via its position in the list.
int ecrt_slave_config_emerg_clear(ec_slave_config_t *sc)
Clears CoE emergency ring buffer and the overrun counter.
static ATTRIBUTES int ec_ioctl_sc_create_sdo_request(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Create an SDO request.
ec_slave_t * slave
EtherCAT slave.
uint16_t index
PDO entry index.
struct semaphore master_sem
Master semaphore.
uint8_t loop_closed
Loop closed.
static ATTRIBUTES int ec_ioctl_sdo_request_index(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sets an SDO request's SDO index and subindex.
unsigned int ec_pdo_entry_count(const ec_pdo_t *pdo)
Get the number of PDO entries.
uint32_t logical_start_address
Logical start address.
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.
void ec_foe_request_clear(ec_foe_request_t *req)
FoE request destructor.
size_t buffer_size
Size of FoE data memory.
static ATTRIBUTES int ec_ioctl_sdo_request_read(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts an SDO read operation.
uint8_t * ecrt_soe_request_data(const ec_soe_request_t *req)
Access to the SoE request's data.
struct irq_work sc_reset_work_kicker
NMI-Safe kicker to trigger reset task above.
static ATTRIBUTES int ec_ioctl_domain_fmmu(ec_master_t *master, void *arg)
Get domain FMMU information.
ec_voe_handler_t * ecrt_slave_config_create_voe_handler_err(ec_slave_config_t *sc, size_t size)
Same as ecrt_slave_config_create_voe_handler(), but with ERR_PTR() return value.
static ATTRIBUTES int ec_ioctl_sdo_request_state(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Gets an SDO request's state.
int ecrt_sdo_request_index(ec_sdo_request_t *req, uint16_t index, uint8_t subindex)
Set the SDO index and subindex.
char * description
Description.
int ec_master_debug_level(ec_master_t *master, unsigned int level)
Set the debug level.
#define ATTRIBUTES
Optional compiler attributes fo ioctl() functions.
Slave configuration state.
s32 tx_frame_rates[EC_RATE_COUNT]
Transmit rates in frames/s for different statistics cycle periods.
s32 rx_byte_rates[EC_RATE_COUNT]
Receive rates in byte/s for different statistics cycle periods.
Ethernet over EtherCAT (EoE)
ec_sync_config_t sync_configs[EC_MAX_SYNC_MANAGERS]
Sync manager configurations.
ec_device_stats_t device_stats
Device statistics.
static ATTRIBUTES int ec_ioctl_request(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Request the master from userspace.
void(* state)(ec_voe_handler_t *)
State function.
struct list_head reg_requests
List of register requests.
static ATTRIBUTES int ec_ioctl_app_time(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Set the master DC application time.
ec_master_phase_t phase
Master phase.
static ATTRIBUTES int ec_ioctl_sc_state(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Get the slave configuration's state.
static ATTRIBUTES int ec_ioctl_domain_data(ec_master_t *master, void *arg)
Get domain data.
uint8_t * buffer
Pointer to FoE data.
uint8_t sync_index
Index of sync manager to use.
Slave configutation feature flag.
static ATTRIBUTES int ec_ioctl_sc_watchdog(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Configure a slave's watchdogs.
size_t ecrt_domain_size(const ec_domain_t *domain)
Returns the current size of the domain's process data.
struct semaphore device_sem
Device semaphore.
static ATTRIBUTES int ec_ioctl_sc_add_pdo(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Add a PDO to the assignment.
s32 rx_byte_rates[EC_RATE_COUNT]
Receive rates in byte/s for different statistics cycle periods.
struct list_head sdo_requests
List of SDO requests.
uint16_t * sii_words
Complete SII image.
uint16_t mailbox_protocols
Supported mailbox protocols.
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.
static ATTRIBUTES int ec_ioctl_sc_dc(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sets the DC AssignActivate word and the sync signal times.
ec_reg_request_t * ecrt_slave_config_create_reg_request_err(ec_slave_config_t *sc, size_t size)
Same as ecrt_slave_config_create_reg_request(), but with ERR_PTR() return value.
#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.
ec_slave_dc_range_t base_dc_range
DC range.
uint8_t bit_length
entry length in bit
static ATTRIBUTES int ec_ioctl_master_debug(ec_master_t *master, void *arg)
Set master debug level.
uint16_t std_rx_mailbox_offset
Standard receive mailbox address.
uint8_t base_fmmu_bit_operation
FMMU bit operation is supported.
static ATTRIBUTES int ec_ioctl_sc_flag(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Configures a feature flag.
s32 loss_rates[EC_RATE_COUNT]
Frame loss rates for different statistics cycle periods.
uint32_t transmission_delay
DC system time transmission delay (offset from reference clock).
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_pdo_list_t pdos
Current PDO assignment.
int ecrt_voe_handler_received_header(const ec_voe_handler_t *voe, uint32_t *vendor_id, uint16_t *vendor_type)
Reads the header data of a received VoE message.
struct list_head voe_handlers
List of VoE handlers.
uint16_t dc_assign_activate
Vendor-specific AssignActivate word.
s32 rx_frame_rates[EC_RATE_COUNT]
Receive rates in frames/s for different statistics cycle periods.
static ATTRIBUTES int ec_ioctl_slave_sii_read(ec_master_t *master, void *arg)
Read a slave's SII.
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.
unsigned int index
Index (just a number).
s32 tx_byte_rates[EC_RATE_COUNT]
Transmit rates in byte/s for different statistics cycle periods.
size_t ecrt_sdo_request_data_size(const ec_sdo_request_t *req)
Returns the current SDO data size.
static ATTRIBUTES int ec_ioctl_send(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Send frames.
static ATTRIBUTES int ec_ioctl_slave(ec_master_t *master, void *arg)
Get slave information.
long ec_ioctl(ec_master_t *master, ec_ioctl_context_t *ctx, unsigned int cmd, void *arg)
Called when an ioctl() command is issued.
int ecrt_reg_request_write(ec_reg_request_t *reg, uint16_t address, size_t size)
Schedule an register write operation.
uint16_t watchdog_intervals
Process data watchdog intervals (see spec.
int ecrt_slave_config_flag(ec_slave_config_t *sc, const char *key, int32_t value)
Adds a feature flag to a slave configuration.
ec_slave_port_desc_t desc
Port descriptors.
#define EC_MASTER_WARN(master, fmt, args...)
Convenience macro for printing master-specific warnings to syslog.
static ATTRIBUTES int ec_ioctl_config_idn(ec_master_t *master, void *arg)
Get slave configuration IDN information.
static ATTRIBUTES int ec_ioctl_config(ec_master_t *master, void *arg)
Get slave configuration information.
Vendor specific over EtherCAT handler.
unsigned int active
Master has been activated.
static ATTRIBUTES int ec_ioctl_set_send_interval(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Set max.
ec_master_t * master
Master owning the slave.
struct list_head soe_requests
List of SoE requests.
size_t ecrt_soe_request_data_size(const ec_soe_request_t *req)
Returns the current IDN data size.
static ATTRIBUTES int ec_ioctl_voe_read_nosync(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts a VoE read operation without sending a sync message first.
unsigned int ec_slave_config_sdo_count(const ec_slave_config_t *sc)
Get the number of SDO configurations.
const ec_sdo_t * ec_slave_get_sdo_by_pos_const(const ec_slave_t *slave, uint16_t sdo_position)
Get an SDO from the dictionary, given its position in the list.
static ATTRIBUTES int ec_ioctl_master(ec_master_t *master, void *arg)
Get master information.
ec_request_state_t ecrt_soe_request_state(const ec_soe_request_t *req)
Get the current state of the SoE request.
static ATTRIBUTES int ec_ioctl_reg_request_data(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Read register data.
u64 rx_bytes
Number of bytes received.
uint8_t has_dc_system_time
The slave supports the DC system time register.
int ecrt_slave_config_pdo_assign_add(ec_slave_config_t *sc, uint8_t sync_index, uint16_t pdo_index)
Add a PDO to a sync manager's PDO assignment.
int ecrt_slave_config_dc(ec_slave_config_t *sc, uint16_t assign_activate, uint32_t sync0_cycle_time, int32_t sync0_shift_time, uint32_t sync1_cycle_time, int32_t sync1_shift_time)
Configure distributed clocks.
ec_request_state_t ecrt_reg_request_state(const ec_reg_request_t *reg)
Get the current state of the register request.
int ecrt_slave_config_eoe_ip_address(ec_slave_config_t *sc, struct in_addr ip_address)
Sets the IP address for Ethernet-over-EtherCAT (EoE) operation.
void ec_foe_request_init(ec_foe_request_t *req, uint8_t *file_name)
FoE request constructor.
static ATTRIBUTES int ec_ioctl_sc_sync(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Configure a sync manager.
u64 tx_count
Number of frames sent.
unsigned int ec_domain_fmmu_count(const ec_domain_t *domain)
Get the number of FMMU configurations of the domain.
static ATTRIBUTES int ec_ioctl_sync_ref_to(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sync the reference clock.
static ATTRIBUTES int ec_ioctl_slave_sii_write(ec_master_t *master, void *arg)
Write a slave's SII.
static ATTRIBUTES int ec_ioctl_sync_mon_queue(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Queue the sync monitoring datagram.
#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.
uint8_t subindex
PDO entry subindex.
uint8_t control_register
Control register value.
static ATTRIBUTES int ec_ioctl_sync_ref(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sync the reference clock.
Values read by the master.
ec_direction_t dir
Sync manager direction.
int ec_rtdm_mmap(ec_ioctl_context_t *ioctl_ctx, void **user_address)
Memory-map process data to user space.
int ecrt_master_sync_monitor_queue(ec_master_t *master)
Queues the DC synchrony monitoring datagram for sending.
uint16_t data_type
Data type.
struct list_head configs
List of slave configurations.
ec_slave_t * slave
Slave pointer.
unsigned int opened
net_device is opened
static ATTRIBUTES int ec_ioctl_create_domain(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Create a domain.
static ATTRIBUTES int ec_ioctl_reset(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Reset configuration.
uint16_t watchdog_divider
Watchdog divider as a number of 40ns intervals (see spec.
ec_sdo_request_t * ec_slave_config_find_sdo_request(ec_slave_config_t *sc, unsigned int pos)
Finds a CoE SDO request via its position in the list.
static ATTRIBUTES int ec_ioctl_sc_create_soe_request(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Create an SoE request.
static ATTRIBUTES int ec_ioctl_voe_write(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts a VoE write operation.
static ATTRIBUTES int ec_ioctl_domain_queue(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Queue the domain.
size_t data_size
Size of FoE data.
static ATTRIBUTES int ec_ioctl_voe_rec_header(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Gets the received VoE header.
static ATTRIBUTES int ec_ioctl_config_flag(ec_master_t *master, void *arg)
Get slave configuration feature flag information.
static ATTRIBUTES int ec_ioctl_soe_request_write(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts an SoE IDN write operation.
int ecrt_slave_config_pdo_mapping_clear(ec_slave_config_t *sc, uint16_t pdo_index)
Clear the mapping of a given PDO.
Ethernet-over-EtherCAT set IP parameter request.
static ATTRIBUTES int ec_ioctl_receive(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Receive frames.
uint16_t working_counter[EC_MAX_NUM_DEVICES]
Last working counter values.
uint8_t * file_name
Pointer to the filename.
const ec_sdo_t * ec_slave_get_sdo_const(const ec_slave_t *slave, uint16_t index)
Get an SDO from the dictionary.
uint32_t logical_base_address
Logical offset address of the process data.
static ATTRIBUTES int ec_ioctl_sc_emerg_size(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Set the emergency ring buffer size.
uint8_t read_access[EC_SDO_ENTRY_ACCESS_COUNT]
Read access.
ec_watchdog_mode_t watchdog_mode
Watchdog mode.
struct net_device_stats stats
device statistics
uint8_t subindex
SDO subindex.
uint16_t expected_working_counter
Expected working counter.
static ATTRIBUTES int ec_ioctl_slave_sync_pdo_entry(ec_master_t *master, void *arg)
Get slave sync manager PDO entry information.
unsigned int ec_slave_config_idn_count(const ec_slave_config_t *sc)
Get the number of IDN configurations.
u64 tx_errors
Number of transmit errors.
uint16_t effective_alias
Effective alias address.
size_t data_size
Size of SDO data.
ec_internal_request_state_t state
Request state.
ec_soe_request_t * ecrt_slave_config_create_soe_request_err(ec_slave_config_t *sc, uint8_t drive_no, uint16_t idn, size_t size)
Same as ecrt_slave_config_create_soe_request(), but with ERR_PTR() return value.
static ATTRIBUTES int ec_ioctl_slave_sync(ec_master_t *master, void *arg)
Get slave sync manager information.
struct list_head foe_requests
FoE requests.
ec_direction_t dir
Direction.
static ATTRIBUTES int ec_ioctl_voe_read(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts a VoE read operation.
u64 tx_bytes
Number of bytes sent.
static ATTRIBUTES int ec_ioctl_sc_create_voe_handler(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Create a VoE handler.
uint16_t ec_master_eoe_handler_count(const ec_master_t *master)
Get the number of EoE handlers.
int ecrt_domain_process(ec_domain_t *domain)
Determines the states of the domain's datagrams.
static ATTRIBUTES int ec_ioctl_module(void *arg, ec_ioctl_context_t *ctx)
Get module information.
uint8_t enable
Enable bit.
int ecrt_slave_config_eoe_default_gateway(ec_slave_config_t *sc, struct in_addr gateway_address)
Sets the gateway address for Ethernet-over-EtherCAT (EoE) operation.
static ATTRIBUTES int ec_ioctl_sc_clear_pdos(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Clears the PDO assignment.
uint8_t * data
Pointer to data memory.
Vendor specific over EtherCAT protocol handler.
static long ec_ioctl_both(ec_master_t *master, ec_ioctl_context_t *ctx, unsigned int cmd, void *arg)
Called when an ioctl() command is issued.
uint16_t boot_rx_mailbox_size
Bootstrap receive mailbox size.
#define EC_MAX_PORTS
Maximum number of slave ports.
static ATTRIBUTES int ec_ioctl_soe_request_data(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Read SoE IDN data.
static ATTRIBUTES int ec_ioctl_config_ip(ec_master_t *master, void *arg)
Get configured EoE IP parameters for a given slave configuration.
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.
uint8_t * ecrt_voe_handler_data(const ec_voe_handler_t *voe)
Access to the VoE handler's data.
int ecrt_slave_config_emerg_pop(ec_slave_config_t *sc, uint8_t *target)
Read and remove one record from the CoE emergency ring buffer.
int ecrt_slave_config_complete_sdo(ec_slave_config_t *sc, uint16_t index, const uint8_t *data, size_t size)
Add configuration data for a complete SDO.
static ATTRIBUTES int ec_ioctl_soe_request_read(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Starts an SoE IDN read operation.
ec_slave_t * next_slave
Connected slaves.
ec_direction_t dir
Direction.
static ATTRIBUTES int ec_ioctl_deactivate(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Deactivates the master.
uint32_t vendor_id
Slave vendor ID.
uint8_t drive_no
Drive number.
uint32_t receive_time
Port receive times for delay measurement.
uint8_t max_subindex
Maximum subindex.
int ecrt_voe_handler_send_header(ec_voe_handler_t *voe, uint32_t vendor_id, uint16_t vendor_type)
Sets the VoE header for future send operations.
static ATTRIBUTES int ec_ioctl_sc_sdo(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Configures an SDO.
void ec_master_internal_send_cb(void *cb_data)
Internal sending callback.
int ecrt_slave_config_eoe_hostname(ec_slave_config_t *sc, const char *name)
Sets the host name for Ethernet-over-EtherCAT (EoE) operation.
ec_pdo_list_t pdos
Current PDO assignment.
int32_t value
Flag value (meaning depends on key).
static ATTRIBUTES int ec_ioctl_soe_request_index(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sets an SoE request's drive number and IDN.
static ATTRIBUTES int ec_ioctl_sc_reg_pdo_entry(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Registers a PDO entry.
static ATTRIBUTES int ec_ioctl_activate(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Activates the master.
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.
uint16_t physical_start_address
Physical start address.
static ATTRIBUTES int ec_ioctl_domain_state(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Get the domain state.
void ec_foe_request_read(ec_foe_request_t *req)
Prepares a read request (slave to master).
uint8_t base_dc_supported
Distributed clocks are supported.
static ATTRIBUTES int ec_ioctl_sc_ip(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Configures EoE IP parameters.
u64 rx_count
Number of frames received.
static ATTRIBUTES int ec_ioctl_slave_sdo(ec_master_t *master, void *arg)
Get slave SDO information.
size_t sii_nwords
Size of the SII contents in words.
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.
unsigned int ec_master_count(void)
Get the number of masters.
void ec_reg_request_clear(ec_reg_request_t *reg)
Register request destructor.
int ecrt_soe_request_read(ec_soe_request_t *req)
Schedule an SoE IDN read operation.
size_t ecrt_voe_handler_data_size(const ec_voe_handler_t *voe)
Returns the current data size.
ec_request_state_t ecrt_voe_handler_execute(ec_voe_handler_t *voe)
Execute the handler.
static ATTRIBUTES int ec_ioctl_soe_request_timeout(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Sets an CoE request's timeout.
EtherCAT slave configuration.
int ecrt_master_receive(ec_master_t *master)
Fetches received frames from the hardware and processes the datagrams.
static ATTRIBUTES int ec_ioctl_sc_emerg_pop(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Get an emergency message from the ring.
uint32_t error_code
Error code from an FoE Error Request.
static ATTRIBUTES int ec_ioctl_domain_size(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Gets the domain's data size.
struct net_device * dev
pointer to the assigned net_device
uint32_t ecrt_master_sync_monitor_process(const ec_master_t *master)
Processes the DC synchrony monitoring datagram.
EtherCAT master character device IOCTL commands.
static void ec_ioctl_strcpy(char *target, const char *source)
Copies a string to an ioctl structure.
Request was processed successfully.
EtherCAT slave configuration structure.
ec_internal_request_state_t state
FoE request state.
uint8_t write_access[EC_SDO_ENTRY_ACCESS_COUNT]
Write access.
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.
ec_device_index_t device_index
Index of device the slave responds on.
unsigned int ec_master_config_count(const ec_master_t *master)
Get the number of slave configurations provided by the application.
uint16_t default_length
Data length in bytes.
static ATTRIBUTES int ec_ioctl_voe_exec(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Executes the VoE state machine.
uint32_t product_code
Vendor-specific product code.
ec_direction_t dir
FMMU direction.
const ec_pdo_t * ec_pdo_list_find_pdo_by_pos_const(const ec_pdo_list_t *pl, unsigned int pos)
Finds a PDO via its position in the list.
Ethernet over EtherCAT (EoE) handler.
int ecrt_slave_config_eoe_mac_address(ec_slave_config_t *sc, const unsigned char *mac_address)
Sets the link/MAC address for Ethernet-over-EtherCAT (EoE) operation.
ec_fsm_master_t fsm
Master state machine.
u64 rx_bytes
Number of bytes received.
int ecrt_soe_request_write(ec_soe_request_t *req)
Schedule an SoE IDN write operation.
#define EC_COE_EMERGENCY_MSG_SIZE
Size of a CoE emergency message in byte.
int ecrt_slave_config_eoe_subnet_mask(ec_slave_config_t *sc, struct in_addr subnet_mask)
Sets the subnet mask for Ethernet-over-EtherCAT (EoE) operation.
int ecrt_slave_config_pdo_mapping_add(ec_slave_config_t *sc, uint16_t pdo_index, uint16_t entry_index, uint8_t entry_subindex, uint8_t entry_bit_length)
Add a PDO entry to the given PDO's mapping.
int ecrt_slave_config_emerg_size(ec_slave_config_t *sc, size_t elements)
Set the size of the CoE emergency ring buffer.
unsigned int error_flag
Stop processing after an error.
ec_sync_t * syncs
SYNC MANAGER categories.
size_t mem_size
Size of SDO data memory.
uint16_t std_tx_mailbox_size
Standard transmit mailbox size.
struct list_head list
List item.
struct list_head eoe_requests
EoE set IP parameter requests.
static ATTRIBUTES int ec_ioctl_sc_reg_pdo_pos(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Registers a PDO entry by its position.
uint8_t link_up
Link detected.
uint16_t idn
Sercos ID-Number.
#define EC_MAX_SYNC_MANAGERS
Maximum number of sync managers per slave.
ec_device_t devices[EC_MAX_NUM_DEVICES]
EtherCAT devices.
static ATTRIBUTES int ec_ioctl_slave_soe_write(ec_master_t *master, void *arg)
Write an IDN to a slave via SoE.
u64 tx_bytes
Number of bytes sent.
static ATTRIBUTES int ec_ioctl_slave_sync_pdo(ec_master_t *master, void *arg)
Get slave sync manager PDO information.
ec_internal_request_state_t state
Request state.
static ATTRIBUTES int ec_ioctl_select_ref_clock(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Select the DC reference clock.
#define EC_SYNC_SIGNAL_COUNT
Number of DC sync signals.
int ecrt_reg_request_read(ec_reg_request_t *reg, uint16_t address, size_t size)
Schedule a register read operation.
struct list_head list
List item.
static ATTRIBUTES int ec_ioctl_slave_reg_write(ec_master_t *master, void *arg)
Write a slave's registers.
int ecrt_master_sync_slave_clocks(ec_master_t *master)
Queues the DC clock drift compensation datagram for sending.
const uint16_t * words
Pointer to the data words.
int ecrt_master_state(const ec_master_t *master, ec_master_state_t *state)
Reads the current master state.
Sercos-over-EtherCAT request.
static ATTRIBUTES int ec_ioctl_voe_data(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Reads the received VoE data.
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...
uint8_t * data
Pointer to SDO data.
static ATTRIBUTES int ec_ioctl_sdo_request_data(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Read SDO data.
struct net_device * dev
net_device for virtual ethernet device
static ATTRIBUTES int ec_ioctl_sync_mon_process(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Processes the sync monitoring datagram.
static ATTRIBUTES int ec_ioctl_eoe_handler(ec_master_t *master, void *arg)
Get EoE handler information.
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].
static ATTRIBUTES int ec_ioctl_slave_sdo_download(ec_master_t *master, void *arg)
Download SDO.
ec_slave_t * dc_ref_clock
DC reference clock slave.
ec_voe_handler_t * ec_slave_config_find_voe_handler(ec_slave_config_t *sc, unsigned int pos)
Finds a VoE handler via its position in the list.
ec_master_t * master
EtherCAT master owning the domain.
static ATTRIBUTES int ec_ioctl_sc_idn(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Configures an IDN.
struct list_head list
List item.
unsigned int has_general
General category present.
unsigned int tx_queued_frames
number of frames in the queue
static ATTRIBUTES int ec_ioctl_sc_clear_entries(ec_master_t *master, void *arg, ec_ioctl_context_t *ctx)
Clears the mapping of a PDO.
int ecrt_voe_handler_read_nosync(ec_voe_handler_t *voe)
Start a VoE read operation without querying the sync manager status.
const ec_fmmu_config_t * ec_domain_find_fmmu(const ec_domain_t *domain, unsigned int pos)
Get a certain FMMU configuration via its position in the list.