Commit 25419010 authored by Jaehoon Chung's avatar Jaehoon Chung Committed by Kukjin Kim

ARM: SAMSUNG: support the second capability for samsung-soc

In mmc, there are capabilities and use the host_caps.
That capability is expressed with bit[0:31].
But now..already filled the bit[0:31]...
so we need to denote with the other capability field.
(if we want to use the cache, powerclass, etc for eMMC..
 this field is necessary)
Signed-off-by: default avatarJaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: default avatarKyungmin Park <Kyungmin.park@samsung.com>
Acked-by: default avatarChris Ball <cjb@laptop.org>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 192cfd58
...@@ -40,6 +40,7 @@ enum clk_types { ...@@ -40,6 +40,7 @@ enum clk_types {
* struct s3c_sdhci_platdata() - Platform device data for Samsung SDHCI * struct s3c_sdhci_platdata() - Platform device data for Samsung SDHCI
* @max_width: The maximum number of data bits supported. * @max_width: The maximum number of data bits supported.
* @host_caps: Standard MMC host capabilities bit field. * @host_caps: Standard MMC host capabilities bit field.
* @host_caps2: The second standard MMC host capabilities bit field.
* @cd_type: Type of Card Detection method (see cd_types enum above) * @cd_type: Type of Card Detection method (see cd_types enum above)
* @clk_type: Type of clock divider method (see clk_types enum above) * @clk_type: Type of clock divider method (see clk_types enum above)
* @ext_cd_init: Initialize external card detect subsystem. Called on * @ext_cd_init: Initialize external card detect subsystem. Called on
...@@ -63,6 +64,7 @@ enum clk_types { ...@@ -63,6 +64,7 @@ enum clk_types {
struct s3c_sdhci_platdata { struct s3c_sdhci_platdata {
unsigned int max_width; unsigned int max_width;
unsigned int host_caps; unsigned int host_caps;
unsigned int host_caps2;
unsigned int pm_caps; unsigned int pm_caps;
enum cd_types cd_type; enum cd_types cd_type;
enum clk_types clk_type; enum clk_types clk_type;
......
...@@ -53,6 +53,8 @@ void s3c_sdhci_set_platdata(struct s3c_sdhci_platdata *pd, ...@@ -53,6 +53,8 @@ void s3c_sdhci_set_platdata(struct s3c_sdhci_platdata *pd,
set->cfg_gpio = pd->cfg_gpio; set->cfg_gpio = pd->cfg_gpio;
if (pd->host_caps) if (pd->host_caps)
set->host_caps |= pd->host_caps; set->host_caps |= pd->host_caps;
if (pd->host_caps2)
set->host_caps2 |= pd->host_caps2;
if (pd->pm_caps) if (pd->pm_caps)
set->pm_caps |= pd->pm_caps; set->pm_caps |= pd->pm_caps;
if (pd->clk_type) if (pd->clk_type)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment