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: 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
2024-07-02
hw/sd/sdcard: Track last command used to help logging
Philippe Mathieu-Daudé
1
-4
/
+8
2024-06-24
hw/sd/sdcard: Add comments around registers and commands
Philippe Mathieu-Daudé
1
-0
/
+20
2024-06-24
hw/sd/sdcard: Inline BLK_READ_BLOCK / BLK_WRITE_BLOCK macros
Philippe Mathieu-Daudé
1
-8
/
+7
2024-06-24
hw/sd/sdcard: Add sd_invalid_mode_for_cmd to report invalid mode switch
Philippe Mathieu-Daudé
1
-32
/
+39
2024-06-24
hw/sd/sdcard: Only call sd_req_get_address() where address is used
Philippe Mathieu-Daudé
1
-6
/
+8
2024-06-24
hw/sd/sdcard: Factor sd_req_get_address() method out
Philippe Mathieu-Daudé
1
-1
/
+9
2024-06-24
hw/sd/sdcard: Only call sd_req_get_rca() where RCA is used
Philippe Mathieu-Daudé
1
-1
/
+7
2024-06-24
hw/sd/sdcard: Factor sd_req_get_rca() method out
Philippe Mathieu-Daudé
1
-6
/
+9
2024-06-24
hw/sd/sdcard: Have cmd_valid_while_locked() return a boolean value
Philippe Mathieu-Daudé
1
-2
/
+2
2024-06-24
hw/sd/sdcard: Trace update of block count (CMD23)
Philippe Mathieu-Daudé
1
-0
/
+1
2024-06-24
hw/sd/sdcard: Remove explicit entries for illegal commands
Philippe Mathieu-Daudé
1
-11
/
+0
2024-06-24
hw/sd/sdcard: Remove ACMD6 handler for SPI mode
Philippe Mathieu-Daudé
1
-1
/
+1
2024-06-24
hw/sd/sdcard: Use Load/Store API to fill some CID/CSD registers
Philippe Mathieu-Daudé
1
-7
/
+2
2024-06-24
hw/sd/sdcard: Use registerfield CSR::CURRENT_STATE definition
Philippe Mathieu-Daudé
1
-2
/
+2
2024-06-24
hw/sd/sdcard: Use HWBLOCK_SHIFT definition instead of magic values
Philippe Mathieu-Daudé
1
-3
/
+3
2024-06-24
hw/sd/sdcard: Fix typo in SEND_OP_COND command name
Philippe Mathieu-Daudé
1
-3
/
+3
2024-06-24
hw/sd/sdcard: Rewrite sd_cmd_ALL_SEND_CID using switch case (CMD2)
Philippe Mathieu-Daudé
1
-5
/
+5
2024-06-24
hw/sd/sdcard: Correct code indentation
Philippe Mathieu-Daudé
1
-17
/
+17
2024-06-24
hw/sd/sdcard: Avoid OOB in sd_read_byte() during unexpected CMD switch
Philippe Mathieu-Daudé
1
-0
/
+7
2023-12-30
hw/sd: Constify VMState
Richard Henderson
1
-3
/
+3
2023-11-07
hw/sd: Declare QOM types using DEFINE_TYPES() macro
Philippe Mathieu-Daudé
1
-21
/
+16
2023-09-06
Merge tag 'pull-aspeed-20230901' of https://github.com/legoater/qemu into sta...
Stefan Hajnoczi
1
-133
/
+215
2023-09-01
hw/sd: Introduce a "sd-card" SPI variant model
Cédric Le Goater
1
-14
/
+40
2023-09-01
hw/sd: Add sd_cmd_SET_BLOCK_COUNT() handler
Philippe Mathieu-Daudé
1
-14
/
+16
2023-09-01
hw/sd: Add sd_cmd_SEND_TUNING_BLOCK() handler
Joel Stanley
1
-11
/
+17
2023-09-01
hw/sd: Add sd_cmd_SEND_RELATIVE_ADDR() handler
Philippe Mathieu-Daudé
1
-13
/
+15
2023-09-01
hw/sd: Add sd_cmd_ALL_SEND_CID() handler
Philippe Mathieu-Daudé
1
-11
/
+12
2023-09-01
hw/sd: Add sd_cmd_SEND_OP_CMD() handler
Philippe Mathieu-Daudé
1
-9
/
+9
2023-09-01
hw/sd: Add sd_cmd_GO_IDLE_STATE() handler
Philippe Mathieu-Daudé
1
-12
/
+12
2023-09-01
hw/sd: Add sd_cmd_unimplemented() handler
Philippe Mathieu-Daudé
1
-9
/
+12
2023-09-01
hw/sd: Add sd_cmd_illegal() handler
Philippe Mathieu-Daudé
1
-36
/
+26
2023-09-01
hw/sd: Introduce sd_cmd_handler type
Philippe Mathieu-Daudé
1
-0
/
+13
2023-09-01
hw/sd: Move proto_name to SDProto structure
Philippe Mathieu-Daudé
1
-8
/
+27
2023-09-01
hw/sd: When card is in wrong state, log which spec version is used
Philippe Mathieu-Daudé
1
-2
/
+16
2023-09-01
hw/sd: When card is in wrong state, log which state it is
Philippe Mathieu-Daudé
1
-3
/
+9
2023-09-01
hw/sd/sdcard: Return ILLEGAL for CMD19/CMD23 prior SD spec v3.01
Philippe Mathieu-Daudé
1
-2
/
+2
2023-08-31
hw/sd: spelling fixes
Michael Tokarev
1
-1
/
+1
2023-03-20
replace TABs with spaces
Yeqi Fu
1
-92
/
+92
2022-07-12
block: Change blk_{pread,pwrite}() param order
Alberto Faria
1
-2
/
+2
[next]