[U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC

2013-04-03 Thread Amar
This patch adds FDT support for DWMMC, by reading the DWMMC node data
from the device tree and initialising DWMMC channels as per data
obtained from the node.

Signed-off-by: Vivek Gautam 
Signed-off-by: Amar 
Acked-by: Simon Glass 
---
Changes since V1:
1)Updated code to have same signature for the function
exynos_dwmci_init() for both FDT and non-FDT versions.
2)Updated code to pass device_id parameter to the function
exynos5_mmc_set_clk_div() instead of index.
3)Updated code to decode the value of "samsung,width" from FDT.
4)Channel index is computed instead of getting from FDT.

Changes since V2:
1)Updation of commit message and resubmition of proper patch set.

Changes since V3:
1)Replaced the new function exynos5_mmc_set_clk_div() with the
existing function set_mmc_clk(). set_mmc_clk() will do the purpose.
2)Computation of FSYS block clock divisor (pre-ratio) is added.

Changes since V4:
1)Replaced "unsigned int exynos_dwmmc_init(int index, int bus_width)" 
with
int exynos_dwmci_add_port(int, u32, inth, u32)
i)exynos_dwmmc_add_port() will be used by non-FDT boards.
ii)In FDT case, exynos_dwmmc_init(const void *blob) will use
exynos_dwmmc_add_port() for every channel enabled in device 
node.
2)Changed the computation method of mmc clock divisor.
3)Updated exynos_dwmmc_init() to compute the 'clksel_val' within the 
function.

Changes since V5:
1)Updated in response to review comments and changed the mmc clock value
from 50MHz to 52MHz.

Changes since V6:
No change.

Changes since V7:
No change.

 arch/arm/include/asm/arch-exynos/dwmmc.h |  11 +--
 drivers/mmc/exynos_dw_mmc.c  | 127 ---
 include/dwmmc.h  |   3 +
 3 files changed, 124 insertions(+), 17 deletions(-)

diff --git a/arch/arm/include/asm/arch-exynos/dwmmc.h 
b/arch/arm/include/asm/arch-exynos/dwmmc.h
index 8acdf9b..3b147b8 100644
--- a/arch/arm/include/asm/arch-exynos/dwmmc.h
+++ b/arch/arm/include/asm/arch-exynos/dwmmc.h
@@ -27,10 +27,7 @@
 #define DWMCI_SET_DRV_CLK(x)   ((x) << 16)
 #define DWMCI_SET_DIV_RATIO(x) ((x) << 24)
 
-int exynos_dwmci_init(u32 regbase, int bus_width, int index);
-
-static inline unsigned int exynos_dwmmc_init(int index, int bus_width)
-{
-   unsigned int base = samsung_get_base_mmc() + (0x1 * index);
-   return exynos_dwmci_init(base, bus_width, index);
-}
+#ifdef CONFIG_OF_CONTROL
+int exynos_dwmmc_init(const void *blob);
+#endif
+int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32 clksel);
diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
index 72a31b7..4238dd9 100644
--- a/drivers/mmc/exynos_dw_mmc.c
+++ b/drivers/mmc/exynos_dw_mmc.c
@@ -19,39 +19,146 @@
  */
 
 #include 
-#include 
 #include 
+#include 
+#include 
+#include 
 #include 
 #include 
+#include 
 
-static char *EXYNOS_NAME = "EXYNOS DWMMC";
+#defineDWMMC_MAX_CH_NUM4
+#defineDWMMC_MAX_FREQ  5200
+#defineDWMMC_MIN_FREQ  40
+#defineDWMMC_MMC0_CLKSEL_VAL   0x03030001
+#defineDWMMC_MMC2_CLKSEL_VAL   0x03020001
 
+/*
+ * Function used as callback function to initialise the
+ * CLKSEL register for every mmc channel.
+ */
 static void exynos_dwmci_clksel(struct dwmci_host *host)
 {
-   u32 val;
-   val = DWMCI_SET_SAMPLE_CLK(DWMCI_SHIFT_0) |
-   DWMCI_SET_DRV_CLK(DWMCI_SHIFT_0) | DWMCI_SET_DIV_RATIO(0);
+   dwmci_writel(host, DWMCI_CLKSEL, host->clksel_val);
+}
 
-   dwmci_writel(host, DWMCI_CLKSEL, val);
+unsigned int exynos_dwmci_get_clk(int dev_index)
+{
+   return get_mmc_clk(dev_index);
 }
 
-int exynos_dwmci_init(u32 regbase, int bus_width, int index)
+/*
+ * This function adds the mmc channel to be registered with mmc core.
+ * index - mmc channel number.
+ * regbase -   register base address of mmc channel specified in 'index'.
+ * bus_width - operating bus width of mmc channel specified in 'index'.
+ * clksel -value to be written into CLKSEL register in case of FDT.
+ * NULL in case od non-FDT.
+ */
+int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32 clksel)
 {
struct dwmci_host *host = NULL;
+   unsigned int div;
+   unsigned long freq, sclk;
host = malloc(sizeof(struct dwmci_host));
if (!host) {
printf("dwmci_host malloc fail!\n");
return 1;
}
+   /* request mmc clock vlaue of 52MHz.  */
+   freq = 5200;
+   sclk = get_mmc_clk(index);
+   div = DIV_ROUND_UP(sclk, freq);
+   /* set the clock divisor for mmc */
+   set_mmc_clk(index, div);
 
-   host->name = EXYNOS_NAME;
+   host->name = "EXYNOS DWMMC";
host->ioaddr = (void *)regbase;
host->buswid

Re: [U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC

2013-04-09 Thread Jaehoon Chung
On 04/03/2013 11:08 PM, Amar wrote:
> This patch adds FDT support for DWMMC, by reading the DWMMC node data
> from the device tree and initialising DWMMC channels as per data
> obtained from the node.
> 
> Signed-off-by: Vivek Gautam 
> Signed-off-by: Amar 
> Acked-by: Simon Glass 
> ---
> Changes since V1:
>   1)Updated code to have same signature for the function
>   exynos_dwmci_init() for both FDT and non-FDT versions.
>   2)Updated code to pass device_id parameter to the function
>   exynos5_mmc_set_clk_div() instead of index.
>   3)Updated code to decode the value of "samsung,width" from FDT.
>   4)Channel index is computed instead of getting from FDT.
> 
> Changes since V2:
>   1)Updation of commit message and resubmition of proper patch set.
> 
> Changes since V3:
>   1)Replaced the new function exynos5_mmc_set_clk_div() with the
>   existing function set_mmc_clk(). set_mmc_clk() will do the purpose.
>   2)Computation of FSYS block clock divisor (pre-ratio) is added.
> 
> Changes since V4:
>   1)Replaced "unsigned int exynos_dwmmc_init(int index, int bus_width)" 
> with
>   int exynos_dwmci_add_port(int, u32, inth, u32)
>   i)exynos_dwmmc_add_port() will be used by non-FDT boards.
>   ii)In FDT case, exynos_dwmmc_init(const void *blob) will use
>   exynos_dwmmc_add_port() for every channel enabled in device 
> node.
>   2)Changed the computation method of mmc clock divisor.
>   3)Updated exynos_dwmmc_init() to compute the 'clksel_val' within the 
> function.
> 
> Changes since V5:
>   1)Updated in response to review comments and changed the mmc clock value
>   from 50MHz to 52MHz.
> 
> Changes since V6:
>   No change.
> 
> Changes since V7:
>   No change.
> 
>  arch/arm/include/asm/arch-exynos/dwmmc.h |  11 +--
>  drivers/mmc/exynos_dw_mmc.c  | 127 
> ---
>  include/dwmmc.h  |   3 +
>  3 files changed, 124 insertions(+), 17 deletions(-)
> 
> diff --git a/arch/arm/include/asm/arch-exynos/dwmmc.h 
> b/arch/arm/include/asm/arch-exynos/dwmmc.h
> index 8acdf9b..3b147b8 100644
> --- a/arch/arm/include/asm/arch-exynos/dwmmc.h
> +++ b/arch/arm/include/asm/arch-exynos/dwmmc.h
> @@ -27,10 +27,7 @@
>  #define DWMCI_SET_DRV_CLK(x) ((x) << 16)
>  #define DWMCI_SET_DIV_RATIO(x)   ((x) << 24)
>  
> -int exynos_dwmci_init(u32 regbase, int bus_width, int index);
> -
> -static inline unsigned int exynos_dwmmc_init(int index, int bus_width)
> -{
> - unsigned int base = samsung_get_base_mmc() + (0x1 * index);
> - return exynos_dwmci_init(base, bus_width, index);
> -}
> +#ifdef CONFIG_OF_CONTROL
> +int exynos_dwmmc_init(const void *blob);
> +#endif
> +int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32 clksel);
> diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
> index 72a31b7..4238dd9 100644
> --- a/drivers/mmc/exynos_dw_mmc.c
> +++ b/drivers/mmc/exynos_dw_mmc.c
> @@ -19,39 +19,146 @@
>   */
>  
>  #include 
> -#include 
>  #include 
> +#include 
> +#include 
> +#include 
>  #include 
>  #include 
> +#include 
>  
> -static char *EXYNOS_NAME = "EXYNOS DWMMC";
> +#define  DWMMC_MAX_CH_NUM4
> +#define  DWMMC_MAX_FREQ  5200
> +#define  DWMMC_MIN_FREQ  40
> +#define  DWMMC_MMC0_CLKSEL_VAL   0x03030001
> +#define  DWMMC_MMC2_CLKSEL_VAL   0x03020001
I known that CLKSEL's value is SoC specific.
All exynos series are working fine? I didn't think so.

Best Regards,
Jaehoon Chung
>  
> +/*
> + * Function used as callback function to initialise the
> + * CLKSEL register for every mmc channel.
> + */
>  static void exynos_dwmci_clksel(struct dwmci_host *host)
>  {
> - u32 val;
> - val = DWMCI_SET_SAMPLE_CLK(DWMCI_SHIFT_0) |
> - DWMCI_SET_DRV_CLK(DWMCI_SHIFT_0) | DWMCI_SET_DIV_RATIO(0);
> + dwmci_writel(host, DWMCI_CLKSEL, host->clksel_val);
> +}
>  
> - dwmci_writel(host, DWMCI_CLKSEL, val);
> +unsigned int exynos_dwmci_get_clk(int dev_index)
> +{
> + return get_mmc_clk(dev_index);
>  }
>  
> -int exynos_dwmci_init(u32 regbase, int bus_width, int index)
> +/*
> + * This function adds the mmc channel to be registered with mmc core.
> + * index -   mmc channel number.
> + * regbase - register base address of mmc channel specified in 'index'.
> + * bus_width -   operating bus width of mmc channel specified in 'index'.
> + * clksel -  value to be written into CLKSEL register in case of FDT.
> + *   NULL in case od non-FDT.
> + */
> +int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32 clksel)
>  {
>   struct dwmci_host *host = NULL;
> + unsigned int div;
> + unsigned long freq, sclk;
>   host = malloc(sizeof(struct dwmci_host));
>   if (!host) {
>   printf("dwmci_host malloc fail!\n");
>   return 1;
>   }
> + /

Re: [U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC

2013-04-09 Thread Amarendra Reddy
Hi Jaehoon,

Please find my responses below.

Thanks & Regards
Amarendra Reddy

On 9 April 2013 16:23, Jaehoon Chung  wrote:

> On 04/03/2013 11:08 PM, Amar wrote:
> > This patch adds FDT support for DWMMC, by reading the DWMMC node data
> > from the device tree and initialising DWMMC channels as per data
> > obtained from the node.
> >
> > Signed-off-by: Vivek Gautam 
> > Signed-off-by: Amar 
> > Acked-by: Simon Glass 
> > ---
> > Changes since V1:
> >   1)Updated code to have same signature for the function
> >   exynos_dwmci_init() for both FDT and non-FDT versions.
> >   2)Updated code to pass device_id parameter to the function
> >   exynos5_mmc_set_clk_div() instead of index.
> >   3)Updated code to decode the value of "samsung,width" from FDT.
> >   4)Channel index is computed instead of getting from FDT.
> >
> > Changes since V2:
> >   1)Updation of commit message and resubmition of proper patch set.
> >
> > Changes since V3:
> >   1)Replaced the new function exynos5_mmc_set_clk_div() with the
> >   existing function set_mmc_clk(). set_mmc_clk() will do the purpose.
> >   2)Computation of FSYS block clock divisor (pre-ratio) is added.
> >
> > Changes since V4:
> >   1)Replaced "unsigned int exynos_dwmmc_init(int index, int
> bus_width)" with
> >   int exynos_dwmci_add_port(int, u32, inth, u32)
> >   i)exynos_dwmmc_add_port() will be used by non-FDT boards.
> >   ii)In FDT case, exynos_dwmmc_init(const void *blob) will
> use
> >   exynos_dwmmc_add_port() for every channel enabled in
> device node.
> >   2)Changed the computation method of mmc clock divisor.
> >   3)Updated exynos_dwmmc_init() to compute the 'clksel_val' within
> the function.
> >
> > Changes since V5:
> >   1)Updated in response to review comments and changed the mmc clock
> value
> >   from 50MHz to 52MHz.
> >
> > Changes since V6:
> >   No change.
> >
> > Changes since V7:
> >   No change.
> >
> >  arch/arm/include/asm/arch-exynos/dwmmc.h |  11 +--
> >  drivers/mmc/exynos_dw_mmc.c  | 127
> ---
> >  include/dwmmc.h  |   3 +
> >  3 files changed, 124 insertions(+), 17 deletions(-)
> >
> > diff --git a/arch/arm/include/asm/arch-exynos/dwmmc.h
> b/arch/arm/include/asm/arch-exynos/dwmmc.h
> > index 8acdf9b..3b147b8 100644
> > --- a/arch/arm/include/asm/arch-exynos/dwmmc.h
> > +++ b/arch/arm/include/asm/arch-exynos/dwmmc.h
> > @@ -27,10 +27,7 @@
> >  #define DWMCI_SET_DRV_CLK(x) ((x) << 16)
> >  #define DWMCI_SET_DIV_RATIO(x)   ((x) << 24)
> >
> > -int exynos_dwmci_init(u32 regbase, int bus_width, int index);
> > -
> > -static inline unsigned int exynos_dwmmc_init(int index, int bus_width)
> > -{
> > - unsigned int base = samsung_get_base_mmc() + (0x1 * index);
> > - return exynos_dwmci_init(base, bus_width, index);
> > -}
> > +#ifdef CONFIG_OF_CONTROL
> > +int exynos_dwmmc_init(const void *blob);
> > +#endif
> > +int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32
> clksel);
> > diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
> > index 72a31b7..4238dd9 100644
> > --- a/drivers/mmc/exynos_dw_mmc.c
> > +++ b/drivers/mmc/exynos_dw_mmc.c
> > @@ -19,39 +19,146 @@
> >   */
> >
> >  #include 
> > -#include 
> >  #include 
> > +#include 
> > +#include 
> > +#include 
> >  #include 
> >  #include 
> > +#include 
> >
> > -static char *EXYNOS_NAME = "EXYNOS DWMMC";
> > +#define  DWMMC_MAX_CH_NUM4
> > +#define  DWMMC_MAX_FREQ  5200
> > +#define  DWMMC_MIN_FREQ  40
> > +#define  DWMMC_MMC0_CLKSEL_VAL   0x03030001
> > +#define  DWMMC_MMC2_CLKSEL_VAL   0x03020001
> I known that CLKSEL's value is SoC specific.
> All exynos series are working fine? I didn't think so.
>
> Best Regards,
> Jaehoon Chung
>

The above values of CLKSEL work fine for Exynos5 (5250 & 5410) and is
tested.

The above CLKSEL values donot hold good for Exynos4 series. Exynos4 has
"Mobile Storage Host" with only one port.
But this file 'drivers/mmc/exynos_dw_mmc.c' is specific to Exynos5 series
and gets compiled only when CONFIG_EXYNOS_DWMMC is defined.

>
> > +/*
> > + * Function used as callback function to initialise the
> > + * CLKSEL register for every mmc channel.
> > + */
> >  static void exynos_dwmci_clksel(struct dwmci_host *host)
> >  {
> > - u32 val;
> > - val = DWMCI_SET_SAMPLE_CLK(DWMCI_SHIFT_0) |
> > - DWMCI_SET_DRV_CLK(DWMCI_SHIFT_0) | DWMCI_SET_DIV_RATIO(0);
> > + dwmci_writel(host, DWMCI_CLKSEL, host->clksel_val);
> > +}
> >
> > - dwmci_writel(host, DWMCI_CLKSEL, val);
> > +unsigned int exynos_dwmci_get_clk(int dev_index)
> > +{
> > + return get_mmc_clk(dev_index);
> >  }
> >
> > -int exynos_dwmci_init(u32 regbase, int bus_width, int index)
> > +/*
> > + * This function adds the mmc channel to be registered with mmc cor

Re: [U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC

2013-04-12 Thread Jaehoon Chung
On 04/10/2013 03:13 PM, Amarendra Reddy wrote:
> Hi Jaehoon,
> 
> Please find my responses below.
> 
> Thanks & Regards
> Amarendra Reddy
> 
> On 9 April 2013 16:23, Jaehoon Chung  wrote:
> 
>> On 04/03/2013 11:08 PM, Amar wrote:
>>> This patch adds FDT support for DWMMC, by reading the DWMMC node data
>>> from the device tree and initialising DWMMC channels as per data
>>> obtained from the node.
>>>
>>> Signed-off-by: Vivek Gautam 
>>> Signed-off-by: Amar 
>>> Acked-by: Simon Glass 
>>> ---
>>> Changes since V1:
>>>   1)Updated code to have same signature for the function
>>>   exynos_dwmci_init() for both FDT and non-FDT versions.
>>>   2)Updated code to pass device_id parameter to the function
>>>   exynos5_mmc_set_clk_div() instead of index.
>>>   3)Updated code to decode the value of "samsung,width" from FDT.
>>>   4)Channel index is computed instead of getting from FDT.
>>>
>>> Changes since V2:
>>>   1)Updation of commit message and resubmition of proper patch set.
>>>
>>> Changes since V3:
>>>   1)Replaced the new function exynos5_mmc_set_clk_div() with the
>>>   existing function set_mmc_clk(). set_mmc_clk() will do the purpose.
>>>   2)Computation of FSYS block clock divisor (pre-ratio) is added.
>>>
>>> Changes since V4:
>>>   1)Replaced "unsigned int exynos_dwmmc_init(int index, int
>> bus_width)" with
>>>   int exynos_dwmci_add_port(int, u32, inth, u32)
>>>   i)exynos_dwmmc_add_port() will be used by non-FDT boards.
>>>   ii)In FDT case, exynos_dwmmc_init(const void *blob) will
>> use
>>>   exynos_dwmmc_add_port() for every channel enabled in
>> device node.
>>>   2)Changed the computation method of mmc clock divisor.
>>>   3)Updated exynos_dwmmc_init() to compute the 'clksel_val' within
>> the function.
>>>
>>> Changes since V5:
>>>   1)Updated in response to review comments and changed the mmc clock
>> value
>>>   from 50MHz to 52MHz.
>>>
>>> Changes since V6:
>>>   No change.
>>>
>>> Changes since V7:
>>>   No change.
>>>
>>>  arch/arm/include/asm/arch-exynos/dwmmc.h |  11 +--
>>>  drivers/mmc/exynos_dw_mmc.c  | 127
>> ---
>>>  include/dwmmc.h  |   3 +
>>>  3 files changed, 124 insertions(+), 17 deletions(-)
>>>
>>> diff --git a/arch/arm/include/asm/arch-exynos/dwmmc.h
>> b/arch/arm/include/asm/arch-exynos/dwmmc.h
>>> index 8acdf9b..3b147b8 100644
>>> --- a/arch/arm/include/asm/arch-exynos/dwmmc.h
>>> +++ b/arch/arm/include/asm/arch-exynos/dwmmc.h
>>> @@ -27,10 +27,7 @@
>>>  #define DWMCI_SET_DRV_CLK(x) ((x) << 16)
>>>  #define DWMCI_SET_DIV_RATIO(x)   ((x) << 24)
>>>
>>> -int exynos_dwmci_init(u32 regbase, int bus_width, int index);
>>> -
>>> -static inline unsigned int exynos_dwmmc_init(int index, int bus_width)
>>> -{
>>> - unsigned int base = samsung_get_base_mmc() + (0x1 * index);
>>> - return exynos_dwmci_init(base, bus_width, index);
>>> -}
>>> +#ifdef CONFIG_OF_CONTROL
>>> +int exynos_dwmmc_init(const void *blob);
>>> +#endif
>>> +int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32
>> clksel);
>>> diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
>>> index 72a31b7..4238dd9 100644
>>> --- a/drivers/mmc/exynos_dw_mmc.c
>>> +++ b/drivers/mmc/exynos_dw_mmc.c
>>> @@ -19,39 +19,146 @@
>>>   */
>>>
>>>  #include 
>>> -#include 
>>>  #include 
>>> +#include 
>>> +#include 
>>> +#include 
>>>  #include 
>>>  #include 
>>> +#include 
>>>
>>> -static char *EXYNOS_NAME = "EXYNOS DWMMC";
>>> +#define  DWMMC_MAX_CH_NUM4
>>> +#define  DWMMC_MAX_FREQ  5200
>>> +#define  DWMMC_MIN_FREQ  40
>>> +#define  DWMMC_MMC0_CLKSEL_VAL   0x03030001
>>> +#define  DWMMC_MMC2_CLKSEL_VAL   0x03020001
>> I known that CLKSEL's value is SoC specific.
>> All exynos series are working fine? I didn't think so.
>>
>> Best Regards,
>> Jaehoon Chung
>>
> 
> The above values of CLKSEL work fine for Exynos5 (5250 & 5410) and is
> tested.
> 
> The above CLKSEL values donot hold good for Exynos4 series. Exynos4 has
> "Mobile Storage Host" with only one port.
> But this file 'drivers/mmc/exynos_dw_mmc.c' is specific to Exynos5 series
> and gets compiled only when CONFIG_EXYNOS_DWMMC is defined.
No, driver/mmc/exynos_dw_mmc.c isn't specific to Exynos5 series.
We can use this controller at the exynos4.
Then we need to consider how get the clksel value according to SoC.

Best Regards,
Jaehoon Chung
> 
>>
>>> +/*
>>> + * Function used as callback function to initialise the
>>> + * CLKSEL register for every mmc channel.
>>> + */
>>>  static void exynos_dwmci_clksel(struct dwmci_host *host)
>>>  {
>>> - u32 val;
>>> - val = DWMCI_SET_SAMPLE_CLK(DWMCI_SHIFT_0) |
>>> - DWMCI_SET_DRV_CLK(DWMCI_SHIFT_0) | DWMCI_SET_DIV_RATIO(0);
>>> + dwmci_writel(host, DWMCI_CLKSEL, host->clksel_val);
>>> +}
>>>
>>> 

Re: [U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC

2013-04-16 Thread Amarendra Reddy
Hi Jaehoon,

Please find my response below.

Thanks & Regards
Amarendra Reddy

On 12 April 2013 16:50, Jaehoon Chung  wrote:

> On 04/10/2013 03:13 PM, Amarendra Reddy wrote:
> > Hi Jaehoon,
> >
> > Please find my responses below.
> >
> > Thanks & Regards
> > Amarendra Reddy
> >
> > On 9 April 2013 16:23, Jaehoon Chung  wrote:
> >
> >> On 04/03/2013 11:08 PM, Amar wrote:
> >>> This patch adds FDT support for DWMMC, by reading the DWMMC node data
> >>> from the device tree and initialising DWMMC channels as per data
> >>> obtained from the node.
> >>>
> >>> Signed-off-by: Vivek Gautam 
> >>> Signed-off-by: Amar 
> >>> Acked-by: Simon Glass 
> >>> ---
> >>> Changes since V1:
> >>>   1)Updated code to have same signature for the function
> >>>   exynos_dwmci_init() for both FDT and non-FDT versions.
> >>>   2)Updated code to pass device_id parameter to the function
> >>>   exynos5_mmc_set_clk_div() instead of index.
> >>>   3)Updated code to decode the value of "samsung,width" from FDT.
> >>>   4)Channel index is computed instead of getting from FDT.
> >>>
> >>> Changes since V2:
> >>>   1)Updation of commit message and resubmition of proper patch set.
> >>>
> >>> Changes since V3:
> >>>   1)Replaced the new function exynos5_mmc_set_clk_div() with the
> >>>   existing function set_mmc_clk(). set_mmc_clk() will do the
> purpose.
> >>>   2)Computation of FSYS block clock divisor (pre-ratio) is added.
> >>>
> >>> Changes since V4:
> >>>   1)Replaced "unsigned int exynos_dwmmc_init(int index, int
> >> bus_width)" with
> >>>   int exynos_dwmci_add_port(int, u32, inth, u32)
> >>>   i)exynos_dwmmc_add_port() will be used by non-FDT boards.
> >>>   ii)In FDT case, exynos_dwmmc_init(const void *blob) will
> >> use
> >>>   exynos_dwmmc_add_port() for every channel enabled in
> >> device node.
> >>>   2)Changed the computation method of mmc clock divisor.
> >>>   3)Updated exynos_dwmmc_init() to compute the 'clksel_val' within
> >> the function.
> >>>
> >>> Changes since V5:
> >>>   1)Updated in response to review comments and changed the mmc
> clock
> >> value
> >>>   from 50MHz to 52MHz.
> >>>
> >>> Changes since V6:
> >>>   No change.
> >>>
> >>> Changes since V7:
> >>>   No change.
> >>>
> >>>  arch/arm/include/asm/arch-exynos/dwmmc.h |  11 +--
> >>>  drivers/mmc/exynos_dw_mmc.c  | 127
> >> ---
> >>>  include/dwmmc.h  |   3 +
> >>>  3 files changed, 124 insertions(+), 17 deletions(-)
> >>>
> >>> diff --git a/arch/arm/include/asm/arch-exynos/dwmmc.h
> >> b/arch/arm/include/asm/arch-exynos/dwmmc.h
> >>> index 8acdf9b..3b147b8 100644
> >>> --- a/arch/arm/include/asm/arch-exynos/dwmmc.h
> >>> +++ b/arch/arm/include/asm/arch-exynos/dwmmc.h
> >>> @@ -27,10 +27,7 @@
> >>>  #define DWMCI_SET_DRV_CLK(x) ((x) << 16)
> >>>  #define DWMCI_SET_DIV_RATIO(x)   ((x) << 24)
> >>>
> >>> -int exynos_dwmci_init(u32 regbase, int bus_width, int index);
> >>> -
> >>> -static inline unsigned int exynos_dwmmc_init(int index, int bus_width)
> >>> -{
> >>> - unsigned int base = samsung_get_base_mmc() + (0x1 * index);
> >>> - return exynos_dwmci_init(base, bus_width, index);
> >>> -}
> >>> +#ifdef CONFIG_OF_CONTROL
> >>> +int exynos_dwmmc_init(const void *blob);
> >>> +#endif
> >>> +int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32
> >> clksel);
> >>> diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
> >>> index 72a31b7..4238dd9 100644
> >>> --- a/drivers/mmc/exynos_dw_mmc.c
> >>> +++ b/drivers/mmc/exynos_dw_mmc.c
> >>> @@ -19,39 +19,146 @@
> >>>   */
> >>>
> >>>  #include 
> >>> -#include 
> >>>  #include 
> >>> +#include 
> >>> +#include 
> >>> +#include 
> >>>  #include 
> >>>  #include 
> >>> +#include 
> >>>
> >>> -static char *EXYNOS_NAME = "EXYNOS DWMMC";
> >>> +#define  DWMMC_MAX_CH_NUM4
> >>> +#define  DWMMC_MAX_FREQ  5200
> >>> +#define  DWMMC_MIN_FREQ  40
> >>> +#define  DWMMC_MMC0_CLKSEL_VAL   0x03030001
> >>> +#define  DWMMC_MMC2_CLKSEL_VAL   0x03020001
> >> I known that CLKSEL's value is SoC specific.
> >> All exynos series are working fine? I didn't think so.
> >>
> >> Best Regards,
> >> Jaehoon Chung
> >>
> >
> > The above values of CLKSEL work fine for Exynos5 (5250 & 5410) and is
> > tested.
> >
> > The above CLKSEL values donot hold good for Exynos4 series. Exynos4 has
> > "Mobile Storage Host" with only one port.
> > But this file 'drivers/mmc/exynos_dw_mmc.c' is specific to Exynos5 series
> > and gets compiled only when CONFIG_EXYNOS_DWMMC is defined.
> No, driver/mmc/exynos_dw_mmc.c isn't specific to Exynos5 series.
> We can use this controller at the exynos4.
> Then we need to consider how get the clksel value according to SoC.
>
> Best Regards,
> Jaehoon Chung
>

OK. Then I shall add the macro for supporti

Re: [U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC

2013-04-22 Thread Jaehoon Chung
On 04/16/2013 05:44 PM, Amarendra Reddy wrote:
> Hi Jaehoon,
> 
> Please find my response below.
> 
> Thanks & Regards
> Amarendra Reddy
> 
> On 12 April 2013 16:50, Jaehoon Chung  wrote:
> 
>> On 04/10/2013 03:13 PM, Amarendra Reddy wrote:
>>> Hi Jaehoon,
>>>
>>> Please find my responses below.
>>>
>>> Thanks & Regards
>>> Amarendra Reddy
>>>
>>> On 9 April 2013 16:23, Jaehoon Chung  wrote:
>>>
 On 04/03/2013 11:08 PM, Amar wrote:
> This patch adds FDT support for DWMMC, by reading the DWMMC node data
> from the device tree and initialising DWMMC channels as per data
> obtained from the node.
>
> Signed-off-by: Vivek Gautam 
> Signed-off-by: Amar 
> Acked-by: Simon Glass 
> ---
> Changes since V1:
>   1)Updated code to have same signature for the function
>   exynos_dwmci_init() for both FDT and non-FDT versions.
>   2)Updated code to pass device_id parameter to the function
>   exynos5_mmc_set_clk_div() instead of index.
>   3)Updated code to decode the value of "samsung,width" from FDT.
>   4)Channel index is computed instead of getting from FDT.
>
> Changes since V2:
>   1)Updation of commit message and resubmition of proper patch set.
>
> Changes since V3:
>   1)Replaced the new function exynos5_mmc_set_clk_div() with the
>   existing function set_mmc_clk(). set_mmc_clk() will do the
>> purpose.
>   2)Computation of FSYS block clock divisor (pre-ratio) is added.
>
> Changes since V4:
>   1)Replaced "unsigned int exynos_dwmmc_init(int index, int
 bus_width)" with
>   int exynos_dwmci_add_port(int, u32, inth, u32)
>   i)exynos_dwmmc_add_port() will be used by non-FDT boards.
>   ii)In FDT case, exynos_dwmmc_init(const void *blob) will
 use
>   exynos_dwmmc_add_port() for every channel enabled in
 device node.
>   2)Changed the computation method of mmc clock divisor.
>   3)Updated exynos_dwmmc_init() to compute the 'clksel_val' within
 the function.
>
> Changes since V5:
>   1)Updated in response to review comments and changed the mmc
>> clock
 value
>   from 50MHz to 52MHz.
>
> Changes since V6:
>   No change.
>
> Changes since V7:
>   No change.
>
>  arch/arm/include/asm/arch-exynos/dwmmc.h |  11 +--
>  drivers/mmc/exynos_dw_mmc.c  | 127
 ---
>  include/dwmmc.h  |   3 +
>  3 files changed, 124 insertions(+), 17 deletions(-)
>
> diff --git a/arch/arm/include/asm/arch-exynos/dwmmc.h
 b/arch/arm/include/asm/arch-exynos/dwmmc.h
> index 8acdf9b..3b147b8 100644
> --- a/arch/arm/include/asm/arch-exynos/dwmmc.h
> +++ b/arch/arm/include/asm/arch-exynos/dwmmc.h
> @@ -27,10 +27,7 @@
>  #define DWMCI_SET_DRV_CLK(x) ((x) << 16)
>  #define DWMCI_SET_DIV_RATIO(x)   ((x) << 24)
>
> -int exynos_dwmci_init(u32 regbase, int bus_width, int index);
> -
> -static inline unsigned int exynos_dwmmc_init(int index, int bus_width)
> -{
> - unsigned int base = samsung_get_base_mmc() + (0x1 * index);
> - return exynos_dwmci_init(base, bus_width, index);
> -}
> +#ifdef CONFIG_OF_CONTROL
> +int exynos_dwmmc_init(const void *blob);
> +#endif
> +int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32
 clksel);
> diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
> index 72a31b7..4238dd9 100644
> --- a/drivers/mmc/exynos_dw_mmc.c
> +++ b/drivers/mmc/exynos_dw_mmc.c
> @@ -19,39 +19,146 @@
>   */
>
>  #include 
> -#include 
>  #include 
> +#include 
> +#include 
> +#include 
>  #include 
>  #include 
> +#include 
>
> -static char *EXYNOS_NAME = "EXYNOS DWMMC";
> +#define  DWMMC_MAX_CH_NUM4
> +#define  DWMMC_MAX_FREQ  5200
> +#define  DWMMC_MIN_FREQ  40
> +#define  DWMMC_MMC0_CLKSEL_VAL   0x03030001
> +#define  DWMMC_MMC2_CLKSEL_VAL   0x03020001
 I known that CLKSEL's value is SoC specific.
 All exynos series are working fine? I didn't think so.

 Best Regards,
 Jaehoon Chung

>>>
>>> The above values of CLKSEL work fine for Exynos5 (5250 & 5410) and is
>>> tested.
>>>
>>> The above CLKSEL values donot hold good for Exynos4 series. Exynos4 has
>>> "Mobile Storage Host" with only one port.
>>> But this file 'drivers/mmc/exynos_dw_mmc.c' is specific to Exynos5 series
>>> and gets compiled only when CONFIG_EXYNOS_DWMMC is defined.
>> No, driver/mmc/exynos_dw_mmc.c isn't specific to Exynos5 series.
>> We can use this controller at the exynos4.
>> Then we need to consider how get the clksel value according to SoC.
>>
>> Bes

Re: [U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC

2013-04-22 Thread Amarendra Reddy
Hi Jaehoon,

Please find my response below

Thanks & Regards
Amarendra

On 23 April 2013 09:27, Jaehoon Chung  wrote:

> On 04/16/2013 05:44 PM, Amarendra Reddy wrote:
> > Hi Jaehoon,
> >
> > Please find my response below.
> >
> > Thanks & Regards
> > Amarendra Reddy
> >
> > On 12 April 2013 16:50, Jaehoon Chung  wrote:
> >
> >> On 04/10/2013 03:13 PM, Amarendra Reddy wrote:
> >>> Hi Jaehoon,
> >>>
> >>> Please find my responses below.
> >>>
> >>> Thanks & Regards
> >>> Amarendra Reddy
> >>>
> >>> On 9 April 2013 16:23, Jaehoon Chung  wrote:
> >>>
>  On 04/03/2013 11:08 PM, Amar wrote:
> > This patch adds FDT support for DWMMC, by reading the DWMMC node data
> > from the device tree and initialising DWMMC channels as per data
> > obtained from the node.
> >
> > Signed-off-by: Vivek Gautam 
> > Signed-off-by: Amar 
> > Acked-by: Simon Glass 
> > ---
> > Changes since V1:
> >   1)Updated code to have same signature for the function
> >   exynos_dwmci_init() for both FDT and non-FDT versions.
> >   2)Updated code to pass device_id parameter to the function
> >   exynos5_mmc_set_clk_div() instead of index.
> >   3)Updated code to decode the value of "samsung,width" from FDT.
> >   4)Channel index is computed instead of getting from FDT.
> >
> > Changes since V2:
> >   1)Updation of commit message and resubmition of proper patch
> set.
> >
> > Changes since V3:
> >   1)Replaced the new function exynos5_mmc_set_clk_div() with the
> >   existing function set_mmc_clk(). set_mmc_clk() will do the
> >> purpose.
> >   2)Computation of FSYS block clock divisor (pre-ratio) is added.
> >
> > Changes since V4:
> >   1)Replaced "unsigned int exynos_dwmmc_init(int index, int
>  bus_width)" with
> >   int exynos_dwmci_add_port(int, u32, inth, u32)
> >   i)exynos_dwmmc_add_port() will be used by non-FDT
> boards.
> >   ii)In FDT case, exynos_dwmmc_init(const void *blob)
> will
>  use
> >   exynos_dwmmc_add_port() for every channel enabled in
>  device node.
> >   2)Changed the computation method of mmc clock divisor.
> >   3)Updated exynos_dwmmc_init() to compute the 'clksel_val'
> within
>  the function.
> >
> > Changes since V5:
> >   1)Updated in response to review comments and changed the mmc
> >> clock
>  value
> >   from 50MHz to 52MHz.
> >
> > Changes since V6:
> >   No change.
> >
> > Changes since V7:
> >   No change.
> >
> >  arch/arm/include/asm/arch-exynos/dwmmc.h |  11 +--
> >  drivers/mmc/exynos_dw_mmc.c  | 127
>  ---
> >  include/dwmmc.h  |   3 +
> >  3 files changed, 124 insertions(+), 17 deletions(-)
> >
> > diff --git a/arch/arm/include/asm/arch-exynos/dwmmc.h
>  b/arch/arm/include/asm/arch-exynos/dwmmc.h
> > index 8acdf9b..3b147b8 100644
> > --- a/arch/arm/include/asm/arch-exynos/dwmmc.h
> > +++ b/arch/arm/include/asm/arch-exynos/dwmmc.h
> > @@ -27,10 +27,7 @@
> >  #define DWMCI_SET_DRV_CLK(x) ((x) << 16)
> >  #define DWMCI_SET_DIV_RATIO(x)   ((x) << 24)
> >
> > -int exynos_dwmci_init(u32 regbase, int bus_width, int index);
> > -
> > -static inline unsigned int exynos_dwmmc_init(int index, int
> bus_width)
> > -{
> > - unsigned int base = samsung_get_base_mmc() + (0x1 * index);
> > - return exynos_dwmci_init(base, bus_width, index);
> > -}
> > +#ifdef CONFIG_OF_CONTROL
> > +int exynos_dwmmc_init(const void *blob);
> > +#endif
> > +int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32
>  clksel);
> > diff --git a/drivers/mmc/exynos_dw_mmc.c
> b/drivers/mmc/exynos_dw_mmc.c
> > index 72a31b7..4238dd9 100644
> > --- a/drivers/mmc/exynos_dw_mmc.c
> > +++ b/drivers/mmc/exynos_dw_mmc.c
> > @@ -19,39 +19,146 @@
> >   */
> >
> >  #include 
> > -#include 
> >  #include 
> > +#include 
> > +#include 
> > +#include 
> >  #include 
> >  #include 
> > +#include 
> >
> > -static char *EXYNOS_NAME = "EXYNOS DWMMC";
> > +#define  DWMMC_MAX_CH_NUM4
> > +#define  DWMMC_MAX_FREQ  5200
> > +#define  DWMMC_MIN_FREQ  40
> > +#define  DWMMC_MMC0_CLKSEL_VAL   0x03030001
> > +#define  DWMMC_MMC2_CLKSEL_VAL   0x03020001
>  I known that CLKSEL's value is SoC specific.
>  All exynos series are working fine? I didn't think so.
> 
>  Best Regards,
>  Jaehoon Chung
> 
> >>>
> >>> The above values of CLKSEL work fine for Exynos5 (5250 & 5410) and is
> >>> tested.
> >>>
> >>> The above CLKSEL values donot hold good for Exynos4 series. Exy