]>
Commit | Line | Data |
---|---|---|
e29a7d73 PO |
1 | /* |
2 | * include/linux/mmc/sdio_func.h | |
3 | * | |
ad3868b2 | 4 | * Copyright 2007-2008 Pierre Ossman |
e29a7d73 PO |
5 | * |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation; either version 2 of the License, or (at | |
9 | * your option) any later version. | |
10 | */ | |
11 | ||
100e9186 RD |
12 | #ifndef LINUX_MMC_SDIO_FUNC_H |
13 | #define LINUX_MMC_SDIO_FUNC_H | |
e29a7d73 | 14 | |
3b38bea0 PO |
15 | #include <linux/device.h> |
16 | #include <linux/mod_devicetable.h> | |
17 | ||
da68c4eb NP |
18 | #include <linux/mmc/pm.h> |
19 | ||
e29a7d73 | 20 | struct mmc_card; |
d1496c39 NP |
21 | struct sdio_func; |
22 | ||
23 | typedef void (sdio_irq_handler_t)(struct sdio_func *); | |
e29a7d73 | 24 | |
b1538bcf NP |
25 | /* |
26 | * SDIO function CIS tuple (unknown to the core) | |
27 | */ | |
28 | struct sdio_func_tuple { | |
29 | struct sdio_func_tuple *next; | |
30 | unsigned char code; | |
31 | unsigned char size; | |
32 | unsigned char data[0]; | |
33 | }; | |
34 | ||
e29a7d73 PO |
35 | /* |
36 | * SDIO function devices | |
37 | */ | |
38 | struct sdio_func { | |
39 | struct mmc_card *card; /* the card this device belongs to */ | |
40 | struct device dev; /* the device */ | |
d1496c39 | 41 | sdio_irq_handler_t *irq_handler; /* IRQ callback */ |
e29a7d73 | 42 | unsigned int num; /* function number */ |
0597007f PO |
43 | |
44 | unsigned char class; /* standard interface class */ | |
45 | unsigned short vendor; /* vendor id */ | |
46 | unsigned short device; /* device id */ | |
47 | ||
9a08f82b DV |
48 | unsigned max_blksize; /* maximum block size */ |
49 | unsigned cur_blksize; /* current block size */ | |
1a632f8c | 50 | |
62a7573e BZ |
51 | unsigned enable_timeout; /* max enable timeout in msec */ |
52 | ||
e29a7d73 PO |
53 | unsigned int state; /* function state */ |
54 | #define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */ | |
b1538bcf | 55 | |
112c9db9 PO |
56 | u8 tmpbuf[4]; /* DMA:able scratch buffer */ |
57 | ||
759bdc7a PO |
58 | unsigned num_info; /* number of info strings */ |
59 | const char **info; /* info strings */ | |
60 | ||
b1538bcf | 61 | struct sdio_func_tuple *tuples; |
e29a7d73 PO |
62 | }; |
63 | ||
64 | #define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT) | |
65 | ||
66 | #define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT) | |
67 | ||
d1b26863 | 68 | #define sdio_func_id(f) (dev_name(&(f)->dev)) |
e29a7d73 | 69 | |
f76c8515 PO |
70 | #define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev) |
71 | #define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d) | |
996ad568 | 72 | #define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev) |
f76c8515 PO |
73 | |
74 | /* | |
75 | * SDIO function device driver | |
76 | */ | |
77 | struct sdio_driver { | |
78 | char *name; | |
3b38bea0 | 79 | const struct sdio_device_id *id_table; |
f76c8515 | 80 | |
3b38bea0 | 81 | int (*probe)(struct sdio_func *, const struct sdio_device_id *); |
f76c8515 PO |
82 | void (*remove)(struct sdio_func *); |
83 | ||
84 | struct device_driver drv; | |
85 | }; | |
86 | ||
3b38bea0 PO |
87 | /** |
88 | * SDIO_DEVICE - macro used to describe a specific SDIO device | |
89 | * @vend: the 16 bit manufacturer code | |
90 | * @dev: the 16 bit function id | |
91 | * | |
92 | * This macro is used to create a struct sdio_device_id that matches a | |
93 | * specific device. The class field will be set to SDIO_ANY_ID. | |
94 | */ | |
95 | #define SDIO_DEVICE(vend,dev) \ | |
96 | .class = SDIO_ANY_ID, \ | |
97 | .vendor = (vend), .device = (dev) | |
98 | ||
99 | /** | |
100 | * SDIO_DEVICE_CLASS - macro used to describe a specific SDIO device class | |
101 | * @dev_class: the 8 bit standard interface code | |
102 | * | |
103 | * This macro is used to create a struct sdio_device_id that matches a | |
104 | * specific standard SDIO function type. The vendor and device fields will | |
105 | * be set to SDIO_ANY_ID. | |
106 | */ | |
107 | #define SDIO_DEVICE_CLASS(dev_class) \ | |
108 | .class = (dev_class), \ | |
109 | .vendor = SDIO_ANY_ID, .device = SDIO_ANY_ID | |
110 | ||
f76c8515 PO |
111 | extern int sdio_register_driver(struct sdio_driver *); |
112 | extern void sdio_unregister_driver(struct sdio_driver *); | |
113 | ||
46f555f2 PO |
114 | /* |
115 | * SDIO I/O operations | |
116 | */ | |
117 | extern void sdio_claim_host(struct sdio_func *func); | |
118 | extern void sdio_release_host(struct sdio_func *func); | |
119 | ||
fa64efa1 PO |
120 | extern int sdio_enable_func(struct sdio_func *func); |
121 | extern int sdio_disable_func(struct sdio_func *func); | |
122 | ||
9a08f82b DV |
123 | extern int sdio_set_block_size(struct sdio_func *func, unsigned blksz); |
124 | ||
d1496c39 NP |
125 | extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler); |
126 | extern int sdio_release_irq(struct sdio_func *func); | |
127 | ||
ad3868b2 PO |
128 | extern unsigned int sdio_align_size(struct sdio_func *func, unsigned int sz); |
129 | ||
6d373331 TW |
130 | extern u8 sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret); |
131 | extern u16 sdio_readw(struct sdio_func *func, unsigned int addr, int *err_ret); | |
132 | extern u32 sdio_readl(struct sdio_func *func, unsigned int addr, int *err_ret); | |
112c9db9 PO |
133 | |
134 | extern int sdio_memcpy_fromio(struct sdio_func *func, void *dst, | |
135 | unsigned int addr, int count); | |
136 | extern int sdio_readsb(struct sdio_func *func, void *dst, | |
137 | unsigned int addr, int count); | |
46f555f2 | 138 | |
6d373331 | 139 | extern void sdio_writeb(struct sdio_func *func, u8 b, |
46f555f2 | 140 | unsigned int addr, int *err_ret); |
6d373331 | 141 | extern void sdio_writew(struct sdio_func *func, u16 b, |
112c9db9 | 142 | unsigned int addr, int *err_ret); |
6d373331 | 143 | extern void sdio_writel(struct sdio_func *func, u32 b, |
112c9db9 PO |
144 | unsigned int addr, int *err_ret); |
145 | ||
6c1f716e GI |
146 | extern u8 sdio_writeb_readb(struct sdio_func *func, u8 write_byte, |
147 | unsigned int addr, int *err_ret); | |
148 | ||
112c9db9 PO |
149 | extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr, |
150 | void *src, int count); | |
151 | extern int sdio_writesb(struct sdio_func *func, unsigned int addr, | |
152 | void *src, int count); | |
46f555f2 | 153 | |
7806cdb4 DV |
154 | extern unsigned char sdio_f0_readb(struct sdio_func *func, |
155 | unsigned int addr, int *err_ret); | |
156 | extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b, | |
157 | unsigned int addr, int *err_ret); | |
158 | ||
da68c4eb NP |
159 | extern mmc_pm_flag_t sdio_get_host_pm_caps(struct sdio_func *func); |
160 | extern int sdio_set_host_pm_flags(struct sdio_func *func, mmc_pm_flag_t flags); | |
161 | ||
100e9186 | 162 | #endif /* LINUX_MMC_SDIO_FUNC_H */ |