mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-22 14:09:16 +01:00
ff69030643
* isv support + usb/dd improvements
* make room for saves
* update offset
* fixed debug address
* idk
* exception
* ironed out all broken stuff
* cleanup
* return epc fix
* better
* more cleanup
* even more cleanup
* mooore cleanup
* fixed printf
* no assert
* improved docker build, pyft232 instead of pyserial
* fixed displaying long message strings
description test
* just straight cleanup
* smallest cleanup
* PAL
* cpu buffer
* n64 bootloader done
* super slow usb storage reading implemented
* reduced buffer size
* usb gets fast
* little cleanup
* double buffered reads
* removed separate event id
* ISV in hardware finally
* small exception changes
* mac testing
* py spacing
* fsd write, rtc, isv and reset fixes
* fixxx
* good stopping point
* usb fixed?
* pretend we have 128 MB sdram
* backup
* chmod
* test
* test done
* more tests
* user rm
* help
* final fix
* updated component values
* nice asset names
* cic 64dd support
* ddipl enable separation
* pre DMA rewrite, created dedicated buffer memory space, simplified code
* dma rewrite, needs testing
* moved xml
* dd basics
* timing
* 64dd working yet again, isv brought back, dma fixes, usb path rewrite, pc code rewrite
* added usb read functionality, general cleanup
* changed mem addressing
* added fpga flash update access
* added mcu update
* chmod
* little cleanup
* update format and stuff
* fixes
* uninitialized fix
* small fixes
* update fixes
* update stuff done
* fpga update tested
* build time fix
* boot fix
* test timing
* readme test
* test 2
* reports
* testseet
* final
* build test
* forgot
* button and naming
* General cleanup
And multiline commit message test
* Exception screen UI touch ups
* display separation and tests beginning
* pc software update
* pc software done
* timing test
* delete launch.json
* sw fixes
* fixed button hole diameter in shell
* small cleanup, rpi testing
* shell fillet fix, pc rtc printing
* added cfg lock mechanism
* moved lock to cfg address space
* extended ROM and ISV fixes
* preliminary sd card support
* little sd card cleanup
* sd menu fixes
* 5 second limit
* reduced shell thickness
* basic led act blinking
* faster sd menu loading
* inst cache invalidate
* sd card writing is working
* SD card CSD and CID registers
* wait for previous command
* led error codes
* fixed cfg_translate_address use
* 64dd from sd card working
* 64dd speedup and button handling
* delayed address latching cycle - might break other builds, needs testing
* bootloader improvements
* small fixes
* return previous cfg when setting new
* cache stuff
* unfloader debug protocol support
* UNFLoader style debug command line support
* requirements.txt
* shell groove fillet
* reset state inside controller
* fixed fast PI read, added PI R/W fifo debug info
* PI access prioritize
* SD clock stop when RX FIFO is more than half full
* flash erase method change
* CFG error handling, TLOZ MM debug ISV support
* CIC5167 support
* general fixes
* USB unplugged cable handling
* turn off led when changing between error/act modes
* rtc 2 bit clock stop support
* line endings
* Revert "line endings"
This reverts commit d0ddfe5ec7
.
* PI address debug
* readme test
* diagram update
* diagram background
* diagram background
* diagram background
* updated readme
232 lines
7.3 KiB
Systemverilog
232 lines
7.3 KiB
Systemverilog
module sd_cmd (
|
|
input clk,
|
|
input reset,
|
|
|
|
sd_scb.cmd sd_scb,
|
|
|
|
input sd_clk_rising,
|
|
input sd_clk_falling,
|
|
|
|
inout sd_cmd
|
|
);
|
|
|
|
// Input and output data sampling
|
|
|
|
logic sd_cmd_oe;
|
|
logic sd_cmd_out;
|
|
logic sd_cmd_in;
|
|
logic sd_cmd_oe_data;
|
|
logic sd_cmd_data;
|
|
|
|
assign sd_cmd = sd_cmd_oe ? sd_cmd_out : 1'bZ;
|
|
|
|
always_ff @(posedge clk) begin
|
|
sd_cmd_oe <= sd_cmd_oe_data;
|
|
sd_cmd_out <= sd_cmd_data;
|
|
sd_cmd_in <= sd_cmd;
|
|
end
|
|
|
|
|
|
// CMD state
|
|
|
|
typedef enum bit [1:0] {
|
|
STATE_IDLE,
|
|
STATE_TX,
|
|
STATE_WAIT,
|
|
STATE_RX
|
|
} e_state;
|
|
|
|
e_state state;
|
|
e_state next_state;
|
|
|
|
always_ff @(posedge clk) begin
|
|
if (reset) begin
|
|
state <= STATE_IDLE;
|
|
end else begin
|
|
state <= next_state;
|
|
end
|
|
end
|
|
|
|
assign sd_scb.cmd_busy = (state != STATE_IDLE);
|
|
|
|
logic [7:0] counter;
|
|
|
|
always_comb begin
|
|
next_state = state;
|
|
|
|
case (state)
|
|
STATE_IDLE: begin
|
|
if (sd_scb.cmd_start) begin
|
|
next_state = STATE_TX;
|
|
end
|
|
end
|
|
|
|
STATE_TX: begin
|
|
if (sd_clk_falling) begin
|
|
if (counter == 8'd48) begin
|
|
if (sd_scb.cmd_skip_response) begin
|
|
next_state = STATE_IDLE;
|
|
end else begin
|
|
next_state = STATE_WAIT;
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
STATE_WAIT: begin
|
|
if (sd_clk_rising) begin
|
|
if (counter == 8'd64) begin
|
|
next_state = STATE_IDLE;
|
|
end
|
|
if (!sd_cmd_in) begin
|
|
next_state = STATE_RX;
|
|
end
|
|
end
|
|
end
|
|
|
|
STATE_RX: begin
|
|
if (sd_clk_rising) begin
|
|
if (sd_scb.cmd_long_response) begin
|
|
if (counter == 8'd136) begin
|
|
next_state = STATE_IDLE;
|
|
end
|
|
end else begin
|
|
if (counter == 8'd48) begin
|
|
next_state = STATE_IDLE;
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
default: begin
|
|
next_state = STATE_IDLE;
|
|
end
|
|
endcase
|
|
end
|
|
|
|
|
|
// CRC7 unit
|
|
|
|
logic crc_reset;
|
|
logic crc_enable;
|
|
logic crc_data;
|
|
logic [6:0] crc_result;
|
|
|
|
sd_crc_7 sd_crc_7_inst (
|
|
.clk(clk),
|
|
.reset(crc_reset),
|
|
.enable(crc_enable),
|
|
.data(crc_data),
|
|
.result(crc_result)
|
|
);
|
|
|
|
|
|
// Data shifting
|
|
|
|
logic [7:0] data_shift;
|
|
|
|
assign crc_data = (state == STATE_RX) ? data_shift[0] : data_shift[7];
|
|
|
|
always_ff @(posedge clk) begin
|
|
crc_reset <= 1'b0;
|
|
crc_enable <= 1'b0;
|
|
|
|
if (reset) begin
|
|
sd_cmd_oe_data <= 1'b0;
|
|
sd_cmd_data <= 1'b1;
|
|
end else begin
|
|
case (state)
|
|
STATE_IDLE: begin
|
|
if (sd_scb.cmd_start) begin
|
|
sd_scb.cmd_error <= 1'b0;
|
|
crc_reset <= 1'b1;
|
|
data_shift <= {2'b01, sd_scb.cmd_index};
|
|
counter <= 8'd0;
|
|
end
|
|
end
|
|
|
|
STATE_TX: begin
|
|
if (sd_clk_falling) begin
|
|
sd_cmd_oe_data <= 1'b1;
|
|
sd_cmd_data <= data_shift[7];
|
|
counter <= counter + 1'd1;
|
|
crc_enable <= 1'b1;
|
|
data_shift <= {data_shift[6:0], 1'bX};
|
|
if (counter == 8'd7) begin
|
|
data_shift <= sd_scb.cmd_arg[31:24];
|
|
end
|
|
if (counter == 8'd15) begin
|
|
data_shift <= sd_scb.cmd_arg[23:16];
|
|
end
|
|
if (counter == 8'd23) begin
|
|
data_shift <= sd_scb.cmd_arg[15:8];
|
|
end
|
|
if (counter == 8'd31) begin
|
|
data_shift <= sd_scb.cmd_arg[7:0];
|
|
end
|
|
if (counter == 8'd39) begin
|
|
data_shift <= {crc_result, 1'b1};
|
|
end
|
|
if (counter == 8'd48) begin
|
|
sd_cmd_oe_data <= 1'b0;
|
|
counter <= 8'd0;
|
|
end
|
|
end
|
|
end
|
|
|
|
STATE_WAIT: begin
|
|
if (sd_clk_rising) begin
|
|
counter <= counter + 1'd1;
|
|
if (counter == 8'd64) begin
|
|
sd_scb.cmd_error <= 1'b1;
|
|
end
|
|
if (!sd_cmd_in) begin
|
|
counter <= 8'd1;
|
|
crc_reset <= 1'b1;
|
|
data_shift <= 8'h00;
|
|
end
|
|
end
|
|
end
|
|
|
|
STATE_RX: begin
|
|
if (sd_clk_rising) begin
|
|
counter <= counter + 1'd1;
|
|
data_shift <= {data_shift[6:0], sd_cmd_in};
|
|
if (counter == 8'd8) begin
|
|
if (data_shift[6:0] != (sd_scb.cmd_reserved_response ? 7'h3F : {1'b0, sd_scb.cmd_index})) begin
|
|
sd_scb.cmd_error <= 1'b1;
|
|
end
|
|
end
|
|
if (sd_scb.cmd_long_response) begin
|
|
if (counter >= 8'd8 && counter < 8'd128) begin
|
|
crc_enable <= 1'b1;
|
|
end
|
|
if (counter[2:0] == 3'd0) begin
|
|
sd_scb.cmd_rsp <= {sd_scb.cmd_rsp[119:0], data_shift};
|
|
end
|
|
if (!sd_scb.cmd_ignore_crc && counter == 8'd136) begin
|
|
if (data_shift[7:1] != crc_result) begin
|
|
sd_scb.cmd_error <= 1'b1;
|
|
end
|
|
end
|
|
end else begin
|
|
if (counter < 8'd40) begin
|
|
crc_enable <= 1'b1;
|
|
end
|
|
if (counter <= 8'd40 && counter[2:0] == 3'd0) begin
|
|
sd_scb.cmd_rsp <= {sd_scb.cmd_rsp[119:0], data_shift};
|
|
end
|
|
if (!sd_scb.cmd_ignore_crc && counter == 8'd48) begin
|
|
if (data_shift[7:1] != crc_result) begin
|
|
sd_scb.cmd_error <= 1'b1;
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
endcase
|
|
end
|
|
end
|
|
|
|
endmodule
|