blob: 3b8478b9a562146092d7b77bedc1327282d67713 [file] [log] [blame]
adamdunkelseeb5edd2003-04-25 08:45:59 +00001/*
adamdunkels0a08fda2004-07-04 18:33:07 +00002 * Copyright (c) 2001-2004, Adam Dunkels.
adamdunkelseeb5edd2003-04-25 08:45:59 +00003 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
adamdunkels0a08fda2004-07-04 18:33:07 +000013 * 3. The name of the author may not be used to endorse or promote
adamdunkelseeb5edd2003-04-25 08:45:59 +000014 * products derived from this software without specific prior
15 * written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * This file is part of the uIP TCP/IP stack.
30 *
oliverschmidt2093e0e2005-01-26 23:56:10 +000031 * $Id: tfe-drv.c,v 1.15 2005/01/26 23:56:10 oliverschmidt Exp $
adamdunkelseeb5edd2003-04-25 08:45:59 +000032 *
33 */
34
adamdunkels0a08fda2004-07-04 18:33:07 +000035#include "packet-service.h"
adamdunkelseeb5edd2003-04-25 08:45:59 +000036
adamdunkelseeb5edd2003-04-25 08:45:59 +000037#include "cs8900a.h"
38
adamdunkels0a08fda2004-07-04 18:33:07 +000039#include "uip_arp.h"
adamdunkelseeb5edd2003-04-25 08:45:59 +000040
adamdunkels0a08fda2004-07-04 18:33:07 +000041static void output(u8_t *hdr, u16_t hdrlen, u8_t *data, u16_t datalen);
42
oliverschmidt2093e0e2005-01-26 23:56:10 +000043/* 00:0E:3A is the OUI of Cirrus Logic, 64:64:64 just means C64 */
adamdunkels0fbced42004-09-14 07:31:20 +000044static const struct uip_eth_addr addr =
oliverschmidt2093e0e2005-01-26 23:56:10 +000045 {{0x00,0x0e,0x3a,0x64,0x64,0x64}};
adamdunkels0fbced42004-09-14 07:31:20 +000046
adamdunkels0a08fda2004-07-04 18:33:07 +000047static const struct packet_service_state state =
48 {
49 PACKET_SERVICE_VERSION,
50 output
51 };
52
53EK_EVENTHANDLER(eventhandler, ev, data);
54EK_POLLHANDLER(pollhandler);
adamdunkels3081c222004-08-09 20:57:39 +000055EK_PROCESS(proc, PACKET_SERVICE_NAME ": TFE", EK_PRIO_NORMAL,
adamdunkels0a08fda2004-07-04 18:33:07 +000056 eventhandler, pollhandler, (void *)&state);
57
58/*---------------------------------------------------------------------------*/
adamdunkels7010ad52004-09-18 20:48:23 +000059LOADER_INIT_FUNC(tfe_drv_init, arg)
adamdunkels0a08fda2004-07-04 18:33:07 +000060{
61 arg_free(arg);
62 ek_service_start(PACKET_SERVICE_NAME, &proc);
63}
64/*---------------------------------------------------------------------------*/
65static void
66output(u8_t *hdr, u16_t hdrlen, u8_t *data, u16_t datalen)
67{
68 uip_arp_out();
69 cs8900a_send();
70}
71/*---------------------------------------------------------------------------*/
72EK_EVENTHANDLER(eventhandler, ev, data)
73{
74 switch(ev) {
75 case EK_EVENT_INIT:
adamdunkelsd273fa02004-09-09 21:49:17 +000076 case EK_EVENT_REPLACE:
adamdunkelsfb13fb22004-09-17 20:54:05 +000077 uip_setethaddr(addr);
adamdunkels0a08fda2004-07-04 18:33:07 +000078 cs8900a_init();
79 break;
80 case EK_EVENT_REQUEST_REPLACE:
81 ek_replace((struct ek_proc *)data, NULL);
82 LOADER_UNLOAD();
83 break;
84 case EK_EVENT_REQUEST_EXIT:
85 ek_exit();
86 LOADER_UNLOAD();
87 break;
88 default:
89 break;
90 }
91}
92/*---------------------------------------------------------------------------*/
93EK_POLLHANDLER(pollhandler)
94{
adamdunkelseeb5edd2003-04-25 08:45:59 +000095#define BUF ((struct uip_eth_hdr *)&uip_buf[0])
adamdunkels0a08fda2004-07-04 18:33:07 +000096
adamdunkelseeb5edd2003-04-25 08:45:59 +000097 /* Poll Ethernet device to see if there is a frame avaliable. */
98 uip_len = cs8900a_poll();
99 if(uip_len > 0) {
100 /* A frame was avaliable (and is now read into the uip_buf), so
adamdunkels0a08fda2004-07-04 18:33:07 +0000101 we process it. */
adamdunkelse4f18322003-08-20 20:35:33 +0000102 if(BUF->type == HTONS(UIP_ETHTYPE_IP)) {
adamdunkelseeb5edd2003-04-25 08:45:59 +0000103 uip_arp_ipin();
104 uip_len -= sizeof(struct uip_eth_hdr);
adamdunkels0a08fda2004-07-04 18:33:07 +0000105 tcpip_input();
adamdunkelse4f18322003-08-20 20:35:33 +0000106 } else if(BUF->type == HTONS(UIP_ETHTYPE_ARP)) {
adamdunkelseeb5edd2003-04-25 08:45:59 +0000107 uip_arp_arpin();
108 /* If the above function invocation resulted in data that
adamdunkels0a08fda2004-07-04 18:33:07 +0000109 should be sent out on the network, the global variable
110 uip_len is set to a value > 0. */
adamdunkelseeb5edd2003-04-25 08:45:59 +0000111 if(uip_len > 0) {
adamdunkels0a08fda2004-07-04 18:33:07 +0000112 cs8900a_send();
adamdunkelseeb5edd2003-04-25 08:45:59 +0000113 }
114 }
115 }
adamdunkelseeb5edd2003-04-25 08:45:59 +0000116
adamdunkelseeb5edd2003-04-25 08:45:59 +0000117}
adamdunkels0a08fda2004-07-04 18:33:07 +0000118/*---------------------------------------------------------------------------*/