xref: /haiku/src/add-ons/kernel/drivers/disk/scsi/scsi_cd/scsi_cd.h (revision adb0d19d561947362090081e81d90dde59142026)
1 /*
2  * Copyright 2008, Axel Dörfler, axeld@pinc-software.de.
3  * Copyright 2003, Thomas Kurschel. All rights reserved.
4  * Distributed under the terms of the MIT License.
5  */
6 #ifndef _SCSI_CD_H
7 #define _SCSI_CD_H
8 
9 
10 #include <device_manager.h>
11 #include <scsi_periph.h>
12 #include <scsi.h>
13 
14 #include "dma_resources.h"
15 #include "IORequest.h"
16 #include "IOScheduler.h"
17 
18 
19 #define SCSI_CD_DRIVER_MODULE_NAME "drivers/disk/scsi/scsi_cd/driver_v1"
20 #define SCSI_CD_DEVICE_MODULE_NAME "drivers/disk/scsi/scsi_cd/device_v1"
21 
22 
23 struct cd_driver_info {
24 	device_node*			node;
25 	::scsi_periph_device	scsi_periph_device;
26 	::scsi_device			scsi_device;
27 	scsi_device_interface*	scsi;
28 	IOScheduler*			io_scheduler;
29 	DMAResource*			dma_resource;
30 
31 	uint64					capacity;
32 	uint32					block_size;
33 
34 	bool					removable;
35 	uint8					device_type;
36 };
37 
38 struct cd_handle {
39 	::scsi_periph_handle	scsi_periph_handle;
40 	cd_driver_info*			info;
41 };
42 
43 #endif	// _SCSI_CD_H
44