blob: 6994e2b29c2c25db0f70b97458816e5b0579fb83 [file] [log] [blame]
adamdunkelscd499282003-07-30 22:40:36 +00001/*
adamdunkels0a08fda2004-07-04 18:33:07 +00002 * Copyright (c) 2001-2004, Adam Dunkels.
adamdunkelscd499282003-07-30 22:40:36 +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
adamdunkelscd499282003-07-30 22:40:36 +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 *
adamdunkels0fbced42004-09-14 07:31:20 +000031 * $Id: rrnet-drv.c,v 1.10 2004/09/14 07:31:20 adamdunkels Exp $
adamdunkelscd499282003-07-30 22:40:36 +000032 *
33 */
34
adamdunkels0a08fda2004-07-04 18:33:07 +000035#include "packet-service.h"
adamdunkelscd499282003-07-30 22:40:36 +000036
adamdunkelscd499282003-07-30 22:40:36 +000037#include "cs8900a.h"
38
adamdunkels0a08fda2004-07-04 18:33:07 +000039#include "uip_arp.h"
adamdunkelscd499282003-07-30 22:40:36 +000040
adamdunkels0a08fda2004-07-04 18:33:07 +000041static void output(u8_t *hdr, u16_t hdrlen, u8_t *data, u16_t datalen);
adamdunkelscd499282003-07-30 22:40:36 +000042
adamdunkels0fbced42004-09-14 07:31:20 +000043static const struct uip_eth_addr addr =
44 {{0x00,0x00,0x00,0x64,0x64,0x64}};
45
adamdunkels0a08fda2004-07-04 18:33:07 +000046static const struct packet_service_state state =
47 {
48 PACKET_SERVICE_VERSION,
49 output
50 };
adamdunkelscd499282003-07-30 22:40:36 +000051
adamdunkels0a08fda2004-07-04 18:33:07 +000052EK_EVENTHANDLER(eventhandler, ev, data);
53EK_POLLHANDLER(pollhandler);
adamdunkels3081c222004-08-09 20:57:39 +000054EK_PROCESS(proc, PACKET_SERVICE_NAME ": RR-net", EK_PRIO_NORMAL,
adamdunkels0a08fda2004-07-04 18:33:07 +000055 eventhandler, pollhandler, (void *)&state);
adamdunkelscd499282003-07-30 22:40:36 +000056
adamdunkels0a08fda2004-07-04 18:33:07 +000057/*---------------------------------------------------------------------------*/
58LOADER_INIT_FUNC(tapdev_service_init, arg)
adamdunkelscd499282003-07-30 22:40:36 +000059{
adamdunkels7cde6092003-08-24 22:35:22 +000060 arg_free(arg);
adamdunkels0a08fda2004-07-04 18:33:07 +000061 ek_service_start(PACKET_SERVICE_NAME, &proc);
62}
63/*---------------------------------------------------------------------------*/
64static void
65output(u8_t *hdr, u16_t hdrlen, u8_t *data, u16_t datalen)
66{
67 uip_arp_out();
68 cs8900a_send();
69}
70/*---------------------------------------------------------------------------*/
oliverschmidta8240ea2004-07-18 13:19:47 +000071#pragma optimize(push, off)
adamdunkels0a08fda2004-07-04 18:33:07 +000072EK_EVENTHANDLER(eventhandler, ev, data)
73{
74 switch(ev) {
75 case EK_EVENT_INIT:
adamdunkels0fbced42004-09-14 07:31:20 +000076 uip_setethaddr(&addr);
adamdunkelscd499282003-07-30 22:40:36 +000077 asm("lda #1");
78 asm("ora $de01");
79 asm("sta $de01");
80 cs8900a_init();
adamdunkels0a08fda2004-07-04 18:33:07 +000081 break;
82 case EK_EVENT_REQUEST_REPLACE:
83 ek_replace((struct ek_proc *)data, NULL);
84 LOADER_UNLOAD();
85 break;
86 case EK_EVENT_REQUEST_EXIT:
87 ek_exit();
88 LOADER_UNLOAD();
89 break;
90 default:
91 break;
adamdunkelscd499282003-07-30 22:40:36 +000092 }
93}
oliverschmidta8240ea2004-07-18 13:19:47 +000094#pragma optimize(pop)
adamdunkels0a08fda2004-07-04 18:33:07 +000095/*---------------------------------------------------------------------------*/
96EK_POLLHANDLER(pollhandler)
adamdunkelscd499282003-07-30 22:40:36 +000097{
adamdunkels0a08fda2004-07-04 18:33:07 +000098#define BUF ((struct uip_eth_hdr *)&uip_buf[0])
99
100 /* Poll Ethernet device to see if there is a frame avaliable. */
101 uip_len = cs8900a_poll();
102 if(uip_len > 0) {
103 /* A frame was avaliable (and is now read into the uip_buf), so
104 we process it. */
105 if(BUF->type == HTONS(UIP_ETHTYPE_IP)) {
106 uip_arp_ipin();
107 uip_len -= sizeof(struct uip_eth_hdr);
108 tcpip_input();
109 } else if(BUF->type == HTONS(UIP_ETHTYPE_ARP)) {
110 uip_arp_arpin();
111 /* If the above function invocation resulted in data that
112 should be sent out on the network, the global variable
113 uip_len is set to a value > 0. */
114 if(uip_len > 0) {
115 cs8900a_send();
116 }
117 }
adamdunkelscd499282003-07-30 22:40:36 +0000118 }
adamdunkels0a08fda2004-07-04 18:33:07 +0000119
adamdunkelscd499282003-07-30 22:40:36 +0000120}
adamdunkels0a08fda2004-07-04 18:33:07 +0000121/*---------------------------------------------------------------------------*/