make struct sdio_dev_attrs[] static
[linux-2.6/verdex.git] / drivers / mmc / core / sdio_io.c
blobecdb77242e98f9033156435d90e57bc2258d2b03
1 /*
2 * linux/drivers/mmc/core/sdio_io.c
4 * Copyright 2007 Pierre Ossman
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.
12 #include <linux/mmc/host.h>
13 #include <linux/mmc/card.h>
14 #include <linux/mmc/sdio.h>
15 #include <linux/mmc/sdio_func.h>
17 #include "sdio_ops.h"
19 /**
20 * sdio_claim_host - exclusively claim a bus for a certain SDIO function
21 * @func: SDIO function that will be accessed
23 * Claim a bus for a set of operations. The SDIO function given
24 * is used to figure out which bus is relevant.
26 void sdio_claim_host(struct sdio_func *func)
28 BUG_ON(!func);
29 BUG_ON(!func->card);
31 mmc_claim_host(func->card->host);
33 EXPORT_SYMBOL_GPL(sdio_claim_host);
35 /**
36 * sdio_release_host - release a bus for a certain SDIO function
37 * @func: SDIO function that was accessed
39 * Release a bus, allowing others to claim the bus for their
40 * operations.
42 void sdio_release_host(struct sdio_func *func)
44 BUG_ON(!func);
45 BUG_ON(!func->card);
47 mmc_release_host(func->card->host);
49 EXPORT_SYMBOL_GPL(sdio_release_host);
51 /**
52 * sdio_enable_func - enables a SDIO function for usage
53 * @func: SDIO function to enable
55 * Powers up and activates a SDIO function so that register
56 * access is possible.
58 int sdio_enable_func(struct sdio_func *func)
60 int ret;
61 unsigned char reg;
62 unsigned long timeout;
64 BUG_ON(!func);
65 BUG_ON(!func->card);
67 pr_debug("SDIO: Enabling device %s...\n", sdio_func_id(func));
69 ret = mmc_io_rw_direct(func->card, 0, 0, SDIO_CCCR_IOEx, 0, &reg);
70 if (ret)
71 goto err;
73 reg |= 1 << func->num;
75 ret = mmc_io_rw_direct(func->card, 1, 0, SDIO_CCCR_IOEx, reg, NULL);
76 if (ret)
77 goto err;
80 * FIXME: This should timeout based on information in the CIS,
81 * but we don't have card to parse that yet.
83 timeout = jiffies + HZ;
85 while (1) {
86 ret = mmc_io_rw_direct(func->card, 0, 0, SDIO_CCCR_IORx, 0, &reg);
87 if (ret)
88 goto err;
89 if (reg & (1 << func->num))
90 break;
91 ret = -ETIME;
92 if (time_after(jiffies, timeout))
93 goto err;
96 pr_debug("SDIO: Enabled device %s\n", sdio_func_id(func));
98 return 0;
100 err:
101 pr_debug("SDIO: Failed to enable device %s\n", sdio_func_id(func));
102 return ret;
104 EXPORT_SYMBOL_GPL(sdio_enable_func);
107 * sdio_disable_func - disable a SDIO function
108 * @func: SDIO function to disable
110 * Powers down and deactivates a SDIO function. Register access
111 * to this function will fail until the function is reenabled.
113 int sdio_disable_func(struct sdio_func *func)
115 int ret;
116 unsigned char reg;
118 BUG_ON(!func);
119 BUG_ON(!func->card);
121 pr_debug("SDIO: Disabling device %s...\n", sdio_func_id(func));
123 ret = mmc_io_rw_direct(func->card, 0, 0, SDIO_CCCR_IOEx, 0, &reg);
124 if (ret)
125 goto err;
127 reg &= ~(1 << func->num);
129 ret = mmc_io_rw_direct(func->card, 1, 0, SDIO_CCCR_IOEx, reg, NULL);
130 if (ret)
131 goto err;
133 pr_debug("SDIO: Disabled device %s\n", sdio_func_id(func));
135 return 0;
137 err:
138 pr_debug("SDIO: Failed to disable device %s\n", sdio_func_id(func));
139 return -EIO;
141 EXPORT_SYMBOL_GPL(sdio_disable_func);
144 * sdio_readb - read a single byte from a SDIO function
145 * @func: SDIO function to access
146 * @addr: address to read
147 * @err_ret: optional status value from transfer
149 * Reads a single byte from the address space of a given SDIO
150 * function. If there is a problem reading the address, 0xff
151 * is returned and @err_ret will contain the error code.
153 unsigned char sdio_readb(struct sdio_func *func, unsigned int addr,
154 int *err_ret)
156 int ret;
157 unsigned char val;
159 BUG_ON(!func);
161 if (err_ret)
162 *err_ret = 0;
164 ret = mmc_io_rw_direct(func->card, 0, func->num, addr, 0, &val);
165 if (ret) {
166 if (err_ret)
167 *err_ret = ret;
168 return 0xFF;
171 return val;
173 EXPORT_SYMBOL_GPL(sdio_readb);
176 * sdio_writeb - write a single byte to a SDIO function
177 * @func: SDIO function to access
178 * @b: byte to write
179 * @addr: address to write to
180 * @err_ret: optional status value from transfer
182 * Writes a single byte to the address space of a given SDIO
183 * function. @err_ret will contain the status of the actual
184 * transfer.
186 void sdio_writeb(struct sdio_func *func, unsigned char b, unsigned int addr,
187 int *err_ret)
189 int ret;
191 BUG_ON(!func);
193 ret = mmc_io_rw_direct(func->card, 1, func->num, addr, b, NULL);
194 if (err_ret)
195 *err_ret = ret;
197 EXPORT_SYMBOL_GPL(sdio_writeb);
200 * sdio_memcpy_fromio - read a chunk of memory from a SDIO function
201 * @func: SDIO function to access
202 * @dst: buffer to store the data
203 * @addr: address to begin reading from
204 * @count: number of bytes to read
206 * Reads up to 512 bytes from the address space of a given SDIO
207 * function. Return value indicates if the transfer succeeded or
208 * not.
210 int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
211 unsigned int addr, int count)
213 return mmc_io_rw_extended(func->card, 0, func->num, addr, 0, dst,
214 count);
216 EXPORT_SYMBOL_GPL(sdio_memcpy_fromio);
219 * sdio_memcpy_toio - write a chunk of memory to a SDIO function
220 * @func: SDIO function to access
221 * @addr: address to start writing to
222 * @src: buffer that contains the data to write
223 * @count: number of bytes to write
225 * Writes up to 512 bytes to the address space of a given SDIO
226 * function. Return value indicates if the transfer succeeded or
227 * not.
229 int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
230 void *src, int count)
232 return mmc_io_rw_extended(func->card, 1, func->num, addr, 0, src,
233 count);
235 EXPORT_SYMBOL_GPL(sdio_memcpy_toio);
238 * sdio_readsb - read from a FIFO on a SDIO function
239 * @func: SDIO function to access
240 * @dst: buffer to store the data
241 * @addr: address of (single byte) FIFO
242 * @count: number of bytes to read
244 * Reads up to 512 bytes from the specified FIFO of a given SDIO
245 * function. Return value indicates if the transfer succeeded or
246 * not.
248 int sdio_readsb(struct sdio_func *func, void *dst, unsigned int addr,
249 int count)
251 return mmc_io_rw_extended(func->card, 0, func->num, addr, 1, dst,
252 count);
255 EXPORT_SYMBOL_GPL(sdio_readsb);
258 * sdio_writesb - write to a FIFO of a SDIO function
259 * @func: SDIO function to access
260 * @addr: address of (single byte) FIFO
261 * @src: buffer that contains the data to write
262 * @count: number of bytes to write
264 * Writes up to 512 bytes to the specified FIFO of a given SDIO
265 * function. Return value indicates if the transfer succeeded or
266 * not.
268 int sdio_writesb(struct sdio_func *func, unsigned int addr, void *src,
269 int count)
271 return mmc_io_rw_extended(func->card, 1, func->num, addr, 1, src,
272 count);
274 EXPORT_SYMBOL_GPL(sdio_writesb);
277 * sdio_readw - read a 16 bit integer from a SDIO function
278 * @func: SDIO function to access
279 * @addr: address to read
280 * @err_ret: optional status value from transfer
282 * Reads a 16 bit integer from the address space of a given SDIO
283 * function. If there is a problem reading the address, 0xffff
284 * is returned and @err_ret will contain the error code.
286 unsigned short sdio_readw(struct sdio_func *func, unsigned int addr,
287 int *err_ret)
289 int ret;
291 if (err_ret)
292 *err_ret = 0;
294 ret = sdio_memcpy_fromio(func, func->tmpbuf, addr, 2);
295 if (ret) {
296 if (err_ret)
297 *err_ret = ret;
298 return 0xFFFF;
301 return le16_to_cpu(*(u16*)func->tmpbuf);
303 EXPORT_SYMBOL_GPL(sdio_readw);
306 * sdio_writew - write a 16 bit integer to a SDIO function
307 * @func: SDIO function to access
308 * @b: integer to write
309 * @addr: address to write to
310 * @err_ret: optional status value from transfer
312 * Writes a 16 bit integer to the address space of a given SDIO
313 * function. @err_ret will contain the status of the actual
314 * transfer.
316 void sdio_writew(struct sdio_func *func, unsigned short b, unsigned int addr,
317 int *err_ret)
319 int ret;
321 *(u16*)func->tmpbuf = cpu_to_le16(b);
323 ret = sdio_memcpy_toio(func, addr, func->tmpbuf, 2);
324 if (err_ret)
325 *err_ret = ret;
327 EXPORT_SYMBOL_GPL(sdio_writew);
330 * sdio_readl - read a 32 bit integer from a SDIO function
331 * @func: SDIO function to access
332 * @addr: address to read
333 * @err_ret: optional status value from transfer
335 * Reads a 32 bit integer from the address space of a given SDIO
336 * function. If there is a problem reading the address,
337 * 0xffffffff is returned and @err_ret will contain the error
338 * code.
340 unsigned long sdio_readl(struct sdio_func *func, unsigned int addr,
341 int *err_ret)
343 int ret;
345 if (err_ret)
346 *err_ret = 0;
348 ret = sdio_memcpy_fromio(func, func->tmpbuf, addr, 4);
349 if (ret) {
350 if (err_ret)
351 *err_ret = ret;
352 return 0xFFFFFFFF;
355 return le32_to_cpu(*(u32*)func->tmpbuf);
357 EXPORT_SYMBOL_GPL(sdio_readl);
360 * sdio_writel - write a 32 bit integer to a SDIO function
361 * @func: SDIO function to access
362 * @b: integer to write
363 * @addr: address to write to
364 * @err_ret: optional status value from transfer
366 * Writes a 32 bit integer to the address space of a given SDIO
367 * function. @err_ret will contain the status of the actual
368 * transfer.
370 void sdio_writel(struct sdio_func *func, unsigned long b, unsigned int addr,
371 int *err_ret)
373 int ret;
375 *(u32*)func->tmpbuf = cpu_to_le32(b);
377 ret = sdio_memcpy_toio(func, addr, func->tmpbuf, 4);
378 if (err_ret)
379 *err_ret = ret;
381 EXPORT_SYMBOL_GPL(sdio_writel);