ZuluSCSI_platform.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. // Platform-specific definitions for ZuluSCSI RP2040 hardware.
  2. #pragma once
  3. #include <stdint.h>
  4. #include <Arduino.h>
  5. #include "ZuluSCSI_platform_gpio.h"
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. /* These are used in debug output and default SCSI strings */
  10. extern const char *g_azplatform_name;
  11. #define PLATFORM_NAME "ZuluSCSI RP2040"
  12. #define PLATFORM_REVISION "2.0"
  13. #define PLATFORM_MAX_SCSI_SPEED S2S_CFG_SPEED_SYNC_10
  14. #define SD_USE_SDIO 1
  15. // NOTE: The driver supports synchronous speeds higher than 10MB/s, but this
  16. // has not been tested due to lack of fast enough SCSI adapter.
  17. // #define PLATFORM_MAX_SCSI_SPEED S2S_CFG_SPEED_TURBO
  18. // Debug logging function, can be used to print to e.g. serial port.
  19. // May get called from interrupt handlers.
  20. void azplatform_log(const char *s);
  21. // Timing and delay functions.
  22. // Arduino platform already provides these
  23. unsigned long millis(void);
  24. void delay(unsigned long ms);
  25. // Short delays, can be called from interrupt mode
  26. static inline void delay_ns(unsigned long ns)
  27. {
  28. delayMicroseconds((ns + 999) / 1000);
  29. }
  30. // Approximate fast delay
  31. static inline void delay_100ns()
  32. {
  33. asm volatile ("nop \n nop \n nop \n nop \n nop");
  34. }
  35. // Initialize SD card and GPIO configuration
  36. void azplatform_init();
  37. // Initialization for main application, not used for bootloader
  38. void azplatform_late_init();
  39. // Setup soft watchdog if supported
  40. void azplatform_reset_watchdog();
  41. // Set callback that will be called during data transfer to/from SD card.
  42. // This can be used to implement simultaneous transfer to SCSI bus.
  43. typedef void (*sd_callback_t)(uint32_t bytes_complete);
  44. void azplatform_set_sd_callback(sd_callback_t func, const uint8_t *buffer);
  45. // Below are GPIO access definitions that are used from scsiPhy.cpp.
  46. // Write a single SCSI pin.
  47. // Example use: SCSI_OUT(ATN, 1) sets SCSI_ATN to low (active) state.
  48. #define SCSI_OUT(pin, state) \
  49. *(state ? &sio_hw->gpio_clr : &sio_hw->gpio_set) = 1 << (SCSI_OUT_ ## pin)
  50. // Read a single SCSI pin.
  51. // Example use: SCSI_IN(ATN), returns 1 for active low state.
  52. #define SCSI_IN(pin) \
  53. ((sio_hw->gpio_in & (1 << (SCSI_IN_ ## pin))) ? 0 : 1)
  54. // Enable driving of shared control pins
  55. #define SCSI_ENABLE_CONTROL_OUT() \
  56. (sio_hw->gpio_oe_set = (1 << SCSI_OUT_CD) | \
  57. (1 << SCSI_OUT_MSG))
  58. // Set SCSI data bus to output
  59. #define SCSI_ENABLE_DATA_OUT() \
  60. (sio_hw->gpio_clr = (1 << SCSI_DATA_DIR), \
  61. sio_hw->gpio_oe_set = SCSI_IO_DATA_MASK)
  62. // Write SCSI data bus, also sets REQ to inactive.
  63. extern const uint32_t g_scsi_parity_lookup[256];
  64. #define SCSI_OUT_DATA(data) \
  65. gpio_put_masked(SCSI_IO_DATA_MASK | (1 << SCSI_OUT_REQ), \
  66. g_scsi_parity_lookup[(uint8_t)(data)] | (1 << SCSI_OUT_REQ)), \
  67. SCSI_ENABLE_DATA_OUT()
  68. // Release SCSI data bus and REQ signal
  69. #define SCSI_RELEASE_DATA_REQ() \
  70. (sio_hw->gpio_oe_clr = SCSI_IO_DATA_MASK, \
  71. sio_hw->gpio_set = (1 << SCSI_DATA_DIR) | (1 << SCSI_OUT_REQ))
  72. // Release all SCSI outputs
  73. #define SCSI_RELEASE_OUTPUTS() \
  74. SCSI_RELEASE_DATA_REQ(), \
  75. sio_hw->gpio_oe_clr = (1 << SCSI_OUT_CD) | \
  76. (1 << SCSI_OUT_MSG), \
  77. sio_hw->gpio_set = (1 << SCSI_OUT_IO) | \
  78. (1 << SCSI_OUT_CD) | \
  79. (1 << SCSI_OUT_MSG) | \
  80. (1 << SCSI_OUT_RST) | \
  81. (1 << SCSI_OUT_BSY) | \
  82. (1 << SCSI_OUT_REQ) | \
  83. (1 << SCSI_OUT_SEL)
  84. // Read SCSI data bus
  85. #define SCSI_IN_DATA(data) \
  86. (~sio_hw->gpio_in & SCSI_IO_DATA_MASK) >> SCSI_IO_SHIFT
  87. #ifdef __cplusplus
  88. }
  89. // SD card driver for SdFat
  90. #ifdef SD_USE_SDIO
  91. class SdioConfig;
  92. extern SdioConfig g_sd_sdio_config;
  93. #define SD_CONFIG g_sd_sdio_config
  94. #define SD_CONFIG_CRASH g_sd_sdio_config
  95. #else
  96. class SdSpiConfig;
  97. extern SdSpiConfig g_sd_spi_config;
  98. #define SD_CONFIG g_sd_spi_config
  99. #define SD_CONFIG_CRASH g_sd_spi_config
  100. #endif
  101. #endif