mayhem-firmware/firmware/baseband/sd_over_usb/sd_over_usb.c

110 lines
2.3 KiB
C
Raw Normal View History

2023-03-29 15:05:11 +00:00
#include "sd_over_usb.h"
2023-03-31 17:18:39 +00:00
#include "scsi.h"
2023-03-29 15:05:11 +00:00
2023-03-31 17:18:39 +00:00
bool scsi_running = false;
usb_request_status_t report_max_lun(
usb_endpoint_t* const endpoint,
const usb_transfer_stage_t stage)
{
if (stage == USB_TRANSFER_STAGE_SETUP) {
endpoint->buffer[0] = 0;
usb_transfer_schedule_block(
endpoint->in,
&endpoint->buffer,
1,
NULL,
NULL);
usb_transfer_schedule_ack(endpoint->out);
scsi_running = true;
}
2023-04-01 16:36:57 +00:00
2023-03-29 15:05:11 +00:00
return USB_REQUEST_STATUS_OK;
}
2023-04-01 16:36:57 +00:00
usb_request_status_t usb_class_request(usb_endpoint_t* const endpoint, const usb_transfer_stage_t stage) {
2023-03-31 17:18:39 +00:00
usb_request_status_t status = USB_REQUEST_STATUS_STALL;
2023-03-29 15:05:11 +00:00
2023-03-31 17:18:39 +00:00
volatile uint8_t request = endpoint->setup.request;
2023-03-29 15:05:11 +00:00
2023-04-01 16:36:57 +00:00
if (request == 0xFE)
2023-03-31 17:18:39 +00:00
return report_max_lun(endpoint, stage);
2023-03-30 09:46:36 +00:00
2023-04-01 15:21:57 +00:00
return status;
2023-03-31 17:18:39 +00:00
}
2023-03-30 09:46:36 +00:00
2023-03-31 17:18:39 +00:00
const usb_request_handlers_t usb_request_handlers = {
.standard = usb_standard_request,
.class = usb_class_request,
2023-04-01 16:36:57 +00:00
.vendor = 0,
2023-03-31 17:18:39 +00:00
.reserved = 0
};
2023-03-30 09:46:36 +00:00
2023-04-01 16:36:57 +00:00
void usb_configuration_changed(usb_device_t* const device) {
(void)device;
2023-03-31 17:18:39 +00:00
usb_endpoint_init(&usb_endpoint_bulk_in);
usb_endpoint_init(&usb_endpoint_bulk_out);
}
2023-03-30 09:46:36 +00:00
2023-03-31 17:18:39 +00:00
void start_usb(void) {
2023-03-30 09:46:36 +00:00
detect_hardware_platform();
pin_setup();
2023-04-01 16:36:57 +00:00
cpu_clock_init();
2023-03-30 09:46:36 +00:00
usb_set_configuration_changed_cb(usb_configuration_changed);
2023-03-29 15:05:11 +00:00
usb_peripheral_reset();
usb_device_init(0, &usb_device);
usb_queue_init(&usb_endpoint_control_out_queue);
usb_queue_init(&usb_endpoint_control_in_queue);
usb_queue_init(&usb_endpoint_bulk_out_queue);
usb_queue_init(&usb_endpoint_bulk_in_queue);
usb_endpoint_init(&usb_endpoint_control_out);
usb_endpoint_init(&usb_endpoint_control_in);
nvic_set_priority(NVIC_USB0_IRQ, 255);
usb_run(&usb_device);
}
void stop_usb(void) {
usb_peripheral_reset();
}
void irq_usb(void) {
usb0_isr();
}
2023-03-31 17:18:39 +00:00
volatile bool transfer_complete = false;
void scsi_bulk_transfer_complete(void* user_data, unsigned int bytes_transferred)
{
2023-04-01 16:36:57 +00:00
(void)user_data;
(void)bytes_transferred;
2023-03-31 17:18:39 +00:00
transfer_complete = true;
}
void usb_transfer(void) {
if (scsi_running) {
transfer_complete = false;
usb_transfer_schedule_block(
&usb_endpoint_bulk_out,
2023-04-01 16:36:57 +00:00
&usb_bulk_buffer[0x4000],
2023-03-31 17:18:39 +00:00
USB_TRANSFER_SIZE,
scsi_bulk_transfer_complete,
NULL);
while (!transfer_complete);
2023-04-01 16:36:57 +00:00
msd_cbw_t *msd_cbw_data = (msd_cbw_t *) &usb_bulk_buffer[0x4000];
2023-03-31 17:18:39 +00:00
if (msd_cbw_data->signature == MSD_CBW_SIGNATURE){
scsi_command(msd_cbw_data);
}
}
}