]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/linux/mmc/sh_mobile_sdhi.h
Merge tag 'jfs-3.12' of git://github.com/kleikamp/linux-shaggy
[mirror_ubuntu-eoan-kernel.git] / include / linux / mmc / sh_mobile_sdhi.h
CommitLineData
100e9186
RD
1#ifndef LINUX_MMC_SH_MOBILE_SDHI_H
2#define LINUX_MMC_SH_MOBILE_SDHI_H
42051e8a
GL
3
4#include <linux/types.h>
5
25958804 6struct platform_device;
25958804 7
d5098cb6
SH
8#define SH_MOBILE_SDHI_IRQ_CARD_DETECT "card_detect"
9#define SH_MOBILE_SDHI_IRQ_SDCARD "sdcard"
10#define SH_MOBILE_SDHI_IRQ_SDIO "sdio"
11
7f524217
GL
12/**
13 * struct sh_mobile_sdhi_ops - SDHI driver callbacks
14 * @cd_wakeup: trigger a card-detection run
15 */
16struct sh_mobile_sdhi_ops {
17 void (*cd_wakeup)(const struct platform_device *pdev);
18};
19
42051e8a
GL
20struct sh_mobile_sdhi_info {
21 int dma_slave_tx;
22 int dma_slave_rx;
23 unsigned long tmio_flags;
24 unsigned long tmio_caps;
d7d8d500 25 unsigned long tmio_caps2;
42051e8a 26 u32 tmio_ocr_mask; /* available MMC voltages */
58126c87 27 unsigned int cd_gpio;
e82b4ac9
BH
28
29 /* callbacks for board specific setup code */
7f524217
GL
30 int (*init)(struct platform_device *pdev,
31 const struct sh_mobile_sdhi_ops *ops);
e82b4ac9 32 void (*cleanup)(struct platform_device *pdev);
42051e8a
GL
33};
34
100e9186 35#endif /* LINUX_MMC_SH_MOBILE_SDHI_H */