Lines Matching full:card
26 * Initializes SDIO card function. The card function will not be enabled,
28 * and write data from the card.
30 * @param card: SD card to enable function on
35 int sdio_init_func(struct sd_card *card, struct sdio_func *func,
41 * Enables SDIO card function. @ref sdio_init_func must be called to
42 * initialized the function structure before enabling it in the card.
45 * @retval -ETIMEDOUT: card I/O timed out
71 * @retval -EBUSY: card is busy with another request
72 * @retval -ETIMEDOUT: card read timed out
85 * @retval -EBUSY: card is busy with another request
86 * @retval -ETIMEDOUT: card write timed out
100 * @retval -EBUSY: card is busy with another request
101 * @retval -ETIMEDOUT: card write timed out
115 * @param len: length of data to read from card
117 * @retval -EBUSY: card is busy with another request
118 * @retval -ETIMEDOUT: card read timed out
132 * @param len: length of data to write to card
134 * @retval -EBUSY: card is busy with another request
135 * @retval -ETIMEDOUT: card write timed out
151 * @retval -EBUSY: card is busy with another request
152 * @retval -ETIMEDOUT: card read timed out
168 * @retval -EBUSY: card is busy with another request
169 * @retval -ETIMEDOUT: card write timed out
176 * @brief Copy bytes from an SDIO card
178 * Copies bytes from an SDIO card, starting from provided address.
184 * @retval -EBUSY: card is busy with another request
185 * @retval -ETIMEDOUT: card read timed out
192 * @brief Copy bytes to an SDIO card
194 * Copies bytes to an SDIO card, starting from provided address.
201 * @retval -EBUSY: card is busy with another request
202 * @retval -ETIMEDOUT: card write timed out