[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-arm] [PATCH 0/6] SDHCI: convert legacy devices to the SDBus API
From: |
Philippe Mathieu-Daudé |
Subject: |
[Qemu-arm] [PATCH 0/6] SDHCI: convert legacy devices to the SDBus API |
Date: |
Wed, 3 Jan 2018 13:23:54 -0300 |
Hi,
This series convert 3 devices using the legacy SDCard API to the SDBus API:
- milkymist-mmc
- pl181
- ssi-sd
Then move the legacy API to a separate header "sdcard_legacy.h".
Now the OMAP MMC is the last device using the legacy API, but need to get
QOM'ified first.
Regards,
Phil.
Philippe Mathieu-Daudé (6):
hw/sd/milkymist-memcard: use qemu_log_mask()
hw/sd/milkymist-memcard: split realize() out of SysBusDevice init()
hw/sd/milkymist-memcard: expose a SDBus and connect the SDCard to it
hw/sd/pl181: expose a SDBus and connect the SDCard to it
hw/sd/ssi-sd: expose a SDBus and connect the SDCard to it
hw/sd: move sdcard legacy API to "hw/sd/sdcard_legacy.h"
include/hw/sd/sd.h | 17 ----------
include/hw/sd/sdcard_legacy.h | 51 ++++++++++++++++++++++++++++++
hw/sd/milkymist-memcard.c | 72 ++++++++++++++++++++++++++-----------------
hw/sd/omap_mmc.c | 2 +-
hw/sd/pl181.c | 28 ++++++++++++-----
hw/sd/sd.c | 1 +
hw/sd/ssi-sd.c | 27 +++++++++++-----
7 files changed, 137 insertions(+), 61 deletions(-)
create mode 100644 include/hw/sd/sdcard_legacy.h
--
2.15.1
- [Qemu-arm] [PATCH 0/6] SDHCI: convert legacy devices to the SDBus API,
Philippe Mathieu-Daudé <=
- [Qemu-arm] [PATCH 3/6] hw/sd/milkymist-memcard: expose a SDBus and connect the SDCard to it, Philippe Mathieu-Daudé, 2018/01/03
- [Qemu-arm] [PATCH 4/6] hw/sd/pl181: expose a SDBus and connect the SDCard to it, Philippe Mathieu-Daudé, 2018/01/03
- [Qemu-arm] [PATCH 6/6] hw/sd: move sdcard legacy API to "hw/sd/sdcard_legacy.h", Philippe Mathieu-Daudé, 2018/01/03
- [Qemu-arm] [PATCH 1/6] hw/sd/milkymist-memcard: use qemu_log_mask(), Philippe Mathieu-Daudé, 2018/01/03
- [Qemu-arm] [PATCH 2/6] hw/sd/milkymist-memcard: split realize() out of SysBusDevice init(), Philippe Mathieu-Daudé, 2018/01/03