index
:
riscv-gnu-toolchain/qemu.git
block
master
stable-0.10
stable-0.11
stable-0.12
stable-0.13
stable-0.14
stable-0.15
stable-1.0
stable-1.1
stable-1.2
stable-1.3
stable-1.4
stable-1.5
stable-1.6
stable-1.7
stable-2.0
stable-2.1
stable-2.10
stable-2.11
stable-2.12
stable-2.2
stable-2.3
stable-2.4
stable-2.5
stable-2.6
stable-2.7
stable-2.8
stable-2.9
stable-3.0
stable-3.1
stable-4.0
stable-4.1
stable-4.2
stable-5.0
stable-6.0
stable-6.1
stable-7.2
stable-8.0
stable-8.1
stable-8.2
stable-9.0
stable-9.1
stable-9.2
staging
staging-7.2
staging-8.0
staging-8.1
staging-8.2
staging-9.0
staging-9.1
staging-9.2
Unnamed repository; edit this file 'description' to name the repository.
root
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
hw
/
sd
/
sd.c
Age
Commit message (
Expand
)
Author
Files
Lines
2024-07-02
hw/sd/sdcard: Add sd_cmd_SET/CLR_WRITE_PROT handler (CMD28 & CMD29)
Philippe Mathieu-Daudé
1
-45
/
+46
2024-07-02
hw/sd/sdcard: Add sd_cmd_PROGRAM_CSD handler (CMD27)
Philippe Mathieu-Daudé
1
-4
/
+9
2024-07-02
hw/sd/sdcard: Add sd_cmd_WRITE_SINGLE_BLOCK handler (CMD24)
Philippe Mathieu-Daudé
1
-27
/
+30
2024-07-02
hw/sd/sdcard: Add sd_cmd_READ_SINGLE_BLOCK handler (CMD17)
Philippe Mathieu-Daudé
1
-17
/
+20
2024-07-02
hw/sd/sdcard: Add sd_cmd_SET_BLOCKLEN handler (CMD16)
Philippe Mathieu-Daudé
1
-18
/
+19
2024-07-02
hw/sd/sdcard: Add sd_cmd_GO_INACTIVE_STATE handler (CMD15)
Philippe Mathieu-Daudé
1
-12
/
+25
2024-07-02
hw/sd/sdcard: Add sd_cmd_SEND_STATUS handler (CMD13)
Philippe Mathieu-Daudé
1
-12
/
+28
2024-07-02
hw/sd/sdcard: Add sd_cmd_STOP_TRANSMISSION handler (CMD12)
Philippe Mathieu-Daudé
1
-18
/
+20
2024-07-02
hw/sd/sdcard: Add spi_cmd_SEND_CSD/CID handlers (CMD9 & CMD10)
Philippe Mathieu-Daudé
1
-30
/
+20
2024-07-02
hw/sd/sdcard: Add sd_cmd_SEND_CSD/CID handlers (CMD9 & CMD10)
Philippe Mathieu-Daudé
1
-14
/
+22
2024-07-02
hw/sd/sdcard: Add sd_cmd_SEND_IF_COND handler (CMD8)
Philippe Mathieu-Daudé
1
-19
/
+24
2024-07-02
hw/sd/sdcard: Add sd_cmd_DE/SELECT_CARD handler (CMD7)
Philippe Mathieu-Daudé
1
-38
/
+47
2024-07-02
hw/sd/sdcard: Add sd_cmd_SWITCH_FUNCTION handler (CMD6)
Philippe Mathieu-Daudé
1
-12
/
+17
2024-07-02
hw/sd/sdcard: Register Security Extension optional handlers
Philippe Mathieu-Daudé
1
-4
/
+13
2024-07-02
hw/sd/sdcard: Register SDIO optional handlers
Philippe Mathieu-Daudé
1
-2
/
+6
2024-07-02
hw/sd/sdcard: Register optional handlers from spec v6.00
Philippe Mathieu-Daudé
1
-5
/
+10
2024-07-02
hw/sd/sdcard: Register generic optional handlers (CMD11 and CMD20)
Philippe Mathieu-Daudé
1
-2
/
+12
2024-07-02
hw/sd/sdcard: Remove SEND_DSR dead case (CMD4)
Philippe Mathieu-Daudé
1
-12
/
+2
2024-07-02
hw/sd/sdcard: Store command class in SDProto
Philippe Mathieu-Daudé
1
-17
/
+19
2024-07-02
hw/sd/sdcard: Store command type in SDProto
Philippe Mathieu-Daudé
1
-24
/
+20
2024-07-02
hw/sd/sdcard: Store command name in SDProto
Philippe Mathieu-Daudé
1
-13
/
+22
2024-07-02
hw/sd/sdcard: Prepare SDProto to contain more fields
Philippe Mathieu-Daudé
1
-14
/
+15
2024-07-02
hw/sd/sdcard: Pass SDState as argument to sd_[a]cmd_name()
Philippe Mathieu-Daudé
1
-4
/
+4
2024-07-02
hw/sd/sdcard: Move sd_[a]cmd_name() methods to sd.c
Philippe Mathieu-Daudé
1
-0
/
+62
2024-07-02
hw/sd/sdcard: Convert LOCK_UNLOCK to generic_write_byte (CMD42)
Philippe Mathieu-Daudé
1
-13
/
+2
2024-07-02
hw/sd/sdcard: Convert PROGRAM_CSD to generic_write_byte (CMD27)
Philippe Mathieu-Daudé
1
-13
/
+2
2024-07-02
hw/sd/sdcard: Convert PROGRAM_CID to generic_write_byte (CMD26)
Philippe Mathieu-Daudé
1
-13
/
+2
2024-07-02
hw/sd/sdcard: Convert WRITE_SINGLE_BLOCK to generic_write_byte (CMD24)
Philippe Mathieu-Daudé
1
-9
/
+2
2024-07-02
hw/sd/sdcard: Duplicate WRITE_SINGLE_BLOCK / WRITE_MULTIPLE_BLOCK cases
Philippe Mathieu-Daudé
1
-0
/
+29
2024-07-02
hw/sd/sdcard: Introduce sd_cmd_to_receivingdata / sd_generic_write_byte
Philippe Mathieu-Daudé
1
-0
/
+29
2024-07-02
hw/sd/sdcard: Convert SEND_SCR to generic_read_byte (ACMD51)
Philippe Mathieu-Daudé
1
-11
/
+2
2024-07-02
hw/sd/sdcard: Convert SEND_NUM_WR_BLOCKS to generic_read_byte (ACMD22)
Philippe Mathieu-Daudé
1
-12
/
+4
2024-07-02
hw/sd/sdcard: Convert SD_STATUS to generic_read_byte (ACMD13)
Philippe Mathieu-Daudé
1
-11
/
+4
2024-07-02
hw/sd/sdcard: Convert SEND_WRITE_PROT to generic_read_byte (CMD30)
Philippe Mathieu-Daudé
1
-13
/
+4
2024-07-02
hw/sd/sdcard: Convert SEND_TUNING_BLOCK to generic_read_byte (CMD19)
Philippe Mathieu-Daudé
1
-29
/
+19
2024-07-02
hw/sd/sdcard: Convert READ_SINGLE_BLOCK to generic_read_byte (CMD17)
Philippe Mathieu-Daudé
1
-15
/
+3
2024-07-02
hw/sd/sdcard: Duplicate READ_SINGLE_BLOCK / READ_MULTIPLE_BLOCK cases
Philippe Mathieu-Daudé
1
-0
/
+18
2024-07-02
hw/sd/sdcard: Convert SEND_CSD/SEND_CID to generic_read_byte (CMD9 & 10)
Philippe Mathieu-Daudé
1
-18
/
+6
2024-07-02
hw/sd/sdcard: Convert SWITCH_FUNCTION to generic_read_byte (CMD6)
Philippe Mathieu-Daudé
1
-10
/
+2
2024-07-02
hw/sd/sdcard: Introduce sd_cmd_to_sendingdata and sd_generic_read_byte
Philippe Mathieu-Daudé
1
-0
/
+39
2024-07-02
hw/sd/sdcard: Extract sd_blk_len() helper
Philippe Mathieu-Daudé
1
-1
/
+9
2024-07-02
hw/sd/sdcard: Add direct reference to SDProto in SDState
Philippe Mathieu-Daudé
1
-20
/
+17
2024-07-02
hw/sd/sdcard: Simplify sd_inactive_state handling
Philippe Mathieu-Daudé
1
-5
/
+7
2024-07-02
hw/sd/sdcard: Assign SDCardStates enum values
Philippe Mathieu-Daudé
1
-10
/
+10
2024-07-02
hw/sd/sdcard: Use READY_FOR_DATA definition instead of magic value
Philippe Mathieu-Daudé
1
-1
/
+1
2024-07-02
hw/sd/sdcard: Send NUM_WR_BLOCKS bits MSB first (ACMD22)
Philippe Mathieu-Daudé
1
-2
/
+1
2024-07-02
hw/sd/sdcard: Send WRITE_PROT bits MSB first (CMD30)
Philippe Mathieu-Daudé
1
-1
/
+1
2024-07-02
hw/sd/sdcard: Restrict SWITCH_FUNCTION to sd_transfer_state (CMD6)
Philippe Mathieu-Daudé
1
-0
/
+4
2024-07-02
hw/sd/sdcard: Trace requested address computed by sd_req_get_address()
Philippe Mathieu-Daudé
1
-2
/
+7
2024-07-02
hw/sd/sdcard: Trace block offset in READ/WRITE data accesses
Philippe Mathieu-Daudé
1
-2
/
+2
[next]