2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-03-10 15:25:33 +01:00
|
|
|
#pragma once
|
|
|
|
|
2020-04-28 16:19:50 +02:00
|
|
|
#include <AK/NonnullOwnPtrVector.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <AK/OwnPtr.h>
|
2020-06-24 14:07:28 -06:00
|
|
|
#include <Kernel/IO.h>
|
2020-02-22 19:45:32 +02:00
|
|
|
#include <Kernel/Interrupts/IRQHandler.h>
|
2019-04-02 19:54:38 +02:00
|
|
|
#include <Kernel/Net/NetworkAdapter.h>
|
2019-12-31 13:04:30 +02:00
|
|
|
#include <Kernel/PCI/Access.h>
|
2020-02-22 19:45:32 +02:00
|
|
|
#include <Kernel/PCI/Device.h>
|
2020-06-24 14:07:28 -06:00
|
|
|
#include <Kernel/Random.h>
|
2019-03-10 15:25:33 +01:00
|
|
|
|
2020-02-16 01:27:42 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
2019-05-28 11:53:16 +02:00
|
|
|
class E1000NetworkAdapter final : public NetworkAdapter
|
2020-02-22 19:45:32 +02:00
|
|
|
, public PCI::Device {
|
2019-03-10 15:25:33 +01:00
|
|
|
public:
|
2020-04-10 20:33:30 +03:00
|
|
|
static void detect();
|
2019-03-10 15:25:33 +01:00
|
|
|
|
2020-01-22 22:23:50 +01:00
|
|
|
E1000NetworkAdapter(PCI::Address, u8 irq);
|
2019-03-10 15:25:33 +01:00
|
|
|
virtual ~E1000NetworkAdapter() override;
|
|
|
|
|
2020-07-28 20:19:22 +02:00
|
|
|
virtual void send_raw(ReadonlyBytes) override;
|
2019-08-22 00:52:50 +10:00
|
|
|
virtual bool link_up() override;
|
2019-03-10 20:59:23 +01:00
|
|
|
|
2020-03-05 19:13:55 +02:00
|
|
|
virtual const char* purpose() const override { return class_name(); }
|
|
|
|
|
2019-03-10 15:25:33 +01:00
|
|
|
private:
|
2020-03-09 16:24:29 +02:00
|
|
|
virtual void handle_irq(const RegisterState&) override;
|
2019-03-10 15:25:33 +01:00
|
|
|
virtual const char* class_name() const override { return "E1000NetworkAdapter"; }
|
|
|
|
|
2020-12-30 22:44:54 +01:00
|
|
|
struct [[gnu::packed]] e1000_rx_desc {
|
2019-03-10 20:59:23 +01:00
|
|
|
volatile uint64_t addr { 0 };
|
|
|
|
volatile uint16_t length { 0 };
|
|
|
|
volatile uint16_t checksum { 0 };
|
|
|
|
volatile uint8_t status { 0 };
|
|
|
|
volatile uint8_t errors { 0 };
|
|
|
|
volatile uint16_t special { 0 };
|
|
|
|
};
|
|
|
|
|
2020-12-30 22:44:54 +01:00
|
|
|
struct [[gnu::packed]] e1000_tx_desc {
|
2019-03-10 20:59:23 +01:00
|
|
|
volatile uint64_t addr { 0 };
|
|
|
|
volatile uint16_t length { 0 };
|
|
|
|
volatile uint8_t cso { 0 };
|
|
|
|
volatile uint8_t cmd { 0 };
|
|
|
|
volatile uint8_t status { 0 };
|
|
|
|
volatile uint8_t css { 0 };
|
|
|
|
volatile uint16_t special { 0 };
|
|
|
|
};
|
|
|
|
|
2019-03-10 15:25:33 +01:00
|
|
|
void detect_eeprom();
|
2019-07-03 21:17:35 +02:00
|
|
|
u32 read_eeprom(u8 address);
|
2019-03-10 15:25:33 +01:00
|
|
|
void read_mac_address();
|
|
|
|
|
2019-07-03 21:17:35 +02:00
|
|
|
void write_command(u16 address, u32);
|
|
|
|
u32 read_command(u16 address);
|
2019-03-10 15:25:33 +01:00
|
|
|
|
2019-03-10 20:59:23 +01:00
|
|
|
void initialize_rx_descriptors();
|
|
|
|
void initialize_tx_descriptors();
|
|
|
|
|
2019-07-03 21:17:35 +02:00
|
|
|
void out8(u16 address, u8);
|
|
|
|
void out16(u16 address, u16);
|
|
|
|
void out32(u16 address, u32);
|
|
|
|
u8 in8(u16 address);
|
|
|
|
u16 in16(u16 address);
|
|
|
|
u32 in32(u16 address);
|
2019-03-10 15:25:33 +01:00
|
|
|
|
2019-03-10 23:40:09 +01:00
|
|
|
void receive();
|
|
|
|
|
2020-03-01 16:16:26 +02:00
|
|
|
IOAddress m_io_base;
|
2020-01-09 23:34:26 +02:00
|
|
|
VirtualAddress m_mmio_base;
|
2020-03-06 21:40:36 +02:00
|
|
|
OwnPtr<Region> m_rx_descriptors_region;
|
|
|
|
OwnPtr<Region> m_tx_descriptors_region;
|
2020-04-28 16:19:50 +02:00
|
|
|
NonnullOwnPtrVector<Region> m_rx_buffers_regions;
|
|
|
|
NonnullOwnPtrVector<Region> m_tx_buffers_regions;
|
2020-01-09 23:34:26 +02:00
|
|
|
OwnPtr<Region> m_mmio_region;
|
2019-07-03 21:17:35 +02:00
|
|
|
u8 m_interrupt_line { 0 };
|
2019-03-10 15:25:33 +01:00
|
|
|
bool m_has_eeprom { false };
|
|
|
|
bool m_use_mmio { false };
|
2020-06-24 14:07:28 -06:00
|
|
|
EntropySource m_entropy_source;
|
2019-03-10 20:59:23 +01:00
|
|
|
|
2020-04-28 20:24:44 +02:00
|
|
|
static const size_t number_of_rx_descriptors = 32;
|
|
|
|
static const size_t number_of_tx_descriptors = 8;
|
2019-03-10 20:59:23 +01:00
|
|
|
|
2019-12-14 10:47:17 +01:00
|
|
|
WaitQueue m_wait_queue;
|
2019-03-10 15:25:33 +01:00
|
|
|
};
|
2020-02-16 01:27:42 +01:00
|
|
|
}
|