Linux-mmc Archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH V1 1/1]mmc:sdhci-bayhub:fix Qualcomm sd host 845 SD card compatibility issue
       [not found] <20210714010742.4707-1-chevron.li@bayhubtech.com>
@ 2021-08-03 12:18 ` Adrian Hunter
  0 siblings, 0 replies; only message in thread
From: Adrian Hunter @ 2021-08-03 12:18 UTC (permalink / raw
  To: chevron, ulf.hansson, linux-mmc, linux.kernel
  Cc: shaper.liu, xiaoguang.yu, shirley.her

On 14/07/21 4:07 am, chevron wrote:
> Improve the signal integrity for long SD bus trace by using 845+BH201 SD host redriver chip
> 
> Signed-off-by: chevron.li <chevron.li@bayhubtech.com>
> ---
> change in V1:
> 1. copy Qualcomm driver base from sdhci-msm.c to sdhci-bayhub.c
> 2. implement the BH201 chip initialization function at sdhci-bayhub.c
> 3. implement the BH201 chip power control function at sdhci-bayhub.c
> 4. implement the BH201 chip tuning function at sdhci-bayhub.c
> 5. re-implement mmc_rescan to match BH201 mode switch flow at sdhci-bayhub.c
> ---
> ---
>  .../devicetree/bindings/mmc/sdhci-msm.txt     |    1 +
>  drivers/mmc/host/Makefile                     |    1 +
>  drivers/mmc/host/sdhci-bayhub.c               | 6563 +++++++++++++++++
>  3 files changed, 6565 insertions(+)
>  create mode 100644 drivers/mmc/host/sdhci-bayhub.c
> 
> diff --git a/Documentation/devicetree/bindings/mmc/sdhci-msm.txt b/Documentation/devicetree/bindings/mmc/sdhci-msm.txt
> index 4c7fa6a4ed15..a0401dc16929 100644
> --- a/Documentation/devicetree/bindings/mmc/sdhci-msm.txt
> +++ b/Documentation/devicetree/bindings/mmc/sdhci-msm.txt
> @@ -20,6 +20,7 @@ Required properties:
>  		"qcom,qcs404-sdhci", "qcom,sdhci-msm-v5"
>  		"qcom,sc7180-sdhci", "qcom,sdhci-msm-v5";
>  		"qcom,sdm845-sdhci", "qcom,sdhci-msm-v5"
> +		"qcom,sdm845-bayhub-sdhci", "qcom,sdhci-msm-bayhub-v5"
>  		"qcom,sdx55-sdhci", "qcom,sdhci-msm-v5";
>  		"qcom,sm8250-sdhci", "qcom,sdhci-msm-v5"
>  	NOTE that some old device tree files may be floating around that only
> diff --git a/drivers/mmc/host/Makefile b/drivers/mmc/host/Makefile
> index 14004cc09aaa..d4d6f4cca732 100644
> --- a/drivers/mmc/host/Makefile
> +++ b/drivers/mmc/host/Makefile
> @@ -93,6 +93,7 @@ obj-$(CONFIG_MMC_SDHCI_OF_SPARX5)	+= sdhci-of-sparx5.o
>  obj-$(CONFIG_MMC_SDHCI_BCM_KONA)	+= sdhci-bcm-kona.o
>  obj-$(CONFIG_MMC_SDHCI_IPROC)		+= sdhci-iproc.o
>  obj-$(CONFIG_MMC_SDHCI_MSM)		+= sdhci-msm.o
> +obj-$(CONFIG_MMC_SDHCI_MSM)		+= sdhci-bayhub.o
>  obj-$(CONFIG_MMC_SDHCI_ST)		+= sdhci-st.o
>  obj-$(CONFIG_MMC_SDHCI_MICROCHIP_PIC32)	+= sdhci-pic32.o
>  obj-$(CONFIG_MMC_SDHCI_BRCMSTB)		+= sdhci-brcmstb.o
> diff --git a/drivers/mmc/host/sdhci-bayhub.c b/drivers/mmc/host/sdhci-bayhub.c
> new file mode 100644
> index 000000000000..75029470bd22
> --- /dev/null
> +++ b/drivers/mmc/host/sdhci-bayhub.c
> @@ -0,0 +1,6563 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Bayhub Technologies, Inc. BH201 SDHCI bridge IC for
> + * VENDOR SDHCI platform driver source file
> + *
> + * Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 and
> + * only version 2 as published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.

The license information is not needed when an SPDX license identifier is used

> + */
> +
> +#include <linux/module.h>
> +#include <linux/of_device.h>
> +#include <linux/delay.h>
> +#include <linux/mmc/mmc.h>
> +#include <linux/pm_runtime.h>
> +#include <linux/pm_opp.h>
> +#include <linux/slab.h>
> +#include <linux/iopoll.h>
> +#include <linux/regulator/consumer.h>
> +#include <linux/interconnect.h>
> +#include <linux/pinctrl/consumer.h>
> +#include <linux/mmc/host.h>
> +#include <linux/mmc/card.h>
> +#include <linux/mmc/sd.h>
> +#include <linux/io.h>
> +#include <linux/of_gpio.h>
> +
> +#include "sdhci-pltfm.h"
> +#include "cqhci.h"
> +#include "../core/core.h"
> +#include "../core/sd_ops.h"
> +#include "../core/sdio_ops.h"
> +#include "../core/mmc_ops.h"
> +#include "../core/sd.h"
> +#include "../core/bus.h"
> +#include "../core/host.h"
> +#include "../core/card.h"
> +#include "../core/pwrseq.h"
> +

The core headers are not meant to be accessed by host drivers.

You will need to discuss what you are trying to do with Ulf.

But possibly you could consider starting with a simpler driver that
doesn't have the features that need those headers.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-08-03 12:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20210714010742.4707-1-chevron.li@bayhubtech.com>
2021-08-03 12:18 ` [PATCH V1 1/1]mmc:sdhci-bayhub:fix Qualcomm sd host 845 SD card compatibility issue Adrian Hunter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).