ethernet.c
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #include <modload.h>
00037
00038 #include "contiki-net.h"
00039 #include "cfs/cfs.h"
00040 #include "sys/log.h"
00041 #include "lib/error.h"
00042 #include "net/ethernet-drv.h"
00043
00044 #include "net/ethernet.h"
00045
00046 struct {
00047 char signature[4];
00048 struct uip_eth_addr ethernet_address;
00049 u8_t *buffer;
00050 u16_t buffer_size;
00051 void __fastcall__ (* init)(u16_t reg);
00052 u16_t (* poll)(void);
00053 void __fastcall__ (* send)(u16_t len);
00054 void (* exit)(void);
00055 } *module;
00056
00057
00058 void CC_FASTCALL
00059 ethernet_init(struct ethernet_config *config)
00060 {
00061 static const char signature[4] = {0x65, 0x74, 0x68, 0x01};
00062
00063 #ifndef ETHERNET
00064
00065 struct mod_ctrl module_control = {cfs_read};
00066 u8_t byte;
00067
00068 module_control.callerdata = cfs_open(config->name, CFS_READ);
00069 if(module_control.callerdata < 0) {
00070 log_message(config->name, ": File not found");
00071 error_exit();
00072 }
00073
00074 byte = mod_load(&module_control);
00075 if(byte != MLOAD_OK) {
00076 log_message(config->name, byte == MLOAD_ERR_MEM? ": Out of memory":
00077 ": No module");
00078 error_exit();
00079 }
00080
00081 cfs_close(module_control.callerdata);
00082 module = module_control.module;
00083
00084 for(byte = 0; byte < 4; ++byte) {
00085 if(module->signature[byte] != signature[byte]) {
00086 log_message(config->name, ": No ETH driver");
00087 error_exit();
00088 }
00089 }
00090
00091 #else
00092
00093 extern void ETHERNET;
00094
00095 module = ÐERNET;
00096
00097 #endif
00098
00099 module->buffer = uip_buf;
00100 module->buffer_size = UIP_BUFSIZE;
00101 module->init(config->addr);
00102
00103 uip_setethaddr(module->ethernet_address);
00104 }
00105
00106 u16_t
00107 ethernet_poll(void)
00108 {
00109 return module->poll();
00110 }
00111
00112 void
00113 ethernet_send(void)
00114 {
00115 module->send(uip_len);
00116 }
00117
00118 void
00119 ethernet_exit(void)
00120 {
00121 module->exit();
00122
00123 #ifndef ETHERNET
00124 mod_free(module);
00125 #endif
00126 }
00127