2010-08-11 08:01:47 +07:00
|
|
|
/*
|
|
|
|
* Copyright 2010 MontaVista Software, LLC.
|
|
|
|
*
|
|
|
|
* Author: Anton Vorontsov <avorontsov@ru.mvista.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DRIVERS_MMC_SDHCI_PLTFM_H
|
|
|
|
#define _DRIVERS_MMC_SDHCI_PLTFM_H
|
|
|
|
|
2010-10-15 17:20:59 +07:00
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/types.h>
|
2011-05-27 22:48:12 +07:00
|
|
|
#include <linux/platform_device.h>
|
2010-10-15 17:21:00 +07:00
|
|
|
#include <linux/mmc/sdhci-pltfm.h>
|
2010-08-11 08:01:49 +07:00
|
|
|
|
2010-10-15 17:20:59 +07:00
|
|
|
struct sdhci_pltfm_host {
|
|
|
|
struct clk *clk;
|
2011-03-25 20:18:27 +07:00
|
|
|
void *priv; /* to handle quirks across io-accessor calls */
|
2011-07-21 04:13:36 +07:00
|
|
|
|
|
|
|
/* migrate from sdhci_of_host */
|
|
|
|
unsigned int clock;
|
|
|
|
u16 xfer_mode_shadow;
|
2010-10-15 17:20:59 +07:00
|
|
|
};
|
|
|
|
|
2011-05-27 22:48:12 +07:00
|
|
|
extern struct sdhci_host *sdhci_pltfm_init(struct platform_device *pdev,
|
|
|
|
struct sdhci_pltfm_data *pdata);
|
|
|
|
extern void sdhci_pltfm_free(struct platform_device *pdev);
|
|
|
|
|
|
|
|
extern int sdhci_pltfm_register(struct platform_device *pdev,
|
|
|
|
struct sdhci_pltfm_data *pdata);
|
|
|
|
extern int sdhci_pltfm_unregister(struct platform_device *pdev);
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM
|
|
|
|
extern int sdhci_pltfm_suspend(struct platform_device *dev, pm_message_t state);
|
|
|
|
extern int sdhci_pltfm_resume(struct platform_device *dev);
|
|
|
|
#endif
|
2010-08-11 08:01:49 +07:00
|
|
|
|
2010-08-11 08:01:47 +07:00
|
|
|
#endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */
|