2022-04-22 12:46:19 +03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <Kernel/FileSystem/SysFS/Component.h>
|
2022-04-23 00:26:36 +03:00
|
|
|
#include <Kernel/FileSystem/SysFS/Subsystems/DeviceIdentifiers/DeviceComponent.h>
|
2022-04-22 15:51:45 +03:00
|
|
|
#include <Kernel/FileSystem/SysFS/Subsystems/DeviceIdentifiers/Directory.h>
|
2022-04-22 12:46:19 +03:00
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2022-04-23 00:26:36 +03:00
|
|
|
class Device;
|
Kernel/SysFS: Add exposing interface for DisplayConnectors
Under normal conditions (when mounting SysFS in /sys), there will be a
new directory in the /sys/devices directory called "graphics".
For now, under that directory there will be only a sub-directory called
"connectors" which will contain all DisplayConnectors' details, each in
its own sub-directory too, distinguished in naming with its minor
number.
Therefore, /sys/devices/graphics/connectors/MINOR_NUMBER/ will contain:
- General device attributes such as mutable_mode_setting_capable,
double_buffering_capable, flush_support, partial_flush_support and
refresh_rate_support. These values are exposed in the ioctl interface
of the DisplayConnector class too, but these can be useful later on
for command line utilities that want/need to expose these basic
settings.
- The EDID blob, simply named "edid". This will help userspace to fetch
the edid without the need of using the ioctl interface later on.
2022-07-16 08:08:53 +03:00
|
|
|
class DisplayConnector;
|
2022-04-22 12:46:19 +03:00
|
|
|
class SysFSCharacterDevicesDirectory final : public SysFSDirectory {
|
Kernel/SysFS: Add exposing interface for DisplayConnectors
Under normal conditions (when mounting SysFS in /sys), there will be a
new directory in the /sys/devices directory called "graphics".
For now, under that directory there will be only a sub-directory called
"connectors" which will contain all DisplayConnectors' details, each in
its own sub-directory too, distinguished in naming with its minor
number.
Therefore, /sys/devices/graphics/connectors/MINOR_NUMBER/ will contain:
- General device attributes such as mutable_mode_setting_capable,
double_buffering_capable, flush_support, partial_flush_support and
refresh_rate_support. These values are exposed in the ioctl interface
of the DisplayConnector class too, but these can be useful later on
for command line utilities that want/need to expose these basic
settings.
- The EDID blob, simply named "edid". This will help userspace to fetch
the edid without the need of using the ioctl interface later on.
2022-07-16 08:08:53 +03:00
|
|
|
friend class DisplayConnector;
|
|
|
|
|
|
2022-04-22 12:46:19 +03:00
|
|
|
public:
|
|
|
|
|
virtual StringView name() const override { return "char"sv; }
|
2022-04-22 15:51:45 +03:00
|
|
|
static NonnullRefPtr<SysFSCharacterDevicesDirectory> must_create(SysFSDeviceIdentifiersDirectory const&);
|
2022-04-22 12:46:19 +03:00
|
|
|
|
2022-04-23 00:26:36 +03:00
|
|
|
static SysFSCharacterDevicesDirectory& the();
|
|
|
|
|
|
2022-04-23 01:06:37 +03:00
|
|
|
ChildList& devices_list(Badge<Device>) { return m_child_components; }
|
2022-04-23 00:26:36 +03:00
|
|
|
|
2022-04-22 12:46:19 +03:00
|
|
|
private:
|
2022-04-22 15:51:45 +03:00
|
|
|
explicit SysFSCharacterDevicesDirectory(SysFSDeviceIdentifiersDirectory const&);
|
2022-04-22 12:46:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|