Commit b5cd43f0 authored by Andreas Fenkart's avatar Andreas Fenkart Committed by Ulf Hansson

mmc: omap_hsmmc: Remove unnecessary callbacks from platform data

These callbacks are set during driver probe and not from the platform
init, -- evtl. they had been for oamp 1/2 -- for omap3 they are local
functions of the driver. These indirection could be dropped
altogether in favor of regular function calls TODO
Acked-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarAndreas Fenkart <afenkart@gmail.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 1e363e3b
...@@ -221,6 +221,25 @@ struct omap_hsmmc_host { ...@@ -221,6 +221,25 @@ struct omap_hsmmc_host {
#define HSMMC_WAKE_IRQ_ENABLED (1 << 2) #define HSMMC_WAKE_IRQ_ENABLED (1 << 2)
struct omap_hsmmc_next next_data; struct omap_hsmmc_next next_data;
struct omap_hsmmc_platform_data *pdata; struct omap_hsmmc_platform_data *pdata;
/* To handle board related suspend/resume functionality for MMC */
int (*suspend)(struct device *dev, int slot);
int (*resume)(struct device *dev, int slot);
/* return MMC cover switch state, can be NULL if not supported.
*
* possible return values:
* 0 - closed
* 1 - open
*/
int (*get_cover_state)(struct device *dev, int slot);
/* Card detection IRQs */
int card_detect_irq;
int (*card_detect)(struct device *dev, int slot);
int (*get_ro)(struct device *dev, int slot);
}; };
struct omap_mmc_of_data { struct omap_mmc_of_data {
...@@ -262,18 +281,16 @@ static int omap_hsmmc_get_cover_state(struct device *dev, int slot) ...@@ -262,18 +281,16 @@ static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot) static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
{ {
struct omap_hsmmc_host *host = dev_get_drvdata(dev); struct omap_hsmmc_host *host = dev_get_drvdata(dev);
struct omap_hsmmc_platform_data *mmc = host->pdata;
disable_irq(mmc->card_detect_irq); disable_irq(host->card_detect_irq);
return 0; return 0;
} }
static int omap_hsmmc_resume_cdirq(struct device *dev, int slot) static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
{ {
struct omap_hsmmc_host *host = dev_get_drvdata(dev); struct omap_hsmmc_host *host = dev_get_drvdata(dev);
struct omap_hsmmc_platform_data *mmc = host->pdata;
enable_irq(mmc->card_detect_irq); enable_irq(host->card_detect_irq);
return 0; return 0;
} }
...@@ -456,11 +473,11 @@ static int omap_hsmmc_gpio_init(struct omap_hsmmc_host *host, ...@@ -456,11 +473,11 @@ static int omap_hsmmc_gpio_init(struct omap_hsmmc_host *host,
if (gpio_is_valid(pdata->switch_pin)) { if (gpio_is_valid(pdata->switch_pin)) {
if (pdata->cover) if (pdata->cover)
pdata->get_cover_state = host->get_cover_state =
omap_hsmmc_get_cover_state; omap_hsmmc_get_cover_state;
else else
pdata->card_detect = omap_hsmmc_card_detect; host->card_detect = omap_hsmmc_card_detect;
pdata->card_detect_irq = host->card_detect_irq =
gpio_to_irq(pdata->switch_pin); gpio_to_irq(pdata->switch_pin);
ret = gpio_request(pdata->switch_pin, "mmc_cd"); ret = gpio_request(pdata->switch_pin, "mmc_cd");
if (ret) if (ret)
...@@ -473,7 +490,7 @@ static int omap_hsmmc_gpio_init(struct omap_hsmmc_host *host, ...@@ -473,7 +490,7 @@ static int omap_hsmmc_gpio_init(struct omap_hsmmc_host *host,
} }
if (gpio_is_valid(pdata->gpio_wp)) { if (gpio_is_valid(pdata->gpio_wp)) {
pdata->get_ro = omap_hsmmc_get_wp; host->get_ro = omap_hsmmc_get_wp;
ret = gpio_request(pdata->gpio_wp, "mmc_wp"); ret = gpio_request(pdata->gpio_wp, "mmc_wp");
if (ret) if (ret)
goto err_free_cd; goto err_free_cd;
...@@ -795,8 +812,8 @@ int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host) ...@@ -795,8 +812,8 @@ int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
{ {
int r = 1; int r = 1;
if (mmc_pdata(host)->get_cover_state) if (host->get_cover_state)
r = mmc_pdata(host)->get_cover_state(host->dev, host->slot_id); r = host->get_cover_state(host->dev, host->slot_id);
return r; return r;
} }
...@@ -1263,11 +1280,11 @@ static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd) ...@@ -1263,11 +1280,11 @@ static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
/* Protect the card while the cover is open */ /* Protect the card while the cover is open */
static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host) static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
{ {
if (!mmc_pdata(host)->get_cover_state) if (!host->get_cover_state)
return; return;
host->reqs_blocked = 0; host->reqs_blocked = 0;
if (mmc_pdata(host)->get_cover_state(host->dev, host->slot_id)) { if (host->get_cover_state(host->dev, host->slot_id)) {
if (host->protect_card) { if (host->protect_card) {
dev_info(host->dev, "%s: cover is closed, " dev_info(host->dev, "%s: cover is closed, "
"card is now accessible\n", "card is now accessible\n",
...@@ -1290,13 +1307,12 @@ static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host) ...@@ -1290,13 +1307,12 @@ static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id) static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
{ {
struct omap_hsmmc_host *host = dev_id; struct omap_hsmmc_host *host = dev_id;
struct omap_hsmmc_platform_data *pdata = host->pdata;
int carddetect; int carddetect;
sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch"); sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
if (pdata->card_detect) if (host->card_detect)
carddetect = pdata->card_detect(host->dev, host->slot_id); carddetect = host->card_detect(host->dev, host->slot_id);
else { else {
omap_hsmmc_protect_card(host); omap_hsmmc_protect_card(host);
carddetect = -ENOSYS; carddetect = -ENOSYS;
...@@ -1672,18 +1688,18 @@ static int omap_hsmmc_get_cd(struct mmc_host *mmc) ...@@ -1672,18 +1688,18 @@ static int omap_hsmmc_get_cd(struct mmc_host *mmc)
{ {
struct omap_hsmmc_host *host = mmc_priv(mmc); struct omap_hsmmc_host *host = mmc_priv(mmc);
if (!mmc_pdata(host)->card_detect) if (!host->card_detect)
return -ENOSYS; return -ENOSYS;
return mmc_pdata(host)->card_detect(host->dev, host->slot_id); return host->card_detect(host->dev, host->slot_id);
} }
static int omap_hsmmc_get_ro(struct mmc_host *mmc) static int omap_hsmmc_get_ro(struct mmc_host *mmc)
{ {
struct omap_hsmmc_host *host = mmc_priv(mmc); struct omap_hsmmc_host *host = mmc_priv(mmc);
if (!mmc_pdata(host)->get_ro) if (!host->get_ro)
return -ENOSYS; return -ENOSYS;
return mmc_pdata(host)->get_ro(host->dev, 0); return host->get_ro(host->dev, 0);
} }
static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card) static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
...@@ -2218,9 +2234,9 @@ static int omap_hsmmc_probe(struct platform_device *pdev) ...@@ -2218,9 +2234,9 @@ static int omap_hsmmc_probe(struct platform_device *pdev)
mmc->ocr_avail = mmc_pdata(host)->ocr_mask; mmc->ocr_avail = mmc_pdata(host)->ocr_mask;
/* Request IRQ for card detect */ /* Request IRQ for card detect */
if ((mmc_pdata(host)->card_detect_irq)) { if (host->card_detect_irq) {
ret = devm_request_threaded_irq(&pdev->dev, ret = devm_request_threaded_irq(&pdev->dev,
mmc_pdata(host)->card_detect_irq, host->card_detect_irq,
NULL, omap_hsmmc_detect, NULL, omap_hsmmc_detect,
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
mmc_hostname(mmc), host); mmc_hostname(mmc), host);
...@@ -2229,8 +2245,8 @@ static int omap_hsmmc_probe(struct platform_device *pdev) ...@@ -2229,8 +2245,8 @@ static int omap_hsmmc_probe(struct platform_device *pdev)
"Unable to grab MMC CD IRQ\n"); "Unable to grab MMC CD IRQ\n");
goto err_irq_cd; goto err_irq_cd;
} }
pdata->suspend = omap_hsmmc_suspend_cdirq; host->suspend = omap_hsmmc_suspend_cdirq;
pdata->resume = omap_hsmmc_resume_cdirq; host->resume = omap_hsmmc_resume_cdirq;
} }
omap_hsmmc_disable_irq(host); omap_hsmmc_disable_irq(host);
...@@ -2256,8 +2272,7 @@ static int omap_hsmmc_probe(struct platform_device *pdev) ...@@ -2256,8 +2272,7 @@ static int omap_hsmmc_probe(struct platform_device *pdev)
if (ret < 0) if (ret < 0)
goto err_slot_name; goto err_slot_name;
} }
if (mmc_pdata(host)->card_detect_irq && if (host->card_detect_irq && host->get_cover_state) {
mmc_pdata(host)->get_cover_state) {
ret = device_create_file(&mmc->class_dev, ret = device_create_file(&mmc->class_dev,
&dev_attr_cover_switch); &dev_attr_cover_switch);
if (ret < 0) if (ret < 0)
...@@ -2322,8 +2337,8 @@ static int omap_hsmmc_prepare(struct device *dev) ...@@ -2322,8 +2337,8 @@ static int omap_hsmmc_prepare(struct device *dev)
{ {
struct omap_hsmmc_host *host = dev_get_drvdata(dev); struct omap_hsmmc_host *host = dev_get_drvdata(dev);
if (host->pdata->suspend) if (host->suspend)
return host->pdata->suspend(dev, host->slot_id); return host->suspend(dev, host->slot_id);
return 0; return 0;
} }
...@@ -2332,8 +2347,8 @@ static void omap_hsmmc_complete(struct device *dev) ...@@ -2332,8 +2347,8 @@ static void omap_hsmmc_complete(struct device *dev)
{ {
struct omap_hsmmc_host *host = dev_get_drvdata(dev); struct omap_hsmmc_host *host = dev_get_drvdata(dev);
if (host->pdata->resume) if (host->resume)
host->pdata->resume(dev, host->slot_id); host->resume(dev, host->slot_id);
} }
......
...@@ -45,10 +45,6 @@ struct omap_hsmmc_platform_data { ...@@ -45,10 +45,6 @@ struct omap_hsmmc_platform_data {
* maximum frequency on the MMC bus */ * maximum frequency on the MMC bus */
unsigned int max_freq; unsigned int max_freq;
/* To handle board related suspend/resume functionality for MMC */
int (*suspend)(struct device *dev, int slot);
int (*resume)(struct device *dev, int slot);
/* Integrating attributes from the omap_hwmod layer */ /* Integrating attributes from the omap_hwmod layer */
u8 controller_flags; u8 controller_flags;
...@@ -85,7 +81,6 @@ struct omap_hsmmc_platform_data { ...@@ -85,7 +81,6 @@ struct omap_hsmmc_platform_data {
int (*set_power)(struct device *dev, int slot, int (*set_power)(struct device *dev, int slot,
int power_on, int vdd); int power_on, int vdd);
int (*get_ro)(struct device *dev, int slot);
void (*remux)(struct device *dev, int slot, int power_on); void (*remux)(struct device *dev, int slot, int power_on);
/* Call back before enabling / disabling regulators */ /* Call back before enabling / disabling regulators */
void (*before_set_reg)(struct device *dev, int slot, void (*before_set_reg)(struct device *dev, int slot,
...@@ -96,19 +91,6 @@ struct omap_hsmmc_platform_data { ...@@ -96,19 +91,6 @@ struct omap_hsmmc_platform_data {
/* if we have special card, init it using this callback */ /* if we have special card, init it using this callback */
void (*init_card)(struct mmc_card *card); void (*init_card)(struct mmc_card *card);
/* return MMC cover switch state, can be NULL if not supported.
*
* possible return values:
* 0 - closed
* 1 - open
*/
int (*get_cover_state)(struct device *dev, int slot);
const char *name; const char *name;
u32 ocr_mask; u32 ocr_mask;
/* Card detection IRQs */
int card_detect_irq;
int (*card_detect)(struct device *dev, int slot);
}; };
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