]> Joshua Wise's Git repositories - netwatch.git/blame_incremental - net/net.c
Successfully transmit HARBL ... twice. Then hang.
[netwatch.git] / net / net.c
... / ...
CommitLineData
1#include <pci.h>
2#include <pci-bother.h>
3#include <output.h>
4#include "net.h"
5
6static struct nic *_nic = 0x0;
7
8extern struct pci_driver a3c90x_driver;
9
10static char test[1024] = {0};
11
12void eth_poll()
13{
14 int i;
15 static int c;
16
17 if (!_nic)
18 return;
19
20 _nic->poll(_nic, 0);
21
22 if ((c++) % 60)
23 return;
24
25 for (i = 0; i < 1024; i++)
26 {
27 switch(i%5)
28 {
29 case 0: test[i] = 'H'; break;
30 case 1: test[i] = 'A'; break;
31 case 2: test[i] = 'R'; break;
32 case 3: test[i] = 'B'; break;
33 case 4: test[i] = 'L'; break;
34 }
35 }
36 outputf("eth_poll: Attempting to tx");
37 _nic->transmit("\x00\x03\x93\x87\x84\x8C", 0x1337, 1024, test);
38 outputf("eth_poll: tx complete");
39}
40
41int eth_register(struct nic *nic)
42{
43 if (_nic)
44 return -1;
45 _nic = nic;
46 return 0;
47}
48
49void eth_init()
50{
51 if (pci_probe_driver(a3c90x_driver))
52 outputf("found 3c90x, hopefully!");
53}
This page took 0.022246 seconds and 4 git commands to generate.