Lines Matching defs:sdhci_ops
245 struct sdhci_ops { struct
247 u32 (*read_l)(struct sdhci_host *host, int reg);
248 u16 (*read_w)(struct sdhci_host *host, int reg);
249 u8 (*read_b)(struct sdhci_host *host, int reg);
250 void (*write_l)(struct sdhci_host *host, u32 val, int reg);
251 void (*write_w)(struct sdhci_host *host, u16 val, int reg);
252 void (*write_b)(struct sdhci_host *host, u8 val, int reg);
254 int (*get_cd)(struct sdhci_host *host);
255 void (*set_control_reg)(struct sdhci_host *host);
256 void (*set_ios_post)(struct sdhci_host *host);
257 int (*set_clock)(struct sdhci_host *host, unsigned int clock);
258 void (*set_clock_ext)(struct sdhci_host *host, u32 div);
283 const struct sdhci_ops *ops; argument