summary refs log tree commit diff stats
path: root/hw/sd (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* sdcard: use the correct masked OCR in the R3 replyPhilippe Mathieu-Daudé2018-02-221-5/+16
* sdcard: simplify using the ldst APIPhilippe Mathieu-Daudé2018-02-221-29/+9
* sdcard: remove commands from unsupported old MMC specificationPhilippe Mathieu-Daudé2018-02-221-33/+0
* sdcard: clean the SCR register and add few commentsPhilippe Mathieu-Daudé2018-02-221-3/+6
* sdcard: fix the 'maximum data transfer rate' to 25MHzPhilippe Mathieu-Daudé2018-02-221-1/+1
* sdcard: update the CSD CRC register regardless the CSD structure versionPhilippe Mathieu-Daudé2018-02-221-2/+1
* sdcard: Don't always set the high capacity bitPhilippe Mathieu-Daudé2018-02-221-1/+4
* sdcard: use the registerfields API to access the OCR registerPhilippe Mathieu-Daudé2018-02-221-8/+13
* sdcard: use G_BYTE from cutilsPhilippe Mathieu-Daudé2018-02-221-1/+2
* sdcard: define SDMMC_CMD_MAX instead of using the magic '64'Philippe Mathieu-Daudé2018-02-222-6/+31
* sdcard: add more trace eventsPhilippe Mathieu-Daudé2018-02-222-6/+39
* sdcard: replace fprintf() by qemu_hexdump()Philippe Mathieu-Daudé2018-02-221-15/+1
* sdcard: add a trace event for command responsesPhilippe Mathieu-Daudé2018-02-222-3/+25
* sdcard: replace DPRINTF() by trace eventsPhilippe Mathieu-Daudé2018-02-222-6/+32
* sdcard: reorder SDState struct membersPhilippe Mathieu-Daudé2018-02-221-7/+9
* hw/sd/ssi-sd: use the SDBus API, connect the SDCard to the busPhilippe Mathieu-Daudé2018-02-221-13/+19
* hw/sd/milkymist-memcard: expose a SDBus and connect the SDCard to itPhilippe Mathieu-Daudé2018-02-221-17/+21
* hw/sd/milkymist-memcard: split realize() out of SysBusDevice init()Philippe Mathieu-Daudé2018-02-221-12/+16
* hw/sd/milkymist-memcard: use qemu_log_mask()Philippe Mathieu-Daudé2018-02-221-7/+10
* sdhci: add Spec v4.2 register definitionsPhilippe Mathieu-Daudé2018-02-132-1/+24
* sdhci: implement CMD/DAT[] fields in the Present State registerPhilippe Mathieu-Daudé2018-02-135-0/+58
* sdhci: implement UHS-I voltage switchPhilippe Mathieu-Daudé2018-02-134-1/+38
* sdbus: add trace eventsPhilippe Mathieu-Daudé2018-02-132-2/+17
* sdhci: implement the Host Control 2 register (tuning sequence)Philippe Mathieu-Daudé2018-02-132-3/+29
* sdhci: rename the hostctl1 registerPhilippe Mathieu-Daudé2018-02-131-21/+21
* sdhci: add support for v3 capabilitiesPhilippe Mathieu-Daudé2018-02-132-2/+65
* sdhci: check Spec v2 capabilities (DMA and 64-bit bus)Philippe Mathieu-Daudé2018-02-132-9/+19
* sdhci: Fix 64-bit ADMA2Sai Pavan Boddu2018-02-131-2/+2
* sdhci: replace DMA magic value by BLOCK_SIZE_MASKPhilippe Mathieu-Daudé2018-02-131-8/+10
* sdhci: check the Spec v1 capabilities correctnessPhilippe Mathieu-Daudé2018-02-133-2/+116
* sdhci: simplify sdhci_get_fifolen()Philippe Mathieu-Daudé2018-02-132-16/+8
* sdhci: use a numeric value for the default CAPAB registerPhilippe Mathieu-Daudé2018-02-131-58/+16
* sdhci: add a 'spec_version property' (default to v2)Philippe Mathieu-Daudé2018-02-132-6/+25
* sdhci: use error_propagate(local_err) in realize()Philippe Mathieu-Daudé2018-02-131-2/+6
* Merge remote-tracking branch 'remotes/armbru/tags/pull-misc-2018-02-07-v4' in...Peter Maydell2018-02-091-1/+0
|\
| * Include qapi/error.h exactly where neededMarkus Armbruster2018-02-091-1/+0
* | sdhci: Add i.MX specific subtype of SDHCIAndrey Smirnov2018-02-092-1/+252
|/
* hw/sd: Replace fprintf(stderr, "*\n" with DPRINTF()Alistair Francis2018-02-061-3/+4
* sdhci: fix a NULL pointer dereference due to uninitialized AddresSpace objectPhilippe Mathieu-Daudé2018-01-251-0/+1
* sdhci: add a 'dma' property to the sysbus devicesPhilippe Mathieu-Daudé2018-01-161-1/+17
* sdhci: fix the PCI device, using the PCI address space for DMAPhilippe Mathieu-Daudé2018-01-161-14/+15
* sdhci: Implement write method of ACMD12ERRSTS registerAndrey Smirnov2018-01-161-0/+3
* sdhci: fix CAPAB/MAXCURR registers, both are 64bit and read-onlyPhilippe Mathieu-Daudé2018-01-161-4/+19
* sdhci: rename the SDHC_CAPAB registerPhilippe Mathieu-Daudé2018-01-162-2/+2
* sdhci: move MASK_TRNMOD with other SDHC_TRN* defines in "sd-internal.h"Philippe Mathieu-Daudé2018-01-162-2/+2
* sdhci: convert the DPRINT() calls into trace eventsPhilippe Mathieu-Daudé2018-01-162-59/+44
* sdhci: use qemu_log_mask(UNIMP) instead of fprintf()Philippe Mathieu-Daudé2018-01-161-3/+4
* sdhci: refactor common sysbus/pci unrealize() into sdhci_common_unrealize()Philippe Mathieu-Daudé2018-01-161-0/+22
* sdhci: refactor common sysbus/pci realize() into sdhci_common_realize()Philippe Mathieu-Daudé2018-01-161-9/+21
* sdhci: refactor common sysbus/pci class_init() into sdhci_common_class_init()Philippe Mathieu-Daudé2018-01-161-5/+13