mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:12:45 +00:00 
			
		
		
		
	 aacb1f0bf4
			
		
	
	
		aacb1f0bf4
		
	
	
	
	
		
			
			Now that the old PCI::Device was removed, we can complete the PCI changes by making the PCI::DeviceController to be named PCI::Device. Really the entire purpose and the distinction between the two was about interrupts, but since this is no longer a problem, just rename it to simplify things further.
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/OwnPtr.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <Kernel/Bus/PCI/Access.h>
 | |
| #include <Kernel/Bus/PCI/Device.h>
 | |
| #include <Kernel/Devices/Device.h>
 | |
| #include <Kernel/IO.h>
 | |
| #include <Kernel/Locking/Mutex.h>
 | |
| #include <Kernel/Memory/PhysicalPage.h>
 | |
| #include <Kernel/PhysicalAddress.h>
 | |
| #include <Kernel/Random.h>
 | |
| #include <Kernel/WaitQueue.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| class AsyncBlockDeviceRequest;
 | |
| class StorageDevice;
 | |
| class StorageController : public RefCounted<StorageController> {
 | |
|     AK_MAKE_ETERNAL
 | |
| 
 | |
| public:
 | |
|     virtual ~StorageController() = default;
 | |
| 
 | |
|     virtual RefPtr<StorageDevice> device(u32 index) const = 0;
 | |
|     virtual size_t devices_count() const = 0;
 | |
| 
 | |
| protected:
 | |
|     virtual void start_request(const StorageDevice&, AsyncBlockDeviceRequest&) = 0;
 | |
| 
 | |
| protected:
 | |
|     virtual bool reset() = 0;
 | |
|     virtual bool shutdown() = 0;
 | |
| 
 | |
|     virtual void complete_current_request(AsyncDeviceRequest::RequestResult) = 0;
 | |
| };
 | |
| }
 |