All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] samsung: arndale: remove board_mmc_init function
       [not found] <CGME20210112063021epcas1p3e250217446037a524c9db2f3ee3157db@epcas1p3.samsung.com>
@ 2021-01-12  6:30 ` Jaehoon Chung
       [not found]   ` <CGME20210112063021epcas1p16314dd9a2734184c8cf8bea6dc9858a3@epcas1p1.samsung.com>
                     ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Jaehoon Chung @ 2021-01-12  6:30 UTC (permalink / raw)
  To: u-boot

Remove board_mmc_init function.
It will be probed with driver-model.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
---
 arch/arm/mach-exynos/include/mach/dwmmc.h |  2 --
 board/samsung/arndale/arndale.c           | 13 -------------
 2 files changed, 15 deletions(-)

diff --git a/arch/arm/mach-exynos/include/mach/dwmmc.h b/arch/arm/mach-exynos/include/mach/dwmmc.h
index 5654a0ea6b..59c28ed54c 100644
--- a/arch/arm/mach-exynos/include/mach/dwmmc.h
+++ b/arch/arm/mach-exynos/include/mach/dwmmc.h
@@ -25,5 +25,3 @@
 /* CLKSEL Register */
 #define DWMCI_DIVRATIO_BIT		24
 #define DWMCI_DIVRATIO_MASK		0x7
-
-int exynos_dwmmc_init(const void *blob);
diff --git a/board/samsung/arndale/arndale.c b/board/samsung/arndale/arndale.c
index 91813763ce..d283ef6275 100644
--- a/board/samsung/arndale/arndale.c
+++ b/board/samsung/arndale/arndale.c
@@ -73,19 +73,6 @@ int dram_init_banksize(void)
 	return 0;
 }
 
-#ifdef CONFIG_MMC
-int board_mmc_init(struct bd_info *bis)
-{
-	int ret;
-	/* dwmmc initializattion for available channels */
-	ret = exynos_dwmmc_init(gd->fdt_blob);
-	if (ret)
-		debug("dwmmc init failed\n");
-
-	return ret;
-}
-#endif
-
 static int board_uart_init(void)
 {
 	int err = 0, uart_id;
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 2/2] mmc: exynos_dw_mmc: remove unused function
       [not found]   ` <CGME20210112063021epcas1p16314dd9a2734184c8cf8bea6dc9858a3@epcas1p1.samsung.com>
@ 2021-01-12  6:30     ` Jaehoon Chung
  2021-01-13  1:31       ` Peng Fan
  0 siblings, 1 reply; 7+ messages in thread
From: Jaehoon Chung @ 2021-01-12  6:30 UTC (permalink / raw)
  To: u-boot

Remove unused function in exynos_dw_mmc.c.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
---
 drivers/mmc/exynos_dw_mmc.c | 56 -------------------------------------
 1 file changed, 56 deletions(-)

diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
index 3aa9fb3c89..edb5a52c96 100644
--- a/drivers/mmc/exynos_dw_mmc.c
+++ b/drivers/mmc/exynos_dw_mmc.c
@@ -133,8 +133,6 @@ static int exynos_dwmci_core_init(struct dwmci_host *host)
 	return 0;
 }
 
-static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM];
-
 static int do_dwmci_init(struct dwmci_host *host)
 {
 	int flag, err;
@@ -206,60 +204,6 @@ static int exynos_dwmci_get_config(const void *blob, int node,
 	return 0;
 }
 
-static int exynos_dwmci_process_node(const void *blob,
-					int node_list[], int count)
-{
-	struct dwmci_exynos_priv_data *priv;
-	struct dwmci_host *host;
-	int i, node, err;
-
-	for (i = 0; i < count; i++) {
-		node = node_list[i];
-		if (node <= 0)
-			continue;
-		host = &dwmci_host[i];
-
-		priv = malloc(sizeof(struct dwmci_exynos_priv_data));
-		if (!priv) {
-			pr_err("dwmci_exynos_priv_data malloc fail!\n");
-			return -ENOMEM;
-		}
-
-		err = exynos_dwmci_get_config(blob, node, host, priv);
-		if (err) {
-			printf("%s: failed to decode dev %d\n", __func__, i);
-			free(priv);
-			return err;
-		}
-		host->priv = priv;
-
-		do_dwmci_init(host);
-	}
-	return 0;
-}
-
-int exynos_dwmmc_init(const void *blob)
-{
-	int node_list[DWMMC_MAX_CH_NUM];
-	int boot_dev_node;
-	int err = 0, count;
-
-	count = fdtdec_find_aliases_for_id(blob, "mmc",
-			COMPAT_SAMSUNG_EXYNOS_DWMMC, node_list,
-			DWMMC_MAX_CH_NUM);
-
-	/* For DWMMC always set boot device as mmc 0 */
-	if (count >= 3 && get_boot_mode() == BOOT_MODE_SD) {
-		boot_dev_node = node_list[2];
-		node_list[2] = node_list[0];
-		node_list[0] = boot_dev_node;
-	}
-
-	err = exynos_dwmci_process_node(blob, node_list, count);
-
-	return err;
-}
-
 #ifdef CONFIG_DM_MMC
 static int exynos_dwmmc_probe(struct udevice *dev)
 {
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 1/2] samsung: arndale: remove board_mmc_init function
  2021-01-12  6:30 ` [PATCH 1/2] samsung: arndale: remove board_mmc_init function Jaehoon Chung
       [not found]   ` <CGME20210112063021epcas1p16314dd9a2734184c8cf8bea6dc9858a3@epcas1p1.samsung.com>
@ 2021-01-13  1:31   ` Peng Fan
  2021-01-13  4:14   ` Krzysztof Kozlowski
  2 siblings, 0 replies; 7+ messages in thread
From: Peng Fan @ 2021-01-13  1:31 UTC (permalink / raw)
  To: u-boot

> Subject: [PATCH 1/2] samsung: arndale: remove board_mmc_init function
> 
> Remove board_mmc_init function.
> It will be probed with driver-model.
> 
> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> ---
>  arch/arm/mach-exynos/include/mach/dwmmc.h |  2 --
>  board/samsung/arndale/arndale.c           | 13 -------------
>  2 files changed, 15 deletions(-)
> 
> diff --git a/arch/arm/mach-exynos/include/mach/dwmmc.h
> b/arch/arm/mach-exynos/include/mach/dwmmc.h
> index 5654a0ea6b..59c28ed54c 100644
> --- a/arch/arm/mach-exynos/include/mach/dwmmc.h
> +++ b/arch/arm/mach-exynos/include/mach/dwmmc.h
> @@ -25,5 +25,3 @@
>  /* CLKSEL Register */
>  #define DWMCI_DIVRATIO_BIT		24
>  #define DWMCI_DIVRATIO_MASK		0x7
> -
> -int exynos_dwmmc_init(const void *blob); diff --git
> a/board/samsung/arndale/arndale.c b/board/samsung/arndale/arndale.c
> index 91813763ce..d283ef6275 100644
> --- a/board/samsung/arndale/arndale.c
> +++ b/board/samsung/arndale/arndale.c
> @@ -73,19 +73,6 @@ int dram_init_banksize(void)
>  	return 0;
>  }
> 
> -#ifdef CONFIG_MMC
> -int board_mmc_init(struct bd_info *bis) -{
> -	int ret;
> -	/* dwmmc initializattion for available channels */
> -	ret = exynos_dwmmc_init(gd->fdt_blob);
> -	if (ret)
> -		debug("dwmmc init failed\n");
> -
> -	return ret;
> -}
> -#endif
> -
>  static int board_uart_init(void)
>  {
>  	int err = 0, uart_id;
> --
> 2.17.1

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 2/2] mmc: exynos_dw_mmc: remove unused function
  2021-01-12  6:30     ` [PATCH 2/2] mmc: exynos_dw_mmc: remove unused function Jaehoon Chung
@ 2021-01-13  1:31       ` Peng Fan
  2021-01-15  9:23         ` Minkyu Kang
  0 siblings, 1 reply; 7+ messages in thread
From: Peng Fan @ 2021-01-13  1:31 UTC (permalink / raw)
  To: u-boot

> Subject: [PATCH 2/2] mmc: exynos_dw_mmc: remove unused function
> 
> Remove unused function in exynos_dw_mmc.c.
> 
> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> ---
>  drivers/mmc/exynos_dw_mmc.c | 56 -------------------------------------
>  1 file changed, 56 deletions(-)
> 
> diff --git a/drivers/mmc/exynos_dw_mmc.c
> b/drivers/mmc/exynos_dw_mmc.c index 3aa9fb3c89..edb5a52c96 100644
> --- a/drivers/mmc/exynos_dw_mmc.c
> +++ b/drivers/mmc/exynos_dw_mmc.c
> @@ -133,8 +133,6 @@ static int exynos_dwmci_core_init(struct dwmci_host
> *host)
>  	return 0;
>  }
> 
> -static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM];
> -
>  static int do_dwmci_init(struct dwmci_host *host)  {
>  	int flag, err;
> @@ -206,60 +204,6 @@ static int exynos_dwmci_get_config(const void *blob,
> int node,
>  	return 0;
>  }
> 
> -static int exynos_dwmci_process_node(const void *blob,
> -					int node_list[], int count)
> -{
> -	struct dwmci_exynos_priv_data *priv;
> -	struct dwmci_host *host;
> -	int i, node, err;
> -
> -	for (i = 0; i < count; i++) {
> -		node = node_list[i];
> -		if (node <= 0)
> -			continue;
> -		host = &dwmci_host[i];
> -
> -		priv = malloc(sizeof(struct dwmci_exynos_priv_data));
> -		if (!priv) {
> -			pr_err("dwmci_exynos_priv_data malloc fail!\n");
> -			return -ENOMEM;
> -		}
> -
> -		err = exynos_dwmci_get_config(blob, node, host, priv);
> -		if (err) {
> -			printf("%s: failed to decode dev %d\n", __func__, i);
> -			free(priv);
> -			return err;
> -		}
> -		host->priv = priv;
> -
> -		do_dwmci_init(host);
> -	}
> -	return 0;
> -}
> -
> -int exynos_dwmmc_init(const void *blob) -{
> -	int node_list[DWMMC_MAX_CH_NUM];
> -	int boot_dev_node;
> -	int err = 0, count;
> -
> -	count = fdtdec_find_aliases_for_id(blob, "mmc",
> -			COMPAT_SAMSUNG_EXYNOS_DWMMC, node_list,
> -			DWMMC_MAX_CH_NUM);
> -
> -	/* For DWMMC always set boot device as mmc 0 */
> -	if (count >= 3 && get_boot_mode() == BOOT_MODE_SD) {
> -		boot_dev_node = node_list[2];
> -		node_list[2] = node_list[0];
> -		node_list[0] = boot_dev_node;
> -	}
> -
> -	err = exynos_dwmci_process_node(blob, node_list, count);
> -
> -	return err;
> -}
> -
>  #ifdef CONFIG_DM_MMC
>  static int exynos_dwmmc_probe(struct udevice *dev)  {
> --
> 2.17.1

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/2] samsung: arndale: remove board_mmc_init function
  2021-01-12  6:30 ` [PATCH 1/2] samsung: arndale: remove board_mmc_init function Jaehoon Chung
       [not found]   ` <CGME20210112063021epcas1p16314dd9a2734184c8cf8bea6dc9858a3@epcas1p1.samsung.com>
  2021-01-13  1:31   ` [PATCH 1/2] samsung: arndale: remove board_mmc_init function Peng Fan
@ 2021-01-13  4:14   ` Krzysztof Kozlowski
  2021-01-15  9:23     ` Minkyu Kang
  2 siblings, 1 reply; 7+ messages in thread
From: Krzysztof Kozlowski @ 2021-01-13  4:14 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 12, 2021 at 03:30:53PM +0900, Jaehoon Chung wrote:
> Remove board_mmc_init function.
> It will be probed with driver-model.
> 
> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
> ---
>  arch/arm/mach-exynos/include/mach/dwmmc.h |  2 --
>  board/samsung/arndale/arndale.c           | 13 -------------
>  2 files changed, 15 deletions(-)
> 

Acked-by: Krzysztof Kozlowski <krzk@kernel.org>

Best regards,
Krzysztof

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/2] samsung: arndale: remove board_mmc_init function
  2021-01-13  4:14   ` Krzysztof Kozlowski
@ 2021-01-15  9:23     ` Minkyu Kang
  0 siblings, 0 replies; 7+ messages in thread
From: Minkyu Kang @ 2021-01-15  9:23 UTC (permalink / raw)
  To: u-boot

Hi,

On Wed, 13 Jan 2021 at 13:14, Krzysztof Kozlowski <krzk@kernel.org> wrote:

> On Tue, Jan 12, 2021 at 03:30:53PM +0900, Jaehoon Chung wrote:
> > Remove board_mmc_init function.
> > It will be probed with driver-model.
> >
> > Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
> > ---
> >  arch/arm/mach-exynos/include/mach/dwmmc.h |  2 --
> >  board/samsung/arndale/arndale.c           | 13 -------------
> >  2 files changed, 15 deletions(-)
> >
>
> Acked-by: Krzysztof Kozlowski <krzk@kernel.org>
>
> Best regards,
> Krzysztof
>

applied to u-boot-samsung.

-- 
Thanks,
Minkyu Kang.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 2/2] mmc: exynos_dw_mmc: remove unused function
  2021-01-13  1:31       ` Peng Fan
@ 2021-01-15  9:23         ` Minkyu Kang
  0 siblings, 0 replies; 7+ messages in thread
From: Minkyu Kang @ 2021-01-15  9:23 UTC (permalink / raw)
  To: u-boot

Hi,

On Wed, 13 Jan 2021 at 10:31, Peng Fan <peng.fan@nxp.com> wrote:

> > Subject: [PATCH 2/2] mmc: exynos_dw_mmc: remove unused function
> >
> > Remove unused function in exynos_dw_mmc.c.
> >
> > Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
>
> Reviewed-by: Peng Fan <peng.fan@nxp.com>
>
> > ---
> >  drivers/mmc/exynos_dw_mmc.c | 56 -------------------------------------
> >  1 file changed, 56 deletions(-)
> >
> > diff --git a/drivers/mmc/exynos_dw_mmc.c
> > b/drivers/mmc/exynos_dw_mmc.c index 3aa9fb3c89..edb5a52c96 100644
> > --- a/drivers/mmc/exynos_dw_mmc.c
> > +++ b/drivers/mmc/exynos_dw_mmc.c
> > @@ -133,8 +133,6 @@ static int exynos_dwmci_core_init(struct dwmci_host
> > *host)
> >       return 0;
> >  }
> >
> > -static struct dwmci_host dwmci_host[DWMMC_MAX_CH_NUM];
> > -
> >  static int do_dwmci_init(struct dwmci_host *host)  {
> >       int flag, err;
> > @@ -206,60 +204,6 @@ static int exynos_dwmci_get_config(const void *blob,
> > int node,
> >       return 0;
> >  }
> >
> > -static int exynos_dwmci_process_node(const void *blob,
> > -                                     int node_list[], int count)
> > -{
> > -     struct dwmci_exynos_priv_data *priv;
> > -     struct dwmci_host *host;
> > -     int i, node, err;
> > -
> > -     for (i = 0; i < count; i++) {
> > -             node = node_list[i];
> > -             if (node <= 0)
> > -                     continue;
> > -             host = &dwmci_host[i];
> > -
> > -             priv = malloc(sizeof(struct dwmci_exynos_priv_data));
> > -             if (!priv) {
> > -                     pr_err("dwmci_exynos_priv_data malloc fail!\n");
> > -                     return -ENOMEM;
> > -             }
> > -
> > -             err = exynos_dwmci_get_config(blob, node, host, priv);
> > -             if (err) {
> > -                     printf("%s: failed to decode dev %d\n", __func__,
> i);
> > -                     free(priv);
> > -                     return err;
> > -             }
> > -             host->priv = priv;
> > -
> > -             do_dwmci_init(host);
> > -     }
> > -     return 0;
> > -}
> > -
> > -int exynos_dwmmc_init(const void *blob) -{
> > -     int node_list[DWMMC_MAX_CH_NUM];
> > -     int boot_dev_node;
> > -     int err = 0, count;
> > -
> > -     count = fdtdec_find_aliases_for_id(blob, "mmc",
> > -                     COMPAT_SAMSUNG_EXYNOS_DWMMC, node_list,
> > -                     DWMMC_MAX_CH_NUM);
> > -
> > -     /* For DWMMC always set boot device as mmc 0 */
> > -     if (count >= 3 && get_boot_mode() == BOOT_MODE_SD) {
> > -             boot_dev_node = node_list[2];
> > -             node_list[2] = node_list[0];
> > -             node_list[0] = boot_dev_node;
> > -     }
> > -
> > -     err = exynos_dwmci_process_node(blob, node_list, count);
> > -
> > -     return err;
> > -}
> > -
> >  #ifdef CONFIG_DM_MMC
> >  static int exynos_dwmmc_probe(struct udevice *dev)  {
> > --
> > 2.17.1
>
>
applied to u-boot-samsung.

-- 
Thanks,
Minkyu Kang.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-01-15  9:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20210112063021epcas1p3e250217446037a524c9db2f3ee3157db@epcas1p3.samsung.com>
2021-01-12  6:30 ` [PATCH 1/2] samsung: arndale: remove board_mmc_init function Jaehoon Chung
     [not found]   ` <CGME20210112063021epcas1p16314dd9a2734184c8cf8bea6dc9858a3@epcas1p1.samsung.com>
2021-01-12  6:30     ` [PATCH 2/2] mmc: exynos_dw_mmc: remove unused function Jaehoon Chung
2021-01-13  1:31       ` Peng Fan
2021-01-15  9:23         ` Minkyu Kang
2021-01-13  1:31   ` [PATCH 1/2] samsung: arndale: remove board_mmc_init function Peng Fan
2021-01-13  4:14   ` Krzysztof Kozlowski
2021-01-15  9:23     ` Minkyu Kang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.