| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /**
- * ZuluSCSI™ - Copyright (c) 2022 Rabbit Hole Computing™
- *
- * ZuluSCSI™ firmware 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/>.
- **/
- // GPIO definitions for ZuluSCSI RP2040-based hardware
- #pragma once
- #include <hardware/gpio.h>
- // SCSI data input/output port.
- // The data bus uses external bidirectional buffer, with
- // direction controlled by DATA_DIR pin.
- #define SCSI_IO_DB0 0
- #define SCSI_IO_DB1 1
- #define SCSI_IO_DB2 2
- #define SCSI_IO_DB3 3
- #define SCSI_IO_DB4 4
- #define SCSI_IO_DB5 5
- #define SCSI_IO_DB6 6
- #define SCSI_IO_DB7 7
- #define SCSI_IO_DBP 8
- #define SCSI_IO_DATA_MASK 0x1FF
- #define SCSI_IO_SHIFT 0
- // Data direction control
- #define SCSI_DATA_DIR 17
- // SCSI output status lines
- #define SCSI_OUT_IO 12
- #define SCSI_OUT_CD 11
- #define SCSI_OUT_MSG 13
- #define SCSI_OUT_RST 28
- #define SCSI_OUT_BSY 26
- #define SCSI_OUT_REQ 9
- #define SCSI_OUT_SEL 24
- // SCSI input status signals
- #define SCSI_IN_SEL 11
- #define SCSI_IN_ACK 10
- #define SCSI_IN_ATN 29
- #define SCSI_IN_BSY 13
- #define SCSI_IN_RST 27
- // Status line outputs for initiator mode
- #define SCSI_OUT_ACK 10
- #define SCSI_OUT_ATN 29
- // Status line inputs for initiator mode
- #define SCSI_IN_IO 12
- #define SCSI_IN_CD 11
- #define SCSI_IN_MSG 13
- #define SCSI_IN_REQ 9
- // Status LED pins
- #define LED_PIN 25
- #define LED_ON() sio_hw->gpio_set = 1 << LED_PIN
- #define LED_OFF() sio_hw->gpio_clr = 1 << LED_PIN
- // SD card pins in SDIO mode
- #define SDIO_CLK 18
- #define SDIO_CMD 19
- #define SDIO_D0 20
- #define SDIO_D1 21
- #define SDIO_D2 22
- #define SDIO_D3 23
- // SD card pins in SPI mode
- #define SD_SPI spi0
- #define SD_SPI_SCK 18
- #define SD_SPI_MOSI 19
- #define SD_SPI_MISO 20
- #define SD_SPI_CS 23
- // IO expander I2C
- #define GPIO_I2C_SDA 14
- #define GPIO_I2C_SCL 15
- // DIP switch pins
- #define DIP_INITIATOR 10
- #define DIP_DBGLOG 16
- #define DIP_TERM 9
- // Other pins
- #define SWO_PIN 16
|