forked from Minki/linux
85d6509dc8
The patch turns the common stuff in sdhci-pltfm.c into functions, and add device drivers their own .probe and .remove which in turn call into the common functions, so that those sdhci-pltfm device drivers register itself and keep all device specific things away from common sdhci-pltfm file. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Reviewed-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Anton Vorontsov <cbouatmailru@gmail.com> Signed-off-by: Chris Ball <cjb@laptop.org>
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/*
|
|
* 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
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/types.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/mmc/sdhci-pltfm.h>
|
|
|
|
struct sdhci_pltfm_host {
|
|
struct clk *clk;
|
|
void *priv; /* to handle quirks across io-accessor calls */
|
|
};
|
|
|
|
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
|
|
|
|
#endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */
|