fp@220: /****************************************************************************** fp@220: * fp@220: * m i n i . c fp@220: * fp@220: * Minimal module for EtherCAT. fp@220: * fp@220: * $Id$ fp@220: * fp@220: * Copyright (C) 2006 Florian Pose, Ingenieurgemeinschaft IgH fp@220: * fp@220: * This file is part of the IgH EtherCAT Master. fp@220: * fp@220: * The IgH EtherCAT Master is free software; you can redistribute it fp@220: * 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@220: * fp@220: * The IgH EtherCAT Master is distributed in the hope that it will be fp@220: * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of fp@220: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the fp@220: * GNU General Public License for more details. fp@220: * fp@220: * You should have received a copy of the GNU General Public License fp@220: * along with the IgH EtherCAT Master; if not, write to the Free Software fp@220: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA fp@220: * 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@220: *****************************************************************************/ fp@220: fp@220: #include fp@220: #include fp@220: #include fp@220: #include fp@220: #include fp@220: fp@223: #include "../../include/ecrt.h" // EtherCAT realtime interface fp@325: #include "../../include/ecdb.h" // EtherCAT slave database fp@220: fp@220: #define FREQUENCY 100 fp@220: fp@220: /*****************************************************************************/ fp@220: fp@220: struct timer_list timer; fp@220: fp@220: // EtherCAT fp@220: ec_master_t *master = NULL; fp@220: ec_domain_t *domain1 = NULL; fp@220: spinlock_t master_lock = SPIN_LOCK_UNLOCKED; fp@220: fp@220: // data fields fp@325: void *r_ana_out; fp@220: fp@220: // channels fp@220: uint32_t k_pos; fp@220: uint8_t k_stat; fp@220: fp@325: ec_pdo_reg_t domain1_pdos[] = { fp@348: {"2", Beckhoff_EL4132_Output1, &r_ana_out}, fp@348: {"3", Beckhoff_EL5001_Value, NULL}, fp@220: {} fp@220: }; fp@220: fp@220: /*****************************************************************************/ fp@220: fp@220: void run(unsigned long data) fp@220: { fp@220: static unsigned int counter = 0; fp@220: fp@220: spin_lock(&master_lock); fp@220: fp@220: // receive fp@325: ecrt_master_receive(master); fp@220: ecrt_domain_process(domain1); fp@220: fp@220: // process data fp@220: //k_pos = EC_READ_U32(r_ssi); fp@220: fp@220: // send fp@220: ecrt_master_run(master); fp@325: ecrt_master_send(master); fp@220: fp@220: spin_unlock(&master_lock); fp@220: fp@220: if (counter) { fp@220: counter--; fp@220: } fp@220: else { fp@220: counter = FREQUENCY; fp@325: //printk(KERN_INFO "input = "); fp@325: //for (i = 0; i < 22; i++) fp@325: // printk("%02X ", *((uint8_t *) r_kbus_in + i)); fp@325: //printk("\n"); fp@220: } fp@220: fp@220: // restart timer fp@220: timer.expires += HZ / FREQUENCY; fp@220: add_timer(&timer); fp@220: } fp@220: fp@220: /*****************************************************************************/ fp@220: fp@220: int request_lock(void *data) fp@220: { fp@226: spin_lock_bh(&master_lock); fp@226: return 0; // access allowed fp@220: } fp@220: fp@220: /*****************************************************************************/ fp@220: fp@220: void release_lock(void *data) fp@220: { fp@226: spin_unlock_bh(&master_lock); fp@220: } fp@220: fp@220: /*****************************************************************************/ fp@220: fp@220: int __init init_mini_module(void) fp@220: { fp@329: ec_slave_t *slave; fp@329: fp@220: printk(KERN_INFO "=== Starting Minimal EtherCAT environment... ===\n"); fp@220: fp@220: if ((master = ecrt_request_master(0)) == NULL) { fp@220: printk(KERN_ERR "Requesting master 0 failed!\n"); fp@220: goto out_return; fp@220: } fp@220: fp@220: ecrt_master_callbacks(master, request_lock, release_lock, NULL); fp@220: fp@220: printk(KERN_INFO "Registering domain...\n"); fp@220: if (!(domain1 = ecrt_master_create_domain(master))) fp@220: { fp@220: printk(KERN_ERR "Domain creation failed!\n"); fp@220: goto out_release_master; fp@220: } fp@220: fp@325: printk(KERN_INFO "Registering PDOs...\n"); fp@325: if (ecrt_domain_register_pdo_list(domain1, domain1_pdos)) { fp@325: printk(KERN_ERR "PDO registration failed!\n"); fp@220: goto out_release_master; fp@220: } fp@220: fp@348: if (!(slave = ecrt_master_get_slave(master, "3"))) fp@329: goto out_release_master; fp@329: fp@329: if (ecrt_slave_conf_sdo8(slave, 0x4061, 1, 0)) fp@329: goto out_release_master; fp@329: fp@220: printk(KERN_INFO "Activating master...\n"); fp@220: if (ecrt_master_activate(master)) { fp@220: printk(KERN_ERR "Failed to activate master!\n"); fp@220: goto out_release_master; fp@220: } fp@220: fp@325: ecrt_master_prepare(master); fp@220: fp@220: printk("Starting cyclic sample thread.\n"); fp@220: init_timer(&timer); fp@220: timer.function = run; fp@220: timer.expires = jiffies + 10; fp@220: add_timer(&timer); fp@220: fp@220: printk(KERN_INFO "=== Minimal EtherCAT environment started. ===\n"); fp@220: return 0; fp@220: fp@220: out_release_master: fp@220: ecrt_release_master(master); fp@220: out_return: fp@220: return -1; fp@220: } fp@220: fp@220: /*****************************************************************************/ fp@220: fp@220: void __exit cleanup_mini_module(void) fp@220: { fp@220: printk(KERN_INFO "=== Stopping Minimal EtherCAT environment... ===\n"); fp@220: fp@220: if (master) { fp@220: del_timer_sync(&timer); fp@220: printk(KERN_INFO "Deactivating master...\n"); fp@220: ecrt_master_deactivate(master); fp@220: ecrt_release_master(master); fp@220: } fp@220: fp@220: printk(KERN_INFO "=== Minimal EtherCAT environment stopped. ===\n"); fp@220: } fp@220: fp@220: /*****************************************************************************/ fp@220: fp@220: MODULE_LICENSE("GPL"); fp@220: MODULE_AUTHOR ("Florian Pose "); fp@220: MODULE_DESCRIPTION ("EtherCAT minimal test environment"); fp@220: fp@220: module_init(init_mini_module); fp@220: module_exit(cleanup_mini_module); fp@220: fp@220: /*****************************************************************************/ fp@220: