From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eYZaw-0001lr-Nr for qemu-devel@nongnu.org; Mon, 08 Jan 2018 10:44:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eYZav-0007Sy-PD for qemu-devel@nongnu.org; Mon, 08 Jan 2018 10:44:14 -0500 Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Mon, 8 Jan 2018 12:42:42 -0300 Message-Id: <20180108154303.6522-11-f4bug@amsat.org> In-Reply-To: <20180108154303.6522-1-f4bug@amsat.org> References: <20180108154303.6522-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v5 10/31] sdhci: add a Designware/Samsung host controller List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alistair Francis , Peter Maydell , Andrey Smirnov , Igor Mitsyanko Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-devel@nongnu.org, "Edgar E . Iglesias" , Sai Pavan Boddu , Clement Deschamps , Jean-Christophe Dubois , =?UTF-8?q?Gr=C3=A9gory=20Estrade?= , Krzysztof Kozlowski , Andrew Baumann , Prasad J Pandit , qemu-arm@nongnu.org, Eduardo Habkost , Peter Crosthwaite Signed-off-by: Philippe Mathieu-Daudé --- hw/sd/dw-mshc.c | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++ hw/sd/Makefile.objs | 1 + 2 files changed, 65 insertions(+) create mode 100644 hw/sd/dw-mshc.c diff --git a/hw/sd/dw-mshc.c b/hw/sd/dw-mshc.c new file mode 100644 index 0000000000..c2869cd569 --- /dev/null +++ b/hw/sd/dw-mshc.c @@ -0,0 +1,64 @@ +/* + * Synopsys Designware Mobile Storage Host Controller emulation + * (and Samsung Exynos specific extensions) + * + * Copyright (C) 2018 Philippe Mathieu-Daudé + * + * This work is licensed under the terms of the GNU GPL, version 2 or + * (at your option) any later version. See the COPYING file in the + * top-level directory. + */ +#include "qemu/osdep.h" +#include "hw/sd/sdhci.h" +#include "qapi/error.h" + +/* Compatible with: + * - SD Host Controller Specification Version 2.0 + * - SDIO Specification Version 2.0 + * - MMC Specification Version 4.3 + * + * - SDMA + * - ADMA + */ +static void exynos4210_dw_mshc_realize(DeviceState *dev, Error **errp) +{ + SDHCICommonClass *cc = SYSBUS_SDHCI_COMMON_GET_CLASS(dev); + Object *obj = OBJECT(dev); + Error *local_err = NULL; + + object_property_set_uint(obj, 2, "sd-spec-version", &local_err); + object_property_set_bool(obj, true, "suspend", &local_err); + object_property_set_bool(obj, true, "1v8", &local_err); + if (local_err) { + error_propagate(errp, local_err); + return; + } + + cc->parent_realize(dev, &local_err); + if (local_err) { + error_propagate(errp, local_err); + return; + } +} + +static void exynos4210_dw_mshc_class_init(ObjectClass *klass, void *data) +{ + DeviceClass *dc = DEVICE_CLASS(klass); + SDHCICommonClass *cc = SYSBUS_SDHCI_COMMON_CLASS(klass); + + cc->parent_realize = dc->realize; + dc->realize = exynos4210_dw_mshc_realize; +} + +static const TypeInfo exynos4210_dw_mshc_info = { + .name = "samsung,exynos4210-dw-mshc", + .parent = TYPE_SYSBUS_SDHCI, + .class_init = exynos4210_dw_mshc_class_init, +}; + +static void dw_mshc_sdhc_register_types(void) +{ + type_register_static(&exynos4210_dw_mshc_info); +} + +type_init(dw_mshc_sdhc_register_types) diff --git a/hw/sd/Makefile.objs b/hw/sd/Makefile.objs index 0fe2501017..fd866d7f94 100644 --- a/hw/sd/Makefile.objs +++ b/hw/sd/Makefile.objs @@ -3,6 +3,7 @@ common-obj-$(CONFIG_SD) += core.o # SD/MMC host adapters common-obj-$(CONFIG_PL181) += pl181.o +common-obj-$(CONFIG_EXYNOS4) += dw-mshc.o common-obj-$(CONFIG_SSI_SD) += ssi-sd.o common-obj-$(CONFIG_SDHCI) += sdhci.o obj-$(CONFIG_MILKYMIST) += milkymist-memcard.o -- 2.15.1