blob: 3c52398e3ff177951dc195a8f79a4cf2e080934b [file] [log] [blame]
Simon Glass1377d442022-09-21 16:21:36 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Emulation of enough SCSI commands to find and read from a unit
4 *
5 * Copyright 2022 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 *
8 * implementations of SCSI functions required so that CONFIG_SCSI can be enabled
9 * for sandbox
10 */
11
12#ifndef __scsi_emul_h
13#define __scsi_emul_h
14
15/**
16 * struct scsi_emul_info - information for emulating a SCSI device
17 *
Simon Glass0c12d9d2022-09-21 16:21:38 +020018 * @vendor: Vendor name
19 * @product: Product name
Simon Glassa3718f12022-09-21 16:21:39 +020020 * @block_size: Block size of device in bytes (normally 512)
Simon Glassf148ad12022-09-21 16:21:40 +020021 * @file_size: Size of the backing file for this emulator, in bytes
Simon Glass0c12d9d2022-09-21 16:21:38 +020022 *
Simon Glass1377d442022-09-21 16:21:36 +020023 * @phase: Current SCSI phase
24 * @buff_used: Number of bytes ready to transfer back to host
25 * @read_len: Number of bytes of data left in the current read command
26 * @alloc_len: Allocation length from the last incoming command
27 * @transfer_len: Transfer length from CBW header
Simon Glassfc7a7ed2022-09-21 16:21:37 +020028 * @buff: Data buffer for outgoing data
Simon Glass1377d442022-09-21 16:21:36 +020029 */
30struct scsi_emul_info {
Simon Glassfc7a7ed2022-09-21 16:21:37 +020031 /* provided by the caller: */
32 void *buff;
Simon Glass0c12d9d2022-09-21 16:21:38 +020033 const char *vendor;
34 const char *product;
Simon Glassa3718f12022-09-21 16:21:39 +020035 int block_size;
Simon Glassf148ad12022-09-21 16:21:40 +020036 loff_t file_size;
Simon Glassfc7a7ed2022-09-21 16:21:37 +020037
38 /* state maintained by the emulator: */
Simon Glass1377d442022-09-21 16:21:36 +020039 enum scsi_cmd_phase phase;
40 int buff_used;
41 int read_len;
42 int alloc_len;
43 uint transfer_len;
44};
45
46#endif