blob: 0d800ca26b4cf2a5e7bef797e502f562458fa576 [file] [log] [blame]
kthacker6de67752006-04-17 15:02:26 +00001/*
2 * Copyright (c) 2001-2004, Adam Dunkels.
3 * 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.
13 * 3. The name of the author may not be used to endorse or promote
14 * 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 *
31 * $Id: rrnet-drv.c,v 1.1 2006/04/17 15:02:40 kthacker Exp $
32 *
33 */
34
35#include "packet-service.h"
36
37#include "cs8900a.h"
38
39#include "uip_arp.h"
40
41static void output(u8_t *hdr, u16_t hdrlen, u8_t *data, u16_t datalen);
42
43static const struct uip_eth_addr addr =
44 {{0x00,0x00,0x00,0x64,0x64,0x64}};
45
46static const struct packet_service_state state =
47 {
48 PACKET_SERVICE_VERSION,
49 output
50 };
51
52EK_EVENTHANDLER(eventhandler, ev, data);
53EK_POLLHANDLER(pollhandler);
54EK_PROCESS(proc, PACKET_SERVICE_NAME ": RR-net", EK_PRIO_NORMAL,
55 eventhandler, pollhandler, (void *)&state);
56
57/*---------------------------------------------------------------------------*/
58LOADER_INIT_FUNC(rrnet_drv_init, arg)
59{
60 arg_free(arg);
61 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/*---------------------------------------------------------------------------*/
71#pragma optimize(push, off)
72EK_EVENTHANDLER(eventhandler, ev, data)
73{
74 switch(ev) {
75 case EK_EVENT_INIT:
76 case EK_EVENT_REPLACE:
77 uip_setethaddr(addr);
78 asm("lda #1");
79 asm("ora $de01");
80 asm("sta $de01");
81 cs8900a_init();
82 break;
83 case EK_EVENT_REQUEST_REPLACE:
84 ek_replace((struct ek_proc *)data, NULL);
85 LOADER_UNLOAD();
86 break;
87 case EK_EVENT_REQUEST_EXIT:
88 ek_exit();
89 LOADER_UNLOAD();
90 break;
91 default:
92 break;
93 }
94}
95#pragma optimize(pop)
96/*---------------------------------------------------------------------------*/
97EK_POLLHANDLER(pollhandler)
98{
99#define BUF ((struct uip_eth_hdr *)&uip_buf[0])
100
101 /* Poll Ethernet device to see if there is a frame avaliable. */
102 uip_len = cs8900a_poll();
103 if(uip_len > 0) {
104 /* A frame was avaliable (and is now read into the uip_buf), so
105 we process it. */
106 if(BUF->type == HTONS(UIP_ETHTYPE_IP)) {
107 uip_arp_ipin();
108 uip_len -= sizeof(struct uip_eth_hdr);
109 tcpip_input();
110 } else if(BUF->type == HTONS(UIP_ETHTYPE_ARP)) {
111 uip_arp_arpin();
112 /* If the above function invocation resulted in data that
113 should be sent out on the network, the global variable
114 uip_len is set to a value > 0. */
115 if(uip_len > 0) {
116 cs8900a_send();
117 }
118 }
119 }
120
121}
122/*---------------------------------------------------------------------------*/