examples/tty/tty.c
changeset 1567 1babaa430b7b
parent 1513 60ca68d853b8
child 1573 74bf584564b8
equal deleted inserted replaced
1566:d21470725798 1567:1babaa430b7b
       
     1 /******************************************************************************
       
     2  *
       
     3  *  $Id$
       
     4  *
       
     5  *  Copyright (C) 2006-2008  Florian Pose, Ingenieurgemeinschaft IgH
       
     6  *
       
     7  *  This file is part of the IgH EtherCAT Master.
       
     8  *
       
     9  *  The IgH EtherCAT Master is free software; you can redistribute it and/or
       
    10  *  modify it under the terms of the GNU General Public License version 2, as
       
    11  *  published by the Free Software Foundation.
       
    12  *
       
    13  *  The IgH EtherCAT Master is distributed in the hope that it will be useful,
       
    14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
       
    16  *  Public License for more details.
       
    17  *
       
    18  *  You should have received a copy of the GNU General Public License along
       
    19  *  with the IgH EtherCAT Master; if not, write to the Free Software
       
    20  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
       
    21  *
       
    22  *  ---
       
    23  *
       
    24  *  The license mentioned above concerns the source code only. Using the
       
    25  *  EtherCAT technology and brand is only permitted in compliance with the
       
    26  *  industrial property and similar rights of Beckhoff Automation GmbH.
       
    27  *
       
    28  *****************************************************************************/
       
    29 
       
    30 #include <linux/version.h>
       
    31 #include <linux/module.h>
       
    32 #include <linux/timer.h>
       
    33 #include <linux/interrupt.h>
       
    34 #include <linux/err.h>
       
    35 
       
    36 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
       
    37 #include <linux/semaphore.h>
       
    38 #else
       
    39 #include <asm/semaphore.h>
       
    40 #endif
       
    41 
       
    42 #include "../../include/ecrt.h" // EtherCAT realtime interface
       
    43 
       
    44 /*****************************************************************************/
       
    45 
       
    46 // Module parameters
       
    47 #define FREQUENCY 100
       
    48 
       
    49 // Optional features
       
    50 
       
    51 #define PFX "ec_tty_example: "
       
    52 
       
    53 /*****************************************************************************/
       
    54 
       
    55 // EtherCAT
       
    56 static ec_master_t *master = NULL;
       
    57 static ec_master_state_t master_state = {};
       
    58 struct semaphore master_sem;
       
    59 
       
    60 static ec_domain_t *domain1 = NULL;
       
    61 static ec_domain_state_t domain1_state = {};
       
    62 
       
    63 // Timer
       
    64 static struct timer_list timer;
       
    65 
       
    66 /*****************************************************************************/
       
    67 
       
    68 // process data
       
    69 static uint8_t *domain1_pd; // process data memory
       
    70 
       
    71 #define BusCouplerPos  0, 0
       
    72 #define SerialPos      0, 1
       
    73 
       
    74 #define Beckhoff_EK1100 0x00000002, 0x044c2c52
       
    75 #define Beckhoff_EL6002 0x00000002, 0x17723052
       
    76 
       
    77 // offsets for PDO entries
       
    78 static unsigned int off_ctrl;
       
    79 static unsigned int off_tx;
       
    80 static unsigned int off_status;
       
    81 static unsigned int off_rx;
       
    82 
       
    83 const static ec_pdo_entry_reg_t domain1_regs[] = {
       
    84     {SerialPos,  Beckhoff_EL6002, 0x7001, 0x01, &off_ctrl},
       
    85     {SerialPos,  Beckhoff_EL6002, 0x7000, 0x11, &off_tx},
       
    86     {SerialPos,  Beckhoff_EL6002, 0x6001, 0x01, &off_status},
       
    87     {SerialPos,  Beckhoff_EL6002, 0x6000, 0x11, &off_rx},
       
    88     {}
       
    89 };
       
    90 
       
    91 static unsigned int counter = 0;
       
    92 
       
    93 typedef enum {
       
    94     SER_REQUEST_INIT,
       
    95     SER_WAIT_FOR_INIT_RESPONSE,
       
    96     SER_READY
       
    97 } serial_state_t;
       
    98 
       
    99 typedef struct {
       
   100     size_t max_tx_data_size;
       
   101     size_t max_rx_data_size;
       
   102 
       
   103     uint8_t *tx_data;
       
   104     uint8_t tx_data_size;
       
   105 
       
   106     serial_state_t state;
       
   107 
       
   108     uint8_t tx_request_toggle;
       
   109     uint8_t tx_accepted_toggle;
       
   110 
       
   111     uint8_t rx_request_toggle;
       
   112     uint8_t rx_accepted_toggle;
       
   113 
       
   114     uint16_t control;
       
   115 } serial_device_t;
       
   116 
       
   117 static serial_device_t *ser = NULL;
       
   118 static char tx_data[] = "ATZ\r\n";
       
   119 static off_t tx_off = 0;
       
   120         
       
   121 /*****************************************************************************/
       
   122 
       
   123 /* Slave 1, "EL6002"
       
   124  * Vendor ID:       0x00000002
       
   125  * Product code:    0x17723052
       
   126  * Revision number: 0x00100000
       
   127  */
       
   128 
       
   129 ec_pdo_entry_info_t slave_1_pdo_entries[] = {
       
   130    {0x7001, 0x01, 16}, /* Ctrl */
       
   131    {0x7000, 0x11, 8}, /* Data Out 0 */
       
   132    {0x7000, 0x12, 8}, /* Data Out 1 */
       
   133    {0x7000, 0x13, 8}, /* Data Out 2 */
       
   134    {0x7000, 0x14, 8}, /* Data Out 3 */
       
   135    {0x7000, 0x15, 8}, /* Data Out 4 */
       
   136    {0x7000, 0x16, 8}, /* Data Out 5 */
       
   137    {0x7000, 0x17, 8}, /* Data Out 6 */
       
   138    {0x7000, 0x18, 8}, /* Data Out 7 */
       
   139    {0x7000, 0x19, 8}, /* Data Out 8 */
       
   140    {0x7000, 0x1a, 8}, /* Data Out 9 */
       
   141    {0x7000, 0x1b, 8}, /* Data Out 10 */
       
   142    {0x7000, 0x1c, 8}, /* Data Out 11 */
       
   143    {0x7000, 0x1d, 8}, /* Data Out 12 */
       
   144    {0x7000, 0x1e, 8}, /* Data Out 13 */
       
   145    {0x7000, 0x1f, 8}, /* Data Out 14 */
       
   146    {0x7000, 0x20, 8}, /* Data Out 15 */
       
   147    {0x7000, 0x21, 8}, /* Data Out 16 */
       
   148    {0x7000, 0x22, 8}, /* Data Out 17 */
       
   149    {0x7000, 0x23, 8}, /* Data Out 18 */
       
   150    {0x7000, 0x24, 8}, /* Data Out 19 */
       
   151    {0x7000, 0x25, 8}, /* Data Out 20 */
       
   152    {0x7000, 0x26, 8}, /* Data Out 21 */
       
   153    {0x7011, 0x01, 16}, /* Ctrl */
       
   154    {0x7010, 0x11, 8}, /* Data Out 0 */
       
   155    {0x7010, 0x12, 8}, /* Data Out 1 */
       
   156    {0x7010, 0x13, 8}, /* Data Out 2 */
       
   157    {0x7010, 0x14, 8}, /* Data Out 3 */
       
   158    {0x7010, 0x15, 8}, /* Data Out 4 */
       
   159    {0x7010, 0x16, 8}, /* Data Out 5 */
       
   160    {0x7010, 0x17, 8}, /* Data Out 6 */
       
   161    {0x7010, 0x18, 8}, /* Data Out 7 */
       
   162    {0x7010, 0x19, 8}, /* Data Out 8 */
       
   163    {0x7010, 0x1a, 8}, /* Data Out 9 */
       
   164    {0x7010, 0x1b, 8}, /* Data Out 10 */
       
   165    {0x7010, 0x1c, 8}, /* Data Out 11 */
       
   166    {0x7010, 0x1d, 8}, /* Data Out 12 */
       
   167    {0x7010, 0x1e, 8}, /* Data Out 13 */
       
   168    {0x7010, 0x1f, 8}, /* Data Out 14 */
       
   169    {0x7010, 0x20, 8}, /* Data Out 15 */
       
   170    {0x7010, 0x21, 8}, /* Data Out 16 */
       
   171    {0x7010, 0x22, 8}, /* Data Out 17 */
       
   172    {0x7010, 0x23, 8}, /* Data Out 18 */
       
   173    {0x7010, 0x24, 8}, /* Data Out 19 */
       
   174    {0x7010, 0x25, 8}, /* Data Out 20 */
       
   175    {0x7010, 0x26, 8}, /* Data Out 21 */
       
   176    {0x6001, 0x01, 16}, /* Status */
       
   177    {0x6000, 0x11, 8}, /* Data In 0 */
       
   178    {0x6000, 0x12, 8}, /* Data In 1 */
       
   179    {0x6000, 0x13, 8}, /* Data In 2 */
       
   180    {0x6000, 0x14, 8}, /* Data In 3 */
       
   181    {0x6000, 0x15, 8}, /* Data In 4 */
       
   182    {0x6000, 0x16, 8}, /* Data In 5 */
       
   183    {0x6000, 0x17, 8}, /* Data In 6 */
       
   184    {0x6000, 0x18, 8}, /* Data In 7 */
       
   185    {0x6000, 0x19, 8}, /* Data In 8 */
       
   186    {0x6000, 0x1a, 8}, /* Data In 9 */
       
   187    {0x6000, 0x1b, 8}, /* Data In 10 */
       
   188    {0x6000, 0x1c, 8}, /* Data In 11 */
       
   189    {0x6000, 0x1d, 8}, /* Data In 12 */
       
   190    {0x6000, 0x1e, 8}, /* Data In 13 */
       
   191    {0x6000, 0x1f, 8}, /* Data In 14 */
       
   192    {0x6000, 0x20, 8}, /* Data In 15 */
       
   193    {0x6000, 0x21, 8}, /* Data In 16 */
       
   194    {0x6000, 0x22, 8}, /* Data In 17 */
       
   195    {0x6000, 0x23, 8}, /* Data In 18 */
       
   196    {0x6000, 0x24, 8}, /* Data In 19 */
       
   197    {0x6000, 0x25, 8}, /* Data In 20 */
       
   198    {0x6000, 0x26, 8}, /* Data In 21 */
       
   199    {0x6011, 0x01, 16}, /* Status */
       
   200    {0x6010, 0x11, 8}, /* Data In 0 */
       
   201    {0x6010, 0x12, 8}, /* Data In 1 */
       
   202    {0x6010, 0x13, 8}, /* Data In 2 */
       
   203    {0x6010, 0x14, 8}, /* Data In 3 */
       
   204    {0x6010, 0x15, 8}, /* Data In 4 */
       
   205    {0x6010, 0x16, 8}, /* Data In 5 */
       
   206    {0x6010, 0x17, 8}, /* Data In 6 */
       
   207    {0x6010, 0x18, 8}, /* Data In 7 */
       
   208    {0x6010, 0x19, 8}, /* Data In 8 */
       
   209    {0x6010, 0x1a, 8}, /* Data In 9 */
       
   210    {0x6010, 0x1b, 8}, /* Data In 10 */
       
   211    {0x6010, 0x1c, 8}, /* Data In 11 */
       
   212    {0x6010, 0x1d, 8}, /* Data In 12 */
       
   213    {0x6010, 0x1e, 8}, /* Data In 13 */
       
   214    {0x6010, 0x1f, 8}, /* Data In 14 */
       
   215    {0x6010, 0x20, 8}, /* Data In 15 */
       
   216    {0x6010, 0x21, 8}, /* Data In 16 */
       
   217    {0x6010, 0x22, 8}, /* Data In 17 */
       
   218    {0x6010, 0x23, 8}, /* Data In 18 */
       
   219    {0x6010, 0x24, 8}, /* Data In 19 */
       
   220    {0x6010, 0x25, 8}, /* Data In 20 */
       
   221    {0x6010, 0x26, 8}, /* Data In 21 */
       
   222 };
       
   223 
       
   224 ec_pdo_info_t slave_1_pdos[] = {
       
   225    {0x1604, 23, slave_1_pdo_entries + 0}, /* COM RxPDO-Map Outputs Ch.1 */
       
   226    {0x1605, 23, slave_1_pdo_entries + 23}, /* COM RxPDO-Map Outputs Ch.2 */
       
   227    {0x1a04, 23, slave_1_pdo_entries + 46}, /* COM TxPDO-Map Inputs Ch.1 */
       
   228    {0x1a05, 23, slave_1_pdo_entries + 69}, /* COM TxPDO-Map Inputs Ch.2 */
       
   229 };
       
   230 
       
   231 ec_sync_info_t slave_1_syncs[] = {
       
   232    {0, EC_DIR_OUTPUT, 0, NULL, EC_WD_DISABLE},
       
   233    {1, EC_DIR_INPUT, 0, NULL, EC_WD_DISABLE},
       
   234    {2, EC_DIR_OUTPUT, 2, slave_1_pdos + 0, EC_WD_DISABLE},
       
   235    {3, EC_DIR_INPUT, 2, slave_1_pdos + 2, EC_WD_DISABLE},
       
   236    {0xff}
       
   237 };
       
   238 
       
   239 /****************************************************************************/
       
   240 
       
   241 int serial_init(serial_device_t *ser, size_t max_tx, size_t max_rx)
       
   242 {
       
   243     ser->max_tx_data_size = max_tx;
       
   244     ser->max_rx_data_size = max_rx;
       
   245     ser->tx_data = NULL;
       
   246     ser->tx_data_size = 0;
       
   247     ser->state = SER_REQUEST_INIT;
       
   248     ser->tx_request_toggle = 0;
       
   249     ser->rx_accepted_toggle = 0;
       
   250     ser->control = 0x0000;
       
   251 
       
   252     if (max_tx > 0) {
       
   253         ser->tx_data = kmalloc(max_tx, GFP_KERNEL);
       
   254         if (ser->tx_data == NULL) {
       
   255             return -ENOMEM;
       
   256         }
       
   257     }
       
   258 
       
   259     return 0;
       
   260 }
       
   261 
       
   262 /****************************************************************************/
       
   263 
       
   264 void serial_clear(serial_device_t *ser)
       
   265 {
       
   266     if (ser->tx_data) {
       
   267         kfree(ser->tx_data);
       
   268     }
       
   269 }
       
   270 
       
   271 /****************************************************************************/
       
   272 
       
   273 void serial_run(serial_device_t *ser, uint16_t status, uint8_t *rx_data)
       
   274 {
       
   275     uint8_t tx_accepted_toggle, rx_request_toggle;
       
   276 
       
   277     switch (ser->state) {
       
   278         case SER_READY:
       
   279 
       
   280             /* Send data */
       
   281             
       
   282             tx_accepted_toggle = status & 0x0001;
       
   283             if (tx_accepted_toggle != ser->tx_accepted_toggle) { // ready
       
   284                 // send new data
       
   285                 size_t rem = sizeof(tx_data) - tx_off;
       
   286                 if (rem > 0) {
       
   287                     if (rem < ser->max_tx_data_size) {
       
   288                         ser->tx_data_size = rem;
       
   289                     } else {
       
   290                         ser->tx_data_size = ser->max_tx_data_size;
       
   291                     }
       
   292                     printk(KERN_INFO PFX "Sending %u bytes.\n", ser->tx_data_size);
       
   293                     memcpy(ser->tx_data, tx_data, ser->tx_data_size);
       
   294                     tx_off += ser->tx_data_size;
       
   295                     ser->tx_request_toggle = !ser->tx_request_toggle;
       
   296                     ser->tx_accepted_toggle = tx_accepted_toggle;
       
   297                 }
       
   298             }
       
   299 
       
   300             /* Receive data */
       
   301 
       
   302             rx_request_toggle = status & 0x0002;
       
   303             if (rx_request_toggle != ser->rx_request_toggle) {
       
   304                 uint8_t rx_data_size = status >> 8, i;
       
   305                 ser->rx_request_toggle = rx_request_toggle;
       
   306                 printk(KERN_INFO PFX "Received %u bytes:\n", rx_data_size);
       
   307                 for (i = 0; i < rx_data_size; i++) {
       
   308                     printk(KERN_INFO PFX "%02x\n", rx_data[i]);
       
   309                 }
       
   310                 ser->rx_accepted_toggle = !ser->rx_accepted_toggle;
       
   311             }
       
   312 
       
   313             ser->control =
       
   314                 ser->tx_request_toggle |
       
   315                 ser->rx_accepted_toggle << 1 |
       
   316                 ser->tx_data_size << 8;
       
   317             break;
       
   318 
       
   319         case SER_REQUEST_INIT:
       
   320             if (status & (1 << 2)) {
       
   321                 ser->control = 0x0000;
       
   322                 ser->state = SER_WAIT_FOR_INIT_RESPONSE;
       
   323             } else {
       
   324                 ser->control = 1 << 2; // CW.2, request initialization
       
   325             }
       
   326             break;
       
   327 
       
   328         case SER_WAIT_FOR_INIT_RESPONSE:
       
   329             if (!(status & (1 << 2))) {
       
   330                 printk(KERN_INFO PFX "Init successful.\n");
       
   331                 ser->tx_accepted_toggle = 1;
       
   332                 ser->control = 0x0000;
       
   333                 ser->state = SER_READY;
       
   334             }
       
   335             break;
       
   336     }
       
   337 
       
   338 }
       
   339 
       
   340 /*****************************************************************************/
       
   341 
       
   342 void check_domain1_state(void)
       
   343 {
       
   344     ec_domain_state_t ds;
       
   345 
       
   346     down(&master_sem);
       
   347     ecrt_domain_state(domain1, &ds);
       
   348     up(&master_sem);
       
   349 
       
   350     if (ds.working_counter != domain1_state.working_counter)
       
   351         printk(KERN_INFO PFX "Domain1: WC %u.\n", ds.working_counter);
       
   352     if (ds.wc_state != domain1_state.wc_state)
       
   353         printk(KERN_INFO PFX "Domain1: State %u.\n", ds.wc_state);
       
   354 
       
   355     domain1_state = ds;
       
   356 }
       
   357 
       
   358 /*****************************************************************************/
       
   359 
       
   360 void check_master_state(void)
       
   361 {
       
   362     ec_master_state_t ms;
       
   363 
       
   364     down(&master_sem);
       
   365     ecrt_master_state(master, &ms);
       
   366     up(&master_sem);
       
   367 
       
   368     if (ms.slaves_responding != master_state.slaves_responding)
       
   369         printk(KERN_INFO PFX "%u slave(s).\n", ms.slaves_responding);
       
   370     if (ms.al_states != master_state.al_states)
       
   371         printk(KERN_INFO PFX "AL states: 0x%02X.\n", ms.al_states);
       
   372     if (ms.link_up != master_state.link_up)
       
   373         printk(KERN_INFO PFX "Link is %s.\n", ms.link_up ? "up" : "down");
       
   374 
       
   375     master_state = ms;
       
   376 }
       
   377 
       
   378 /*****************************************************************************/
       
   379 
       
   380 void cyclic_task(unsigned long data)
       
   381 {
       
   382     // receive process data
       
   383     down(&master_sem);
       
   384     ecrt_master_receive(master);
       
   385     ecrt_domain_process(domain1);
       
   386     up(&master_sem);
       
   387 
       
   388     // check process data state (optional)
       
   389     check_domain1_state();
       
   390 
       
   391     if (counter) {
       
   392         counter--;
       
   393     } else { // do this at 1 Hz
       
   394         counter = FREQUENCY;
       
   395 
       
   396         // check for master state (optional)
       
   397         check_master_state();
       
   398 
       
   399         tx_off = 0;
       
   400     }
       
   401 
       
   402     serial_run(ser, EC_READ_U16(domain1_pd + off_status), domain1_pd + off_rx);
       
   403     EC_WRITE_U16(domain1_pd + off_ctrl, ser->control);
       
   404     memcpy(domain1_pd + off_tx, ser->tx_data, 22);
       
   405 
       
   406     // send process data
       
   407     down(&master_sem);
       
   408     ecrt_domain_queue(domain1);
       
   409     ecrt_master_send(master);
       
   410     up(&master_sem);
       
   411 
       
   412     // restart timer
       
   413     timer.expires += HZ / FREQUENCY;
       
   414     add_timer(&timer);
       
   415 }
       
   416 
       
   417 /*****************************************************************************/
       
   418 
       
   419 void send_callback(void *cb_data)
       
   420 {
       
   421     ec_master_t *m = (ec_master_t *) cb_data;
       
   422     down(&master_sem);
       
   423     ecrt_master_send_ext(m);
       
   424     up(&master_sem);
       
   425 }
       
   426 
       
   427 /*****************************************************************************/
       
   428 
       
   429 void receive_callback(void *cb_data)
       
   430 {
       
   431     ec_master_t *m = (ec_master_t *) cb_data;
       
   432     down(&master_sem);
       
   433     ecrt_master_receive(m);
       
   434     up(&master_sem);
       
   435 }
       
   436 
       
   437 /*****************************************************************************/
       
   438 
       
   439 int __init init_mini_module(void)
       
   440 {
       
   441     int ret = -1;
       
   442     ec_slave_config_t *sc;
       
   443     
       
   444     printk(KERN_INFO PFX "Starting...\n");
       
   445 
       
   446     ser = kmalloc(sizeof(*ser), GFP_KERNEL);
       
   447     if (ser == NULL) {
       
   448         printk(KERN_ERR PFX "Failed to allocate serial device object.\n");
       
   449         return -ENOMEM;
       
   450     }
       
   451     ret = serial_init(ser, 22, 22);
       
   452     if (ret) {
       
   453         printk(KERN_ERR PFX "Failed to init serial device object.\n");
       
   454         return ret;
       
   455     }
       
   456     
       
   457     master = ecrt_request_master(0);
       
   458     if (!master) {
       
   459         ret = -EBUSY; 
       
   460         printk(KERN_ERR PFX "Requesting master 0 failed.\n");
       
   461         goto out_return;
       
   462     }
       
   463 
       
   464     init_MUTEX(&master_sem);
       
   465     ecrt_master_callbacks(master, send_callback, receive_callback, master);
       
   466 
       
   467     printk(KERN_INFO PFX "Registering domain...\n");
       
   468     if (!(domain1 = ecrt_master_create_domain(master))) {
       
   469         printk(KERN_ERR PFX "Domain creation failed!\n");
       
   470         goto out_release_master;
       
   471     }
       
   472 
       
   473     // Create configuration for bus coupler
       
   474     sc = ecrt_master_slave_config(master, BusCouplerPos, Beckhoff_EK1100);
       
   475     if (!sc)
       
   476         return -1;
       
   477 
       
   478     if (!(sc = ecrt_master_slave_config(
       
   479                     master, SerialPos, Beckhoff_EL6002))) {
       
   480         printk(KERN_ERR PFX "Failed to get slave configuration.\n");
       
   481         return -1;
       
   482     }
       
   483 
       
   484     printk("Configuring PDOs...\n");
       
   485     if (ecrt_slave_config_pdos(sc, EC_END, slave_1_syncs)) {
       
   486         printk(KERN_ERR PFX "Failed to configure PDOs.\n");
       
   487         return -1;
       
   488     }
       
   489 
       
   490     if (ecrt_domain_reg_pdo_entry_list(domain1, domain1_regs)) {
       
   491         printk(KERN_ERR PFX "PDO entry registration failed!\n");
       
   492         return -1;
       
   493     }
       
   494 
       
   495     printk(KERN_INFO PFX "Activating master...\n");
       
   496     if (ecrt_master_activate(master)) {
       
   497         printk(KERN_ERR PFX "Failed to activate master!\n");
       
   498         goto out_release_master;
       
   499     }
       
   500 
       
   501     // Get internal process data for domain
       
   502     domain1_pd = ecrt_domain_data(domain1);
       
   503 
       
   504     printk(KERN_INFO PFX "Starting cyclic sample thread.\n");
       
   505     init_timer(&timer);
       
   506     timer.function = cyclic_task;
       
   507     timer.expires = jiffies + 10;
       
   508     add_timer(&timer);
       
   509 
       
   510     printk(KERN_INFO PFX "Started.\n");
       
   511     return 0;
       
   512 
       
   513 out_release_master:
       
   514     printk(KERN_ERR PFX "Releasing master...\n");
       
   515     ecrt_release_master(master);
       
   516 out_return:
       
   517     printk(KERN_ERR PFX "Failed to load. Aborting.\n");
       
   518     return ret;
       
   519 }
       
   520 
       
   521 /*****************************************************************************/
       
   522 
       
   523 void __exit cleanup_mini_module(void)
       
   524 {
       
   525     printk(KERN_INFO PFX "Stopping...\n");
       
   526 
       
   527     del_timer_sync(&timer);
       
   528 
       
   529     printk(KERN_INFO PFX "Releasing master...\n");
       
   530     ecrt_release_master(master);
       
   531 
       
   532     printk(KERN_INFO PFX "Unloading.\n");
       
   533 }
       
   534 
       
   535 /*****************************************************************************/
       
   536 
       
   537 MODULE_LICENSE("GPL");
       
   538 MODULE_AUTHOR("Florian Pose <fp@igh-essen.com>");
       
   539 MODULE_DESCRIPTION("EtherCAT minimal test environment");
       
   540 
       
   541 module_init(init_mini_module);
       
   542 module_exit(cleanup_mini_module);
       
   543 
       
   544 /*****************************************************************************/