core.h 2.8 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *  linux/drivers/mmc/core/core.h
L
Linus Torvalds 已提交
3 4
 *
 *  Copyright (C) 2003 Russell King, All Rights Reserved.
P
Pierre Ossman 已提交
5
 *  Copyright 2007 Pierre Ossman
L
Linus Torvalds 已提交
6 7 8 9 10
 *
 * 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.
 */
P
Pierre Ossman 已提交
11 12
#ifndef _MMC_CORE_CORE_H
#define _MMC_CORE_CORE_H
R
Russell King 已提交
13

P
Pierre Ossman 已提交
14 15 16 17
#include <linux/delay.h>

#define MMC_CMD_RETRIES        3

P
Pierre Ossman 已提交
18 19 20
struct mmc_bus_ops {
	void (*remove)(struct mmc_host *);
	void (*detect)(struct mmc_host *);
21
	int (*pre_suspend)(struct mmc_host *);
22 23
	int (*suspend)(struct mmc_host *);
	int (*resume)(struct mmc_host *);
24 25
	int (*runtime_suspend)(struct mmc_host *);
	int (*runtime_resume)(struct mmc_host *);
26 27
	int (*power_save)(struct mmc_host *);
	int (*power_restore)(struct mmc_host *);
28
	int (*alive)(struct mmc_host *);
29
	int (*shutdown)(struct mmc_host *);
P
Pierre Ossman 已提交
30 31 32 33 34
};

void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops);
void mmc_detach_bus(struct mmc_host *host);

35 36 37
struct device_node *mmc_of_find_child_device(struct mmc_host *host,
		unsigned func_num);

38 39
void mmc_init_erase(struct mmc_card *card);

P
Pierre Ossman 已提交
40
void mmc_set_chip_select(struct mmc_host *host, int mode);
P
Pierre Ossman 已提交
41
void mmc_set_clock(struct mmc_host *host, unsigned int hz);
42 43 44
void mmc_gate_clock(struct mmc_host *host);
void mmc_ungate_clock(struct mmc_host *host);
void mmc_set_ungated(struct mmc_host *host);
P
Pierre Ossman 已提交
45 46 47
void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode);
void mmc_set_bus_width(struct mmc_host *host, unsigned int width);
u32 mmc_select_voltage(struct mmc_host *host, u32 ocr);
48
int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage, u32 ocr);
49
int __mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage);
P
Pierre Ossman 已提交
50
void mmc_set_timing(struct mmc_host *host, unsigned int timing);
51
void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type);
52
void mmc_power_up(struct mmc_host *host, u32 ocr);
53
void mmc_power_off(struct mmc_host *host);
54
void mmc_power_cycle(struct mmc_host *host, u32 ocr);
55
void mmc_set_initial_state(struct mmc_host *host);
P
Pierre Ossman 已提交
56

P
Pierre Ossman 已提交
57 58 59 60 61 62 63 64 65
static inline void mmc_delay(unsigned int ms)
{
	if (ms < 1000 / HZ) {
		cond_resched();
		mdelay(ms);
	} else {
		msleep(ms);
	}
}
P
Pierre Ossman 已提交
66

67 68 69 70
void mmc_rescan(struct work_struct *work);
void mmc_start_host(struct mmc_host *host);
void mmc_stop_host(struct mmc_host *host);

71 72
int _mmc_detect_card_removed(struct mmc_host *host);

73 74 75
int mmc_attach_mmc(struct mmc_host *host);
int mmc_attach_sd(struct mmc_host *host);
int mmc_attach_sdio(struct mmc_host *host);
76

77
/* Module parameters */
78
extern bool use_spi_crc;
D
David Brownell 已提交
79

80 81 82 83
/* Debugfs information for hosts and cards */
void mmc_add_host_debugfs(struct mmc_host *host);
void mmc_remove_host_debugfs(struct mmc_host *host);

84 85 86
void mmc_add_card_debugfs(struct mmc_card *card);
void mmc_remove_card_debugfs(struct mmc_card *card);

87
void mmc_init_context_info(struct mmc_host *host);
L
Linus Torvalds 已提交
88
#endif
P
Pierre Ossman 已提交
89