blob: e2bbceb80725327718322c5e2b75123136d073cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/linux/mmc/card.h
3 *
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 *
8 * Card driver specific definitions.
9 */
10#ifndef LINUX_MMC_CARD_H
11#define LINUX_MMC_CARD_H
12
Paul Gortmaker313162d2012-01-30 11:46:54 -050013#include <linux/device.h>
Andrei Warkentin32780cd2011-04-11 17:02:15 -050014#include <linux/mod_devicetable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16struct mmc_cid {
17 unsigned int manfid;
18 char prod_name[8];
Bernie Thompson51e7e8b2013-02-27 12:19:17 -080019 unsigned char prv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 unsigned int serial;
21 unsigned short oemid;
22 unsigned short year;
23 unsigned char hwrev;
24 unsigned char fwrev;
25 unsigned char month;
26};
27
28struct mmc_csd {
Kyungmin Park6da24b72010-08-10 18:01:36 -070029 unsigned char structure;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 unsigned char mmca_vsn;
31 unsigned short cmdclass;
Shawn Lin4406ae22017-08-02 11:12:42 +080032 unsigned short taac_clks;
33 unsigned int taac_ns;
Arindam Nath3a303512011-05-05 12:19:03 +053034 unsigned int c_size;
Russell King37be4e72006-05-02 17:24:59 +010035 unsigned int r2w_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 unsigned int max_dtr;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -070037 unsigned int erase_size; /* In sectors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 unsigned int read_blkbits;
Russell Kinga6f6c962006-01-03 22:38:44 +000039 unsigned int write_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 unsigned int capacity;
Russell Kinga6f6c962006-01-03 22:38:44 +000041 unsigned int read_partial:1,
42 read_misalign:1,
Russell Kingce11a162006-01-04 12:40:39 +000043 write_partial:1,
Sascha Hauer3d705d12014-08-19 10:45:51 +020044 write_misalign:1,
45 dsr_imp:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
Philip Langdalebce40a32006-10-21 12:35:02 +020048struct mmc_ext_csd {
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -070049 u8 rev;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -070050 u8 erase_group_def;
51 u8 sec_feature_support;
Andrei Warkentinf4c55222011-03-31 18:40:00 -050052 u8 rel_sectors;
53 u8 rel_param;
Andrei Warkentin371a6892011-04-11 18:10:25 -050054 u8 part_config;
Seungwon Jeon881d1c22011-10-14 14:03:21 +090055 u8 cache_ctrl;
Adrian Hunterb2499512011-08-29 16:42:11 +030056 u8 rst_n_function;
Seungwon Jeonabd9ac12013-02-06 17:01:43 +090057 u8 max_packed_writes;
58 u8 max_packed_reads;
59 u8 packed_event_en;
Andrei Warkentin371a6892011-04-11 18:10:25 -050060 unsigned int part_time; /* Units: ms */
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -070061 unsigned int sa_timeout; /* Units: 100ns */
Seungwon Jeonb23cf0b2011-09-23 14:15:29 +090062 unsigned int generic_cmd6_time; /* Units: 10ms */
Girish K Sbec87262011-10-13 12:04:16 +053063 unsigned int power_off_longtime; /* Units: ms */
Ulf Hanssone6c08582012-10-05 12:45:39 -040064 u8 power_off_notification; /* state */
Philip Langdalebce40a32006-10-21 12:35:02 +020065 unsigned int hs_max_dtr;
Seungwon Jeon577fb132014-04-23 17:08:44 +090066 unsigned int hs200_max_dtr;
Seungwon Jeon96cf5f02012-04-25 16:17:37 +090067#define MMC_HIGH_26_MAX_DTR 26000000
68#define MMC_HIGH_52_MAX_DTR 52000000
69#define MMC_HIGH_DDR_MAX_DTR 52000000
70#define MMC_HS200_MAX_DTR 200000000
Pierre Ossman85a18ad2007-02-17 22:15:27 +010071 unsigned int sectors;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -070072 unsigned int hc_erase_size; /* In sectors */
73 unsigned int hc_erase_timeout; /* In milliseconds */
74 unsigned int sec_trim_mult; /* Secure trim multiplier */
75 unsigned int sec_erase_mult; /* Secure erase multiplier */
76 unsigned int trim_timeout; /* In milliseconds */
Grégory Soutadé69803d42014-09-15 17:47:09 +020077 bool partition_setting_completed; /* enable bit */
Chuanxiao Dong709de99d2011-01-22 04:09:41 +080078 unsigned long long enhanced_area_offset; /* Units: Byte */
79 unsigned int enhanced_area_size; /* Units: KB */
Seungwon Jeon881d1c22011-10-14 14:03:21 +090080 unsigned int cache_size; /* Units: KB */
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -040081 bool hpi_en; /* HPI enablebit */
82 bool hpi; /* HPI support bit */
83 unsigned int hpi_cmd; /* cmd used as HPI */
Jaehoon Chung950d56a2012-09-17 08:42:02 +000084 bool bkops; /* background support bit */
Alexey Skidanov0501be62015-01-29 10:49:43 +020085 bool man_bkops_en; /* manual bkops enable bit */
Uri Yanaiefff8e72017-02-07 18:00:01 +020086 bool auto_bkops_en; /* auto bkops enable bit */
Saugata Das42659002011-12-21 13:09:17 +053087 unsigned int data_sector_size; /* 512 bytes or 4KB */
88 unsigned int data_tag_unit_size; /* DATA TAG UNIT size */
Johan Rudholmadd710e2011-12-02 08:51:06 +010089 unsigned int boot_ro_lock; /* ro lock support */
90 bool boot_ro_lockable;
Gwendal Grignou0f762422014-10-16 11:27:16 -070091 bool ffu_capable; /* Firmware upgrade support */
Adrian Hunterb658af72017-03-13 14:36:37 +020092 bool cmdq_en; /* Command Queue enabled */
Adrian Hunter925ff3a2016-11-29 12:09:16 +020093 bool cmdq_support; /* Command Queue supported */
94 unsigned int cmdq_depth; /* Command Queue depth */
Gwendal Grignou0f762422014-10-16 11:27:16 -070095#define MMC_FIRMWARE_LEN 8
96 u8 fwrev[MMC_FIRMWARE_LEN]; /* FW version */
Zhang, YiX Xc148e9f2013-01-08 06:07:39 +000097 u8 raw_exception_status; /* 54 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -070098 u8 raw_partition_support; /* 160 */
Loic Pallardy090d25f2012-11-17 18:08:24 -050099 u8 raw_rpmb_size_mult; /* 168 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -0700100 u8 raw_erased_mem_count; /* 181 */
Shawn Lin81ac2af2016-05-26 09:56:22 +0800101 u8 strobe_support; /* 184 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -0700102 u8 raw_ext_csd_structure; /* 194 */
103 u8 raw_card_type; /* 196 */
Adrian Hunterb097e072015-02-06 14:12:57 +0200104 u8 raw_driver_strength; /* 197 */
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400105 u8 out_of_int_time; /* 198 */
Fredrik Soderstedt60443712013-04-23 16:27:07 +0200106 u8 raw_pwr_cl_52_195; /* 200 */
107 u8 raw_pwr_cl_26_195; /* 201 */
108 u8 raw_pwr_cl_52_360; /* 202 */
109 u8 raw_pwr_cl_26_360; /* 203 */
110 u8 raw_s_a_timeout; /* 217 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -0700111 u8 raw_hc_erase_gap_size; /* 221 */
112 u8 raw_erase_timeout_mult; /* 223 */
113 u8 raw_hc_erase_grp_size; /* 224 */
114 u8 raw_sec_trim_mult; /* 229 */
115 u8 raw_sec_erase_mult; /* 230 */
116 u8 raw_sec_feature_support;/* 231 */
117 u8 raw_trim_mult; /* 232 */
Fredrik Soderstedt60443712013-04-23 16:27:07 +0200118 u8 raw_pwr_cl_200_195; /* 236 */
119 u8 raw_pwr_cl_200_360; /* 237 */
120 u8 raw_pwr_cl_ddr_52_195; /* 238 */
121 u8 raw_pwr_cl_ddr_52_360; /* 239 */
Seungwon Jeon0a5b6432014-04-23 17:14:58 +0900122 u8 raw_pwr_cl_ddr_200_360; /* 253 */
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000123 u8 raw_bkops_status; /* 246 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -0700124 u8 raw_sectors[4]; /* 212 - 4 bytes */
Jungseung Lee46bc5c42016-12-22 12:37:34 +0900125 u8 pre_eol_info; /* 267 */
126 u8 device_life_time_est_typ_a; /* 268 */
127 u8 device_life_time_est_typ_b; /* 269 */
Kyungmin Parkb3bf9152011-10-18 09:34:04 +0900128
129 unsigned int feature_support;
130#define MMC_DISCARD_FEATURE BIT(0) /* CMD38 feature */
Philip Langdalebce40a32006-10-21 12:35:02 +0200131};
132
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700133struct sd_scr {
134 unsigned char sda_vsn;
Arindam Nath013909c2011-05-05 12:18:58 +0530135 unsigned char sda_spec3;
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700136 unsigned char bus_widths;
137#define SD_SCR_BUS_WIDTH_1 (1<<0)
138#define SD_SCR_BUS_WIDTH_4 (1<<2)
Andrei Warkentinf0d89972011-05-23 15:06:38 -0500139 unsigned char cmds;
140#define SD_SCR_CMD20_SUPPORT (1<<0)
141#define SD_SCR_CMD23_SUPPORT (1<<1)
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700142};
143
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700144struct sd_ssr {
145 unsigned int au; /* In sectors */
146 unsigned int erase_timeout; /* In milliseconds */
147 unsigned int erase_offset; /* In milliseconds */
148};
149
Pierre Ossman7ccd2662006-11-08 23:03:10 +0100150struct sd_switch_caps {
151 unsigned int hs_max_dtr;
Arindam Nath49c468f2011-05-05 12:19:01 +0530152 unsigned int uhs_max_dtr;
Qiang Liufffe5d52011-11-08 08:43:08 -0500153#define HIGH_SPEED_MAX_DTR 50000000
Arindam Nath49c468f2011-05-05 12:19:01 +0530154#define UHS_SDR104_MAX_DTR 208000000
155#define UHS_SDR50_MAX_DTR 100000000
156#define UHS_DDR50_MAX_DTR 50000000
157#define UHS_SDR25_MAX_DTR UHS_DDR50_MAX_DTR
158#define UHS_SDR12_MAX_DTR 25000000
yinbo.zhua0d47662018-05-24 11:38:25 +0800159#define DEFAULT_SPEED_MAX_DTR UHS_SDR12_MAX_DTR
Arindam Nath013909c2011-05-05 12:18:58 +0530160 unsigned int sd3_bus_mode;
Arindam Nath49c468f2011-05-05 12:19:01 +0530161#define UHS_SDR12_BUS_SPEED 0
Qiang Liufffe5d52011-11-08 08:43:08 -0500162#define HIGH_SPEED_BUS_SPEED 1
Arindam Nath49c468f2011-05-05 12:19:01 +0530163#define UHS_SDR25_BUS_SPEED 1
164#define UHS_SDR50_BUS_SPEED 2
165#define UHS_SDR104_BUS_SPEED 3
166#define UHS_DDR50_BUS_SPEED 4
167
Qiang Liufffe5d52011-11-08 08:43:08 -0500168#define SD_MODE_HIGH_SPEED (1 << HIGH_SPEED_BUS_SPEED)
Arindam Nath49c468f2011-05-05 12:19:01 +0530169#define SD_MODE_UHS_SDR12 (1 << UHS_SDR12_BUS_SPEED)
170#define SD_MODE_UHS_SDR25 (1 << UHS_SDR25_BUS_SPEED)
171#define SD_MODE_UHS_SDR50 (1 << UHS_SDR50_BUS_SPEED)
172#define SD_MODE_UHS_SDR104 (1 << UHS_SDR104_BUS_SPEED)
173#define SD_MODE_UHS_DDR50 (1 << UHS_DDR50_BUS_SPEED)
Arindam Nath013909c2011-05-05 12:18:58 +0530174 unsigned int sd3_drv_type;
Arindam Nathd6d50a12011-05-05 12:18:59 +0530175#define SD_DRIVER_TYPE_B 0x01
176#define SD_DRIVER_TYPE_A 0x02
177#define SD_DRIVER_TYPE_C 0x04
178#define SD_DRIVER_TYPE_D 0x08
Arindam Nath013909c2011-05-05 12:18:58 +0530179 unsigned int sd3_curr_limit;
Arindam Nath5371c922011-05-05 12:19:02 +0530180#define SD_SET_CURRENT_LIMIT_200 0
181#define SD_SET_CURRENT_LIMIT_400 1
182#define SD_SET_CURRENT_LIMIT_600 2
183#define SD_SET_CURRENT_LIMIT_800 3
Philip Rakity0aa67702012-05-27 18:36:33 -0700184#define SD_SET_CURRENT_NO_CHANGE (-1)
Arindam Nath5371c922011-05-05 12:19:02 +0530185
186#define SD_MAX_CURRENT_200 (1 << SD_SET_CURRENT_LIMIT_200)
187#define SD_MAX_CURRENT_400 (1 << SD_SET_CURRENT_LIMIT_400)
188#define SD_MAX_CURRENT_600 (1 << SD_SET_CURRENT_LIMIT_600)
189#define SD_MAX_CURRENT_800 (1 << SD_SET_CURRENT_LIMIT_800)
Pierre Ossman7ccd2662006-11-08 23:03:10 +0100190};
191
Pierre Ossman35c66c12007-06-11 20:25:43 +0200192struct sdio_cccr {
193 unsigned int sdio_vsn;
194 unsigned int sd_vsn;
195 unsigned int multi_block:1,
196 low_speed:1,
197 wide_bus:1,
198 high_power:1,
Ohad Ben-Cohen006ebd52009-09-22 16:45:07 -0700199 high_speed:1,
200 disable_cd:1;
Pierre Ossman35c66c12007-06-11 20:25:43 +0200201};
202
Pierre Ossman1a632f82007-07-30 15:15:30 +0200203struct sdio_cis {
204 unsigned short vendor;
205 unsigned short device;
206 unsigned short blksize;
207 unsigned int max_dtr;
208};
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210struct mmc_host;
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200211struct sdio_func;
Pierre Ossman1a632f82007-07-30 15:15:30 +0200212struct sdio_func_tuple;
Adrian Hunter7b410d02017-03-13 14:36:36 +0200213struct mmc_queue_req;
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200214
215#define SDIO_MAX_FUNCS 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Namjae Jeone0c368d2011-10-06 23:41:38 +0900217/* The number of MMC physical partitions. These consist of:
Yi Sunb36839942014-08-13 13:34:01 +0800218 * boot partitions (2), general purpose partitions (4) and
219 * RPMB partition (1) in MMC v4.4.
Namjae Jeone0c368d2011-10-06 23:41:38 +0900220 */
221#define MMC_NUM_BOOT_PARTITION 2
222#define MMC_NUM_GP_PARTITION 4
Yi Sunb36839942014-08-13 13:34:01 +0800223#define MMC_NUM_PHY_PARTITION 7
Namjae Jeona6029e12011-10-13 00:43:14 +0900224#define MAX_MMC_PART_NAME_LEN 20
Namjae Jeone0c368d2011-10-06 23:41:38 +0900225
226/*
227 * MMC Physical partitions
228 */
229struct mmc_part {
230 unsigned int size; /* partition size (in bytes) */
231 unsigned int part_cfg; /* partition type */
Namjae Jeona6029e12011-10-13 00:43:14 +0900232 char name[MAX_MMC_PART_NAME_LEN];
Namjae Jeone0c368d2011-10-06 23:41:38 +0900233 bool force_ro; /* to make boot parts RO by default */
Johan Rudholmadd710e2011-12-02 08:51:06 +0100234 unsigned int area_type;
235#define MMC_BLK_DATA_AREA_MAIN (1<<0)
236#define MMC_BLK_DATA_AREA_BOOT (1<<1)
237#define MMC_BLK_DATA_AREA_GP (1<<2)
Loic Pallardy090d25f2012-11-17 18:08:24 -0500238#define MMC_BLK_DATA_AREA_RPMB (1<<3)
Namjae Jeone0c368d2011-10-06 23:41:38 +0900239};
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*
242 * MMC device
243 */
244struct mmc_card {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 struct mmc_host *host; /* the host this device belongs to */
246 struct device dev; /* the device */
Ulf Hansson69041152013-09-13 11:31:33 +0200247 u32 ocr; /* the current OCR setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 unsigned int rca; /* relative card address of device */
Pierre Ossman9c2c0af2006-12-26 15:25:58 +0100249 unsigned int type; /* card type */
250#define MMC_TYPE_MMC 0 /* MMC card */
251#define MMC_TYPE_SD 1 /* SD card */
Pierre Ossman5c4e6f12007-05-21 20:23:20 +0200252#define MMC_TYPE_SDIO 2 /* SDIO card */
Michal Miroslaw7310ece82010-08-10 18:01:40 -0700253#define MMC_TYPE_SD_COMBO 3 /* SD combo (IO+mem) card */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 unsigned int state; /* (our) card state */
Ohad Ben-Cohen7c979ec2009-09-22 16:45:18 -0700255 unsigned int quirks; /* card quirks */
harish_kandiga@mentor.comebc5a1b2018-04-10 12:30:31 +0530256 unsigned int quirk_max_rate; /* max rate set by quirks */
Ohad Ben-Cohen7c979ec2009-09-22 16:45:18 -0700257#define MMC_QUIRK_LENIENT_FN0 (1<<0) /* allow SDIO FN0 writes outside of the VS CCCR range */
Bing Zhao3fb7fb42010-03-05 13:43:25 -0800258#define MMC_QUIRK_BLKSZ_FOR_BYTE_MODE (1<<1) /* use func->cur_blksize */
259 /* for byte mode */
Grazvydas Ignotas6f51be32010-08-10 18:01:50 -0700260#define MMC_QUIRK_NONSTD_SDIO (1<<2) /* non-standard SDIO card attached */
261 /* (missing CIA registers) */
Ohad Ben-Coheneab40682011-04-05 17:50:14 +0300262#define MMC_QUIRK_NONSTD_FUNC_IF (1<<4) /* SDIO card has nonstd function interfaces */
Ohad Ben-Cohen2059a022011-04-05 18:02:25 +0300263#define MMC_QUIRK_DISABLE_CD (1<<5) /* disconnect CD/DAT[3] resistor */
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -0500264#define MMC_QUIRK_INAND_CMD38 (1<<6) /* iNAND devices have broken CMD38 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500265#define MMC_QUIRK_BLK_NO_CMD23 (1<<7) /* Avoid CMD23 for regular multiblock */
Stefan Nilsson XK9a0da642011-09-15 17:43:04 +0200266#define MMC_QUIRK_BROKEN_BYTE_MODE_512 (1<<8) /* Avoid sending 512 bytes in */
Bing Zhaoe5624052013-11-26 15:39:20 -0800267 /* byte mode */
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +0100268#define MMC_QUIRK_LONG_READ_TIME (1<<9) /* Data read time > CSD says */
Ian Chen3550ccd2012-08-29 15:05:36 +0900269#define MMC_QUIRK_SEC_ERASE_TRIM_BROKEN (1<<10) /* Skip secure for erase/trim */
Bing Zhaoe5624052013-11-26 15:39:20 -0800270#define MMC_QUIRK_BROKEN_IRQ_POLLING (1<<11) /* Polling SDIO_CCCR_INTx could create a fake interrupt */
Shawn Linb5b4ff02015-08-12 13:08:32 +0800271#define MMC_QUIRK_TRIM_BROKEN (1<<12) /* Skip trim */
Pratibhasagar V53202262016-06-09 18:09:31 -0400272#define MMC_QUIRK_BROKEN_HPI (1<<13) /* Disable broken HPI support */
Shawn Linb5b4ff02015-08-12 13:08:32 +0800273
Adrian Hunter9d4579a2017-03-13 14:36:38 +0200274 bool reenable_cmdq; /* Re-enable Command Queue */
275
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700276 unsigned int erase_size; /* erase size in sectors */
277 unsigned int erase_shift; /* if erase unit is power 2 */
278 unsigned int pref_erase; /* in sectors */
David Jander642c28a2015-06-23 11:43:52 +0200279 unsigned int eg_boundary; /* don't cross erase-group boundaries */
Avri Altman01904ff2019-02-06 13:28:05 +0200280 unsigned int erase_arg; /* erase / trim / discard */
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700281 u8 erased_byte; /* value of erased bytes */
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 u32 raw_cid[4]; /* raw card CID */
284 u32 raw_csd[4]; /* raw card CSD */
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700285 u32 raw_scr[2]; /* raw card SCR */
Uri Yanai5275a652016-08-14 11:46:36 +0300286 u32 raw_ssr[16]; /* raw card SSR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct mmc_cid cid; /* card identification */
288 struct mmc_csd csd; /* card specific */
Philip Langdalebce40a32006-10-21 12:35:02 +0200289 struct mmc_ext_csd ext_csd; /* mmc v4 extended card specific */
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700290 struct sd_scr scr; /* extra SD information */
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700291 struct sd_ssr ssr; /* yet more SD information */
Pierre Ossman7ccd2662006-11-08 23:03:10 +0100292 struct sd_switch_caps sw_caps; /* switch (CMD6) caps */
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200293
294 unsigned int sdio_funcs; /* number of SDIO functions */
Pierre Ossman35c66c12007-06-11 20:25:43 +0200295 struct sdio_cccr cccr; /* common card info */
Pierre Ossman1a632f82007-07-30 15:15:30 +0200296 struct sdio_cis cis; /* common tuple info */
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200297 struct sdio_func *sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */
Stefan Nilsson XK06e89352011-05-11 17:48:05 +0200298 struct sdio_func *sdio_single_irq; /* SDIO function when only one IRQ active */
Pierre Ossman759bdc72007-09-19 18:42:16 +0200299 unsigned num_info; /* number of info strings */
300 const char **info; /* info strings */
Pierre Ossman1a632f82007-07-30 15:15:30 +0200301 struct sdio_func_tuple *tuples; /* unknown common tuples */
Haavard Skinnemoenf4b7f922008-07-24 14:18:58 +0200302
Arindam Nath49c468f2011-05-05 12:19:01 +0530303 unsigned int sd_bus_speed; /* Bus Speed Mode set for the card */
Seungwon Jeon2415c0e2014-04-23 17:07:58 +0900304 unsigned int mmc_avail_type; /* supported device type by both host and card */
Adrian Hunter3853a042015-02-06 14:12:56 +0200305 unsigned int drive_strength; /* for UHS-I, HS200 or HS400 */
Arindam Nath49c468f2011-05-05 12:19:01 +0530306
Haavard Skinnemoenf4b7f922008-07-24 14:18:58 +0200307 struct dentry *debugfs_root;
Namjae Jeone0c368d2011-10-06 23:41:38 +0900308 struct mmc_part part[MMC_NUM_PHY_PARTITION]; /* physical partitions */
309 unsigned int nr_parts;
Adrian Hunter7b410d02017-03-13 14:36:36 +0200310
Adrian Hunter7b410d02017-03-13 14:36:36 +0200311 unsigned int bouncesz; /* Bounce buffer size */
Zachary Haysdcf6e2e2019-02-07 10:03:08 -0500312 struct workqueue_struct *complete_wq; /* Private workqueue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313};
314
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900315static inline bool mmc_large_sector(struct mmc_card *card)
316{
317 return card->ext_csd.data_sector_size == 4096;
318}
319
Ulf Hansson33e6d742017-04-24 13:41:55 -0500320bool mmc_card_is_blockaddr(struct mmc_card *card);
321
Pierre Ossman9c2c0af2006-12-26 15:25:58 +0100322#define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC)
323#define mmc_card_sd(c) ((c)->type == MMC_TYPE_SD)
Pierre Ossman5c4e6f12007-05-21 20:23:20 +0200324#define mmc_card_sdio(c) ((c)->type == MMC_TYPE_SDIO)
Pierre Ossman9c2c0af2006-12-26 15:25:58 +0100325
Robert P. J. Day100e9182011-05-27 16:04:03 -0400326#endif /* LINUX_MMC_CARD_H */