mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 05:45:06 +00:00
33 lines
826 B
C++
33 lines
826 B
C++
/*
|
|
* Copyright (c) 2021-2022, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <Kernel/Bus/USB/USBDevice.h>
|
|
#include <Kernel/Bus/USB/USBHub.h>
|
|
#include <Kernel/FileSystem/SysFS/Component.h>
|
|
#include <Kernel/FileSystem/SysFS/Subsystems/Bus/USB/DeviceInformation.h>
|
|
#include <Kernel/Locking/Spinlock.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class SysFSUSBBusDirectory final : public SysFSDirectory {
|
|
public:
|
|
static void initialize();
|
|
static SysFSUSBBusDirectory& the();
|
|
|
|
virtual StringView name() const override { return "usb"sv; }
|
|
|
|
void plug(Badge<USB::Hub>, SysFSUSBDeviceInformation&);
|
|
void unplug(Badge<USB::Hub>, SysFSUSBDeviceInformation&);
|
|
|
|
private:
|
|
explicit SysFSUSBBusDirectory(SysFSBusDirectory&);
|
|
mutable Spinlock m_lock;
|
|
};
|
|
|
|
}
|