aboutsummaryrefslogtreecommitdiff
path: root/kernel/drivers
diff options
context:
space:
mode:
authorMarvin Borner2020-09-21 19:14:31 +0200
committerMarvin Borner2020-09-21 19:14:31 +0200
commitca7bb843e97afe6c7bfbce1837654c58f71368b6 (patch)
tree41e6daa7812e270da22b25693d27670d731eaa95 /kernel/drivers
parente3b45a6c47868b3002dacbfdedef957b800f308e (diff)
Networking
Diffstat (limited to 'kernel/drivers')
-rw-r--r--kernel/drivers/net.c63
-rw-r--r--kernel/drivers/pci.c2
2 files changed, 50 insertions, 15 deletions
diff --git a/kernel/drivers/net.c b/kernel/drivers/net.c
index dfc3cd5..284b749 100644
--- a/kernel/drivers/net.c
+++ b/kernel/drivers/net.c
@@ -1,4 +1,6 @@
// MIT License, Copyright (c) 2020 Marvin Borner
+// Uses parts of the ToAruOS Project, released under the terms of the NCSA
+// Copyright (C) 2011-2018 K. Lange
#include <cpu.h>
#include <def.h>
@@ -8,11 +10,13 @@
#include <pci.h>
#include <print.h>
-int rtl_irq = 0;
-u8 mac[6];
-u8 *rtl_rx_buffer;
-u32 rtl_device_pci = 0;
-u32 rtl_iobase = 0;
+static int rtl_irq = 0;
+static u8 mac[6];
+static u8 *last_packet = NULL;
+static u8 *rtl_rx_buffer;
+static u32 rtl_device_pci = 0;
+static u32 rtl_iobase = 0;
+static u32 cur_rx = 0;
void rtl8139_find(u32 device, u16 vendor_id, u16 device_id, void *extra)
{
@@ -24,16 +28,44 @@ void rtl8139_find(u32 device, u16 vendor_id, u16 device_id, void *extra)
void rtl8139_irq_handler()
{
print("RTL INT!\n");
- u16 status = inw((u16)(rtl_iobase + 0x3E));
+ u16 status = inw(rtl_iobase + 0x3E);
if (!status)
return;
- outw((u16)(rtl_iobase + 0x3E), status);
+ outw(rtl_iobase + 0x3E, status);
if (status & 0x01 || status & 0x02) {
- print("RECEIVE\n");
- /* while ((inw((u16)(rtl_iobase + 0x37)) & 0x01) == 0) { */
- // RECEIVE
- /* } */
+ while ((inb(rtl_iobase + 0x37) & 0x01) == 0) {
+ print("RECEIVE\n");
+
+ int offset = cur_rx % 0x2000;
+
+ u32 *buf_start = (u32 *)((u32)rtl_rx_buffer + offset);
+ u32 rx_status = buf_start[0];
+ u32 rx_size = rx_status >> 16;
+
+ if (rx_status & (0x0020 | 0x0010 | 0x0004 | 0x0002)) {
+ print("RX Error\n");
+ } else {
+ u8 *buf_8 = (u8 *)&(buf_start[1]);
+
+ last_packet = malloc(rx_size);
+
+ u32 packet_end = (u32)buf_8 + rx_size;
+ if (packet_end > (u32)rtl_rx_buffer + 0x2000) {
+ u32 s = ((u32)rtl_rx_buffer + 0x2000) - (u32)buf_8;
+ memcpy(last_packet, buf_8, s);
+ memcpy((void *)((u32)last_packet + s), rtl_rx_buffer,
+ rx_size - s);
+ } else {
+ memcpy(last_packet, buf_8, rx_size);
+ }
+
+ /* rtl_enqueue(last_packet); */
+ }
+
+ cur_rx = (cur_rx + rx_size + 4 + 3) & ~3;
+ outw(rtl_iobase + 0x3A, cur_rx - 16);
+ }
}
}
@@ -71,7 +103,8 @@ void rtl8139_init()
;
// Set receive buffer
- rtl_rx_buffer = (u8 *)malloc(8192 + 16);
+ rtl_rx_buffer = (u8 *)malloc(0x3000);
+ memset(rtl_rx_buffer, 0x00, 0x3000);
outl((u16)(rtl_iobase + 0x30), (u32)rtl_rx_buffer);
// Enable ISR
@@ -88,8 +121,8 @@ void net_install()
{
pci_scan(&rtl8139_find, -1, &rtl_device_pci);
- if (rtl_device_pci)
+ if (rtl_device_pci) {
print("Found rtl8139 card\n");
-
- rtl8139_init();
+ rtl8139_init();
+ }
}
diff --git a/kernel/drivers/pci.c b/kernel/drivers/pci.c
index 9c16601..6130cd0 100644
--- a/kernel/drivers/pci.c
+++ b/kernel/drivers/pci.c
@@ -1,4 +1,6 @@
// MIT License, Copyright (c) 2020 Marvin Borner
+// Uses parts of the ToAruOS Project, released under the terms of the NCSA
+// Copyright (C) 2011-2018 K. Lange
#include <cpu.h>
#include <def.h>