1 // Copyright (C) 2014 Michael McMaster <michael@codesrc.com>
3 // This file is part of SCSI2SD.
5 // SCSI2SD is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // SCSI2SD is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with SCSI2SD. If not, see <http://www.gnu.org/licenses/>.
26 #include "bootloader.h"
29 #include "../../include/scsi2sd.h"
30 #include "../../include/hidpacket.h"
32 #include "usb_device/usb_device.h"
33 #include "usb_device/usbd_hid.h"
34 #include "usb_device/usbd_composite.h"
35 #include "bsp_driver_sd.h"
40 static const uint16_t FIRMWARE_VERSION
= 0x0607;
43 static const uint8_t DEFAULT_CONFIG
[128] =
45 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x3F, 0x00,
46 0x00, 0x02, 0x3F, 0x00, 0xFF, 0x00, 0x20, 0x63, 0x6F, 0x64, 0x65, 0x73,
47 0x72, 0x63, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x53,
48 0x43, 0x53, 0x49, 0x32, 0x53, 0x44, 0x20, 0x31, 0x2E, 0x30, 0x31, 0x32,
49 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36,
50 0x37, 0x38, 0x00, 0x00
54 static uint8_t s2s_cfg
[S2S_CFG_SIZE
] S2S_DMA_ALIGN
;
55 static uint8_t configDmaBuf
[512] S2S_DMA_ALIGN
; // For SD card writes.
65 static int usbInEpState
;
67 void s2s_configInit(S2S_BoardCfg
* config
)
70 usbInEpState
= USB_IDLE
;
73 if ((blockDev
.state
& DISK_PRESENT
) && sdDev
.capacity
)
75 int cfgSectors
= (S2S_CFG_SIZE
+ 511) / 512;
76 BSP_SD_ReadBlocks_DMA(
77 (uint32_t*) &s2s_cfg
[0],
78 (sdDev
.capacity
- cfgSectors
) * 512ll,
82 memcpy(config
, s2s_cfg
, sizeof(S2S_BoardCfg
));
84 if (memcmp(config
->magic
, "BCFG", 4))
86 // Invalid SD card config, use default.
87 memset(&s2s_cfg
[0], 0, S2S_CFG_SIZE
);
88 memcpy(config
, s2s_cfg
, sizeof(S2S_BoardCfg
));
89 memcpy(config
->magic
, "BCFG", 4);
90 config
->selectionDelay
= 255; // auto
91 config
->flags6
= S2S_CFG_ENABLE_TERMINATOR
;
94 &s2s_cfg
[0] + sizeof(S2S_BoardCfg
),
96 sizeof(S2S_TargetCfg
));
101 // No SD card, use existing config if valid
102 if (memcmp(config
->magic
, "BCFG", 4))
104 // Not valid, use empty config with no disks.
105 memset(&s2s_cfg
[0], 0, S2S_CFG_SIZE
);
106 memcpy(config
, s2s_cfg
, sizeof(S2S_BoardCfg
));
107 config
->selectionDelay
= 255; // auto
108 config
->flags6
= S2S_CFG_ENABLE_TERMINATOR
;
122 hidPacket_send(response
, sizeof(response
));
128 uint8_t response
[sizeof(sdDev
.csd
) + sizeof(sdDev
.cid
)];
129 memcpy(response
, sdDev
.csd
, sizeof(sdDev
.csd
));
130 memcpy(response
+ sizeof(sdDev
.csd
), sdDev
.cid
, sizeof(sdDev
.cid
));
132 hidPacket_send(response
, sizeof(response
));
139 int resultCode
= scsiSelfTest();
142 resultCode
== 0 ? S2S_CFG_STATUS_GOOD
: S2S_CFG_STATUS_ERR
,
145 hidPacket_send(response
, sizeof(response
));
153 FIRMWARE_VERSION
>> 8,
154 FIRMWARE_VERSION
& 0xff,
155 sdDev
.capacity
>> 24,
156 sdDev
.capacity
>> 16,
160 hidPacket_send(response
, sizeof(response
));
166 uint8_t response
[32];
167 memcpy(&response
, &scsiDev
.cdb
, 12);
168 response
[12] = scsiDev
.msgIn
;
169 response
[13] = scsiDev
.msgOut
;
170 response
[14] = scsiDev
.lastStatus
;
171 response
[15] = scsiDev
.lastSense
;
172 response
[16] = scsiDev
.phase
;
173 response
[17] = scsiStatusBSY();
174 response
[18] = scsiStatusSEL();
175 response
[19] = scsiStatusATN();
176 response
[20] = scsiStatusRST();
177 response
[21] = scsiDev
.rstCount
;
178 response
[22] = scsiDev
.selCount
;
179 response
[23] = scsiDev
.msgCount
;
180 response
[24] = scsiDev
.cmdCount
;
181 response
[25] = scsiDev
.watchdogTick
;
182 response
[26] = blockDev
.state
;
183 response
[27] = scsiDev
.lastSenseASC
>> 8;
184 response
[28] = scsiDev
.lastSenseASC
;
185 response
[29] = *SCSI_STS_DBX
;
186 response
[30] = LastTrace
;
187 response
[31] = scsiStatusACK();
188 hidPacket_send(response
, sizeof(response
));
192 sdWriteCommand(const uint8_t* cmd
, size_t cmdSize
)
199 (((uint32_t)cmd
[1]) << 24) |
200 (((uint32_t)cmd
[2]) << 16) |
201 (((uint32_t)cmd
[3]) << 8) |
204 memcpy(configDmaBuf
, &cmd
[5], 512);
205 BSP_SD_WriteBlocks_DMA((uint32_t*) configDmaBuf
, lba
* 512ll, 512, 1);
211 hidPacket_send(response
, sizeof(response
));
215 sdReadCommand(const uint8_t* cmd
, size_t cmdSize
)
222 (((uint32_t)cmd
[1]) << 24) |
223 (((uint32_t)cmd
[2]) << 16) |
224 (((uint32_t)cmd
[3]) << 8) |
227 BSP_SD_ReadBlocks_DMA((uint32_t*) configDmaBuf
, lba
* 512ll, 512, 1);
228 hidPacket_send(configDmaBuf
, 512);
232 processCommand(const uint8_t* cmd
, size_t cmdSize
)
241 s2s_enterBootloader();
248 case S2S_CMD_SCSITEST
:
252 case S2S_CMD_DEVINFO
:
253 scsiDevInfoCommand();
256 case S2S_CMD_SD_WRITE
:
257 sdWriteCommand(cmd
, cmdSize
);
260 case S2S_CMD_SD_READ
:
261 sdReadCommand(cmd
, cmdSize
);
268 case S2S_CMD_NONE
: // invalid
274 void s2s_configPoll()
276 if (!USBD_Composite_IsConfigured(&hUsbDeviceFS
))
278 usbInEpState
= USB_IDLE
;
282 if (USBD_HID_IsReportReady(&hUsbDeviceFS
))
286 // The host sent us some data!
287 uint8_t hidBuffer
[USBHID_LEN
];
288 int byteCount
= USBD_HID_GetReport(&hUsbDeviceFS
, hidBuffer
, sizeof(hidBuffer
));
289 hidPacket_recv(hidBuffer
, byteCount
);
292 const uint8_t* cmd
= hidPacket_getPacket(&cmdSize
);
293 if (cmd
&& (cmdSize
> 0))
295 processCommand(cmd
, cmdSize
);
301 switch (usbInEpState
)
305 uint8_t hidBuffer
[USBHID_LEN
];
306 const uint8_t* nextChunk
= hidPacket_getHIDBytes(hidBuffer
);
310 USBD_HID_SendReport (&hUsbDeviceFS
, nextChunk
, sizeof(hidBuffer
));
311 usbInEpState
= USB_DATA_SENT
;
317 if (!USBD_HID_IsBusy(&hUsbDeviceFS
))
320 usbInEpState
= USB_IDLE
;
329 // Public method for storing MODE SELECT results.
330 void s2s_configSave(int scsiId
, uint16_t bytesPerSector
)
332 S2S_TargetCfg
* cfg
= (S2S_TargetCfg
*) s2s_getConfigById(scsiId
);
333 cfg
->bytesPerSector
= bytesPerSector
;
335 BSP_SD_WriteBlocks_DMA(
336 (uint32_t*) &s2s_cfg
[0],
337 (sdDev
.capacity
- S2S_CFG_SIZE
) * 512ll,
339 (S2S_CFG_SIZE
+ 511) / 512);
343 const S2S_TargetCfg
* s2s_getConfigByIndex(int i
)
345 return (const S2S_TargetCfg
*)
346 (s2s_cfg
+ sizeof(S2S_BoardCfg
) + (i
* sizeof(S2S_TargetCfg
)));
349 const S2S_TargetCfg
* s2s_getConfigById(int scsiId
)
352 for (i
= 0; i
< S2S_MAX_TARGETS
; ++i
)
354 const S2S_TargetCfg
* tgt
= s2s_getConfigByIndex(i
);
355 if ((tgt
->scsiId
& S2S_CFG_TARGET_ID_BITS
) == scsiId
)