| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | /**  * SCSI2SD V6 - Copyright (C) 2013 Michael McMaster <michael@codesrc.com> * Copyright (C) 2014 Doug Brown <doug@downtowndougbrown.com * ZuluSCSI™ - Copyright (c) 2022 Rabbit Hole Computing™ * Copyright (C) 2024 Eric Helgeson <erichelgeson@gmail.com> *  * It is derived from disk.h in SCSI2SD V6. *  * This file is licensed under the GPL version 3 or any later version.  *  * https://www.gnu.org/licenses/gpl-3.0.html * ---- * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version.  *  * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details.  *  * You should have received a copy of the GNU General Public License * along with this program.  If not, see <https://www.gnu.org/licenses/>.**/// SCSI disk access routines// Implements both SCSI2SD V6 disk.h functions and some extra.#pragma once#include <stdint.h>#include <scsi2sd.h>#include <scsiPhy.h>#include "ImageBackingStore.h"#include "BlueSCSI_config.h"extern "C" {#include <disk.h>#include <config.h>#include <scsi.h>}// Extended configuration stored alongside the normal SCSI2SD target informationstruct image_config_t: public S2S_TargetCfg{    image_config_t() {};    ImageBackingStore file;    // For CD-ROM drive ejection    bool ejected;    uint8_t cdrom_events;    bool reinsert_on_inquiry; // Reinsert on Inquiry command (to reinsert automatically after boot)    bool reinsert_after_eject; // Reinsert next image after ejection    // selects a physical button channel that will cause an eject action    // default option of '0' disables this functionality    uint8_t ejectButton;    // For tape drive emulation, current position in blocks    uint32_t tape_pos;    // True if there is a subdirectory of images for this target    bool image_directory;    // the name of the currently mounted image in a dynamic image directory    char current_image[MAX_FILE_PATH];    // Index of image, for when image on-the-fly switching is used for CD drives    // This is also used for dynamic directories to track how many images have been seen    // Negative value forces restart from first image.    int image_index;    // Cue sheet file for CD-ROM images    FsFile cuesheetfile;    // Right-align vendor / product type strings (for Apple)    // Standard SCSI uses left alignment    // This field uses -1 for default when field is not set in .ini    int rightAlignStrings;    // Set Vendor / Product Id from image file name    bool name_from_image;    // Maximum amount of bytes to prefetch    int prefetchbytes;    // Warning about geometry settings    bool geometrywarningprinted;    // Clear any image state to zeros    void clear();private:    // There should be only one global instance of this struct per device, so make copy constructor private.    image_config_t(const image_config_t&) = default;};// Should be polled intermittently to update the platform eject buttons.// Call with 'true' only if ejections should be performed immediately (typically when not busy)// Returns a mask of the buttons that registered an 'eject' action.uint8_t diskEjectButtonUpdate(bool immediate);// Reset all image configuration to empty reset state, close all images.void scsiDiskResetImages();// Close any files opened from SD card (prepare for remounting SD)void scsiDiskCloseSDCardImages();bool scsiDiskOpenHDDImage(const char *filename, int scsi_id, int scsi_lun, int block_size, S2S_CFG_TYPE type = S2S_CFG_FIXED);void scsiDiskLoadConfig(int target_idx);// Checks if a filename extension is appropriate for further processing as a disk image.// The current implementation does not check the the filename prefix for validity.bool scsiDiskFilenameValid(const char* name);// Clear the ROM drive header from flashbool scsiDiskClearRomDrive();// Program ROM drive and rename image filebool scsiDiskProgramRomDrive(const char *filename, int scsi_id, int blocksize, S2S_CFG_TYPE type);// Check if there is ROM drive configured in microcontroller flashbool scsiDiskCheckRomDrive();bool scsiDiskActivateRomDrive();// Returns true if there is at least one image activebool scsiDiskCheckAnyImagesConfigured();// Gets the next image filename for the target, if configured for multiple// images. As a side effect this advances image tracking to the next image.// Returns the length of the new image filename, or 0 if the target is not// configured for multiple images.int scsiDiskGetNextImageName(image_config_t &img, char *buf, size_t buf_len);// Get pointer to extended image configuration based on target idximage_config_t &scsiDiskGetImageConfig(int target_idx);// Start data transfer from disk image to SCSI bus// Can be called by device type specific command implementations (such as READ CD)void scsiDiskStartRead(uint32_t lba, uint32_t blocks);// Start data transfer from SCSI bus to disk imagevoid scsiDiskStartWrite(uint32_t lba, uint32_t blocks);// Returns true if there is at least one network device activebool scsiDiskCheckAnyNetworkDevicesConfigured();// Switch to next Drive image if multiple have been configuredbool switchNextImage(image_config_t &img, const char* next_filename = nullptr);// For removable, non-CD based imagesvoid removableInsert(image_config_t &img);// For removable, non-CD based imagesvoid removableEject(image_config_t &img);
 |