mbox

[PULL,0/9] SD/MMC patches for 2021-01-24

Message ID 20210124201106.2602238-1-f4bug@amsat.org (mailing list archive)
State New, archived
Headers show

Pull-request

https://gitlab.com/philmd/qemu.git tags/sdmmc-20210124

Message

Philippe Mathieu-Daudé Jan. 24, 2021, 8:10 p.m. UTC
The following changes since commit e93c65a6c64fa18b0c61fb9338d364cbea32b6ef:

  Merge remote-tracking branch 'remotes/kraxel/tags/usb-20210122-pull-request' into staging (2021-01-23 14:40:45 +0000)

are available in the Git repository at:

  https://gitlab.com/philmd/qemu.git tags/sdmmc-20210124

for you to fetch changes up to 3f20ccd359913013723f64e2443dd513786039f6:

  hw/sd: sd.h: Cosmetic change of using spaces (2021-01-24 20:11:05 +0100)

----------------------------------------------------------------
SD/MMC patches

- Various improvements for SD cards in SPI mode (Bin Meng)

----------------------------------------------------------------

Bin Meng (9):
  hw/sd: ssi-sd: Fix incorrect card response sequence
  hw/sd: sd: Support CMD59 for SPI mode
  hw/sd: sd: Drop sd_crc16()
  util: Add CRC16 (CCITT) calculation routines
  hw/sd: ssi-sd: Suffix a data block with CRC16
  hw/sd: ssi-sd: Add a state representing Nac
  hw/sd: ssi-sd: Fix the wrong command index for STOP_TRANSMISSION
  hw/sd: ssi-sd: Use macros for the dummy value and tokens in the
    transfer
  hw/sd: sd.h: Cosmetic change of using spaces

 include/hw/sd/sd.h       |  42 ++++++-------
 include/qemu/crc-ccitt.h |  33 ++++++++++
 hw/sd/sd.c               |  26 +-------
 hw/sd/ssi-sd.c           |  59 ++++++++++++++----
 util/crc-ccitt.c         | 127 +++++++++++++++++++++++++++++++++++++++
 util/meson.build         |   1 +
 6 files changed, 229 insertions(+), 59 deletions(-)
 create mode 100644 include/qemu/crc-ccitt.h
 create mode 100644 util/crc-ccitt.c

Comments

Peter Maydell Jan. 25, 2021, 1:48 p.m. UTC | #1
On Sun, 24 Jan 2021 at 20:13, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> The following changes since commit e93c65a6c64fa18b0c61fb9338d364cbea32b6ef:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/usb-20210122-pull-request' into staging (2021-01-23 14:40:45 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/philmd/qemu.git tags/sdmmc-20210124
>
> for you to fetch changes up to 3f20ccd359913013723f64e2443dd513786039f6:
>
>   hw/sd: sd.h: Cosmetic change of using spaces (2021-01-24 20:11:05 +0100)
>
> ----------------------------------------------------------------
> SD/MMC patches
>
> - Various improvements for SD cards in SPI mode (Bin Meng)
>
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.0
for any user-visible changes.

-- PMM