mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:32:45 +00:00 
			
		
		
		
	 2c987367e6
			
		
	
	
		2c987367e6
		
	
	
	
	
		
			
			This simplifies the flow of how things work currently and is a step for more improvements in the next commits.
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			604 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			604 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/OwnPtr.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <AK/Types.h>
 | |
| #include <Kernel/Storage/ATA/GenericIDE/Controller.h>
 | |
| #include <Kernel/Storage/StorageDevice.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| class AsyncBlockDeviceRequest;
 | |
| 
 | |
| class ISAIDEController final : public IDEController {
 | |
| public:
 | |
|     static NonnullRefPtr<ISAIDEController> initialize();
 | |
| 
 | |
| private:
 | |
|     ISAIDEController();
 | |
| 
 | |
|     RefPtr<StorageDevice> device_by_channel_and_position(u32 index) const;
 | |
|     void initialize_channels();
 | |
| };
 | |
| }
 |