|
@@ -22,6 +22,8 @@ struct mmc_bus_ops {
|
|
|
void (*detect)(struct mmc_host *);
|
|
|
int (*suspend)(struct mmc_host *);
|
|
|
int (*resume)(struct mmc_host *);
|
|
|
+ int (*runtime_suspend)(struct mmc_host *);
|
|
|
+ int (*runtime_resume)(struct mmc_host *);
|
|
|
int (*power_save)(struct mmc_host *);
|
|
|
int (*power_restore)(struct mmc_host *);
|
|
|
int (*alive)(struct mmc_host *);
|
|
@@ -44,6 +46,7 @@ int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage);
|
|
|
int __mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage);
|
|
|
void mmc_set_timing(struct mmc_host *host, unsigned int timing);
|
|
|
void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type);
|
|
|
+void mmc_power_up(struct mmc_host *host);
|
|
|
void mmc_power_off(struct mmc_host *host);
|
|
|
void mmc_power_cycle(struct mmc_host *host);
|
|
|
|