summaryrefslogtreecommitdiffstats
path: root/hw/sd
Commit message (Expand)AuthorAgeFilesLines
* hw/ssi: Rename SSI 'slave' as 'peripheral'Philippe Mathieu-Daudé2020-12-101-6/+6
* hw/sd: Fix 2 GiB card CSD register valuesBin Meng2020-11-171-4/+11
* nomaintainer: Fix Lesser GPL version numberChetan Pant2020-11-151-1/+1
* hw/sd/sdcard: Zero out function selection fields before being populatedBin Meng2020-10-261-0/+1
* hw/sd/sdcard: Make iolen unsignedPhilippe Mathieu-Daudé2020-10-262-2/+2
* hw/sd/sdcard: Constify sd_crc*()'s message argumentPhilippe Mathieu-Daudé2020-10-261-4/+4
* hw/sd/sdcard: Simplify cmd_valid_while_locked()Philippe Mathieu-Daudé2020-10-261-6/+5Star
* hw/sd/sdcard: Update the SDState documentationPhilippe Mathieu-Daudé2020-10-261-1/+4
* hw/sd/sdcard: Assert if accessing an illegal groupPhilippe Mathieu-Daudé2020-10-211-0/+2
* hw/sd/sdcard: Do not attempt to erase out of range addressesPhilippe Mathieu-Daudé2020-10-211-0/+7
* hw/sd/sdcard: Reset both start/end addresses on errorPhilippe Mathieu-Daudé2020-10-211-0/+2
* hw/sd/sdcard: Do not use legal address '0' for INVALID_ADDRESSPhilippe Mathieu-Daudé2020-10-211-3/+3
* hw/sd/sdcard: Introduce the INVALID_ADDRESS definitionPhilippe Mathieu-Daudé2020-10-211-5/+8
* hw/sd/sdcard: Add trace event for ERASE command (CMD38)Philippe Mathieu-Daudé2020-10-212-2/+2
* hw/sd/sdhci: Yield if interrupt delivered during multiple transferPhilippe Mathieu-Daudé2020-10-211-1/+4
* hw/sd/sdhci: Let sdhci_update_irq() return if IRQ was deliveredPhilippe Mathieu-Daudé2020-10-211-2/+7
* hw/sd/sdhci: Resume pending DMA transfers on MMIO accessesPhilippe Mathieu-Daudé2020-10-211-0/+14
* hw/sd/sdhci: Stop multiple transfers when block count is clearedPhilippe Mathieu-Daudé2020-10-211-1/+6
* hw/sd/sdhci: Fix DMA Transfer Block Size fieldPhilippe Mathieu-Daudé2020-10-211-1/+1
* hw/sd/sdhci: Document the datasheet usedPhilippe Mathieu-Daudé2020-10-211-0/+2
* hw/sd/sdhci: Fix qemu_log_mask() format stringPhilippe Mathieu-Daudé2020-10-211-1/+1
* qdev: add "check if address free" callback for busesPaolo Bonzini2020-10-121-1/+2
* Use OBJECT_DECLARE_SIMPLE_TYPE when possibleEduardo Habkost2020-09-183-9/+3Star
* Merge remote-tracking branch 'remotes/alistair/tags/pull-riscv-to-apply-20200...Peter Maydell2020-09-133-0/+198
|\
| * hw/sd: Add Cadence SDHCI emulationBin Meng2020-09-103-0/+198
* | Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-for-5.2-pul...Peter Maydell2020-09-121-1/+1
|\ \
| * | util/hexdump: Reorder qemu_hexdump() argumentsPhilippe Mathieu-Daudé2020-09-111-1/+1
| * | util/hexdump: Convert to take a void pointer argumentPhilippe Mathieu-Daudé2020-09-111-1/+1
| |/
* | Use DECLARE_*CHECKER* when possible (--force mode)Eduardo Habkost2020-09-094-6/+12
* | Use DECLARE_*CHECKER* macrosEduardo Habkost2020-09-093-4/+6
* | Move QOM typedefs and add missing includesEduardo Habkost2020-09-097-5/+14
|/
* aspeed/sdhci: Fix reset sequenceCédric Le Goater2020-09-011-2/+12
* Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20200828'...Peter Maydell2020-08-281-6/+31
|\
| * hw/sd/allwinner-sdhost: Use AddressSpace for DMA transfersPhilippe Mathieu-Daudé2020-08-281-6/+31
* | pxa2xx: Move QOM macros to headerEduardo Habkost2020-08-271-3/+0Star
|/
* hw/sd: Correct the maximum size of a Standard Capacity SD Memory CardBin Meng2020-08-211-2/+4
* hw/sd: Fix incorrect populated function switch status data structureBin Meng2020-08-211-1/+2
* hw/sd: Use sdbus_read_data() instead of sdbus_read_byte() when possiblePhilippe Mathieu-Daudé2020-08-213-32/+13Star
* hw/sd: Add sdbus_read_data() to read multiples bytes on the data linePhilippe Mathieu-Daudé2020-08-211-0/+15
* hw/sd: Use sdbus_write_data() instead of sdbus_write_byte when possiblePhilippe Mathieu-Daudé2020-08-213-27/+12Star
* hw/sd: Add sdbus_write_data() to write multiples bytes on the data linePhilippe Mathieu-Daudé2020-08-211-0/+15
* hw/sd: Rename sdbus_read_data() as sdbus_read_byte()Philippe Mathieu-Daudé2020-08-218-18/+18
* hw/sd: Rename sdbus_write_data() as sdbus_write_byte()Philippe Mathieu-Daudé2020-08-217-17/+17
* hw/sd: Rename read/write_data() as read/write_byte()Philippe Mathieu-Daudé2020-08-213-14/+14
* hw/sd: Move sdcard legacy API to 'hw/sd/sdcard_legacy.h'Philippe Mathieu-Daudé2020-08-212-1/+2
* hw/sd/sdcard: Make sd_data_ready() staticPhilippe Mathieu-Daudé2020-08-211-1/+1
* hw/sd/pl181: Replace disabled fprintf()s by trace eventsPhilippe Mathieu-Daudé2020-08-212-17/+19
* hw/sd/pl181: Do not create SD card within the SD host controllerPhilippe Mathieu-Daudé2020-08-211-18/+1Star
* hw/sd/pl181: Expose a SDBus and connect the SDCard to itPhilippe Mathieu-Daudé2020-08-211-16/+51
* hw/sd/pl181: Use named GPIOsPhilippe Mathieu-Daudé2020-08-211-3/+5