fp@42: /****************************************************************************** fp@42: * fp@42: * $Id$ fp@42: * fp@197: * Copyright (C) 2006 Florian Pose, Ingenieurgemeinschaft IgH fp@197: * fp@197: * This file is part of the IgH EtherCAT Master. fp@197: * fp@197: * The IgH EtherCAT Master is free software; you can redistribute it fp@197: * and/or modify it under the terms of the GNU General Public License fp@246: * as published by the Free Software Foundation; either version 2 of the fp@246: * License, or (at your option) any later version. fp@197: * fp@197: * The IgH EtherCAT Master is distributed in the hope that it will be fp@197: * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of fp@197: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the fp@197: * GNU General Public License for more details. fp@197: * fp@197: * You should have received a copy of the GNU General Public License fp@197: * along with the IgH EtherCAT Master; if not, write to the Free Software fp@197: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA fp@197: * fp@246: * The right to use EtherCAT Technology is granted and comes free of fp@246: * charge under condition of compatibility of product made by fp@246: * Licensee. People intending to distribute/sell products based on the fp@246: * code, have to sign an agreement to guarantee that products using fp@246: * software based on IgH EtherCAT master stay compatible with the actual fp@246: * EtherCAT specification (which are released themselves as an open fp@246: * standard) as the (only) precondition to have the right to use EtherCAT fp@246: * Technology, IP and trade marks. fp@246: * fp@42: *****************************************************************************/ fp@42: fp@199: /** fp@199: \file fp@199: EtherCAT domain methods. fp@199: */ fp@199: fp@199: /*****************************************************************************/ fp@199: fp@294: #include fp@294: fp@54: #include "globals.h" fp@54: #include "domain.h" fp@73: #include "master.h" fp@42: fp@178: /*****************************************************************************/ fp@178: fp@1715: /** fp@1715: Data registration type. fp@1715: */ fp@1715: fp@1715: typedef struct fp@1715: { fp@1715: struct list_head list; /**< list item */ fp@1715: ec_slave_t *slave; /**< slave */ fp@1744: const ec_sync_t *sync; /**< sync manager */ fp@1715: off_t sync_offset; /**< pdo offset */ fp@1715: void **data_ptr; /**< pointer to process data pointer(s) */ fp@1715: } fp@1715: ec_data_reg_t; fp@1715: fp@1715: /*****************************************************************************/ fp@1715: fp@1732: void ec_domain_clear(struct kobject *); fp@1715: void ec_domain_clear_data_regs(ec_domain_t *); fp@179: ssize_t ec_show_domain_attribute(struct kobject *, struct attribute *, char *); fp@98: fp@42: /*****************************************************************************/ fp@42: fp@199: /** \cond */ fp@199: fp@1752: EC_SYSFS_READ_ATTR(size); fp@1752: EC_SYSFS_READ_ATTR(data); fp@178: fp@178: static struct attribute *def_attrs[] = { fp@1752: &attr_size, fp@1752: &attr_data, fp@178: NULL, fp@178: }; fp@178: fp@178: static struct sysfs_ops sysfs_ops = { fp@178: .show = &ec_show_domain_attribute, fp@178: .store = NULL fp@178: }; fp@178: fp@178: static struct kobj_type ktype_ec_domain = { fp@178: .release = ec_domain_clear, fp@178: .sysfs_ops = &sysfs_ops, fp@178: .default_attrs = def_attrs fp@178: }; fp@178: fp@199: /** \endcond */ fp@199: fp@178: /*****************************************************************************/ fp@178: fp@42: /** fp@195: Domain constructor. fp@195: \return 0 in case of success, else < 0 fp@195: */ fp@195: fp@195: int ec_domain_init(ec_domain_t *domain, /**< EtherCAT domain */ fp@195: ec_master_t *master, /**< owning master */ fp@195: unsigned int index /**< domain index */ fp@178: ) fp@73: { fp@73: domain->master = master; fp@178: domain->index = index; fp@73: domain->data_size = 0; fp@73: domain->base_address = 0; fp@73: domain->response_count = 0xFFFFFFFF; fp@1719: domain->notify_jiffies = 0; fp@1716: domain->working_counter_changes = 0; fp@73: fp@1715: INIT_LIST_HEAD(&domain->data_regs); fp@293: INIT_LIST_HEAD(&domain->datagrams); fp@178: fp@195: // init kobject and add it to the hierarchy fp@178: memset(&domain->kobj, 0x00, sizeof(struct kobject)); fp@178: kobject_init(&domain->kobj); fp@178: domain->kobj.ktype = &ktype_ec_domain; fp@178: domain->kobj.parent = &master->kobj; fp@178: if (kobject_set_name(&domain->kobj, "domain%i", index)) { fp@178: EC_ERR("Failed to set kobj name.\n"); fp@1732: kobject_put(&domain->kobj); fp@1732: return -1; fp@1732: } fp@1732: if (kobject_add(&domain->kobj)) { fp@1732: EC_ERR("Failed to add domain kobject.\n"); fp@1732: kobject_put(&domain->kobj); fp@178: return -1; fp@178: } fp@178: fp@178: return 0; fp@73: } fp@73: fp@73: /*****************************************************************************/ fp@73: fp@73: /** fp@195: Domain destructor. fp@1732: Clears and frees a domain object. fp@1732: */ fp@1732: fp@1732: void ec_domain_destroy(ec_domain_t *domain /**< EtherCAT domain */) fp@1732: { fp@1732: ec_datagram_t *datagram; fp@1732: fp@1732: // dequeue datagrams fp@1732: list_for_each_entry(datagram, &domain->datagrams, list) { fp@1732: if (!list_empty(&datagram->queue)) // datagram queued? fp@1732: list_del_init(&datagram->queue); fp@1732: } fp@1732: fp@1732: // destroy self fp@1732: kobject_del(&domain->kobj); fp@1732: kobject_put(&domain->kobj); fp@1732: } fp@1732: fp@1732: /*****************************************************************************/ fp@1732: fp@1732: /** fp@1732: Clear and free domain. fp@1732: This method is called by the kobject, fp@1732: once there are no more references to it. fp@195: */ fp@195: fp@195: void ec_domain_clear(struct kobject *kobj /**< kobject of the domain */) fp@73: { fp@293: ec_datagram_t *datagram, *next; fp@178: ec_domain_t *domain; fp@178: fp@178: domain = container_of(kobj, ec_domain_t, kobj); fp@178: fp@293: list_for_each_entry_safe(datagram, next, &domain->datagrams, list) { fp@293: ec_datagram_clear(datagram); fp@293: kfree(datagram); fp@144: } fp@98: fp@1715: ec_domain_clear_data_regs(domain); fp@178: fp@178: kfree(domain); fp@73: } fp@73: fp@73: /*****************************************************************************/ fp@73: fp@73: /** fp@1744: * Registers a PDO entry. fp@1744: * \return 0 in case of success, else < 0 fp@1744: */ fp@1744: fp@1744: int ec_domain_reg_pdo_entry( fp@1744: ec_domain_t *domain, /**< EtherCAT domain */ fp@1744: ec_sync_t *sync, /**< sync manager */ fp@1744: const ec_pdo_entry_t *entry, /**< PDO entry to register */ fp@1744: void **data_ptr /**< pointer to the process data pointer */ fp@1744: ) fp@1715: { fp@1715: ec_data_reg_t *data_reg; fp@1744: const ec_pdo_t *other_pdo; fp@1744: const ec_pdo_entry_t *other_entry; fp@1744: unsigned int bit_offset, byte_offset; fp@1715: fp@1732: // Calculate offset (in sync manager) for process data pointer fp@1715: bit_offset = 0; fp@1715: byte_offset = 0; fp@1744: list_for_each_entry(other_pdo, &sync->pdos, list) { fp@1719: list_for_each_entry(other_entry, &other_pdo->entries, list) { fp@1715: if (other_entry == entry) { fp@1715: byte_offset = bit_offset / 8; fp@1715: break; fp@1715: } fp@1715: bit_offset += other_entry->bit_length; fp@1715: } fp@1715: } fp@1715: fp@1715: // Allocate memory for data registration object fp@1715: if (!(data_reg = fp@1715: (ec_data_reg_t *) kmalloc(sizeof(ec_data_reg_t), GFP_KERNEL))) { fp@1715: EC_ERR("Failed to allocate data registration.\n"); fp@73: return -1; fp@73: } fp@73: fp@1744: if (ec_slave_prepare_fmmu(sync->slave, domain, sync)) { fp@84: EC_ERR("FMMU configuration failed.\n"); fp@1715: kfree(data_reg); fp@73: return -1; fp@73: } fp@73: fp@1744: data_reg->slave = sync->slave; fp@1715: data_reg->sync = sync; fp@1715: data_reg->sync_offset = byte_offset; fp@1715: data_reg->data_ptr = data_ptr; fp@1715: list_add_tail(&data_reg->list, &domain->data_regs); fp@1732: fp@73: return 0; fp@73: } fp@73: fp@73: /*****************************************************************************/ fp@73: fp@73: /** fp@1716: Clears the list of the data registrations. fp@195: */ fp@195: fp@1715: void ec_domain_clear_data_regs(ec_domain_t *domain /**< EtherCAT domain */) fp@1715: { fp@1715: ec_data_reg_t *data_reg, *next; fp@1715: fp@1715: list_for_each_entry_safe(data_reg, next, &domain->data_regs, list) { fp@1715: list_del(&data_reg->list); fp@1715: kfree(data_reg); fp@98: } fp@98: } fp@98: fp@98: /*****************************************************************************/ fp@98: fp@98: /** fp@293: Allocates a process data datagram and appends it to the list. fp@195: \return 0 in case of success, else < 0 fp@195: */ fp@195: fp@293: int ec_domain_add_datagram(ec_domain_t *domain, /**< EtherCAT domain */ fp@293: uint32_t offset, /**< logical offset */ fp@293: size_t data_size /**< size of the datagram data */ fp@293: ) fp@293: { fp@293: ec_datagram_t *datagram; fp@293: fp@293: if (!(datagram = kmalloc(sizeof(ec_datagram_t), GFP_KERNEL))) { fp@293: EC_ERR("Failed to allocate domain datagram!\n"); fp@144: return -1; fp@144: } fp@144: fp@293: ec_datagram_init(datagram); fp@1745: snprintf(datagram->name, EC_DATAGRAM_NAME_SIZE, fp@1745: "domain%u-%u", domain->index, offset); fp@293: fp@293: if (ec_datagram_lrw(datagram, offset, data_size)) { fp@293: kfree(datagram); fp@144: return -1; fp@144: } fp@144: fp@293: list_add_tail(&datagram->list, &domain->datagrams); fp@144: return 0; fp@144: } fp@144: fp@144: /*****************************************************************************/ fp@144: fp@144: /** fp@195: Creates a domain. fp@195: Reserves domain memory, calculates the logical addresses of the fp@195: corresponding FMMUs and sets the process data pointer of the registered fp@1715: process data. fp@195: \return 0 in case of success, else < 0 fp@195: */ fp@195: fp@195: int ec_domain_alloc(ec_domain_t *domain, /**< EtherCAT domain */ fp@275: uint32_t base_address /**< logical base address */ fp@73: ) fp@73: { fp@1715: ec_data_reg_t *data_reg; fp@73: ec_slave_t *slave; fp@73: ec_fmmu_t *fmmu; fp@1715: unsigned int i, j, datagram_count; fp@1715: uint32_t pdo_off, pdo_off_datagram; fp@1745: uint32_t datagram_offset, log_addr; fp@1715: size_t datagram_data_size, sync_size; fp@293: ec_datagram_t *datagram; fp@73: fp@73: domain->base_address = base_address; fp@73: fp@275: // calculate size of process data and allocate memory fp@73: domain->data_size = 0; fp@1715: datagram_offset = base_address; fp@1715: datagram_data_size = 0; fp@1715: datagram_count = 0; fp@182: list_for_each_entry(slave, &domain->master->slaves, list) { fp@73: for (j = 0; j < slave->fmmu_count; j++) { fp@73: fmmu = &slave->fmmus[j]; fp@73: if (fmmu->domain == domain) { fp@73: fmmu->logical_start_address = base_address + domain->data_size; fp@1744: sync_size = ec_sync_size(fmmu->sync); fp@275: domain->data_size += sync_size; fp@1715: if (datagram_data_size + sync_size > EC_MAX_DATA_SIZE) { fp@1715: if (ec_domain_add_datagram(domain, datagram_offset, fp@1715: datagram_data_size)) return -1; fp@1715: datagram_offset += datagram_data_size; fp@1715: datagram_data_size = 0; fp@1715: datagram_count++; fp@144: } fp@1715: datagram_data_size += sync_size; fp@73: } fp@73: } fp@73: } fp@73: fp@293: // allocate last datagram fp@1715: if (datagram_data_size) { fp@1715: if (ec_domain_add_datagram(domain, datagram_offset, fp@1715: datagram_data_size)) fp@144: return -1; fp@1715: datagram_count++; fp@1715: } fp@1715: fp@1715: if (!datagram_count) { fp@178: EC_WARN("Domain %i contains no data!\n", domain->index); fp@1715: ec_domain_clear_data_regs(domain); fp@98: return 0; fp@98: } fp@98: fp@275: // set all process data pointers fp@1715: list_for_each_entry(data_reg, &domain->data_regs, list) { fp@1715: for (i = 0; i < data_reg->slave->fmmu_count; i++) { fp@1715: fmmu = &data_reg->slave->fmmus[i]; fp@1715: if (fmmu->domain == domain && fmmu->sync == data_reg->sync) { fp@1715: pdo_off = fmmu->logical_start_address + data_reg->sync_offset; fp@293: // search datagram fp@293: list_for_each_entry(datagram, &domain->datagrams, list) { fp@1745: log_addr = EC_READ_U32(datagram->address); fp@1745: pdo_off_datagram = pdo_off - log_addr; fp@1745: if (pdo_off >= log_addr && fp@1715: pdo_off_datagram < datagram->mem_size) { fp@1715: *data_reg->data_ptr = datagram->data + fp@1715: pdo_off_datagram; fp@144: } fp@144: } fp@1715: if (!data_reg->data_ptr) { fp@144: EC_ERR("Failed to assign data pointer!\n"); fp@144: return -1; fp@144: } fp@98: break; fp@98: } fp@98: } fp@98: } fp@98: fp@1728: EC_INFO("Domain %i - Allocated %i bytes in %i datagram%s.\n", fp@1715: domain->index, domain->data_size, datagram_count, fp@1715: datagram_count == 1 ? "" : "s"); fp@1715: fp@1715: ec_domain_clear_data_regs(domain); fp@1715: fp@1715: return 0; fp@1715: } fp@1715: fp@1715: /*****************************************************************************/ fp@1715: fp@1752: /** Outputs domain data. fp@1752: */ fp@1752: size_t ec_domain_output_data( fp@1752: const ec_domain_t *domain, /**< EtherCAT domain. */ fp@1752: char *buffer /**< Output buffer */ fp@1752: ) fp@1752: { fp@1752: off_t off = 0; fp@1752: ec_datagram_t *datagram; fp@1752: fp@1752: list_for_each_entry(datagram, &domain->datagrams, list) { fp@1752: if (off + datagram->data_size > PAGE_SIZE) fp@1752: return -EFBIG; // file too large fp@1752: memcpy(buffer + off, datagram->data, datagram->data_size); fp@1752: off += datagram->data_size; fp@1752: } fp@1752: fp@1752: return off; fp@1752: } fp@1752: fp@1752: /*****************************************************************************/ fp@1752: fp@1715: /** fp@195: Formats attribute data for SysFS reading. fp@195: \return number of bytes to read fp@195: */ fp@195: fp@195: ssize_t ec_show_domain_attribute(struct kobject *kobj, /**< kobject */ fp@195: struct attribute *attr, /**< attribute */ fp@195: char *buffer /**< memory to store data in */ fp@178: ) fp@178: { fp@178: ec_domain_t *domain = container_of(kobj, ec_domain_t, kobj); fp@178: fp@1752: if (attr == &attr_size) { fp@1752: return sprintf(buffer, "%u\n", domain->data_size); fp@1752: } else if (attr == &attr_data) { fp@1752: return ec_domain_output_data(domain, buffer); fp@178: } fp@178: fp@178: return 0; fp@97: } fp@97: fp@73: /****************************************************************************** fp@195: * Realtime interface fp@73: *****************************************************************************/ fp@73: fp@73: /** fp@1744: * Registers a PDO for a domain. fp@1744: * \return 0 on success, else non-zero fp@1744: * \ingroup RealtimeInterface fp@1744: */ fp@1744: fp@1744: int ecrt_domain_register_pdo( fp@1744: ec_domain_t *domain, /**< EtherCAT domain */ fp@1744: ec_slave_t *slave, /**< EtherCAT slave */ fp@1744: uint16_t pdo_entry_index, /**< PDO entry index */ fp@1744: uint8_t pdo_entry_subindex, /**< PDO entry subindex */ fp@1744: void **data_ptr /**< address of the process data pointer */ fp@1744: ) fp@1744: { fp@1744: ec_sync_t *sync; fp@1744: const ec_pdo_t *pdo; fp@1744: const ec_pdo_entry_t *entry; fp@1744: unsigned int i; fp@1744: fp@1744: // search for PDO entry fp@1744: for (i = 0; i < slave->sii_sync_count; i++) { fp@1744: sync = &slave->sii_syncs[i]; fp@1744: list_for_each_entry(pdo, &sync->pdos, list) { fp@1744: list_for_each_entry(entry, &pdo->entries, list) { fp@1744: if (entry->index != pdo_entry_index || fp@1744: entry->subindex != pdo_entry_subindex) continue; fp@1744: fp@1744: // PDO entry found fp@1744: if (ec_domain_reg_pdo_entry(domain, sync, entry, data_ptr)) { fp@1744: return -1; fp@1744: } fp@1744: fp@1744: return 0; fp@1744: } fp@1744: } fp@1744: } fp@1744: fp@1744: EC_ERR("PDO entry 0x%04X:%u is not mapped in slave %u.\n", fp@1744: pdo_entry_index, pdo_entry_subindex, slave->ring_position); fp@1744: return -1; fp@1744: } fp@1744: fp@1744: /*****************************************************************************/ fp@1744: fp@1744: /** fp@1744: * Registers a bunch of data fields. fp@1744: * \attention The list has to be terminated with a NULL structure ({})! fp@1744: * \return 0 in case of success, else < 0 fp@1744: * \ingroup RealtimeInterface fp@1744: */ fp@1744: fp@1744: int ecrt_domain_register_pdo_list( fp@1744: ec_domain_t *domain, /**< EtherCAT domain */ fp@1744: const ec_pdo_reg_t *pdo_regs /**< array of PDO registrations */ fp@1744: ) fp@1744: { fp@1744: const ec_pdo_reg_t *reg; fp@73: ec_slave_t *slave; fp@1744: fp@1744: for (reg = pdo_regs; reg->slave_address; reg++) { fp@1744: if (!(slave = ecrt_master_get_slave(domain->master, fp@1744: reg->slave_address, reg->vendor_id, fp@1744: reg->product_code))) fp@98: return -1; fp@98: fp@1744: if (ecrt_domain_register_pdo(domain, slave, reg->pdo_entry_index, fp@1744: reg->pdo_entry_subindex, reg->data_ptr)) fp@1744: return -1; fp@1744: } fp@1744: fp@98: return 0; fp@98: } fp@98: fp@98: /*****************************************************************************/ fp@98: fp@98: /** fp@1744: * Registers a PDO range in a domain. fp@1744: * \return 0 on success, else non-zero fp@1744: * \ingroup RealtimeInterface fp@1744: */ fp@1744: fp@1744: int ecrt_domain_register_pdo_range( fp@1744: ec_domain_t *domain, /**< EtherCAT domain */ fp@1744: ec_slave_t *slave, /**< EtherCAT slave */ fp@1744: ec_direction_t dir, /**< data direction */ fp@1744: uint16_t offset, /**< offset in slave's PDO range */ fp@1744: uint16_t length, /**< length of this range */ fp@1744: void **data_ptr /**< address of the process data pointer */ fp@1744: ) fp@1744: { fp@1744: ec_data_reg_t *data_reg; fp@1744: ec_sync_t *sync; fp@1744: uint16_t sync_length; fp@1744: fp@1744: if (!(sync = ec_slave_get_pdo_sync(slave, dir))) { fp@1744: EC_ERR("No sync manager found for PDO range.\n"); fp@1744: return -1; fp@1744: } fp@1744: fp@1744: // Allocate memory for data registration object fp@1744: if (!(data_reg = fp@1744: (ec_data_reg_t *) kmalloc(sizeof(ec_data_reg_t), GFP_KERNEL))) { fp@1744: EC_ERR("Failed to allocate data registration.\n"); fp@1744: return -1; fp@1744: } fp@1744: fp@1744: if (ec_slave_prepare_fmmu(slave, domain, sync)) { fp@1744: EC_ERR("FMMU configuration failed.\n"); fp@1744: kfree(data_reg); fp@1744: return -1; fp@1744: } fp@1744: fp@1744: data_reg->slave = slave; fp@1744: data_reg->sync = sync; fp@1744: data_reg->sync_offset = offset; fp@1744: data_reg->data_ptr = data_ptr; fp@1744: fp@1744: // estimate sync manager length fp@1744: sync_length = offset + length; fp@1744: if (sync->est_length < sync_length) { fp@1744: sync->est_length = sync_length; fp@1744: if (domain->master->debug_level) { fp@1744: EC_DBG("Estimating length of sync manager %i of slave %i to %i.\n", fp@1744: sync->index, slave->ring_position, sync_length); fp@1744: } fp@1744: } fp@1744: fp@1744: list_add_tail(&data_reg->list, &domain->data_regs); fp@1744: return 0; fp@1732: } fp@1732: fp@1732: /*****************************************************************************/ fp@1732: fp@1732: /** fp@1715: Processes received process data and requeues the domain datagram(s). fp@199: \ingroup RealtimeInterface fp@195: */ fp@195: fp@195: void ecrt_domain_process(ec_domain_t *domain /**< EtherCAT domain */) fp@98: { fp@144: unsigned int working_counter_sum; fp@293: ec_datagram_t *datagram; fp@98: fp@98: working_counter_sum = 0; fp@1724: domain->state = 0; fp@293: list_for_each_entry(datagram, &domain->datagrams, list) { fp@1745: ec_datagram_output_stats(datagram); fp@1715: if (datagram->state == EC_DATAGRAM_RECEIVED) { fp@293: working_counter_sum += datagram->working_counter; fp@98: } fp@1724: else { fp@1724: domain->state = -1; fp@1724: } fp@98: } fp@73: fp@1715: if (working_counter_sum != domain->response_count) { fp@1716: domain->working_counter_changes++; fp@1715: domain->response_count = working_counter_sum; fp@1716: } fp@1716: fp@1716: if (domain->working_counter_changes && fp@1719: jiffies - domain->notify_jiffies > HZ) { fp@1719: domain->notify_jiffies = jiffies; fp@1716: if (domain->working_counter_changes == 1) { fp@1716: EC_INFO("Domain %i working counter change: %i\n", domain->index, fp@1716: domain->response_count); fp@1716: } fp@1716: else { fp@1716: EC_INFO("Domain %i: %u WC changes. Current response count: %i\n", fp@1716: domain->index, domain->working_counter_changes, fp@1716: domain->response_count); fp@1716: } fp@1716: domain->working_counter_changes = 0; fp@1715: } fp@1739: } fp@1739: fp@1739: /*****************************************************************************/ fp@1739: fp@1739: /** fp@1739: Places all process data datagrams in the masters datagram queue. fp@1739: \ingroup RealtimeInterface fp@1739: */ fp@1739: fp@1739: void ecrt_domain_queue(ec_domain_t *domain /**< EtherCAT domain */) fp@1739: { fp@1739: ec_datagram_t *datagram; fp@1739: fp@1739: list_for_each_entry(datagram, &domain->datagrams, list) { fp@1739: ec_master_queue_datagram(domain->master, datagram); fp@1739: } fp@73: } fp@73: fp@73: /*****************************************************************************/ fp@73: fp@105: /** fp@195: Returns the state of a domain. fp@293: \return 0 if all datagrams were received, else -1. fp@199: \ingroup RealtimeInterface fp@195: */ fp@195: fp@1715: int ecrt_domain_state(const ec_domain_t *domain /**< EtherCAT domain */) fp@105: { fp@1724: return domain->state; fp@105: } fp@105: fp@105: /*****************************************************************************/ fp@105: fp@199: /** \cond */ fp@199: fp@1715: EXPORT_SYMBOL(ecrt_domain_register_pdo); fp@1715: EXPORT_SYMBOL(ecrt_domain_register_pdo_list); fp@1732: EXPORT_SYMBOL(ecrt_domain_register_pdo_range); fp@104: EXPORT_SYMBOL(ecrt_domain_process); fp@1739: EXPORT_SYMBOL(ecrt_domain_queue); fp@105: EXPORT_SYMBOL(ecrt_domain_state); fp@42: fp@199: /** \endcond */ fp@199: fp@199: /*****************************************************************************/