mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 19:46:42 +07:00
95f25efe0c
This driver adds basic support for the esdhc-core found on e.g. imx35/51, as a platform driver. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Acked-by: Anton Vorontsov <cbouatmailru@gmail.com> Tested-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Chris Ball <cjb@laptop.org>
27 lines
714 B
C
27 lines
714 B
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/mmc/sdhci-pltfm.h>
|
|
|
|
struct sdhci_pltfm_host {
|
|
struct clk *clk;
|
|
u32 scratchpad; /* to handle quirks across io-accessor calls */
|
|
};
|
|
|
|
extern struct sdhci_pltfm_data sdhci_cns3xxx_pdata;
|
|
extern struct sdhci_pltfm_data sdhci_esdhc_imx_pdata;
|
|
|
|
#endif /* _DRIVERS_MMC_SDHCI_PLTFM_H */
|