2018-05-03 13:47:57 +00:00
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2022-08-26 01:01:39 +00:00
|
|
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// for Raspberry Pi
|
|
|
|
|
//
|
|
|
|
|
// Powered by XM6 TypeG Technology.
|
2020-07-04 14:57:44 +00:00
|
|
|
|
// Copyright (C) 2016-2020 GIMONS
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// [ GPIO-SCSI bus ]
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
2022-09-10 21:40:24 +00:00
|
|
|
|
#pragma once
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-02-13 19:30:02 +00:00
|
|
|
|
#include "config.h"
|
2018-05-03 13:47:57 +00:00
|
|
|
|
#include "scsi.h"
|
2022-10-29 16:10:00 +00:00
|
|
|
|
#include "bus.h"
|
2022-10-01 15:56:06 +00:00
|
|
|
|
#include <array>
|
2022-11-06 18:44:44 +00:00
|
|
|
|
#include <vector>
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-10-04 15:23:42 +00:00
|
|
|
|
#ifdef __linux__
|
2022-09-25 21:49:24 +00:00
|
|
|
|
#include <linux/gpio.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Connection method definitions
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
2020-07-06 03:56:25 +00:00
|
|
|
|
//#define CONNECT_TYPE_STANDARD // Standard (SCSI logic, standard pin assignment)
|
|
|
|
|
//#define CONNECT_TYPE_FULLSPEC // Full spec (SCSI logic, standard pin assignment)
|
|
|
|
|
//#define CONNECT_TYPE_AIBOM // AIBOM version (positive logic, unique pin assignment)
|
|
|
|
|
//#define CONNECT_TYPE_GAMERNIUM // GAMERnium.com version (standard logic, unique pin assignment)
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-09-10 21:40:24 +00:00
|
|
|
|
#if defined CONNECT_TYPE_STANDARD
|
|
|
|
|
#include "hal/gpiobus_standard.h"
|
|
|
|
|
#elif defined CONNECT_TYPE_FULLSPEC
|
|
|
|
|
#include "hal/gpiobus_fullspec.h"
|
|
|
|
|
#elif defined CONNECT_TYPE_AIBOM
|
|
|
|
|
#include "hal/gpiobus_aibom.h"
|
|
|
|
|
#elif defined CONNECT_TYPE_GAMERNIUM
|
|
|
|
|
#include "hal/gpiobus_gamernium.h"
|
|
|
|
|
#else
|
|
|
|
|
#error Invalid connection type or none specified
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
#ifdef ENABLE_GPIO_TRACE
|
|
|
|
|
#define GPIO_FUNCTION_TRACE LOGTRACE("%s", __PRETTY_FUNCTION__)
|
|
|
|
|
#else
|
|
|
|
|
#define GPIO_FUNCTION_TRACE
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-10-29 16:10:00 +00:00
|
|
|
|
using namespace std;
|
2022-10-01 15:56:06 +00:00
|
|
|
|
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Signal control logic and pin assignment customization
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// SIGNAL_CONTROL_MODE: Signal control mode selection
|
|
|
|
|
// You can customize the signal control logic from Version 1.22
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// 0:SCSI logical specification
|
|
|
|
|
// Conversion board using 74LS641-1 etc. directly connected or published on HP
|
|
|
|
|
// True : 0V
|
|
|
|
|
// False : Open collector output (disconnect from bus)
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// 1:Negative logic specification (when using conversion board for negative logic -> SCSI logic)
|
|
|
|
|
// There is no conversion board with this specification at this time
|
|
|
|
|
// True : 0V -> (CONVERT) -> 0V
|
|
|
|
|
// False : 3.3V -> (CONVERT) -> Open collector output
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// 2:Positive logic specification (when using the conversion board for positive logic -> SCSI logic)
|
|
|
|
|
// RaSCSI Adapter Rev.C @132sync etc.
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// True : 3.3V -> (CONVERT) -> 0V
|
|
|
|
|
// False : 0V -> (CONVERT) -> Open collector output
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Control signal pin assignment setting
|
|
|
|
|
// GPIO pin mapping table for control signals.
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Control signal:
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// PIN_ACT
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Signal that indicates the status of processing SCSI command.
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// PIN_ENB
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Signal that indicates the valid signal from start to finish.
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// PIN_TAD
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Signal that indicates the input/output direction of the target signal (BSY,IO,CD,MSG,REG).
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// PIN_IND
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Signal that indicates the input/output direction of the initiator signal (SEL, ATN, RST, ACK).
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// PIN_DTD
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Signal that indicates the input/output direction of the data lines (DT0...DT7,DP).
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Control signal output logic
|
|
|
|
|
// 0V:FALSE 3.3V:TRUE
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
// ACT_ON
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// PIN_ACT signal
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// ENB_ON
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// PIN_ENB signal
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// TAD_IN
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// PIN_TAD This is the logic when inputting.
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// IND_IN
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// PIN_ENB This is the logic when inputting.
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// DTD_IN
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// PIN_ENB This is the logic when inputting.
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// SCSI signal pin assignment setting
|
|
|
|
|
// GPIO pin mapping table for SCSI signals.
|
2018-05-03 13:47:57 +00:00
|
|
|
|
// PIN_DT0~PIN_SEL
|
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
#define ALL_SCSI_PINS \
|
|
|
|
|
((1 << PIN_DT0) | (1 << PIN_DT1) | (1 << PIN_DT2) | (1 << PIN_DT3) | (1 << PIN_DT4) | (1 << PIN_DT5) | \
|
|
|
|
|
(1 << PIN_DT6) | (1 << PIN_DT7) | (1 << PIN_DP) | (1 << PIN_ATN) | (1 << PIN_RST) | (1 << PIN_ACK) | \
|
|
|
|
|
(1 << PIN_REQ) | (1 << PIN_MSG) | (1 << PIN_CD) | (1 << PIN_IO) | (1 << PIN_BSY) | (1 << PIN_SEL))
|
2020-10-19 12:31:06 +00:00
|
|
|
|
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
Configurable block size, controller/device cleanup, dispatchers per device, bridge setup (#203)
* Use foreach
* Renaming
* Revert "Renaming"
This reverts commit b0554b9c0a052e282625a4565d429313af2b3cc7.
* Manpage updates
* Removed obsolete assertions
* Replaced QWORD by uint64_t and removed respective typedef
* Removed LPCSTR typedef
* Removed LPCTSTR typedef
* Removed LPTSTR typedef
* Renamed SCSI command interface classes
* Renamed xm6.h to rascsi.h
* Moved interface classes to new interfaces subfolder
* Added include
* Fixed compilation issues of 64 bit Ubuntu
* Renaming
* Sort block sizes
* protobuf interface description update
* Fixed handling for sector size for non-disk devices
* Fixed typo
* Fixed comment
* Translate code commends into English, removing redundant ones (#214)
* Comment update
* For other bridge interfaces than eth0 IP address and netmask can be provided
* Added special rule for testing on x86 PCs
* Translated code comments into English, removing some redundant ones in the process, plus fixing typos (#215)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* Comment update
* Removed unused typedefs
* Added special rule for testing on x86 PCs
* Comment update
* Comment update
* Updated capacity calculation
* Updated protobuf interface to signal parameter support
* Simplified protobuf interface
* Updated rasctl server info output
* Updated logging
* protobuf interface has to return block only if it is configurable
* Updated block size handling
* Improved error message if ID is already in use
* Removed typedef
* Renamed protobuf interface method
* Renaming
* Use protobuf::Messsge instead of protobuf::MessageLite
* default_image_folder cannot be an empty string, removed obsolete check
* Logging update
* Made some error messages more concise
* Removed magic constant
* Updated error message
* Comment update
* Names of removable media drives must be constant and not contain the capacity
* Improved DeviceFactory error handling
* More error handing improvements
* Interface comment update
* Pass interface list to ctapdriver when creating bridge
* Moved initialization code
* Updated rasctl server information output
* Improved handling of MO capacities
* Renaming
* Comment update
* Reject inserting a medium when there is already a medium present (eject first)
* Save list of files in use before dry-run
* Updated rasctl server info message
* Comment update
* Fixed typo
* Cleaned list handling
* Sort devices list by ID *and unit*
* Improved block size check
* Fixed issue with missing method in old Raspberry Pi OS protobuf implementation
* Updated error message
* Improve and fix bugs with saving&loading configuration files for rascsi-web (#218)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Removed unused structures, code and type cleanup
* Use unscoped enums for commands
* SASI Format opcode is 0x06, not 0x04 (see comment in code)
* Removed duplicate command
* Code review, data type updates
* Data type updated, use #pragma once
* Logging update
* Renaming
* Renaming
* Removed duplicate code
* Renaming
* Refactoring
* Removed TODO
* Updated logging
* Comment update
* Comment update
* Updated GetEventStatusNotification
* Removed goto
* Options -h and -v do not require to be the root user (fixes issue #166)
* Updated error messages and exception handling
* Added number of supported LUNs to protobuf interface
* Updated list handling of protobuf interface
* Comment update
* Improved error handling
* Added missing return statement
* Allow empty device list
* Fixed unnecessary detach_all() when config file isn't read (#221)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Protecting/unprotecing a non-ready medium is considered not possible
* Updated error message
* Extract detaching all devices, add parameter list support
* Comment update
* Fixed typos
* Restore files in use if dry-run fails
* Feature configurable reserved id for rascsi-web (#223)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make the reserved SCSI id configurable through an argument to start.sh; make the rascsi-web service reserve 7 by default to maintain current behavior.
* Make it possible to reserve multiple scsi ids in the web ui
* Added support for reserved IDs
* rasctl output update
* Re-ordered logging
* Logging update
* Make use of the newly introduced 'rasctl -r' to have the webui reserve ids on the backend side upon startup (#224)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make use of the new 'rasctl -r' command to reserve IDs on the backend side as well.
* Updated string to integer conversions
* Improved string to integer conversion
* Move string to integer conversion to rasutil
* Removed unused variable
* Fixed detach, which did not remove the filename from the filenames set
* Re-added folder to gitignore
* Set/Display patch version
* Fix issue where reserved ids were not reserved again when restarting rascsi-service from within the web ui (#226)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make use of the new 'rasctl -r' command to reserve IDs on the backend side as well.
* Make sure reserved SCSI IDs gets reserved again when restarting rascsi-service from within the web ui
* Updated interface comment
* Accept daynaport as legacy type
* Fixed typo
* Remove file from the list of files in use when ejected with a SCSI command
* Check for attached device for INSERT, EJECT, PROTECT, UNPROTECT
* Fixed error handling
* Fixed filepath handling
* Added more device shortcuts to rasctl
* Fixed function declaration
* Extraced ATTACH and DETACH
* Extracted INSERT
* Simplified ProcessCmd
* Comment update
* Fixed memory leak
* Log information on whether a new device is protected or read-only
* Updated errro message
* Updated error message
* Initialize private fields
* Updated rasctl help message
* Added DEVICE_INFO to protobuf interface
* Improved error handling
* DEVICE_INFO supports device list
* Updated server info handling
* Unified result handling with oneof, all commands now return PbResult
* A result can always return a message string
* Fixed typo
* Simplified sending of commands
* Improved error handling
* Removed unused code
* Updated error handling
* Code cleanup
* Comment update
* Updated logging
* Updated error handling
* Updated handling of removed status for devices without image file support
* Comment update
* Fixed typo
* Updated logging
* Updated parameter handling
* Updated setting default interfaces
* Revert "Updated setting default interfaces"
This reverts commit 210abc775d9a79dd0c631cf3877966a2923f4d5b.
* Revert "Updated parameter handling"
This reverts commit 35302addd59f5f5e1cc032888ba32dcbb426a846.
* rascsi supports reserving IDs
* Updated help message
* Replaced BOOL by bool
* Logging update
* Logging update
* Added default parameters to device properties
* Return parameters a device was set up with
* Improved device initialization
* Updated default parameter handling
* Updated default parameter handling
* Fixed typo
* Comment updates
* Comment update
* Manage default parameters in the respective device
* Do not pass empty parameter string
* Added supports_params flag
* Made comparisons more consistent
* Updated error handling
* Updated exception handling
* Renaming
* Comment update
* NEC sectors size must be 512 bytes
* Updated logging
* Updated vendor name handling
* Updated handling of media loading/unloading
* Added stoppable property and stopped status
* Made MO stoppable
* Removed duplicate code
* Removed duplicate code
* Copy read-only property
* Renaming
* Removed duplicate code, added START/STOP
* Improved default parameter handling
* Updated load/eject handling
* Logging update
* Fixed typo
* Verified START/STOP UNIT
* Updated logging
* Updated status handling
* Updated status handling
* More status handling updates
* Logging update
* Made instance fields local variables
* Made disk_t private
* Made some data structures private
* Fixed ARM compile issue
* Fixed ctapdriver initialization issue
* Reset read-only status when opening an image file
* Made logging more consistent
* Updated log level
* Log load/eject on error level for testing
* Revert "Log load/eject on error level for testing"
This reverts commit d35a15ea8e520517d25e1e1054ad1aeda9f85f2e.
* Assume drive is not ready after having been stopped
* Updated status handling
* Fixed typo
* Rebuild manpage
* Fixed issue #234 (MODE SENSE (10) returns wrong mode parameter header)
* Removed unused code
* Enum data type update
* Removed duplicate range check
* Removed duplicate code
* Removed more duplicate code
* Logging update
* SCCD sector size was not meant to be configurable
* Updated configurable sector size properties
* Removed assertion
* Improved error handling
* Updated error handling
* Re-added special error handling only relevant for SASI
* Added TODOs
* Comment update
* Added override modifier
* Removed obsolete debug flag (related code was not called)
* Comment and logging updates
* Removed obsolete try/catch
* Revert "Removed obsolete try/catch"
This reverts commit 39ca12d8b153c706316ce79f4fec65c9abc60024.
* Comment update
* Removed duplicate code
* Updated error messages, use more foreach loops
* Updated logging
* Logging update
* README update
* Added block_count
* Evaluate block size when inserting a media
* rasctl display capacity if available
* Info message update
* Added missing product name to NEC vital product data
* MO block size depends on capacity only
* Extended property/status display
* Property display update
* Updated error handling
* (Doc only changes) Fix typos and add clarification that SASI is used on Unix workstations
Co-authored-by: Daniel Markstedt <markstedt@gmail.com>
Co-authored-by: Tony Kuker <akuker@gmail.com>
2021-09-15 01:23:04 +00:00
|
|
|
|
// Constant declarations (GPIO)
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
2022-10-25 00:21:40 +00:00
|
|
|
|
const static uint32_t SYST_OFFSET = 0x00003000;
|
|
|
|
|
const static uint32_t IRPT_OFFSET = 0x0000B200;
|
|
|
|
|
const static uint32_t ARMT_OFFSET = 0x0000B400;
|
|
|
|
|
const static uint32_t PADS_OFFSET = 0x00100000;
|
|
|
|
|
const static uint32_t GPIO_OFFSET = 0x00200000;
|
|
|
|
|
const static uint32_t QA7_OFFSET = 0x01000000;
|
|
|
|
|
|
|
|
|
|
const static int GPIO_INPUT = 0;
|
|
|
|
|
const static int GPIO_OUTPUT = 1;
|
|
|
|
|
const static int GPIO_PULLNONE = 0;
|
|
|
|
|
const static int GPIO_PULLDOWN = 1;
|
|
|
|
|
const static int GPIO_PULLUP = 2;
|
|
|
|
|
const static int GPIO_FSEL_0 = 0;
|
|
|
|
|
const static int GPIO_FSEL_1 = 1;
|
|
|
|
|
const static int GPIO_FSEL_2 = 2;
|
|
|
|
|
const static int GPIO_FSEL_3 = 3;
|
|
|
|
|
const static int GPIO_SET_0 = 7;
|
|
|
|
|
const static int GPIO_CLR_0 = 10;
|
|
|
|
|
const static int GPIO_LEV_0 = 13;
|
|
|
|
|
const static int GPIO_EDS_0 = 16;
|
|
|
|
|
const static int GPIO_REN_0 = 19;
|
|
|
|
|
const static int GPIO_FEN_0 = 22;
|
|
|
|
|
const static int GPIO_HEN_0 = 25;
|
|
|
|
|
const static int GPIO_LEN_0 = 28;
|
|
|
|
|
const static int GPIO_AREN_0 = 31;
|
|
|
|
|
const static int GPIO_AFEN_0 = 34;
|
|
|
|
|
const static int GPIO_PUD = 37;
|
|
|
|
|
const static int GPIO_CLK_0 = 38;
|
|
|
|
|
const static int GPIO_GPPINMUXSD = 52;
|
|
|
|
|
const static int GPIO_PUPPDN0 = 57;
|
|
|
|
|
const static int GPIO_PUPPDN1 = 58;
|
|
|
|
|
const static int GPIO_PUPPDN3 = 59;
|
|
|
|
|
const static int GPIO_PUPPDN4 = 60;
|
|
|
|
|
const static int PAD_0_27 = 11;
|
|
|
|
|
const static int SYST_CS = 0;
|
|
|
|
|
const static int SYST_CLO = 1;
|
|
|
|
|
const static int SYST_CHI = 2;
|
|
|
|
|
const static int SYST_C0 = 3;
|
|
|
|
|
const static int SYST_C1 = 4;
|
|
|
|
|
const static int SYST_C2 = 5;
|
|
|
|
|
const static int SYST_C3 = 6;
|
|
|
|
|
const static int ARMT_LOAD = 0;
|
|
|
|
|
const static int ARMT_VALUE = 1;
|
|
|
|
|
const static int ARMT_CTRL = 2;
|
|
|
|
|
const static int ARMT_CLRIRQ = 3;
|
|
|
|
|
const static int ARMT_RAWIRQ = 4;
|
|
|
|
|
const static int ARMT_MSKIRQ = 5;
|
|
|
|
|
const static int ARMT_RELOAD = 6;
|
|
|
|
|
const static int ARMT_PREDIV = 7;
|
|
|
|
|
const static int ARMT_FREERUN = 8;
|
|
|
|
|
const static int IRPT_PND_IRQ_B = 0;
|
|
|
|
|
const static int IRPT_PND_IRQ_1 = 1;
|
|
|
|
|
const static int IRPT_PND_IRQ_2 = 2;
|
|
|
|
|
const static int IRPT_FIQ_CNTL = 3;
|
|
|
|
|
const static int IRPT_ENB_IRQ_1 = 4;
|
|
|
|
|
const static int IRPT_ENB_IRQ_2 = 5;
|
|
|
|
|
const static int IRPT_ENB_IRQ_B = 6;
|
|
|
|
|
const static int IRPT_DIS_IRQ_1 = 7;
|
|
|
|
|
const static int IRPT_DIS_IRQ_2 = 8;
|
|
|
|
|
const static int IRPT_DIS_IRQ_B = 9;
|
|
|
|
|
const static int QA7_CORE0_TINTC = 16;
|
|
|
|
|
const static int GPIO_IRQ = (32 + 20); // GPIO3
|
|
|
|
|
|
|
|
|
|
#define GPIO_INEDGE ((1 << PIN_BSY) | (1 << PIN_SEL) | (1 << PIN_ATN) | (1 << PIN_ACK) | (1 << PIN_RST))
|
|
|
|
|
|
|
|
|
|
#define GPIO_MCI ((1 << PIN_MSG) | (1 << PIN_CD) | (1 << PIN_IO))
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2020-07-04 14:57:44 +00:00
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
Configurable block size, controller/device cleanup, dispatchers per device, bridge setup (#203)
* Use foreach
* Renaming
* Revert "Renaming"
This reverts commit b0554b9c0a052e282625a4565d429313af2b3cc7.
* Manpage updates
* Removed obsolete assertions
* Replaced QWORD by uint64_t and removed respective typedef
* Removed LPCSTR typedef
* Removed LPCTSTR typedef
* Removed LPTSTR typedef
* Renamed SCSI command interface classes
* Renamed xm6.h to rascsi.h
* Moved interface classes to new interfaces subfolder
* Added include
* Fixed compilation issues of 64 bit Ubuntu
* Renaming
* Sort block sizes
* protobuf interface description update
* Fixed handling for sector size for non-disk devices
* Fixed typo
* Fixed comment
* Translate code commends into English, removing redundant ones (#214)
* Comment update
* For other bridge interfaces than eth0 IP address and netmask can be provided
* Added special rule for testing on x86 PCs
* Translated code comments into English, removing some redundant ones in the process, plus fixing typos (#215)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* Comment update
* Removed unused typedefs
* Added special rule for testing on x86 PCs
* Comment update
* Comment update
* Updated capacity calculation
* Updated protobuf interface to signal parameter support
* Simplified protobuf interface
* Updated rasctl server info output
* Updated logging
* protobuf interface has to return block only if it is configurable
* Updated block size handling
* Improved error message if ID is already in use
* Removed typedef
* Renamed protobuf interface method
* Renaming
* Use protobuf::Messsge instead of protobuf::MessageLite
* default_image_folder cannot be an empty string, removed obsolete check
* Logging update
* Made some error messages more concise
* Removed magic constant
* Updated error message
* Comment update
* Names of removable media drives must be constant and not contain the capacity
* Improved DeviceFactory error handling
* More error handing improvements
* Interface comment update
* Pass interface list to ctapdriver when creating bridge
* Moved initialization code
* Updated rasctl server information output
* Improved handling of MO capacities
* Renaming
* Comment update
* Reject inserting a medium when there is already a medium present (eject first)
* Save list of files in use before dry-run
* Updated rasctl server info message
* Comment update
* Fixed typo
* Cleaned list handling
* Sort devices list by ID *and unit*
* Improved block size check
* Fixed issue with missing method in old Raspberry Pi OS protobuf implementation
* Updated error message
* Improve and fix bugs with saving&loading configuration files for rascsi-web (#218)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Removed unused structures, code and type cleanup
* Use unscoped enums for commands
* SASI Format opcode is 0x06, not 0x04 (see comment in code)
* Removed duplicate command
* Code review, data type updates
* Data type updated, use #pragma once
* Logging update
* Renaming
* Renaming
* Removed duplicate code
* Renaming
* Refactoring
* Removed TODO
* Updated logging
* Comment update
* Comment update
* Updated GetEventStatusNotification
* Removed goto
* Options -h and -v do not require to be the root user (fixes issue #166)
* Updated error messages and exception handling
* Added number of supported LUNs to protobuf interface
* Updated list handling of protobuf interface
* Comment update
* Improved error handling
* Added missing return statement
* Allow empty device list
* Fixed unnecessary detach_all() when config file isn't read (#221)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Protecting/unprotecing a non-ready medium is considered not possible
* Updated error message
* Extract detaching all devices, add parameter list support
* Comment update
* Fixed typos
* Restore files in use if dry-run fails
* Feature configurable reserved id for rascsi-web (#223)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make the reserved SCSI id configurable through an argument to start.sh; make the rascsi-web service reserve 7 by default to maintain current behavior.
* Make it possible to reserve multiple scsi ids in the web ui
* Added support for reserved IDs
* rasctl output update
* Re-ordered logging
* Logging update
* Make use of the newly introduced 'rasctl -r' to have the webui reserve ids on the backend side upon startup (#224)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make use of the new 'rasctl -r' command to reserve IDs on the backend side as well.
* Updated string to integer conversions
* Improved string to integer conversion
* Move string to integer conversion to rasutil
* Removed unused variable
* Fixed detach, which did not remove the filename from the filenames set
* Re-added folder to gitignore
* Set/Display patch version
* Fix issue where reserved ids were not reserved again when restarting rascsi-service from within the web ui (#226)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make use of the new 'rasctl -r' command to reserve IDs on the backend side as well.
* Make sure reserved SCSI IDs gets reserved again when restarting rascsi-service from within the web ui
* Updated interface comment
* Accept daynaport as legacy type
* Fixed typo
* Remove file from the list of files in use when ejected with a SCSI command
* Check for attached device for INSERT, EJECT, PROTECT, UNPROTECT
* Fixed error handling
* Fixed filepath handling
* Added more device shortcuts to rasctl
* Fixed function declaration
* Extraced ATTACH and DETACH
* Extracted INSERT
* Simplified ProcessCmd
* Comment update
* Fixed memory leak
* Log information on whether a new device is protected or read-only
* Updated errro message
* Updated error message
* Initialize private fields
* Updated rasctl help message
* Added DEVICE_INFO to protobuf interface
* Improved error handling
* DEVICE_INFO supports device list
* Updated server info handling
* Unified result handling with oneof, all commands now return PbResult
* A result can always return a message string
* Fixed typo
* Simplified sending of commands
* Improved error handling
* Removed unused code
* Updated error handling
* Code cleanup
* Comment update
* Updated logging
* Updated error handling
* Updated handling of removed status for devices without image file support
* Comment update
* Fixed typo
* Updated logging
* Updated parameter handling
* Updated setting default interfaces
* Revert "Updated setting default interfaces"
This reverts commit 210abc775d9a79dd0c631cf3877966a2923f4d5b.
* Revert "Updated parameter handling"
This reverts commit 35302addd59f5f5e1cc032888ba32dcbb426a846.
* rascsi supports reserving IDs
* Updated help message
* Replaced BOOL by bool
* Logging update
* Logging update
* Added default parameters to device properties
* Return parameters a device was set up with
* Improved device initialization
* Updated default parameter handling
* Updated default parameter handling
* Fixed typo
* Comment updates
* Comment update
* Manage default parameters in the respective device
* Do not pass empty parameter string
* Added supports_params flag
* Made comparisons more consistent
* Updated error handling
* Updated exception handling
* Renaming
* Comment update
* NEC sectors size must be 512 bytes
* Updated logging
* Updated vendor name handling
* Updated handling of media loading/unloading
* Added stoppable property and stopped status
* Made MO stoppable
* Removed duplicate code
* Removed duplicate code
* Copy read-only property
* Renaming
* Removed duplicate code, added START/STOP
* Improved default parameter handling
* Updated load/eject handling
* Logging update
* Fixed typo
* Verified START/STOP UNIT
* Updated logging
* Updated status handling
* Updated status handling
* More status handling updates
* Logging update
* Made instance fields local variables
* Made disk_t private
* Made some data structures private
* Fixed ARM compile issue
* Fixed ctapdriver initialization issue
* Reset read-only status when opening an image file
* Made logging more consistent
* Updated log level
* Log load/eject on error level for testing
* Revert "Log load/eject on error level for testing"
This reverts commit d35a15ea8e520517d25e1e1054ad1aeda9f85f2e.
* Assume drive is not ready after having been stopped
* Updated status handling
* Fixed typo
* Rebuild manpage
* Fixed issue #234 (MODE SENSE (10) returns wrong mode parameter header)
* Removed unused code
* Enum data type update
* Removed duplicate range check
* Removed duplicate code
* Removed more duplicate code
* Logging update
* SCCD sector size was not meant to be configurable
* Updated configurable sector size properties
* Removed assertion
* Improved error handling
* Updated error handling
* Re-added special error handling only relevant for SASI
* Added TODOs
* Comment update
* Added override modifier
* Removed obsolete debug flag (related code was not called)
* Comment and logging updates
* Removed obsolete try/catch
* Revert "Removed obsolete try/catch"
This reverts commit 39ca12d8b153c706316ce79f4fec65c9abc60024.
* Comment update
* Removed duplicate code
* Updated error messages, use more foreach loops
* Updated logging
* Logging update
* README update
* Added block_count
* Evaluate block size when inserting a media
* rasctl display capacity if available
* Info message update
* Added missing product name to NEC vital product data
* MO block size depends on capacity only
* Extended property/status display
* Property display update
* Updated error handling
* (Doc only changes) Fix typos and add clarification that SASI is used on Unix workstations
Co-authored-by: Daniel Markstedt <markstedt@gmail.com>
Co-authored-by: Tony Kuker <akuker@gmail.com>
2021-09-15 01:23:04 +00:00
|
|
|
|
// Constant declarations (GIC)
|
2020-07-04 14:57:44 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
2022-10-25 00:21:40 +00:00
|
|
|
|
const static uint32_t ARM_GICD_BASE = 0xFF841000;
|
|
|
|
|
const static uint32_t ARM_GICC_BASE = 0xFF842000;
|
|
|
|
|
const static uint32_t ARM_GIC_END = 0xFF847FFF;
|
|
|
|
|
const static int GICD_CTLR = 0x000;
|
|
|
|
|
const static int GICD_IGROUPR0 = 0x020;
|
|
|
|
|
const static int GICD_ISENABLER0 = 0x040;
|
|
|
|
|
const static int GICD_ICENABLER0 = 0x060;
|
|
|
|
|
const static int GICD_ISPENDR0 = 0x080;
|
|
|
|
|
const static int GICD_ICPENDR0 = 0x0A0;
|
|
|
|
|
const static int GICD_ISACTIVER0 = 0x0C0;
|
|
|
|
|
const static int GICD_ICACTIVER0 = 0x0E0;
|
|
|
|
|
const static int GICD_IPRIORITYR0 = 0x100;
|
|
|
|
|
const static int GICD_ITARGETSR0 = 0x200;
|
|
|
|
|
const static int GICD_ICFGR0 = 0x300;
|
|
|
|
|
const static int GICD_SGIR = 0x3C0;
|
|
|
|
|
const static int GICC_CTLR = 0x000;
|
|
|
|
|
const static int GICC_PMR = 0x001;
|
|
|
|
|
const static int GICC_IAR = 0x003;
|
|
|
|
|
const static int GICC_EOIR = 0x004;
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
Configurable block size, controller/device cleanup, dispatchers per device, bridge setup (#203)
* Use foreach
* Renaming
* Revert "Renaming"
This reverts commit b0554b9c0a052e282625a4565d429313af2b3cc7.
* Manpage updates
* Removed obsolete assertions
* Replaced QWORD by uint64_t and removed respective typedef
* Removed LPCSTR typedef
* Removed LPCTSTR typedef
* Removed LPTSTR typedef
* Renamed SCSI command interface classes
* Renamed xm6.h to rascsi.h
* Moved interface classes to new interfaces subfolder
* Added include
* Fixed compilation issues of 64 bit Ubuntu
* Renaming
* Sort block sizes
* protobuf interface description update
* Fixed handling for sector size for non-disk devices
* Fixed typo
* Fixed comment
* Translate code commends into English, removing redundant ones (#214)
* Comment update
* For other bridge interfaces than eth0 IP address and netmask can be provided
* Added special rule for testing on x86 PCs
* Translated code comments into English, removing some redundant ones in the process, plus fixing typos (#215)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* Comment update
* Removed unused typedefs
* Added special rule for testing on x86 PCs
* Comment update
* Comment update
* Updated capacity calculation
* Updated protobuf interface to signal parameter support
* Simplified protobuf interface
* Updated rasctl server info output
* Updated logging
* protobuf interface has to return block only if it is configurable
* Updated block size handling
* Improved error message if ID is already in use
* Removed typedef
* Renamed protobuf interface method
* Renaming
* Use protobuf::Messsge instead of protobuf::MessageLite
* default_image_folder cannot be an empty string, removed obsolete check
* Logging update
* Made some error messages more concise
* Removed magic constant
* Updated error message
* Comment update
* Names of removable media drives must be constant and not contain the capacity
* Improved DeviceFactory error handling
* More error handing improvements
* Interface comment update
* Pass interface list to ctapdriver when creating bridge
* Moved initialization code
* Updated rasctl server information output
* Improved handling of MO capacities
* Renaming
* Comment update
* Reject inserting a medium when there is already a medium present (eject first)
* Save list of files in use before dry-run
* Updated rasctl server info message
* Comment update
* Fixed typo
* Cleaned list handling
* Sort devices list by ID *and unit*
* Improved block size check
* Fixed issue with missing method in old Raspberry Pi OS protobuf implementation
* Updated error message
* Improve and fix bugs with saving&loading configuration files for rascsi-web (#218)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Removed unused structures, code and type cleanup
* Use unscoped enums for commands
* SASI Format opcode is 0x06, not 0x04 (see comment in code)
* Removed duplicate command
* Code review, data type updates
* Data type updated, use #pragma once
* Logging update
* Renaming
* Renaming
* Removed duplicate code
* Renaming
* Refactoring
* Removed TODO
* Updated logging
* Comment update
* Comment update
* Updated GetEventStatusNotification
* Removed goto
* Options -h and -v do not require to be the root user (fixes issue #166)
* Updated error messages and exception handling
* Added number of supported LUNs to protobuf interface
* Updated list handling of protobuf interface
* Comment update
* Improved error handling
* Added missing return statement
* Allow empty device list
* Fixed unnecessary detach_all() when config file isn't read (#221)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Protecting/unprotecing a non-ready medium is considered not possible
* Updated error message
* Extract detaching all devices, add parameter list support
* Comment update
* Fixed typos
* Restore files in use if dry-run fails
* Feature configurable reserved id for rascsi-web (#223)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make the reserved SCSI id configurable through an argument to start.sh; make the rascsi-web service reserve 7 by default to maintain current behavior.
* Make it possible to reserve multiple scsi ids in the web ui
* Added support for reserved IDs
* rasctl output update
* Re-ordered logging
* Logging update
* Make use of the newly introduced 'rasctl -r' to have the webui reserve ids on the backend side upon startup (#224)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make use of the new 'rasctl -r' command to reserve IDs on the backend side as well.
* Updated string to integer conversions
* Improved string to integer conversion
* Move string to integer conversion to rasutil
* Removed unused variable
* Fixed detach, which did not remove the filename from the filenames set
* Re-added folder to gitignore
* Set/Display patch version
* Fix issue where reserved ids were not reserved again when restarting rascsi-service from within the web ui (#226)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make use of the new 'rasctl -r' command to reserve IDs on the backend side as well.
* Make sure reserved SCSI IDs gets reserved again when restarting rascsi-service from within the web ui
* Updated interface comment
* Accept daynaport as legacy type
* Fixed typo
* Remove file from the list of files in use when ejected with a SCSI command
* Check for attached device for INSERT, EJECT, PROTECT, UNPROTECT
* Fixed error handling
* Fixed filepath handling
* Added more device shortcuts to rasctl
* Fixed function declaration
* Extraced ATTACH and DETACH
* Extracted INSERT
* Simplified ProcessCmd
* Comment update
* Fixed memory leak
* Log information on whether a new device is protected or read-only
* Updated errro message
* Updated error message
* Initialize private fields
* Updated rasctl help message
* Added DEVICE_INFO to protobuf interface
* Improved error handling
* DEVICE_INFO supports device list
* Updated server info handling
* Unified result handling with oneof, all commands now return PbResult
* A result can always return a message string
* Fixed typo
* Simplified sending of commands
* Improved error handling
* Removed unused code
* Updated error handling
* Code cleanup
* Comment update
* Updated logging
* Updated error handling
* Updated handling of removed status for devices without image file support
* Comment update
* Fixed typo
* Updated logging
* Updated parameter handling
* Updated setting default interfaces
* Revert "Updated setting default interfaces"
This reverts commit 210abc775d9a79dd0c631cf3877966a2923f4d5b.
* Revert "Updated parameter handling"
This reverts commit 35302addd59f5f5e1cc032888ba32dcbb426a846.
* rascsi supports reserving IDs
* Updated help message
* Replaced BOOL by bool
* Logging update
* Logging update
* Added default parameters to device properties
* Return parameters a device was set up with
* Improved device initialization
* Updated default parameter handling
* Updated default parameter handling
* Fixed typo
* Comment updates
* Comment update
* Manage default parameters in the respective device
* Do not pass empty parameter string
* Added supports_params flag
* Made comparisons more consistent
* Updated error handling
* Updated exception handling
* Renaming
* Comment update
* NEC sectors size must be 512 bytes
* Updated logging
* Updated vendor name handling
* Updated handling of media loading/unloading
* Added stoppable property and stopped status
* Made MO stoppable
* Removed duplicate code
* Removed duplicate code
* Copy read-only property
* Renaming
* Removed duplicate code, added START/STOP
* Improved default parameter handling
* Updated load/eject handling
* Logging update
* Fixed typo
* Verified START/STOP UNIT
* Updated logging
* Updated status handling
* Updated status handling
* More status handling updates
* Logging update
* Made instance fields local variables
* Made disk_t private
* Made some data structures private
* Fixed ARM compile issue
* Fixed ctapdriver initialization issue
* Reset read-only status when opening an image file
* Made logging more consistent
* Updated log level
* Log load/eject on error level for testing
* Revert "Log load/eject on error level for testing"
This reverts commit d35a15ea8e520517d25e1e1054ad1aeda9f85f2e.
* Assume drive is not ready after having been stopped
* Updated status handling
* Fixed typo
* Rebuild manpage
* Fixed issue #234 (MODE SENSE (10) returns wrong mode parameter header)
* Removed unused code
* Enum data type update
* Removed duplicate range check
* Removed duplicate code
* Removed more duplicate code
* Logging update
* SCCD sector size was not meant to be configurable
* Updated configurable sector size properties
* Removed assertion
* Improved error handling
* Updated error handling
* Re-added special error handling only relevant for SASI
* Added TODOs
* Comment update
* Added override modifier
* Removed obsolete debug flag (related code was not called)
* Comment and logging updates
* Removed obsolete try/catch
* Revert "Removed obsolete try/catch"
This reverts commit 39ca12d8b153c706316ce79f4fec65c9abc60024.
* Comment update
* Removed duplicate code
* Updated error messages, use more foreach loops
* Updated logging
* Logging update
* README update
* Added block_count
* Evaluate block size when inserting a media
* rasctl display capacity if available
* Info message update
* Added missing product name to NEC vital product data
* MO block size depends on capacity only
* Extended property/status display
* Property display update
* Updated error handling
* (Doc only changes) Fix typos and add clarification that SASI is used on Unix workstations
Co-authored-by: Daniel Markstedt <markstedt@gmail.com>
Co-authored-by: Tony Kuker <akuker@gmail.com>
2021-09-15 01:23:04 +00:00
|
|
|
|
// Constant declarations (GIC IRQ)
|
2020-07-04 14:57:44 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
2022-10-25 00:21:40 +00:00
|
|
|
|
const static int GIC_IRQLOCAL0 = (16 + 14);
|
|
|
|
|
const static int GIC_GPIO_IRQ = (32 + 116); // GPIO3
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Constant declarations (Control signals)
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
2022-10-25 00:21:40 +00:00
|
|
|
|
#define ACT_OFF !ACT_ON
|
|
|
|
|
#define ENB_OFF !ENB_ON
|
|
|
|
|
#define TAD_OUT !TAD_IN
|
|
|
|
|
#define IND_OUT !IND_IN
|
|
|
|
|
#define DTD_OUT !DTD_IN
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
Configurable block size, controller/device cleanup, dispatchers per device, bridge setup (#203)
* Use foreach
* Renaming
* Revert "Renaming"
This reverts commit b0554b9c0a052e282625a4565d429313af2b3cc7.
* Manpage updates
* Removed obsolete assertions
* Replaced QWORD by uint64_t and removed respective typedef
* Removed LPCSTR typedef
* Removed LPCTSTR typedef
* Removed LPTSTR typedef
* Renamed SCSI command interface classes
* Renamed xm6.h to rascsi.h
* Moved interface classes to new interfaces subfolder
* Added include
* Fixed compilation issues of 64 bit Ubuntu
* Renaming
* Sort block sizes
* protobuf interface description update
* Fixed handling for sector size for non-disk devices
* Fixed typo
* Fixed comment
* Translate code commends into English, removing redundant ones (#214)
* Comment update
* For other bridge interfaces than eth0 IP address and netmask can be provided
* Added special rule for testing on x86 PCs
* Translated code comments into English, removing some redundant ones in the process, plus fixing typos (#215)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* Comment update
* Removed unused typedefs
* Added special rule for testing on x86 PCs
* Comment update
* Comment update
* Updated capacity calculation
* Updated protobuf interface to signal parameter support
* Simplified protobuf interface
* Updated rasctl server info output
* Updated logging
* protobuf interface has to return block only if it is configurable
* Updated block size handling
* Improved error message if ID is already in use
* Removed typedef
* Renamed protobuf interface method
* Renaming
* Use protobuf::Messsge instead of protobuf::MessageLite
* default_image_folder cannot be an empty string, removed obsolete check
* Logging update
* Made some error messages more concise
* Removed magic constant
* Updated error message
* Comment update
* Names of removable media drives must be constant and not contain the capacity
* Improved DeviceFactory error handling
* More error handing improvements
* Interface comment update
* Pass interface list to ctapdriver when creating bridge
* Moved initialization code
* Updated rasctl server information output
* Improved handling of MO capacities
* Renaming
* Comment update
* Reject inserting a medium when there is already a medium present (eject first)
* Save list of files in use before dry-run
* Updated rasctl server info message
* Comment update
* Fixed typo
* Cleaned list handling
* Sort devices list by ID *and unit*
* Improved block size check
* Fixed issue with missing method in old Raspberry Pi OS protobuf implementation
* Updated error message
* Improve and fix bugs with saving&loading configuration files for rascsi-web (#218)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Removed unused structures, code and type cleanup
* Use unscoped enums for commands
* SASI Format opcode is 0x06, not 0x04 (see comment in code)
* Removed duplicate command
* Code review, data type updates
* Data type updated, use #pragma once
* Logging update
* Renaming
* Renaming
* Removed duplicate code
* Renaming
* Refactoring
* Removed TODO
* Updated logging
* Comment update
* Comment update
* Updated GetEventStatusNotification
* Removed goto
* Options -h and -v do not require to be the root user (fixes issue #166)
* Updated error messages and exception handling
* Added number of supported LUNs to protobuf interface
* Updated list handling of protobuf interface
* Comment update
* Improved error handling
* Added missing return statement
* Allow empty device list
* Fixed unnecessary detach_all() when config file isn't read (#221)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Protecting/unprotecing a non-ready medium is considered not possible
* Updated error message
* Extract detaching all devices, add parameter list support
* Comment update
* Fixed typos
* Restore files in use if dry-run fails
* Feature configurable reserved id for rascsi-web (#223)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make the reserved SCSI id configurable through an argument to start.sh; make the rascsi-web service reserve 7 by default to maintain current behavior.
* Make it possible to reserve multiple scsi ids in the web ui
* Added support for reserved IDs
* rasctl output update
* Re-ordered logging
* Logging update
* Make use of the newly introduced 'rasctl -r' to have the webui reserve ids on the backend side upon startup (#224)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make use of the new 'rasctl -r' command to reserve IDs on the backend side as well.
* Updated string to integer conversions
* Improved string to integer conversion
* Move string to integer conversion to rasutil
* Removed unused variable
* Fixed detach, which did not remove the filename from the filenames set
* Re-added folder to gitignore
* Set/Display patch version
* Fix issue where reserved ids were not reserved again when restarting rascsi-service from within the web ui (#226)
* Translate code commends into English, removing redundant ones
* - Translated all remaining Japanese code comments in src/raspberrypi/ to English, with the exception of cfilesystem.cpp|h
- Removed some redundant comments where the context is obvious from the
code
- Fixed a few typos and mistakes
* - Store only file path and name to configuration csv
- Strip known non-file path strings when reading configuration csv (backwards compatibility)
- Validate SCSI ID before attempting to attach a device
* Add comment and TODO
* Partial translation of cfilesystem.h
* Move csv read/write logic into file_cmd.py
* Load default.csv on rascsi-web startup
* Add rudimentary error handling to config loading/saving
* Implement a delete configuration csv file feature. Also rename the delete_image method to delete_file and made it take the full file patch as argument to be consistent with other file operation methods.
* Catch the exception when attempting to exclude SCSI id that is already in use from a list of valid SCSI ids
* Fix error handling when failing to open a csv file for read or write
* Run detach_all() only after succeeding to open a file for reading
* Make use of the new 'rasctl -r' command to reserve IDs on the backend side as well.
* Make sure reserved SCSI IDs gets reserved again when restarting rascsi-service from within the web ui
* Updated interface comment
* Accept daynaport as legacy type
* Fixed typo
* Remove file from the list of files in use when ejected with a SCSI command
* Check for attached device for INSERT, EJECT, PROTECT, UNPROTECT
* Fixed error handling
* Fixed filepath handling
* Added more device shortcuts to rasctl
* Fixed function declaration
* Extraced ATTACH and DETACH
* Extracted INSERT
* Simplified ProcessCmd
* Comment update
* Fixed memory leak
* Log information on whether a new device is protected or read-only
* Updated errro message
* Updated error message
* Initialize private fields
* Updated rasctl help message
* Added DEVICE_INFO to protobuf interface
* Improved error handling
* DEVICE_INFO supports device list
* Updated server info handling
* Unified result handling with oneof, all commands now return PbResult
* A result can always return a message string
* Fixed typo
* Simplified sending of commands
* Improved error handling
* Removed unused code
* Updated error handling
* Code cleanup
* Comment update
* Updated logging
* Updated error handling
* Updated handling of removed status for devices without image file support
* Comment update
* Fixed typo
* Updated logging
* Updated parameter handling
* Updated setting default interfaces
* Revert "Updated setting default interfaces"
This reverts commit 210abc775d9a79dd0c631cf3877966a2923f4d5b.
* Revert "Updated parameter handling"
This reverts commit 35302addd59f5f5e1cc032888ba32dcbb426a846.
* rascsi supports reserving IDs
* Updated help message
* Replaced BOOL by bool
* Logging update
* Logging update
* Added default parameters to device properties
* Return parameters a device was set up with
* Improved device initialization
* Updated default parameter handling
* Updated default parameter handling
* Fixed typo
* Comment updates
* Comment update
* Manage default parameters in the respective device
* Do not pass empty parameter string
* Added supports_params flag
* Made comparisons more consistent
* Updated error handling
* Updated exception handling
* Renaming
* Comment update
* NEC sectors size must be 512 bytes
* Updated logging
* Updated vendor name handling
* Updated handling of media loading/unloading
* Added stoppable property and stopped status
* Made MO stoppable
* Removed duplicate code
* Removed duplicate code
* Copy read-only property
* Renaming
* Removed duplicate code, added START/STOP
* Improved default parameter handling
* Updated load/eject handling
* Logging update
* Fixed typo
* Verified START/STOP UNIT
* Updated logging
* Updated status handling
* Updated status handling
* More status handling updates
* Logging update
* Made instance fields local variables
* Made disk_t private
* Made some data structures private
* Fixed ARM compile issue
* Fixed ctapdriver initialization issue
* Reset read-only status when opening an image file
* Made logging more consistent
* Updated log level
* Log load/eject on error level for testing
* Revert "Log load/eject on error level for testing"
This reverts commit d35a15ea8e520517d25e1e1054ad1aeda9f85f2e.
* Assume drive is not ready after having been stopped
* Updated status handling
* Fixed typo
* Rebuild manpage
* Fixed issue #234 (MODE SENSE (10) returns wrong mode parameter header)
* Removed unused code
* Enum data type update
* Removed duplicate range check
* Removed duplicate code
* Removed more duplicate code
* Logging update
* SCCD sector size was not meant to be configurable
* Updated configurable sector size properties
* Removed assertion
* Improved error handling
* Updated error handling
* Re-added special error handling only relevant for SASI
* Added TODOs
* Comment update
* Added override modifier
* Removed obsolete debug flag (related code was not called)
* Comment and logging updates
* Removed obsolete try/catch
* Revert "Removed obsolete try/catch"
This reverts commit 39ca12d8b153c706316ce79f4fec65c9abc60024.
* Comment update
* Removed duplicate code
* Updated error messages, use more foreach loops
* Updated logging
* Logging update
* README update
* Added block_count
* Evaluate block size when inserting a media
* rasctl display capacity if available
* Info message update
* Added missing product name to NEC vital product data
* MO block size depends on capacity only
* Extended property/status display
* Property display update
* Updated error handling
* (Doc only changes) Fix typos and add clarification that SASI is used on Unix workstations
Co-authored-by: Daniel Markstedt <markstedt@gmail.com>
Co-authored-by: Tony Kuker <akuker@gmail.com>
2021-09-15 01:23:04 +00:00
|
|
|
|
// Constant declarations (SCSI)
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
2022-10-25 00:21:40 +00:00
|
|
|
|
#define IN GPIO_INPUT
|
|
|
|
|
#define OUT GPIO_OUTPUT
|
|
|
|
|
const static int ON = 1;
|
|
|
|
|
const static int OFF = 0;
|
2021-05-23 19:44:34 +00:00
|
|
|
|
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
//
|
2020-07-06 03:56:25 +00:00
|
|
|
|
// Class definition
|
2018-05-03 13:47:57 +00:00
|
|
|
|
//
|
|
|
|
|
//---------------------------------------------------------------------------
|
2022-10-25 00:21:40 +00:00
|
|
|
|
class GPIOBUS : public BUS
|
2018-05-03 13:47:57 +00:00
|
|
|
|
{
|
2022-10-25 00:21:40 +00:00
|
|
|
|
public:
|
|
|
|
|
static GPIOBUS *create();
|
|
|
|
|
|
|
|
|
|
// Basic Functions
|
|
|
|
|
GPIOBUS() = default;
|
|
|
|
|
~GPIOBUS() override = default;
|
|
|
|
|
// Destructor
|
|
|
|
|
bool Init(mode_e mode = mode_e::TARGET) override;
|
|
|
|
|
// Initialization
|
|
|
|
|
void Reset() override;
|
|
|
|
|
// Reset
|
|
|
|
|
void Cleanup() override;
|
|
|
|
|
// Cleanup
|
|
|
|
|
|
|
|
|
|
uint32_t Acquire() override = 0;
|
|
|
|
|
|
|
|
|
|
void SetENB(bool ast);
|
|
|
|
|
// Set ENB signal
|
|
|
|
|
|
|
|
|
|
bool GetBSY() const override;
|
|
|
|
|
// Get BSY signal
|
|
|
|
|
void SetBSY(bool ast) override;
|
|
|
|
|
// Set BSY signal
|
|
|
|
|
|
|
|
|
|
bool GetSEL() const override;
|
|
|
|
|
// Get SEL signal
|
|
|
|
|
void SetSEL(bool ast) override;
|
|
|
|
|
// Set SEL signal
|
|
|
|
|
|
|
|
|
|
bool GetATN() const override;
|
|
|
|
|
// Get ATN signal
|
|
|
|
|
void SetATN(bool ast) override;
|
|
|
|
|
// Set ATN signal
|
|
|
|
|
|
|
|
|
|
bool GetACK() const override;
|
|
|
|
|
// Get ACK signal
|
|
|
|
|
void SetACK(bool ast) override;
|
|
|
|
|
// Set ACK signal
|
|
|
|
|
|
|
|
|
|
bool GetACT() const;
|
|
|
|
|
// Get ACT signal
|
|
|
|
|
void SetACT(bool ast);
|
|
|
|
|
// Set ACT signal
|
|
|
|
|
|
|
|
|
|
bool GetRST() const override;
|
|
|
|
|
// Get RST signal
|
|
|
|
|
void SetRST(bool ast) override;
|
|
|
|
|
// Set RST signal
|
|
|
|
|
|
|
|
|
|
bool GetMSG() const override;
|
|
|
|
|
// Get MSG signal
|
|
|
|
|
void SetMSG(bool ast) override;
|
|
|
|
|
// Set MSG signal
|
|
|
|
|
|
|
|
|
|
bool GetCD() const override;
|
|
|
|
|
// Get CD signal
|
|
|
|
|
void SetCD(bool ast) override;
|
|
|
|
|
// Set CD signal
|
|
|
|
|
|
|
|
|
|
bool GetIO() override;
|
|
|
|
|
// Get IO signal
|
|
|
|
|
void SetIO(bool ast) override;
|
|
|
|
|
// Set IO signal
|
|
|
|
|
|
|
|
|
|
bool GetREQ() const override;
|
|
|
|
|
// Get REQ signal
|
|
|
|
|
void SetREQ(bool ast) override;
|
|
|
|
|
// Set REQ signal
|
|
|
|
|
bool GetDP() const override;
|
|
|
|
|
// Get Data parity signal
|
2022-11-06 18:44:44 +00:00
|
|
|
|
int CommandHandShake(vector<uint8_t>&) override;
|
2022-10-25 00:21:40 +00:00
|
|
|
|
// Command receive handshake
|
2022-11-02 06:36:25 +00:00
|
|
|
|
int ReceiveHandShake(uint8_t *buf, int count) override;
|
2022-10-25 00:21:40 +00:00
|
|
|
|
// Data receive handshake
|
2022-11-02 06:36:25 +00:00
|
|
|
|
int SendHandShake(uint8_t *buf, int count, int delay_after_bytes) override;
|
2022-10-25 00:21:40 +00:00
|
|
|
|
// Data transmission handshake
|
|
|
|
|
|
|
|
|
|
static BUS::phase_t GetPhaseRaw(uint32_t raw_data);
|
|
|
|
|
// Get the phase based on raw data
|
|
|
|
|
|
|
|
|
|
#ifdef USE_SEL_EVENT_ENABLE
|
|
|
|
|
// SEL signal interrupt
|
|
|
|
|
bool PollSelectEvent();
|
|
|
|
|
// SEL signal event polling
|
|
|
|
|
void ClearSelectEvent();
|
|
|
|
|
// Clear SEL signal event
|
|
|
|
|
#endif // USE_SEL_EVENT_ENABLE
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
// SCSI I/O signal control
|
|
|
|
|
virtual void MakeTable() = 0;
|
|
|
|
|
// Create work data
|
|
|
|
|
virtual void SetControl(int pin, bool ast) = 0;
|
|
|
|
|
// Set Control Signal
|
|
|
|
|
virtual void SetMode(int pin, int mode) = 0;
|
|
|
|
|
// Set SCSI I/O mode
|
|
|
|
|
bool GetSignal(int pin) const override = 0;
|
|
|
|
|
// Set Control Signal
|
|
|
|
|
void SetSignal(int pin, bool ast) override = 0;
|
|
|
|
|
// Set SCSI I/O mode
|
|
|
|
|
virtual bool WaitSignal(int pin, int ast) = 0;
|
|
|
|
|
// Wait for a signal to change
|
|
|
|
|
// Interrupt control
|
|
|
|
|
virtual void DisableIRQ() = 0;
|
|
|
|
|
// IRQ Disabled
|
|
|
|
|
virtual void EnableIRQ() = 0;
|
|
|
|
|
// IRQ Enabled
|
|
|
|
|
|
|
|
|
|
// GPIO pin functionality settings
|
|
|
|
|
virtual void PinConfig(int pin, int mode) = 0;
|
|
|
|
|
// GPIO pin direction setting
|
|
|
|
|
virtual void PullConfig(int pin, int mode) = 0;
|
|
|
|
|
// GPIO pin pull up/down resistor setting
|
|
|
|
|
virtual void PinSetSignal(int pin, bool ast) = 0;
|
|
|
|
|
// Set GPIO output signal
|
|
|
|
|
virtual void DrvConfig(uint32_t drive) = 0;
|
|
|
|
|
// Set GPIO drive strength
|
|
|
|
|
|
|
|
|
|
mode_e actmode = mode_e::TARGET; // Operation mode
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-10-01 15:56:06 +00:00
|
|
|
|
#if !defined(__x86_64__) && !defined(__X86__)
|
2022-10-25 00:21:40 +00:00
|
|
|
|
uint32_t baseaddr = 0; // Base address
|
2022-10-01 15:56:06 +00:00
|
|
|
|
#endif
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
static const array<int, 19> SignalTable; // signal table
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
#ifdef USE_SEL_EVENT_ENABLE
|
|
|
|
|
struct gpioevent_request selevreq = {}; // SEL signal event request
|
|
|
|
|
|
|
|
|
|
int epfd; // epoll file descriptor
|
|
|
|
|
#endif // USE_SEL_EVENT_ENABLE
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
int rpitype = 0; // Type of Raspberry Pi
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t *gpio = nullptr; // GPIO register
|
|
|
|
|
|
|
|
|
|
volatile uint32_t *pads = nullptr; // PADS register
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-10-01 15:56:06 +00:00
|
|
|
|
#if !defined(__x86_64__) && !defined(__X86__)
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t *level = nullptr; // GPIO input level
|
2022-10-01 15:56:06 +00:00
|
|
|
|
#endif
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t *irpctl = nullptr; // Interrupt control register
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t irptenb; // Interrupt enabled state
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t *qa7regs = nullptr; // QA7 register
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile int tintcore; // Interupt control target CPU.
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t tintctl; // Interupt control
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t giccpmr; // GICC priority setting
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-01 15:56:06 +00:00
|
|
|
|
#if !defined(__x86_64__) && !defined(__X86__)
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t *gicd = nullptr; // GIC Interrupt distributor register
|
2022-10-01 15:56:06 +00:00
|
|
|
|
#endif
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
volatile uint32_t *gicc = nullptr; // GIC CPU interface register
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
array<uint32_t, 4> gpfsel; // GPFSEL0-4 backup values
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
uint32_t signals = 0; // All bus signals
|
2020-07-04 14:57:44 +00:00
|
|
|
|
|
2018-05-03 13:47:57 +00:00
|
|
|
|
#if SIGNAL_CONTROL_MODE == 0
|
2022-10-25 00:21:40 +00:00
|
|
|
|
array<array<uint32_t, 256>, 3> tblDatMsk; // Data mask table
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
array<array<uint32_t, 256>, 3> tblDatSet; // Data setting table
|
2018-05-03 13:47:57 +00:00
|
|
|
|
#else
|
2022-10-25 00:21:40 +00:00
|
|
|
|
array<uint32_t, 256> tblDatMsk = {}; // Data mask table
|
2018-05-03 13:47:57 +00:00
|
|
|
|
|
2022-10-25 00:21:40 +00:00
|
|
|
|
array<uint32_t, 256> tblDatSet = {}; // Table setting table
|
2018-05-03 13:47:57 +00:00
|
|
|
|
#endif
|
|
|
|
|
};
|