blob: 8945da9b54fa781b11c81beb8bdbbe6aa8099eea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Pierre Ossmanaaac1b42007-02-28 15:33:10 +01002 * linux/include/linux/mmc/core.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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.
7 */
Pierre Ossmanaaac1b42007-02-28 15:33:10 +01008#ifndef LINUX_MMC_CORE_H
9#define LINUX_MMC_CORE_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/interrupt.h>
12#include <linux/device.h>
13
14struct request;
15struct mmc_data;
16struct mmc_request;
17
18struct mmc_command {
19 u32 opcode;
20 u32 arg;
21 u32 resp[4];
22 unsigned int flags; /* expected response type */
Russell Kinge9225172006-02-02 12:23:12 +000023#define MMC_RSP_PRESENT (1 << 0)
24#define MMC_RSP_136 (1 << 1) /* 136 bit response */
25#define MMC_RSP_CRC (1 << 2) /* expect valid crc */
26#define MMC_RSP_BUSY (1 << 3) /* card may send busy */
27#define MMC_RSP_OPCODE (1 << 4) /* response contains opcode */
28#define MMC_CMD_MASK (3 << 5) /* command type */
29#define MMC_CMD_AC (0 << 5)
30#define MMC_CMD_ADTC (1 << 5)
31#define MMC_CMD_BC (2 << 5)
32#define MMC_CMD_BCR (3 << 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/*
35 * These are the response types, and correspond to valid bit
36 * patterns of the above flags. One additional valid pattern
37 * is all zeros, which means we don't expect a response.
38 */
Russell Kinge9225172006-02-02 12:23:12 +000039#define MMC_RSP_NONE (0)
40#define MMC_RSP_R1 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
41#define MMC_RSP_R1B (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE|MMC_RSP_BUSY)
42#define MMC_RSP_R2 (MMC_RSP_PRESENT|MMC_RSP_136|MMC_RSP_CRC)
43#define MMC_RSP_R3 (MMC_RSP_PRESENT)
Pierre Ossman5c4e6f12007-05-21 20:23:20 +020044#define MMC_RSP_R4 (MMC_RSP_PRESENT)
Pierre Ossmanb2bcc792007-05-22 20:25:21 +020045#define MMC_RSP_R5 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
Philip Langdale6f949902007-01-04 07:04:47 -080046#define MMC_RSP_R6 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
Philip Langdalefba68bd2007-01-04 06:57:32 -080047#define MMC_RSP_R7 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
Russell Kinge9225172006-02-02 12:23:12 +000048
49#define mmc_resp_type(cmd) ((cmd)->flags & (MMC_RSP_PRESENT|MMC_RSP_136|MMC_RSP_CRC|MMC_RSP_BUSY|MMC_RSP_OPCODE))
50
51/*
52 * These are the command types.
53 */
Russell King5bd546a2006-02-17 20:23:29 +000054#define mmc_cmd_type(cmd) ((cmd)->flags & MMC_CMD_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 unsigned int retries; /* max number of retries */
57 unsigned int error; /* command error */
58
Pierre Ossman17b04292007-07-22 22:18:46 +020059/*
60 * Standard errno values are used for errors, but some have specific
61 * meaning in the MMC layer:
62 *
63 * ETIMEDOUT Card took too long to respond
64 * EILSEQ Basic format problem with the received or sent data
65 * (e.g. CRC check failed, incorrect opcode in response
66 * or bad end bit)
67 * EINVAL Request cannot be performed because of restrictions
68 * in hardware and/or the driver
69 * ENOMEDIUM Host can determine that the slot is empty and is
70 * actively failing requests
71 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 struct mmc_data *data; /* data segment associated with cmd */
Erik Hovland8573b802005-10-28 16:28:04 +010074 struct mmc_request *mrq; /* associated request */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
77struct mmc_data {
78 unsigned int timeout_ns; /* data timeout (in ns, max 80ms) */
79 unsigned int timeout_clks; /* data timeout (in clocks) */
Pavel Pisa2c171bf2006-05-19 21:48:03 +010080 unsigned int blksz; /* data block size */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned int blocks; /* number of blocks */
82 unsigned int error; /* data error */
83 unsigned int flags;
84
85#define MMC_DATA_WRITE (1 << 8)
86#define MMC_DATA_READ (1 << 9)
87#define MMC_DATA_STREAM (1 << 10)
88
89 unsigned int bytes_xfered;
90
91 struct mmc_command *stop; /* stop command */
Erik Hovland8573b802005-10-28 16:28:04 +010092 struct mmc_request *mrq; /* associated request */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 unsigned int sg_len; /* size of scatter list */
95 struct scatterlist *sg; /* I/O scatter list */
96};
97
98struct mmc_request {
99 struct mmc_command *cmd;
100 struct mmc_data *data;
101 struct mmc_command *stop;
102
103 void *done_data; /* completion data */
104 void (*done)(struct mmc_request *);/* completion function */
105};
106
107struct mmc_host;
108struct mmc_card;
109
Pierre Ossman67a61c42007-07-11 20:22:11 +0200110extern void mmc_wait_for_req(struct mmc_host *, struct mmc_request *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111extern int mmc_wait_for_cmd(struct mmc_host *, struct mmc_command *, int);
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100112extern int mmc_wait_for_app_cmd(struct mmc_host *, struct mmc_card *,
Pierre Ossman335eadf2005-09-06 15:18:50 -0700113 struct mmc_command *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Pierre Ossmanb146d262007-07-24 19:16:54 +0200115extern void mmc_set_data_timeout(struct mmc_data *, const struct mmc_card *);
Russell Kingd773d722006-09-07 15:57:12 +0100116
Nicolas Pitre2342f332007-06-30 16:21:52 +0200117extern int __mmc_claim_host(struct mmc_host *host, atomic_t *abort);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118extern void mmc_release_host(struct mmc_host *host);
119
Nicolas Pitre2342f332007-06-30 16:21:52 +0200120/**
121 * mmc_claim_host - exclusively claim a host
122 * @host: mmc host to claim
123 *
124 * Claim a host for a set of operations.
125 */
126static inline void mmc_claim_host(struct mmc_host *host)
127{
128 __mmc_claim_host(host, NULL);
129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif