MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / include / linux / mmc / host.h
blob1d1ea4156c8fe6cbfd6e5bbd5486ec6560c94109
1 /*
2 * linux/include/linux/mmc/host.h
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Host driver specific definitions.
9 */
10 #ifndef LINUX_MMC_HOST_H
11 #define LINUX_MMC_HOST_H
13 #include <linux/mmc/core.h>
15 #if 1 // add by Victor Yu. 11-28-2005
16 #ifndef _PM_MESSAGE_T
17 #define _PM_MESSAGE_T
18 typedef unsigned int pm_message_t;
19 #endif // _PM_MESSAGE_T
20 #endif
22 struct mmc_ios {
23 unsigned int clock; /* clock rate */
24 unsigned short vdd;
26 /* vdd stores the bit number of the selected voltage range from below. */
28 unsigned char bus_mode; /* command output mode */
30 #define MMC_BUSMODE_OPENDRAIN 1
31 #define MMC_BUSMODE_PUSHPULL 2
33 unsigned char chip_select; /* SPI chip select */
35 #define MMC_CS_DONTCARE 0
36 #define MMC_CS_HIGH 1
37 #define MMC_CS_LOW 2
39 unsigned char power_mode; /* power supply mode */
41 #define MMC_POWER_OFF 0
42 #define MMC_POWER_UP 1
43 #define MMC_POWER_ON 2
45 unsigned char bus_width; /* data bus width */
47 #define MMC_BUS_WIDTH_1 0
48 #define MMC_BUS_WIDTH_4 2
50 unsigned char timing; /* timing specification used */
52 #define MMC_TIMING_LEGACY 0
53 #define MMC_TIMING_MMC_HS 1
54 #define MMC_TIMING_SD_HS 2
57 struct mmc_host_ops {
58 void (*request)(struct mmc_host *host, struct mmc_request *req);
59 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
60 int (*get_ro)(struct mmc_host *host);
63 struct mmc_card;
64 struct device;
66 struct mmc_host {
67 #if 0 // mask by Victor Yu. 12-02-2008
68 struct device *parent;
69 struct device class_dev;
70 #else
71 struct device *dev;
72 struct class_device class_dev;
73 #endif
74 int index;
75 const struct mmc_host_ops *ops;
76 unsigned int f_min;
77 unsigned int f_max;
78 u32 ocr_avail;
80 #define MMC_VDD_165_195 0x00000080 /* VDD voltage 1.65 - 1.95 */
81 #define MMC_VDD_20_21 0x00000100 /* VDD voltage 2.0 ~ 2.1 */
82 #define MMC_VDD_21_22 0x00000200 /* VDD voltage 2.1 ~ 2.2 */
83 #define MMC_VDD_22_23 0x00000400 /* VDD voltage 2.2 ~ 2.3 */
84 #define MMC_VDD_23_24 0x00000800 /* VDD voltage 2.3 ~ 2.4 */
85 #define MMC_VDD_24_25 0x00001000 /* VDD voltage 2.4 ~ 2.5 */
86 #define MMC_VDD_25_26 0x00002000 /* VDD voltage 2.5 ~ 2.6 */
87 #define MMC_VDD_26_27 0x00004000 /* VDD voltage 2.6 ~ 2.7 */
88 #define MMC_VDD_27_28 0x00008000 /* VDD voltage 2.7 ~ 2.8 */
89 #define MMC_VDD_28_29 0x00010000 /* VDD voltage 2.8 ~ 2.9 */
90 #define MMC_VDD_29_30 0x00020000 /* VDD voltage 2.9 ~ 3.0 */
91 #define MMC_VDD_30_31 0x00040000 /* VDD voltage 3.0 ~ 3.1 */
92 #define MMC_VDD_31_32 0x00080000 /* VDD voltage 3.1 ~ 3.2 */
93 #define MMC_VDD_32_33 0x00100000 /* VDD voltage 3.2 ~ 3.3 */
94 #define MMC_VDD_33_34 0x00200000 /* VDD voltage 3.3 ~ 3.4 */
95 #define MMC_VDD_34_35 0x00400000 /* VDD voltage 3.4 ~ 3.5 */
96 #define MMC_VDD_35_36 0x00800000 /* VDD voltage 3.5 ~ 3.6 */
98 unsigned long caps; /* Host capabilities */
100 #define MMC_CAP_4_BIT_DATA (1 << 0) /* Can the host do 4 bit transfers */
101 #define MMC_CAP_MULTIWRITE (1 << 1) /* Can accurately report bytes sent to card on error */
102 #define MMC_CAP_BYTEBLOCK (1 << 2) /* Can do non-log2 block sizes */
103 #define MMC_CAP_MMC_HIGHSPEED (1 << 3) /* Can do MMC high-speed timing */
104 #define MMC_CAP_SD_HIGHSPEED (1 << 4) /* Can do SD high-speed timing */
106 /* host specific block data */
107 unsigned int max_seg_size; /* see blk_queue_max_segment_size */
108 unsigned short max_hw_segs; /* see blk_queue_max_hw_segments */
109 unsigned short max_phys_segs; /* see blk_queue_max_phys_segments */
110 unsigned short unused;
111 unsigned int max_req_size; /* maximum number of bytes in one req */
112 unsigned int max_blk_size; /* maximum size of one mmc block */
113 unsigned int max_blk_count; /* maximum number of blocks in one req */
115 /* private data */
116 spinlock_t lock; /* lock for claim and bus ops */
118 struct mmc_ios ios; /* current io bus settings */
119 u32 ocr; /* the current OCR setting */
121 unsigned int mode; /* current card mode of host */
122 #define MMC_MODE_MMC 0
123 #define MMC_MODE_SD 1
125 struct mmc_card *card; /* device attached to this host */
127 wait_queue_head_t wq;
128 unsigned int claimed:1; /* host exclusively claimed */
130 #if 0 // mask by Victor Yu. 12-02-2008
131 struct delayed_work detect;
132 #else
133 struct work_struct detect;
134 #endif
135 #ifdef CONFIG_MMC_DEBUG
136 unsigned int removed:1; /* host is being removed */
137 #endif
139 const struct mmc_bus_ops *bus_ops; /* current bus driver */
140 unsigned int bus_refs; /* reference counter */
141 unsigned int bus_dead:1; /* bus has been released */
143 unsigned long private[0] ____cacheline_aligned;
146 extern struct mmc_host *mmc_alloc_host(int extra, struct device *);
147 extern int mmc_add_host(struct mmc_host *);
148 extern void mmc_remove_host(struct mmc_host *);
149 extern void mmc_free_host(struct mmc_host *);
151 static inline void *mmc_priv(struct mmc_host *host)
153 return (void *)host->private;
156 #if 0 // mask by Victor Yu. 12-02-2008
157 #define mmc_dev(x) ((x)->parent)
158 #define mmc_hostname(x) ((x)->class_dev.bus_id)
159 #else
160 #define mmc_dev(x) ((x)->dev)
161 #define mmc_hostname(x) ((x)->class_dev.class_id)
162 #endif
163 #define mmc_classdev(x) (&(x)->class_dev)
165 extern int mmc_suspend_host(struct mmc_host *, pm_message_t);
166 extern int mmc_resume_host(struct mmc_host *);
168 extern void mmc_detect_change(struct mmc_host *, unsigned long delay);
169 extern void mmc_request_done(struct mmc_host *, struct mmc_request *);
171 #endif