diff options
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Makefile | 1 | ||||
-rw-r--r-- | Kernel/Net/NetworkTask.cpp | 24 | ||||
-rw-r--r-- | Kernel/Net/RTL8139NetworkAdapter.cpp | 374 | ||||
-rw-r--r-- | Kernel/Net/RTL8139NetworkAdapter.h | 49 | ||||
-rw-r--r-- | Kernel/init.cpp | 2 |
5 files changed, 444 insertions, 6 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 6afbf161fb..9988ceb607 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -55,6 +55,7 @@ KERNEL_OBJS = \ Net/UDPSocket.o \ Net/NetworkAdapter.o \ Net/E1000NetworkAdapter.o \ + Net/RTL8139NetworkAdapter.o \ Net/LoopbackAdapter.o \ Net/Routing.o \ Net/NetworkTask.o \ diff --git a/Kernel/Net/NetworkTask.cpp b/Kernel/Net/NetworkTask.cpp index b150353c7d..bf911eb6cd 100644 --- a/Kernel/Net/NetworkTask.cpp +++ b/Kernel/Net/NetworkTask.cpp @@ -7,6 +7,7 @@ #include <Kernel/Net/IPv4.h> #include <Kernel/Net/IPv4Socket.h> #include <Kernel/Net/LoopbackAdapter.h> +#include <Kernel/Net/RTL8139NetworkAdapter.h> #include <Kernel/Net/TCP.h> #include <Kernel/Net/TCPSocket.h> #include <Kernel/Net/UDP.h> @@ -38,12 +39,17 @@ void NetworkTask_main() { LoopbackAdapter::the(); - auto adapter = E1000NetworkAdapter::the(); - if (!adapter) + auto e1000 = E1000NetworkAdapter::the(); + if (!e1000) dbgprintf("E1000 network card not found!\n"); + if (e1000) + e1000->set_ipv4_address(IPv4Address(192, 168, 5, 2)); - if (adapter) - adapter->set_ipv4_address(IPv4Address(192, 168, 5, 2)); + auto rtl8139 = RTL8139NetworkAdapter::the(); + if (!rtl8139) + dbgprintf("RTL8139 network card not found!\n"); + if (rtl8139) + rtl8139->set_ipv4_address(IPv4Address(192, 168, 13, 201)); auto dequeue_packet = [&]() -> Optional<KBuffer> { auto packet = LoopbackAdapter::the().dequeue_packet(); @@ -51,8 +57,10 @@ void NetworkTask_main() dbgprintf("Receive loopback packet (%d bytes)\n", packet.value().size()); return packet.value(); } - if (adapter && adapter->has_queued_packets()) - return adapter->dequeue_packet(); + if (e1000 && e1000->has_queued_packets()) + return e1000->dequeue_packet(); + if (rtl8139 && rtl8139->has_queued_packets()) + return rtl8139->dequeue_packet(); return {}; }; @@ -67,6 +75,10 @@ void NetworkTask_main() if (e1000->has_queued_packets()) return true; } + if (auto* rtl8139 = RTL8139NetworkAdapter::the()) { + if (rtl8139->has_queued_packets()) + return true; + } return false; }); continue; diff --git a/Kernel/Net/RTL8139NetworkAdapter.cpp b/Kernel/Net/RTL8139NetworkAdapter.cpp new file mode 100644 index 0000000000..587eaae84c --- /dev/null +++ b/Kernel/Net/RTL8139NetworkAdapter.cpp @@ -0,0 +1,374 @@ +#include <Kernel/IO.h> +#include <Kernel/Net/RTL8139NetworkAdapter.h> +#include <Kernel/PCI.h> + +//#define RTL8139_DEBUG + +#define REG_MAC 0x00 +#define REG_MAR0 0x08 +#define REG_MAR4 0x12 +#define REG_TXSTATUS0 0x10 +#define REG_TXADDR0 0x20 +#define REG_RXBUF 0x30 +#define REG_COMMAND 0x37 +#define REG_CAPR 0x38 +#define REG_IMR 0x3C +#define REG_ISR 0x3E +#define REG_TXCFG 0x40 +#define REG_RXCFG 0x44 +#define REG_MPC 0x4C +#define REG_CFG9346 0x50 +#define REG_CONFIG1 0x52 +#define REG_MSR 0x58 +#define REG_BMCR 0x62 + +#define TX_STATUS_OWN 0x2000 +#define TX_STATUS_THRESHOLD_MAX 0x3F0000 + +#define COMMAND_RX_EMPTY 0x01 +#define COMMAND_TX_ENABLE 0x04 +#define COMMAND_RX_ENABLE 0x08 +#define COMMAND_RESET 0x10 + +#define INT_RXOK 0x01 +#define INT_RXERR 0x02 +#define INT_TXOK 0x04 +#define INT_TXERR 0x08 +#define INT_RX_BUFFER_OVERFLOW 0x10 +#define INT_LINK_CHANGE 0x20 +#define INT_RX_FIFO_OVERFLOW 0x40 +#define INT_LENGTH_CHANGE 0x2000 +#define INT_SYSTEM_ERROR 0x8000 + +#define CFG9346_EEM0 0x40 +#define CFG9346_EEM1 0x80 + +#define TXCFG_TXRR_ZERO 0x00 +#define TXCFG_MAX_DMA_16B 0x000 +#define TXCFG_MAX_DMA_32B 0x100 +#define TXCFG_MAX_DMA_64B 0x200 +#define TXCFG_MAX_DMA_128B 0x300 +#define TXCFG_MAX_DMA_256B 0x400 +#define TXCFG_MAX_DMA_512B 0x500 +#define TXCFG_MAX_DMA_1K 0x600 +#define TXCFG_MAX_DMA_2K 0x700 +#define TXCFG_IFG11 0x3000000 + +#define RXCFG_AAP 0x01 +#define RXCFG_APM 0x02 +#define RXCFG_AM 0x04 +#define RXCFG_AB 0x08 +#define RXCFG_AR 0x10 +#define RXCFG_WRAP 0x80 +#define RXCFG_MAX_DMA_16B 0x000 +#define RXCFG_MAX_DMA_32B 0x100 +#define RXCFG_MAX_DMA_64B 0x200 +#define RXCFG_MAX_DMA_128B 0x300 +#define RXCFG_MAX_DMA_256B 0x400 +#define RXCFG_MAX_DMA_512B 0x500 +#define RXCFG_MAX_DMA_1K 0x600 +#define RXCFG_MAX_DMA_UNLIMITED 0x0700 +#define RXCFG_RBLN_8K 0x0000 +#define RXCFG_RBLN_16K 0x0800 +#define RXCFG_RBLN_32K 0x1000 +#define RXCFG_RBLN_64K 0x1800 +#define RXCFG_FTH_NONE 0xE000 + +#define MSR_LINKB 0x02 +#define MSR_RX_FLOW_CONTROL_ENABLE 0x40 + +#define BMCR_SPEED 0x2000 +#define BMCR_AUTO_NEGOTIATE 0x1000 +#define BMCR_DUPLEX 0x0100 + +#define RX_MULTICAST 0x8000 +#define RX_PHYSICAL_MATCH 0x4000 +#define RX_BROADCAST 0x2000 +#define RX_INVALID_SYMBOL_ERROR 0x20 +#define RX_RUNT 0x10 +#define RX_LONG 0x08 +#define RX_CRC_ERROR 0x04 +#define RX_FRAME_ALIGNMENT_ERROR 0x02 +#define RX_OK 0x01 + +#define PACKET_SIZE_MAX 0x600 +#define PACKET_SIZE_MIN 0x16 + +#define RX_BUFFER_SIZE 32768 +#define TX_BUFFER_SIZE PACKET_SIZE_MAX + +OwnPtr<RTL8139NetworkAdapter> RTL8139NetworkAdapter::autodetect() +{ + static const PCI::ID rtl8139_id = { 0x10EC, 0x8139 }; + PCI::Address found_address; + PCI::enumerate_all([&](const PCI::Address& address, PCI::ID id) { + if (id == rtl8139_id) { + found_address = address; + return; + } + }); + if (found_address.is_null()) + return nullptr; + u8 irq = PCI::get_interrupt_line(found_address); + return make<RTL8139NetworkAdapter>(found_address, irq); +} + +static RTL8139NetworkAdapter* s_the; +RTL8139NetworkAdapter* RTL8139NetworkAdapter::the() +{ + return s_the; +} + +RTL8139NetworkAdapter::RTL8139NetworkAdapter(PCI::Address pci_address, u8 irq) + : IRQHandler(irq) + , m_pci_address(pci_address) +{ + s_the = this; + + set_interface_name("rtl8139"); + + kprintf("RTL8139: Found at PCI address %b:%b:%b\n", pci_address.bus(), pci_address.slot(), pci_address.function()); + + enable_bus_mastering(m_pci_address); + + m_io_base = PCI::get_BAR0(m_pci_address) & ~1; + m_interrupt_line = PCI::get_interrupt_line(m_pci_address); + kprintf("RTL8139: IO port base: %w\n", m_io_base); + kprintf("RTL8139: Interrupt line: %u\n", m_interrupt_line); + + // we add space to account for overhang from the last packet - the rtl8139 + // can optionally guarantee that packets will be contiguous by + // purposefully overrunning the rx buffer + auto rx_buffer_addr = (u32)kmalloc_eternal(RX_BUFFER_SIZE + PACKET_SIZE_MAX); + if (rx_buffer_addr % 16) + rx_buffer_addr = (rx_buffer_addr + 16) - (rx_buffer_addr % 16); + m_rx_buffer_addr = rx_buffer_addr; + kprintf("RTL8139: RX buffer: P%p\n", m_rx_buffer_addr); + + for (int i = 0; i < RTL8139_TX_BUFFER_COUNT; i++) { + auto tx_buffer_addr = (u32)kmalloc_eternal(TX_BUFFER_SIZE); + if (tx_buffer_addr % 16) + tx_buffer_addr = (tx_buffer_addr + 16) - (tx_buffer_addr % 16); + m_tx_buffer_addr[i] = tx_buffer_addr; + kprintf("RTL8139: TX buffer %d: P%p\n", i, m_tx_buffer_addr[i]); + } + + m_packet_buffer = (u32)kmalloc_eternal(PACKET_SIZE_MAX); + kprintf("RTL8139: Packet buffer: P%p\n", m_packet_buffer); + + reset(); + + read_mac_address(); + const auto& mac = mac_address(); + kprintf("RTL8139: MAC address: %s\n", mac.to_string().characters()); + + enable_irq(); +} + +RTL8139NetworkAdapter::~RTL8139NetworkAdapter() +{ +} + +void RTL8139NetworkAdapter::handle_irq() +{ + for (;;) { + int status = in16(REG_ISR); + out16(REG_ISR, status); + +#ifdef RTL8139_DEBUG + kprintf("RTL8139NetworkAdapter::handle_irq status=%#04x\n", status); +#endif + + if ((status & (INT_RXOK | INT_RXERR | INT_TXOK | INT_TXERR | INT_RX_BUFFER_OVERFLOW | INT_LINK_CHANGE | INT_RX_FIFO_OVERFLOW | INT_LENGTH_CHANGE | INT_SYSTEM_ERROR)) == 0) + break; + + if (status & INT_RXOK) { +#ifdef RTL8139_DEBUG + kprintf("RTL8139NetworkAdapter: rx ready\n"); +#endif + receive(); + } + if (status & INT_RXERR) { + kprintf("RTL8139NetworkAdapter: rx error - resetting device\n"); + reset(); + } + if (status & INT_TXOK) { +#ifdef RTL8139_DEBUG + kprintf("RTL8139NetworkAdapter: tx complete\n"); +#endif + } + if (status & INT_TXERR) { + kprintf("RTL8139NetworkAdapter: tx error - resetting device\n"); + reset(); + } + if (status & INT_RX_BUFFER_OVERFLOW) { + kprintf("RTL8139NetworkAdapter: rx buffer overflow\n"); + } + if (status & INT_LINK_CHANGE) { + m_link_up = (in8(REG_MSR) & MSR_LINKB) == 0; + kprintf("RTL8139NetworkAdapter: link status changed up=%d\n", m_link_up); + } + if (status & INT_RX_FIFO_OVERFLOW) { + kprintf("RTL8139NetworkAdapter: rx fifo overflow\n"); + } + if (status & INT_LENGTH_CHANGE) { + kprintf("RTL8139NetworkAdapter: cable length change\n"); + } + if (status & INT_SYSTEM_ERROR) { + kprintf("RTL8139NetworkAdapter: system error - resetting device\n"); + reset(); + } + } +} + +void RTL8139NetworkAdapter::reset() +{ + m_rx_buffer_offset = 0; + m_tx_next_buffer = 0; + + // reset the device to clear out all the buffers and config + out8(REG_COMMAND, COMMAND_RESET); + while ((in8(REG_COMMAND) & COMMAND_RESET) != 0) + ; + + // unlock config registers + out8(REG_CFG9346, CFG9346_EEM0 | CFG9346_EEM1); + // define multicast addresses as 255.255.255.255 + out32(REG_MAR0, 0xffffffff); + out32(REG_MAR4, 0xffffffff); + // enable rx/tx + out8(REG_COMMAND, COMMAND_RX_ENABLE | COMMAND_TX_ENABLE); + // device might be in sleep mode, this will take it out + out8(REG_CONFIG1, 0); + // set up rx buffer + out32(REG_RXBUF, m_rx_buffer_addr); + // reset missed packet counter + out8(REG_MPC, 0); + // "basic mode control register" options - 100mbit, full duplex, auto + // negotiation + out16(REG_BMCR, BMCR_SPEED | BMCR_AUTO_NEGOTIATE | BMCR_DUPLEX); + out8(REG_MSR, MSR_RX_FLOW_CONTROL_ENABLE); + // configure rx: accept physical (MAC) match, multicast, and broadcast, + // use the optional contiguous packet feature, the maximum dma transfer + // size, a 32k buffer, and no fifo threshold + out32(REG_RXCFG, RXCFG_APM | RXCFG_AM | RXCFG_AB | RXCFG_WRAP | RXCFG_MAX_DMA_UNLIMITED | RXCFG_RBLN_32K | RXCFG_FTH_NONE); + // configure tx: default retry count (16), max DMA burst size of 1924 + // bytes, interframe gap time of the only allowable value. the DMA burst + // size is important - silent failures have been observed with 2048 bytes. + out32(REG_TXCFG, TXCFG_TXRR_ZERO | TXCFG_MAX_DMA_1K | TXCFG_IFG11); + // re-lock config registers + out8(REG_CFG9346, 0); + // enable rx/tx again in case they got turned off (apparently some cards + // do this?) + out8(REG_COMMAND, COMMAND_RX_ENABLE | COMMAND_TX_ENABLE); + + // choose irqs, then clear any pending + out16(REG_IMR, INT_TXOK | INT_TXERR | INT_RXOK | INT_RXERR); + out16(REG_ISR, 0xffff); +} + +void RTL8139NetworkAdapter::read_mac_address() +{ + u8 mac[6]; + for (int i = 0; i < 6; i++) + mac[i] = in8(REG_MAC + i); + set_mac_address(mac); +} + +void RTL8139NetworkAdapter::send_raw(const u8* data, int length) +{ +#ifdef RTL8139_DEBUG + kprintf("RTL8139NetworkAdapter::send_raw length=%d\n", length); +#endif + + if (length > PACKET_SIZE_MAX) { + kprintf("RTL8139NetworkAdapter: packet was too big; discarding\n"); + return; + } + + int hw_buffer = -1; + for (int i = 0; i < RTL8139_TX_BUFFER_COUNT; i++) { + int potential_buffer = (m_tx_next_buffer + i) % 4; + + auto status = in32(REG_TXSTATUS0 + (potential_buffer * 4)); + if (status & TX_STATUS_OWN) { + hw_buffer = potential_buffer; + break; + } + } + + if (hw_buffer == -1) { + kprintf("RTL8139NetworkAdapter: hardware buffers full; discarding packet\n"); + return; + } else { +#ifdef RTL8139_DEBUG + kprintf("RTL8139NetworkAdapter: chose buffer %d @ %p\n", hw_buffer, m_tx_buffer_addr[hw_buffer]); +#endif + m_tx_next_buffer = hw_buffer + 1 % 4; + } + + memcpy((void*)(m_tx_buffer_addr[hw_buffer]), data, length); + memset((void*)(m_tx_buffer_addr[hw_buffer] + length), 0, TX_BUFFER_SIZE - length); + + out32(REG_TXADDR0 + (hw_buffer * 4), m_tx_buffer_addr[hw_buffer]); + out32(REG_TXSTATUS0 + (hw_buffer * 4), length); +} + +void RTL8139NetworkAdapter::receive() +{ + auto* start_of_packet = (const u8*)(m_rx_buffer_addr + m_rx_buffer_offset); + + u16 status = *(const u16*)(start_of_packet + 0); + u16 length = *(const u16*)(start_of_packet + 2); + +#ifdef RTL8139_DEBUG + kprintf("RTL8139NetworkAdapter::receive status=%04x length=%d offset=%d\n", status, length, m_rx_buffer_offset); +#endif + + if (!(status & RX_OK) || (status & (RX_INVALID_SYMBOL_ERROR | RX_CRC_ERROR | RX_FRAME_ALIGNMENT_ERROR)) || (length >= PACKET_SIZE_MAX) || (length < PACKET_SIZE_MIN)) { + kprintf("RTL8139NetworkAdapter::receive got bad packet status=%04x length=%d\n", status, length); + reset(); + return; + } + + // we never have to worry about the packet wrapping around the buffer, + // since we set RXCFG_WRAP, which allows the rtl8139 to write data past + // the end of the alloted space. + memcpy((u8*)m_packet_buffer, (const u8*)(start_of_packet + 4), length - 4); + // let the card know that we've read this data + m_rx_buffer_offset = ((m_rx_buffer_offset + length + 4 + 3) & ~3) % RX_BUFFER_SIZE; + out16(REG_CAPR, m_rx_buffer_offset - 0x10); + m_rx_buffer_offset %= RX_BUFFER_SIZE; + + did_receive((const u8*)m_packet_buffer, length - 4); +} + +void RTL8139NetworkAdapter::out8(u16 address, u8 data) +{ + IO::out8(m_io_base + address, data); +} + +void RTL8139NetworkAdapter::out16(u16 address, u16 data) +{ + IO::out16(m_io_base + address, data); +} + +void RTL8139NetworkAdapter::out32(u16 address, u32 data) +{ + IO::out32(m_io_base + address, data); +} + +u8 RTL8139NetworkAdapter::in8(u16 address) +{ + return IO::in8(m_io_base + address); +} + +u16 RTL8139NetworkAdapter::in16(u16 address) +{ + return IO::in16(m_io_base + address); +} + +u32 RTL8139NetworkAdapter::in32(u16 address) +{ + return IO::in32(m_io_base + address); +} diff --git a/Kernel/Net/RTL8139NetworkAdapter.h b/Kernel/Net/RTL8139NetworkAdapter.h new file mode 100644 index 0000000000..9e8cf0c82b --- /dev/null +++ b/Kernel/Net/RTL8139NetworkAdapter.h @@ -0,0 +1,49 @@ +#pragma once + +#include <AK/OwnPtr.h> +#include <AK/RefPtr.h> +#include <Kernel/IRQHandler.h> +#include <Kernel/Net/NetworkAdapter.h> +#include <Kernel/PCI.h> + +#define RTL8139_TX_BUFFER_COUNT 4 + +class RTL8139NetworkAdapter final : public NetworkAdapter + , public IRQHandler { +public: + static RTL8139NetworkAdapter* the(); + + static OwnPtr<RTL8139NetworkAdapter> autodetect(); + + RTL8139NetworkAdapter(PCI::Address, u8 irq); + virtual ~RTL8139NetworkAdapter() override; + + virtual void send_raw(const u8*, int) override; + virtual bool link_up() const override { return m_link_up; } + +private: + virtual void handle_irq() override; + virtual const char* class_name() const override { return "RTL8139NetworkAdapter"; } + + void reset(); + void read_mac_address(); + + void receive(); + + void out8(u16 address, u8 data); + void out16(u16 address, u16 data); + void out32(u16 address, u32 data); + u8 in8(u16 address); + u16 in16(u16 address); + u32 in32(u16 address); + + PCI::Address m_pci_address; + u16 m_io_base { 0 }; + u8 m_interrupt_line { 0 }; + u32 m_rx_buffer_addr { 0 }; + u16 m_rx_buffer_offset { 0 }; + u32 m_tx_buffer_addr[RTL8139_TX_BUFFER_COUNT]; + u8 m_tx_next_buffer { 0 }; + u32 m_packet_buffer { 0 }; + bool m_link_up { false }; +}; diff --git a/Kernel/init.cpp b/Kernel/init.cpp index e8b2904645..9b8830da71 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -34,6 +34,7 @@ #include <Kernel/Multiboot.h> #include <Kernel/Net/E1000NetworkAdapter.h> #include <Kernel/Net/NetworkTask.h> +#include <Kernel/Net/RTL8139NetworkAdapter.h> #include <Kernel/PCI.h> #include <Kernel/TTY/PTYMultiplexer.h> #include <Kernel/TTY/VirtualConsole.h> @@ -242,6 +243,7 @@ extern "C" [[noreturn]] void init() } auto e1000 = E1000NetworkAdapter::autodetect(); + auto rtl8139 = RTL8139NetworkAdapter::autodetect(); NonnullRefPtr<ProcFS> new_procfs = ProcFS::create(); new_procfs->initialize(); |