mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 11:27:34 +00:00
Kernel: Implement a PCI Serial Device driver
This simple driver simply finds a device in a device definitions list and then sets up a SerialDevice instance based on the definition. The driver currently only supports "WCH CH382 2S" pci serial boards, as that is the only device available for me to test with, but most other pci serial devices should be as easily addable as adding a board_definitions entry.
This commit is contained in:
parent
62f69cc50f
commit
ba9b3dc656
7 changed files with 99 additions and 0 deletions
39
Kernel/Devices/PCISerialDevice.h
Normal file
39
Kernel/Devices/PCISerialDevice.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Kernel/Devices/CharacterDevice.h>
|
||||
#include <Kernel/Devices/SerialDevice.h>
|
||||
#include <Kernel/PCI/Device.h>
|
||||
#include <Kernel/PCI/IDs.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
class PCISerialDevice {
|
||||
AK_MAKE_ETERNAL
|
||||
public:
|
||||
static void detect();
|
||||
static SerialDevice& the();
|
||||
static bool is_available();
|
||||
|
||||
private:
|
||||
struct BoardDefinition {
|
||||
PCI::ID device_id;
|
||||
StringView name;
|
||||
u32 port_count { 0 };
|
||||
u32 pci_bar { 0 };
|
||||
u32 first_offset { 0 };
|
||||
u32 port_size { 0 };
|
||||
SerialDevice::Baud baud_rate { SerialDevice::Baud::Baud38400 };
|
||||
};
|
||||
|
||||
static constexpr BoardDefinition board_definitions[1] = {
|
||||
{ { (u16)PCIVendorID::WCH, 0x3253 }, "WCH CH382 2S", 2, 0, 0xC0, 8, SerialDevice::Baud::Baud115200 }
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue