mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:32:45 +00:00 
			
		
		
		
	Kernel: Move all Graphics-related code into Devices/GPU directory
Like the HID, Audio and Storage subsystem, the Graphics subsystem (which
handles GPUs technically) exposes unix device files (typically in /dev).
To ensure consistency across the repository, move all related files to a
new directory under Kernel/Devices called "GPU".
Also remove the redundant "GPU" word from the VirtIO driver directory,
and the word "Graphics" from GraphicsManagement.{h,cpp} filenames.
			
			
This commit is contained in:
		
							parent
							
								
									31a7dabf02
								
							
						
					
					
						commit
						9ee098b119
					
				
					 69 changed files with 167 additions and 167 deletions
				
			
		|  | @ -6,7 +6,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Arch/aarch64/RPi/UART.h> | #include <Kernel/Arch/aarch64/RPi/UART.h> | ||||||
| #include <Kernel/Graphics/Console/BootFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/BootFramebufferConsole.h> | ||||||
| #include <Kernel/kstdio.h> | #include <Kernel/kstdio.h> | ||||||
| 
 | 
 | ||||||
| // FIXME: Merge the code in this file with Kernel/kprintf.cpp once the proper abstractions are in place.
 | // FIXME: Merge the code in this file with Kernel/kprintf.cpp once the proper abstractions are in place.
 | ||||||
|  |  | ||||||
|  | @ -16,6 +16,9 @@ | ||||||
| #include <Kernel/Bus/VirtIO/Device.h> | #include <Kernel/Bus/VirtIO/Device.h> | ||||||
| #include <Kernel/Devices/Audio/Management.h> | #include <Kernel/Devices/Audio/Management.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
|  | #include <Kernel/Devices/GPU/Console/BootFramebufferConsole.h> | ||||||
|  | #include <Kernel/Devices/GPU/Console/VGATextModeConsole.h> | ||||||
|  | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Devices/Generic/DeviceControlDevice.h> | #include <Kernel/Devices/Generic/DeviceControlDevice.h> | ||||||
| #include <Kernel/Devices/Generic/FullDevice.h> | #include <Kernel/Devices/Generic/FullDevice.h> | ||||||
| #include <Kernel/Devices/Generic/MemoryDevice.h> | #include <Kernel/Devices/Generic/MemoryDevice.h> | ||||||
|  | @ -33,9 +36,6 @@ | ||||||
| #include <Kernel/FileSystem/VirtualFileSystem.h> | #include <Kernel/FileSystem/VirtualFileSystem.h> | ||||||
| #include <Kernel/Firmware/ACPI/Initialize.h> | #include <Kernel/Firmware/ACPI/Initialize.h> | ||||||
| #include <Kernel/Firmware/ACPI/Parser.h> | #include <Kernel/Firmware/ACPI/Parser.h> | ||||||
| #include <Kernel/Graphics/Console/BootFramebufferConsole.h> |  | ||||||
| #include <Kernel/Graphics/Console/VGATextModeConsole.h> |  | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> |  | ||||||
| #include <Kernel/Heap/kmalloc.h> | #include <Kernel/Heap/kmalloc.h> | ||||||
| #include <Kernel/KSyms.h> | #include <Kernel/KSyms.h> | ||||||
| #include <Kernel/Library/Panic.h> | #include <Kernel/Library/Panic.h> | ||||||
|  |  | ||||||
|  | @ -10,9 +10,9 @@ | ||||||
| #include <Kernel/Bus/PCI/Access.h> | #include <Kernel/Bus/PCI/Access.h> | ||||||
| #include <Kernel/Debug.h> | #include <Kernel/Debug.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/Bochs/Definitions.h> | #include <Kernel/Devices/GPU/Bochs/Definitions.h> | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -7,9 +7,9 @@ | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <Kernel/Graphics/Bochs/Definitions.h> | #include <Kernel/Devices/GPU/Bochs/Definitions.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Library/LockRefPtr.h> | #include <Kernel/Library/LockRefPtr.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
|  |  | ||||||
|  | @ -68,6 +68,31 @@ set(KERNEL_SOURCES | ||||||
|     Devices/Generic/RandomDevice.cpp |     Devices/Generic/RandomDevice.cpp | ||||||
|     Devices/Generic/SelfTTYDevice.cpp |     Devices/Generic/SelfTTYDevice.cpp | ||||||
|     Devices/Generic/ZeroDevice.cpp |     Devices/Generic/ZeroDevice.cpp | ||||||
|  |     Devices/GPU/Bochs/GraphicsAdapter.cpp | ||||||
|  |     Devices/GPU/Bochs/QEMUDisplayConnector.cpp | ||||||
|  |     Devices/GPU/Console/BootFramebufferConsole.cpp | ||||||
|  |     Devices/GPU/Console/GenericFramebufferConsole.cpp | ||||||
|  |     Devices/GPU/Console/ContiguousFramebufferConsole.cpp | ||||||
|  |     Devices/GPU/Console/VGATextModeConsole.cpp | ||||||
|  |     Devices/GPU/DisplayConnector.cpp | ||||||
|  |     Devices/GPU/Generic/DisplayConnector.cpp | ||||||
|  |     Devices/GPU/Management.cpp | ||||||
|  |     Devices/GPU/Intel/Auxiliary/GMBusConnector.cpp | ||||||
|  |     Devices/GPU/Intel/Plane/DisplayPlane.cpp | ||||||
|  |     Devices/GPU/Intel/Plane/G33DisplayPlane.cpp | ||||||
|  |     Devices/GPU/Intel/Transcoder/AnalogDisplayTranscoder.cpp | ||||||
|  |     Devices/GPU/Intel/Transcoder/DisplayTranscoder.cpp | ||||||
|  |     Devices/GPU/Intel/Transcoder/PLL.cpp | ||||||
|  |     Devices/GPU/Intel/DisplayConnectorGroup.cpp | ||||||
|  |     Devices/GPU/Intel/NativeDisplayConnector.cpp | ||||||
|  |     Devices/GPU/Intel/NativeGraphicsAdapter.cpp | ||||||
|  |     Devices/GPU/VMWare/Console.cpp | ||||||
|  |     Devices/GPU/VMWare/GraphicsAdapter.cpp | ||||||
|  |     Devices/GPU/VMWare/DisplayConnector.cpp | ||||||
|  |     Devices/GPU/VirtIO/DisplayConnector.cpp | ||||||
|  |     Devices/GPU/VirtIO/Console.cpp | ||||||
|  |     Devices/GPU/VirtIO/GPU3DDevice.cpp | ||||||
|  |     Devices/GPU/VirtIO/GraphicsAdapter.cpp | ||||||
|     Devices/Storage/ATA/AHCI/Controller.cpp |     Devices/Storage/ATA/AHCI/Controller.cpp | ||||||
|     Devices/Storage/ATA/AHCI/Port.cpp |     Devices/Storage/ATA/AHCI/Port.cpp | ||||||
|     Devices/Storage/ATA/AHCI/InterruptHandler.cpp |     Devices/Storage/ATA/AHCI/InterruptHandler.cpp | ||||||
|  | @ -89,31 +114,6 @@ set(KERNEL_SOURCES | ||||||
|     Devices/Storage/StorageController.cpp |     Devices/Storage/StorageController.cpp | ||||||
|     Devices/Storage/StorageDevice.cpp |     Devices/Storage/StorageDevice.cpp | ||||||
|     Devices/Storage/StorageManagement.cpp |     Devices/Storage/StorageManagement.cpp | ||||||
|     Graphics/Bochs/GraphicsAdapter.cpp |  | ||||||
|     Graphics/Bochs/QEMUDisplayConnector.cpp |  | ||||||
|     Graphics/Console/BootFramebufferConsole.cpp |  | ||||||
|     Graphics/Console/GenericFramebufferConsole.cpp |  | ||||||
|     Graphics/Console/ContiguousFramebufferConsole.cpp |  | ||||||
|     Graphics/Console/VGATextModeConsole.cpp |  | ||||||
|     Graphics/DisplayConnector.cpp |  | ||||||
|     Graphics/Generic/DisplayConnector.cpp |  | ||||||
|     Graphics/GraphicsManagement.cpp |  | ||||||
|     Graphics/Intel/Auxiliary/GMBusConnector.cpp |  | ||||||
|     Graphics/Intel/Plane/DisplayPlane.cpp |  | ||||||
|     Graphics/Intel/Plane/G33DisplayPlane.cpp |  | ||||||
|     Graphics/Intel/Transcoder/AnalogDisplayTranscoder.cpp |  | ||||||
|     Graphics/Intel/Transcoder/DisplayTranscoder.cpp |  | ||||||
|     Graphics/Intel/Transcoder/PLL.cpp |  | ||||||
|     Graphics/Intel/DisplayConnectorGroup.cpp |  | ||||||
|     Graphics/Intel/NativeDisplayConnector.cpp |  | ||||||
|     Graphics/Intel/NativeGraphicsAdapter.cpp |  | ||||||
|     Graphics/VMWare/Console.cpp |  | ||||||
|     Graphics/VMWare/GraphicsAdapter.cpp |  | ||||||
|     Graphics/VMWare/DisplayConnector.cpp |  | ||||||
|     Graphics/VirtIOGPU/DisplayConnector.cpp |  | ||||||
|     Graphics/VirtIOGPU/Console.cpp |  | ||||||
|     Graphics/VirtIOGPU/GPU3DDevice.cpp |  | ||||||
|     Graphics/VirtIOGPU/GraphicsAdapter.cpp |  | ||||||
|     SanCov.cpp |     SanCov.cpp | ||||||
|     FileSystem/AnonymousFile.cpp |     FileSystem/AnonymousFile.cpp | ||||||
|     FileSystem/BlockBasedFileSystem.cpp |     FileSystem/BlockBasedFileSystem.cpp | ||||||
|  |  | ||||||
|  | @ -12,11 +12,11 @@ | ||||||
| #endif | #endif | ||||||
| #include <Kernel/Bus/PCI/API.h> | #include <Kernel/Bus/PCI/API.h> | ||||||
| #include <Kernel/Bus/PCI/IDs.h> | #include <Kernel/Bus/PCI/IDs.h> | ||||||
| #include <Kernel/Graphics/Bochs/Definitions.h> | #include <Kernel/Devices/GPU/Bochs/Definitions.h> | ||||||
| #include <Kernel/Graphics/Bochs/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/Bochs/GraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/Bochs/QEMUDisplayConnector.h> | #include <Kernel/Devices/GPU/Bochs/QEMUDisplayConnector.h> | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
| #include <Kernel/Sections.h> | #include <Kernel/Sections.h> | ||||||
| 
 | 
 | ||||||
|  | @ -8,9 +8,9 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Bus/PCI/Device.h> | #include <Kernel/Bus/PCI/Device.h> | ||||||
| #include <Kernel/Graphics/Bochs/Definitions.h> | #include <Kernel/Devices/GPU/Bochs/Definitions.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GenericGraphicsAdapter.h> | #include <Kernel/Devices/GPU/GenericGraphicsAdapter.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
| 
 | 
 | ||||||
|  | @ -6,9 +6,9 @@ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Debug.h> | #include <Kernel/Debug.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/Bochs/QEMUDisplayConnector.h> | #include <Kernel/Devices/GPU/Bochs/QEMUDisplayConnector.h> | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <LibEDID/Definitions.h> | #include <LibEDID/Definitions.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -7,9 +7,9 @@ | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <Kernel/Graphics/Bochs/Definitions.h> | #include <Kernel/Devices/GPU/Bochs/Definitions.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Library/LockRefPtr.h> | #include <Kernel/Library/LockRefPtr.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
|  | @ -4,7 +4,7 @@ | ||||||
|  * SPDX-License-Identifier: BSD-2-Clause |  * SPDX-License-Identifier: BSD-2-Clause | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Console/BootFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/BootFramebufferConsole.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/Memory/MemoryManager.h> | #include <Kernel/Memory/MemoryManager.h> | ||||||
| 
 | 
 | ||||||
|  | @ -6,8 +6,8 @@ | ||||||
| 
 | 
 | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
|  | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Forward.h> | #include <Kernel/Forward.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> |  | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics { | namespace Kernel::Graphics { | ||||||
| 
 | 
 | ||||||
|  | @ -8,7 +8,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/AtomicRefCounted.h> | #include <AK/AtomicRefCounted.h> | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Graphics/GenericGraphicsAdapter.h> | #include <Kernel/Devices/GPU/GenericGraphicsAdapter.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics { | namespace Kernel::Graphics { | ||||||
| 
 | 
 | ||||||
|  | @ -4,7 +4,7 @@ | ||||||
|  * SPDX-License-Identifier: BSD-2-Clause |  * SPDX-License-Identifier: BSD-2-Clause | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/TTY/ConsoleManagement.h> | #include <Kernel/TTY/ConsoleManagement.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics { | namespace Kernel::Graphics { | ||||||
|  | @ -6,7 +6,7 @@ | ||||||
| 
 | 
 | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics { | namespace Kernel::Graphics { | ||||||
| 
 | 
 | ||||||
|  | @ -5,7 +5,7 @@ | ||||||
|  * SPDX-License-Identifier: BSD-2-Clause |  * SPDX-License-Identifier: BSD-2-Clause | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/TTY/ConsoleManagement.h> | #include <Kernel/TTY/ConsoleManagement.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics { | namespace Kernel::Graphics { | ||||||
|  | @ -7,7 +7,7 @@ | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Graphics/Console/Console.h> | #include <Kernel/Devices/GPU/Console/Console.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics { | namespace Kernel::Graphics { | ||||||
|  | @ -4,8 +4,8 @@ | ||||||
|  * SPDX-License-Identifier: BSD-2-Clause |  * SPDX-License-Identifier: BSD-2-Clause | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Console/VGATextModeConsole.h> | #include <Kernel/Devices/GPU/Console/VGATextModeConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Sections.h> | #include <Kernel/Sections.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics { | namespace Kernel::Graphics { | ||||||
|  | @ -7,7 +7,7 @@ | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Graphics/Console/Console.h> | #include <Kernel/Devices/GPU/Console/Console.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics { | namespace Kernel::Graphics { | ||||||
|  | @ -5,11 +5,11 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/API/Ioctl.h> | #include <Kernel/API/Ioctl.h> | ||||||
|  | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
|  | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/FileSystem/SysFS/Subsystems/DeviceIdentifiers/CharacterDevicesDirectory.h> | #include <Kernel/FileSystem/SysFS/Subsystems/DeviceIdentifiers/CharacterDevicesDirectory.h> | ||||||
| #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/DeviceDirectory.h> | #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/DeviceDirectory.h> | ||||||
| #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/Directory.h> | #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/Directory.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> |  | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> |  | ||||||
| #include <Kernel/Memory/MemoryManager.h> | #include <Kernel/Memory/MemoryManager.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -5,9 +5,9 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/Generic/DisplayConnector.h> | #include <Kernel/Devices/GPU/Generic/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
| 
 | 
 | ||||||
|  | @ -7,8 +7,8 @@ | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Library/LockRefPtr.h> | #include <Kernel/Library/LockRefPtr.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
|  | @ -5,7 +5,7 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Arch/Delay.h> | #include <Kernel/Arch/Delay.h> | ||||||
| #include <Kernel/Graphics/Intel/Auxiliary/GMBusConnector.h> | #include <Kernel/Devices/GPU/Intel/Auxiliary/GMBusConnector.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -8,12 +8,12 @@ | ||||||
| #include <Kernel/Bus/PCI/API.h> | #include <Kernel/Bus/PCI/API.h> | ||||||
| #include <Kernel/Debug.h> | #include <Kernel/Debug.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Intel/DisplayConnectorGroup.h> | ||||||
| #include <Kernel/Graphics/Intel/DisplayConnectorGroup.h> | #include <Kernel/Devices/GPU/Intel/Plane/G33DisplayPlane.h> | ||||||
| #include <Kernel/Graphics/Intel/Plane/G33DisplayPlane.h> | #include <Kernel/Devices/GPU/Intel/Transcoder/AnalogDisplayTranscoder.h> | ||||||
| #include <Kernel/Graphics/Intel/Transcoder/AnalogDisplayTranscoder.h> | #include <Kernel/Devices/GPU/Intel/Transcoder/PLL.h> | ||||||
| #include <Kernel/Graphics/Intel/Transcoder/PLL.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Memory/Region.h> | #include <Kernel/Memory/Region.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
| 
 | 
 | ||||||
|  | @ -8,12 +8,12 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/RefPtr.h> | #include <AK/RefPtr.h> | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/Intel/Auxiliary/GMBusConnector.h> | #include <Kernel/Devices/GPU/Intel/Auxiliary/GMBusConnector.h> | ||||||
| #include <Kernel/Graphics/Intel/Definitions.h> | #include <Kernel/Devices/GPU/Intel/Definitions.h> | ||||||
| #include <Kernel/Graphics/Intel/NativeDisplayConnector.h> | #include <Kernel/Devices/GPU/Intel/NativeDisplayConnector.h> | ||||||
| #include <Kernel/Graphics/Intel/Plane/DisplayPlane.h> | #include <Kernel/Devices/GPU/Intel/Plane/DisplayPlane.h> | ||||||
| #include <Kernel/Graphics/Intel/Transcoder/DisplayTranscoder.h> | #include <Kernel/Devices/GPU/Intel/Transcoder/DisplayTranscoder.h> | ||||||
| #include <Kernel/Library/LockRefPtr.h> | #include <Kernel/Library/LockRefPtr.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
| #include <LibEDID/EDID.h> | #include <LibEDID/EDID.h> | ||||||
|  | @ -8,10 +8,10 @@ | ||||||
| #include <Kernel/Bus/PCI/API.h> | #include <Kernel/Bus/PCI/API.h> | ||||||
| #include <Kernel/Debug.h> | #include <Kernel/Debug.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Intel/DisplayConnectorGroup.h> | ||||||
| #include <Kernel/Graphics/Intel/DisplayConnectorGroup.h> | #include <Kernel/Devices/GPU/Intel/NativeDisplayConnector.h> | ||||||
| #include <Kernel/Graphics/Intel/NativeDisplayConnector.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Memory/Region.h> | #include <Kernel/Memory/Region.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -7,10 +7,10 @@ | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/Definitions.h> | #include <Kernel/Devices/GPU/Definitions.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/Intel/Auxiliary/GMBusConnector.h> | #include <Kernel/Devices/GPU/Intel/Auxiliary/GMBusConnector.h> | ||||||
| #include <Kernel/Library/LockRefPtr.h> | #include <Kernel/Library/LockRefPtr.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
| 
 | 
 | ||||||
|  | @ -5,10 +5,10 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Bus/PCI/API.h> | #include <Kernel/Bus/PCI/API.h> | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/Definitions.h> | #include <Kernel/Devices/GPU/Definitions.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Intel/NativeGraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/Intel/NativeGraphicsAdapter.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -8,9 +8,9 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Bus/PCI/Device.h> | #include <Kernel/Bus/PCI/Device.h> | ||||||
| #include <Kernel/Graphics/Definitions.h> | #include <Kernel/Devices/GPU/Definitions.h> | ||||||
| #include <Kernel/Graphics/Intel/DisplayConnectorGroup.h> | #include <Kernel/Devices/GPU/Intel/DisplayConnectorGroup.h> | ||||||
| #include <Kernel/Graphics/Intel/NativeDisplayConnector.h> | #include <Kernel/Devices/GPU/Intel/NativeDisplayConnector.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| #include <LibEDID/EDID.h> | #include <LibEDID/EDID.h> | ||||||
| 
 | 
 | ||||||
|  | @ -4,7 +4,7 @@ | ||||||
|  * SPDX-License-Identifier: BSD-2-Clause |  * SPDX-License-Identifier: BSD-2-Clause | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Intel/Plane/DisplayPlane.h> | #include <Kernel/Devices/GPU/Intel/Plane/DisplayPlane.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -9,8 +9,8 @@ | ||||||
| #include <AK/RefPtr.h> | #include <AK/RefPtr.h> | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/Intel/Definitions.h> | #include <Kernel/Devices/GPU/Intel/Definitions.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
| 
 | 
 | ||||||
|  | @ -4,7 +4,7 @@ | ||||||
|  * SPDX-License-Identifier: BSD-2-Clause |  * SPDX-License-Identifier: BSD-2-Clause | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Intel/Plane/G33DisplayPlane.h> | #include <Kernel/Devices/GPU/Intel/Plane/G33DisplayPlane.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -9,7 +9,7 @@ | ||||||
| #include <AK/RefPtr.h> | #include <AK/RefPtr.h> | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Graphics/Intel/Plane/DisplayPlane.h> | #include <Kernel/Devices/GPU/Intel/Plane/DisplayPlane.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
| 
 | 
 | ||||||
|  | @ -5,7 +5,7 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Arch/Delay.h> | #include <Kernel/Arch/Delay.h> | ||||||
| #include <Kernel/Graphics/Intel/Transcoder/AnalogDisplayTranscoder.h> | #include <Kernel/Devices/GPU/Intel/Transcoder/AnalogDisplayTranscoder.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -9,7 +9,7 @@ | ||||||
| #include <AK/RefPtr.h> | #include <AK/RefPtr.h> | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Graphics/Intel/Transcoder/DisplayTranscoder.h> | #include <Kernel/Devices/GPU/Intel/Transcoder/DisplayTranscoder.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
| 
 | 
 | ||||||
|  | @ -5,7 +5,7 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Arch/Delay.h> | #include <Kernel/Arch/Delay.h> | ||||||
| #include <Kernel/Graphics/Intel/Transcoder/DisplayTranscoder.h> | #include <Kernel/Devices/GPU/Intel/Transcoder/DisplayTranscoder.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -9,8 +9,8 @@ | ||||||
| #include <AK/RefPtr.h> | #include <AK/RefPtr.h> | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/Intel/Definitions.h> | #include <Kernel/Devices/GPU/Intel/Definitions.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
| 
 | 
 | ||||||
|  | @ -6,7 +6,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/Format.h> | #include <AK/Format.h> | ||||||
| #include <Kernel/Debug.h> | #include <Kernel/Debug.h> | ||||||
| #include <Kernel/Graphics/Intel/Transcoder/PLL.h> | #include <Kernel/Devices/GPU/Intel/Transcoder/PLL.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::IntelGraphics { | namespace Kernel::IntelGraphics { | ||||||
| 
 | 
 | ||||||
|  | @ -7,7 +7,7 @@ | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <AK/Optional.h> | #include <AK/Optional.h> | ||||||
| #include <Kernel/Graphics/Intel/Definitions.h> | #include <Kernel/Devices/GPU/Intel/Definitions.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::IntelGraphics { | namespace Kernel::IntelGraphics { | ||||||
| 
 | 
 | ||||||
|  | @ -13,12 +13,12 @@ | ||||||
| #include <Kernel/Boot/Multiboot.h> | #include <Kernel/Boot/Multiboot.h> | ||||||
| #include <Kernel/Bus/PCI/API.h> | #include <Kernel/Bus/PCI/API.h> | ||||||
| #include <Kernel/Bus/PCI/IDs.h> | #include <Kernel/Bus/PCI/IDs.h> | ||||||
| #include <Kernel/Graphics/Bochs/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/Bochs/GraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/Console/BootFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/BootFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Intel/NativeGraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/Intel/NativeGraphicsAdapter.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Graphics/VMWare/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VMWare/GraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VirtIO/GraphicsAdapter.h> | ||||||
| #include <Kernel/Memory/AnonymousVMObject.h> | #include <Kernel/Memory/AnonymousVMObject.h> | ||||||
| #include <Kernel/Sections.h> | #include <Kernel/Sections.h> | ||||||
| 
 | 
 | ||||||
|  | @ -13,11 +13,11 @@ | ||||||
| #    include <Kernel/Arch/x86_64/VGA/IOArbiter.h> | #    include <Kernel/Arch/x86_64/VGA/IOArbiter.h> | ||||||
| #endif | #endif | ||||||
| #include <Kernel/Bus/PCI/Definitions.h> | #include <Kernel/Bus/PCI/Definitions.h> | ||||||
| #include <Kernel/Graphics/Console/Console.h> | #include <Kernel/Devices/GPU/Console/Console.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/Generic/DisplayConnector.h> | #include <Kernel/Devices/GPU/Generic/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/GenericGraphicsAdapter.h> | #include <Kernel/Devices/GPU/GenericGraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VirtIO/GraphicsAdapter.h> | ||||||
| #include <Kernel/Library/NonnullLockRefPtr.h> | #include <Kernel/Library/NonnullLockRefPtr.h> | ||||||
| #include <Kernel/Memory/Region.h> | #include <Kernel/Memory/Region.h> | ||||||
| 
 | 
 | ||||||
|  | @ -4,7 +4,7 @@ | ||||||
|  * SPDX-License-Identifier: BSD-2-Clause |  * SPDX-License-Identifier: BSD-2-Clause | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/VMWare/Console.h> | #include <Kernel/Devices/GPU/VMWare/Console.h> | ||||||
| #include <Kernel/Tasks/WorkQueue.h> | #include <Kernel/Tasks/WorkQueue.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -6,8 +6,8 @@ | ||||||
| 
 | 
 | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/VMWare/DisplayConnector.h> | #include <Kernel/Devices/GPU/VMWare/DisplayConnector.h> | ||||||
| #include <Kernel/Time/TimerQueue.h> | #include <Kernel/Time/TimerQueue.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -5,9 +5,9 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Graphics/VMWare/Console.h> | #include <Kernel/Devices/GPU/VMWare/Console.h> | ||||||
| #include <Kernel/Graphics/VMWare/DisplayConnector.h> | #include <Kernel/Devices/GPU/VMWare/DisplayConnector.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
| 
 | 
 | ||||||
|  | @ -7,9 +7,9 @@ | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/VMWare/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VMWare/GraphicsAdapter.h> | ||||||
| #include <Kernel/Library/LockRefPtr.h> | #include <Kernel/Library/LockRefPtr.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
|  | @ -9,11 +9,11 @@ | ||||||
| #include <AK/Try.h> | #include <AK/Try.h> | ||||||
| #include <Kernel/Bus/PCI/API.h> | #include <Kernel/Bus/PCI/API.h> | ||||||
| #include <Kernel/Bus/PCI/IDs.h> | #include <Kernel/Bus/PCI/IDs.h> | ||||||
| #include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/ContiguousFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Graphics/VMWare/Definitions.h> | #include <Kernel/Devices/GPU/VMWare/Definitions.h> | ||||||
| #include <Kernel/Graphics/VMWare/DisplayConnector.h> | #include <Kernel/Devices/GPU/VMWare/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/VMWare/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VMWare/GraphicsAdapter.h> | ||||||
| #include <Kernel/Library/IOWindow.h> | #include <Kernel/Library/IOWindow.h> | ||||||
| #include <Kernel/Memory/TypedMapping.h> | #include <Kernel/Memory/TypedMapping.h> | ||||||
| #include <Kernel/Sections.h> | #include <Kernel/Sections.h> | ||||||
|  | @ -8,8 +8,8 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/Types.h> | #include <AK/Types.h> | ||||||
| #include <Kernel/Bus/PCI/Device.h> | #include <Kernel/Bus/PCI/Device.h> | ||||||
| #include <Kernel/Graphics/GenericGraphicsAdapter.h> | #include <Kernel/Devices/GPU/GenericGraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/VMWare/Definitions.h> | #include <Kernel/Devices/GPU/VMWare/Definitions.h> | ||||||
| #include <Kernel/Library/IOWindow.h> | #include <Kernel/Library/IOWindow.h> | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/Memory/PhysicalAddress.h> | #include <Kernel/Memory/PhysicalAddress.h> | ||||||
|  | @ -4,7 +4,7 @@ | ||||||
|  * SPDX-License-Identifier: BSD-2-Clause |  * SPDX-License-Identifier: BSD-2-Clause | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Console.h> | #include <Kernel/Devices/GPU/VirtIO/Console.h> | ||||||
| #include <Kernel/TTY/ConsoleManagement.h> | #include <Kernel/TTY/ConsoleManagement.h> | ||||||
| #include <Kernel/Tasks/WorkQueue.h> | #include <Kernel/Tasks/WorkQueue.h> | ||||||
| 
 | 
 | ||||||
|  | @ -6,8 +6,8 @@ | ||||||
| 
 | 
 | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/DisplayConnector.h> | #include <Kernel/Devices/GPU/VirtIO/DisplayConnector.h> | ||||||
| #include <Kernel/Time/TimerQueue.h> | #include <Kernel/Time/TimerQueue.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics::VirtIOGPU { | namespace Kernel::Graphics::VirtIOGPU { | ||||||
|  | @ -6,11 +6,11 @@ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/API/VirGL.h> | #include <Kernel/API/VirGL.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Console.h> | #include <Kernel/Devices/GPU/VirtIO/Console.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/DisplayConnector.h> | #include <Kernel/Devices/GPU/VirtIO/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VirtIO/GraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Protocol.h> | #include <Kernel/Devices/GPU/VirtIO/Protocol.h> | ||||||
| #include <Kernel/Security/Random.h> | #include <Kernel/Security/Random.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -9,10 +9,10 @@ | ||||||
| #include <AK/BinaryBufferWriter.h> | #include <AK/BinaryBufferWriter.h> | ||||||
| #include <AK/DistinctNumeric.h> | #include <AK/DistinctNumeric.h> | ||||||
| #include <Kernel/Devices/CharacterDevice.h> | #include <Kernel/Devices/CharacterDevice.h> | ||||||
| #include <Kernel/Graphics/Console/Console.h> | #include <Kernel/Devices/GPU/Console/Console.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VirtIO/GraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Protocol.h> | #include <Kernel/Devices/GPU/VirtIO/Protocol.h> | ||||||
| #include <Kernel/Memory/Region.h> | #include <Kernel/Memory/Region.h> | ||||||
| #include <LibEDID/EDID.h> | #include <LibEDID/EDID.h> | ||||||
| 
 | 
 | ||||||
|  | @ -6,11 +6,11 @@ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/API/Ioctl.h> | #include <Kernel/API/Ioctl.h> | ||||||
| #include <Kernel/API/VirGL.h> | #include <Kernel/API/VirGL.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Console.h> | #include <Kernel/Devices/GPU/VirtIO/Console.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/GPU3DDevice.h> | #include <Kernel/Devices/GPU/VirtIO/GPU3DDevice.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VirtIO/GraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Protocol.h> | #include <Kernel/Devices/GPU/VirtIO/Protocol.h> | ||||||
| #include <Kernel/Security/Random.h> | #include <Kernel/Security/Random.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  | @ -10,7 +10,7 @@ | ||||||
| #include <AK/IntrusiveList.h> | #include <AK/IntrusiveList.h> | ||||||
| #include <Kernel/Devices/CharacterDevice.h> | #include <Kernel/Devices/CharacterDevice.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Protocol.h> | #include <Kernel/Devices/GPU/VirtIO/Protocol.h> | ||||||
| #include <Kernel/Locking/SpinlockProtected.h> | #include <Kernel/Locking/SpinlockProtected.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel::Graphics::VirtIOGPU { | namespace Kernel::Graphics::VirtIOGPU { | ||||||
|  | @ -9,12 +9,12 @@ | ||||||
| #include <Kernel/Bus/PCI/API.h> | #include <Kernel/Bus/PCI/API.h> | ||||||
| #include <Kernel/Bus/PCI/IDs.h> | #include <Kernel/Bus/PCI/IDs.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/Console/GenericFramebufferConsole.h> | #include <Kernel/Devices/GPU/Console/GenericFramebufferConsole.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Console.h> | #include <Kernel/Devices/GPU/VirtIO/Console.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/DisplayConnector.h> | #include <Kernel/Devices/GPU/VirtIO/DisplayConnector.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/GPU3DDevice.h> | #include <Kernel/Devices/GPU/VirtIO/GPU3DDevice.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h> | #include <Kernel/Devices/GPU/VirtIO/GraphicsAdapter.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
| 
 | 
 | ||||||
|  | @ -10,8 +10,8 @@ | ||||||
| #include <AK/DistinctNumeric.h> | #include <AK/DistinctNumeric.h> | ||||||
| #include <Kernel/Bus/VirtIO/Device.h> | #include <Kernel/Bus/VirtIO/Device.h> | ||||||
| #include <Kernel/Bus/VirtIO/Queue.h> | #include <Kernel/Bus/VirtIO/Queue.h> | ||||||
| #include <Kernel/Graphics/GenericGraphicsAdapter.h> | #include <Kernel/Devices/GPU/GenericGraphicsAdapter.h> | ||||||
| #include <Kernel/Graphics/VirtIOGPU/Protocol.h> | #include <Kernel/Devices/GPU/VirtIO/Protocol.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
| 
 | 
 | ||||||
|  | @ -6,9 +6,9 @@ | ||||||
| 
 | 
 | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
|  | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/FileSystem/SysFS/Component.h> | #include <Kernel/FileSystem/SysFS/Component.h> | ||||||
| #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/DeviceDirectory.h> | #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/DeviceDirectory.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> |  | ||||||
| #include <Kernel/Library/KBuffer.h> | #include <Kernel/Library/KBuffer.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  |  | ||||||
|  | @ -6,9 +6,9 @@ | ||||||
| 
 | 
 | ||||||
| #include <Kernel/Bus/PCI/API.h> | #include <Kernel/Bus/PCI/API.h> | ||||||
| #include <Kernel/Bus/PCI/Access.h> | #include <Kernel/Bus/PCI/Access.h> | ||||||
|  | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/DeviceAttribute.h> | #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/DeviceAttribute.h> | ||||||
| #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/DeviceDirectory.h> | #include <Kernel/FileSystem/SysFS/Subsystems/Devices/Graphics/DisplayConnector/DeviceDirectory.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> |  | ||||||
| #include <Kernel/Sections.h> | #include <Kernel/Sections.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  |  | ||||||
|  | @ -6,8 +6,8 @@ | ||||||
| 
 | 
 | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
|  | #include <Kernel/Devices/GPU/DisplayConnector.h> | ||||||
| #include <Kernel/FileSystem/SysFS/Component.h> | #include <Kernel/FileSystem/SysFS/Component.h> | ||||||
| #include <Kernel/Graphics/DisplayConnector.h> |  | ||||||
| #include <Kernel/Library/KString.h> | #include <Kernel/Library/KString.h> | ||||||
| 
 | 
 | ||||||
| namespace Kernel { | namespace Kernel { | ||||||
|  |  | ||||||
|  | @ -8,7 +8,7 @@ | ||||||
| #include <Kernel/Boot/CommandLine.h> | #include <Kernel/Boot/CommandLine.h> | ||||||
| #include <Kernel/Debug.h> | #include <Kernel/Debug.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Library/Panic.h> | #include <Kernel/Library/Panic.h> | ||||||
| #include <Kernel/Sections.h> | #include <Kernel/Sections.h> | ||||||
| #include <Kernel/TTY/ConsoleManagement.h> | #include <Kernel/TTY/ConsoleManagement.h> | ||||||
|  |  | ||||||
|  | @ -13,8 +13,8 @@ | ||||||
| #endif | #endif | ||||||
| #include <Kernel/Boot/CommandLine.h> | #include <Kernel/Boot/CommandLine.h> | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
|  | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Devices/HID/Management.h> | #include <Kernel/Devices/HID/Management.h> | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> |  | ||||||
| #include <Kernel/Heap/kmalloc.h> | #include <Kernel/Heap/kmalloc.h> | ||||||
| #include <Kernel/Library/StdLib.h> | #include <Kernel/Library/StdLib.h> | ||||||
| #include <Kernel/Sections.h> | #include <Kernel/Sections.h> | ||||||
|  |  | ||||||
|  | @ -10,9 +10,9 @@ | ||||||
| #include <AK/Noncopyable.h> | #include <AK/Noncopyable.h> | ||||||
| #include <AK/Vector.h> | #include <AK/Vector.h> | ||||||
| #include <Kernel/API/KeyCode.h> | #include <Kernel/API/KeyCode.h> | ||||||
|  | #include <Kernel/Devices/GPU/Console/Console.h> | ||||||
| #include <Kernel/Devices/Generic/ConsoleDevice.h> | #include <Kernel/Devices/Generic/ConsoleDevice.h> | ||||||
| #include <Kernel/Devices/HID/Management.h> | #include <Kernel/Devices/HID/Management.h> | ||||||
| #include <Kernel/Graphics/Console/Console.h> |  | ||||||
| #include <Kernel/TTY/TTY.h> | #include <Kernel/TTY/TTY.h> | ||||||
| #include <LibVT/Attribute.h> | #include <LibVT/Attribute.h> | ||||||
| #include <LibVT/Color.h> | #include <LibVT/Color.h> | ||||||
|  |  | ||||||
|  | @ -12,10 +12,10 @@ | ||||||
| #    include <Kernel/Arch/x86_64/BochsDebugOutput.h> | #    include <Kernel/Arch/x86_64/BochsDebugOutput.h> | ||||||
| #endif | #endif | ||||||
| #include <Kernel/Devices/DeviceManagement.h> | #include <Kernel/Devices/DeviceManagement.h> | ||||||
|  | #include <Kernel/Devices/GPU/Console/BootFramebufferConsole.h> | ||||||
|  | #include <Kernel/Devices/GPU/Management.h> | ||||||
| #include <Kernel/Devices/Generic/ConsoleDevice.h> | #include <Kernel/Devices/Generic/ConsoleDevice.h> | ||||||
| #include <Kernel/Devices/PCISerialDevice.h> | #include <Kernel/Devices/PCISerialDevice.h> | ||||||
| #include <Kernel/Graphics/Console/BootFramebufferConsole.h> |  | ||||||
| #include <Kernel/Graphics/GraphicsManagement.h> |  | ||||||
| #include <Kernel/Locking/Spinlock.h> | #include <Kernel/Locking/Spinlock.h> | ||||||
| #include <Kernel/TTY/ConsoleManagement.h> | #include <Kernel/TTY/ConsoleManagement.h> | ||||||
| #include <Kernel/kstdio.h> | #include <Kernel/kstdio.h> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Liav A
						Liav A