mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 09:56:53 +07:00
ec2a0833e5
Platform data for device drivers should be defined in include/linux/platform_data/*.h, not in the architecture and platform specific directories. This moves such data out of the davinci include directories Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Nicolas Pitre <nico@linaro.org> Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com> Acked-by: Felipe Balbi <balbi@ti.com> Cc: Sekhar Nori <nsekhar@ti.com> Cc: Kevin Hilman <khilman@ti.com> Cc: "Ben Dooks" <ben-linux@fluff.org> Cc: "Wolfram Sang" <w.sang@pengutronix.de> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: Chris Ball <cjb@laptop.org> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Alan Stern <stern@rowland.harvard.edu> Cc: Liam Girdwood <lrg@ti.com> Cc: davinci-linux-open-source@linux.davincidsp.com
40 lines
751 B
C
40 lines
751 B
C
/*
|
|
* Board-specific MMC configuration
|
|
*/
|
|
|
|
#ifndef _DAVINCI_MMC_H
|
|
#define _DAVINCI_MMC_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/mmc/host.h>
|
|
|
|
struct davinci_mmc_config {
|
|
/* get_cd()/get_wp() may sleep */
|
|
int (*get_cd)(int module);
|
|
int (*get_ro)(int module);
|
|
|
|
void (*set_power)(int module, bool on);
|
|
|
|
/* wires == 0 is equivalent to wires == 4 (4-bit parallel) */
|
|
u8 wires;
|
|
|
|
u32 max_freq;
|
|
|
|
/* any additional host capabilities: OR'd in to mmc->f_caps */
|
|
u32 caps;
|
|
|
|
/* Version of the MMC/SD controller */
|
|
u8 version;
|
|
|
|
/* Number of sg segments */
|
|
u8 nr_sg;
|
|
};
|
|
void davinci_setup_mmc(int module, struct davinci_mmc_config *config);
|
|
|
|
enum {
|
|
MMC_CTLR_VERSION_1 = 0, /* DM644x and DM355 */
|
|
MMC_CTLR_VERSION_2, /* DA830 */
|
|
};
|
|
|
|
#endif
|