blob: 6f13f15e95f0280d7757fb802981264efc660b2d [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/include/linux/mmc/card.h
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Card driver specific definitions.
6 */
7#ifndef LINUX_MMC_CARD_H
8#define LINUX_MMC_CARD_H
9
Paul Gortmaker313162d2012-01-30 11:46:54 -050010#include <linux/device.h>
Andrei Warkentin32780cd2011-04-11 17:02:15 -050011#include <linux/mod_devicetable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13struct mmc_cid {
14 unsigned int manfid;
15 char prod_name[8];
Bernie Thompson51e7e8b2013-02-27 12:19:17 -080016 unsigned char prv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 unsigned int serial;
18 unsigned short oemid;
19 unsigned short year;
20 unsigned char hwrev;
21 unsigned char fwrev;
22 unsigned char month;
23};
24
25struct mmc_csd {
Kyungmin Park6da24b72010-08-10 18:01:36 -070026 unsigned char structure;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 unsigned char mmca_vsn;
28 unsigned short cmdclass;
Shawn Lin4406ae22017-08-02 11:12:42 +080029 unsigned short taac_clks;
30 unsigned int taac_ns;
Arindam Nath3a303512011-05-05 12:19:03 +053031 unsigned int c_size;
Russell King37be4e72006-05-02 17:24:59 +010032 unsigned int r2w_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 unsigned int max_dtr;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -070034 unsigned int erase_size; /* In sectors */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned int read_blkbits;
Russell Kinga6f6c962006-01-03 22:38:44 +000036 unsigned int write_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 unsigned int capacity;
Russell Kinga6f6c962006-01-03 22:38:44 +000038 unsigned int read_partial:1,
39 read_misalign:1,
Russell Kingce11a162006-01-04 12:40:39 +000040 write_partial:1,
Sascha Hauer3d705d12014-08-19 10:45:51 +020041 write_misalign:1,
42 dsr_imp:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
Philip Langdalebce40a32006-10-21 12:35:02 +020045struct mmc_ext_csd {
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -070046 u8 rev;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -070047 u8 erase_group_def;
48 u8 sec_feature_support;
Andrei Warkentinf4c55222011-03-31 18:40:00 -050049 u8 rel_sectors;
50 u8 rel_param;
Krishna Konda064f7e52020-05-01 19:23:01 +053051 bool enhanced_rpmb_supported;
Andrei Warkentin371a6892011-04-11 18:10:25 -050052 u8 part_config;
Seungwon Jeon881d1c22011-10-14 14:03:21 +090053 u8 cache_ctrl;
Adrian Hunterb2499512011-08-29 16:42:11 +030054 u8 rst_n_function;
Seungwon Jeonabd9ac12013-02-06 17:01:43 +090055 u8 max_packed_writes;
56 u8 max_packed_reads;
57 u8 packed_event_en;
Andrei Warkentin371a6892011-04-11 18:10:25 -050058 unsigned int part_time; /* Units: ms */
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -070059 unsigned int sa_timeout; /* Units: 100ns */
Seungwon Jeonb23cf0b2011-09-23 14:15:29 +090060 unsigned int generic_cmd6_time; /* Units: 10ms */
Girish K Sbec87262011-10-13 12:04:16 +053061 unsigned int power_off_longtime; /* Units: ms */
Ulf Hanssone6c08582012-10-05 12:45:39 -040062 u8 power_off_notification; /* state */
Philip Langdalebce40a32006-10-21 12:35:02 +020063 unsigned int hs_max_dtr;
Seungwon Jeon577fb132014-04-23 17:08:44 +090064 unsigned int hs200_max_dtr;
Seungwon Jeon96cf5f02012-04-25 16:17:37 +090065#define MMC_HIGH_26_MAX_DTR 26000000
66#define MMC_HIGH_52_MAX_DTR 52000000
67#define MMC_HIGH_DDR_MAX_DTR 52000000
68#define MMC_HS200_MAX_DTR 200000000
Pierre Ossman85a18ad2007-02-17 22:15:27 +010069 unsigned int sectors;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -070070 unsigned int hc_erase_size; /* In sectors */
71 unsigned int hc_erase_timeout; /* In milliseconds */
72 unsigned int sec_trim_mult; /* Secure trim multiplier */
73 unsigned int sec_erase_mult; /* Secure erase multiplier */
74 unsigned int trim_timeout; /* In milliseconds */
Grégory Soutadé69803d42014-09-15 17:47:09 +020075 bool partition_setting_completed; /* enable bit */
Chuanxiao Dong709de99d2011-01-22 04:09:41 +080076 unsigned long long enhanced_area_offset; /* Units: Byte */
77 unsigned int enhanced_area_size; /* Units: KB */
Seungwon Jeon881d1c22011-10-14 14:03:21 +090078 unsigned int cache_size; /* Units: KB */
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -040079 bool hpi_en; /* HPI enablebit */
80 bool hpi; /* HPI support bit */
81 unsigned int hpi_cmd; /* cmd used as HPI */
Jaehoon Chung950d56a2012-09-17 08:42:02 +000082 bool bkops; /* background support bit */
Alexey Skidanov0501be62015-01-29 10:49:43 +020083 bool man_bkops_en; /* manual bkops enable bit */
Uri Yanaiefff8e72017-02-07 18:00:01 +020084 bool auto_bkops_en; /* auto bkops enable bit */
Saugata Das42659002011-12-21 13:09:17 +053085 unsigned int data_sector_size; /* 512 bytes or 4KB */
86 unsigned int data_tag_unit_size; /* DATA TAG UNIT size */
Johan Rudholmadd710e2011-12-02 08:51:06 +010087 unsigned int boot_ro_lock; /* ro lock support */
88 bool boot_ro_lockable;
Gwendal Grignou0f762422014-10-16 11:27:16 -070089 bool ffu_capable; /* Firmware upgrade support */
Adrian Hunterb658af72017-03-13 14:36:37 +020090 bool cmdq_en; /* Command Queue enabled */
Adrian Hunter925ff3a2016-11-29 12:09:16 +020091 bool cmdq_support; /* Command Queue supported */
92 unsigned int cmdq_depth; /* Command Queue depth */
Gwendal Grignou0f762422014-10-16 11:27:16 -070093#define MMC_FIRMWARE_LEN 8
94 u8 fwrev[MMC_FIRMWARE_LEN]; /* FW version */
Zhang, YiX Xc148e9f2013-01-08 06:07:39 +000095 u8 raw_exception_status; /* 54 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -070096 u8 raw_partition_support; /* 160 */
Loic Pallardy090d25f2012-11-17 18:08:24 -050097 u8 raw_rpmb_size_mult; /* 168 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -070098 u8 raw_erased_mem_count; /* 181 */
Shawn Lin81ac2af2016-05-26 09:56:22 +080099 u8 strobe_support; /* 184 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -0700100 u8 raw_ext_csd_structure; /* 194 */
101 u8 raw_card_type; /* 196 */
Adrian Hunterb097e072015-02-06 14:12:57 +0200102 u8 raw_driver_strength; /* 197 */
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400103 u8 out_of_int_time; /* 198 */
Fredrik Soderstedt60443712013-04-23 16:27:07 +0200104 u8 raw_pwr_cl_52_195; /* 200 */
105 u8 raw_pwr_cl_26_195; /* 201 */
106 u8 raw_pwr_cl_52_360; /* 202 */
107 u8 raw_pwr_cl_26_360; /* 203 */
108 u8 raw_s_a_timeout; /* 217 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -0700109 u8 raw_hc_erase_gap_size; /* 221 */
110 u8 raw_erase_timeout_mult; /* 223 */
111 u8 raw_hc_erase_grp_size; /* 224 */
112 u8 raw_sec_trim_mult; /* 229 */
113 u8 raw_sec_erase_mult; /* 230 */
114 u8 raw_sec_feature_support;/* 231 */
115 u8 raw_trim_mult; /* 232 */
Fredrik Soderstedt60443712013-04-23 16:27:07 +0200116 u8 raw_pwr_cl_200_195; /* 236 */
117 u8 raw_pwr_cl_200_360; /* 237 */
118 u8 raw_pwr_cl_ddr_52_195; /* 238 */
119 u8 raw_pwr_cl_ddr_52_360; /* 239 */
Seungwon Jeon0a5b6432014-04-23 17:14:58 +0900120 u8 raw_pwr_cl_ddr_200_360; /* 253 */
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000121 u8 raw_bkops_status; /* 246 */
Philip Rakityf39b2dd92011-07-07 09:04:55 -0700122 u8 raw_sectors[4]; /* 212 - 4 bytes */
Jungseung Lee46bc5c42016-12-22 12:37:34 +0900123 u8 pre_eol_info; /* 267 */
124 u8 device_life_time_est_typ_a; /* 268 */
125 u8 device_life_time_est_typ_b; /* 269 */
Kyungmin Parkb3bf9152011-10-18 09:34:04 +0900126
127 unsigned int feature_support;
128#define MMC_DISCARD_FEATURE BIT(0) /* CMD38 feature */
Philip Langdalebce40a32006-10-21 12:35:02 +0200129};
130
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700131struct sd_scr {
132 unsigned char sda_vsn;
Arindam Nath013909c2011-05-05 12:18:58 +0530133 unsigned char sda_spec3;
Avri Altman68539e22019-02-06 13:28:06 +0200134 unsigned char sda_spec4;
135 unsigned char sda_specx;
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 {
Bradley Bolenf3d7c222019-11-16 20:00:45 -0500230 u64 size; /* partition size (in bytes) */
Namjae Jeone0c368d2011-10-06 23:41:38 +0900231 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 */
Ulf Hansson2ac55d52019-10-17 15:25:36 +0200295 atomic_t sdio_funcs_probed; /* number of probed SDIO funcs */
Pierre Ossman35c66c12007-06-11 20:25:43 +0200296 struct sdio_cccr cccr; /* common card info */
Pierre Ossman1a632f82007-07-30 15:15:30 +0200297 struct sdio_cis cis; /* common tuple info */
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200298 struct sdio_func *sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */
Stefan Nilsson XK06e89352011-05-11 17:48:05 +0200299 struct sdio_func *sdio_single_irq; /* SDIO function when only one IRQ active */
Pali Rohár78366e92020-07-27 15:38:35 +0200300 u8 major_rev; /* major revision number */
301 u8 minor_rev; /* minor revision number */
Pierre Ossman759bdc72007-09-19 18:42:16 +0200302 unsigned num_info; /* number of info strings */
303 const char **info; /* info strings */
Pierre Ossman1a632f82007-07-30 15:15:30 +0200304 struct sdio_func_tuple *tuples; /* unknown common tuples */
Haavard Skinnemoenf4b7f922008-07-24 14:18:58 +0200305
Arindam Nath49c468f2011-05-05 12:19:01 +0530306 unsigned int sd_bus_speed; /* Bus Speed Mode set for the card */
Seungwon Jeon2415c0e2014-04-23 17:07:58 +0900307 unsigned int mmc_avail_type; /* supported device type by both host and card */
Adrian Hunter3853a042015-02-06 14:12:56 +0200308 unsigned int drive_strength; /* for UHS-I, HS200 or HS400 */
Arindam Nath49c468f2011-05-05 12:19:01 +0530309
Haavard Skinnemoenf4b7f922008-07-24 14:18:58 +0200310 struct dentry *debugfs_root;
Namjae Jeone0c368d2011-10-06 23:41:38 +0900311 struct mmc_part part[MMC_NUM_PHY_PARTITION]; /* physical partitions */
312 unsigned int nr_parts;
Adrian Hunter7b410d02017-03-13 14:36:36 +0200313
Adrian Hunter7b410d02017-03-13 14:36:36 +0200314 unsigned int bouncesz; /* Bounce buffer size */
Zachary Haysdcf6e2e2019-02-07 10:03:08 -0500315 struct workqueue_struct *complete_wq; /* Private workqueue */
Sahitya Tummalaf45304d2021-06-30 11:04:47 +0530316
317 ANDROID_VENDOR_DATA(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318};
319
Seungwon Jeonce39f9d2013-02-06 17:02:46 +0900320static inline bool mmc_large_sector(struct mmc_card *card)
321{
322 return card->ext_csd.data_sector_size == 4096;
323}
324
Ulf Hansson33e6d742017-04-24 13:41:55 -0500325bool mmc_card_is_blockaddr(struct mmc_card *card);
326
Pierre Ossman9c2c0af2006-12-26 15:25:58 +0100327#define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC)
328#define mmc_card_sd(c) ((c)->type == MMC_TYPE_SD)
Pierre Ossman5c4e6f12007-05-21 20:23:20 +0200329#define mmc_card_sdio(c) ((c)->type == MMC_TYPE_SDIO)
Pierre Ossman9c2c0af2006-12-26 15:25:58 +0100330
Robert P. J. Day100e9182011-05-27 16:04:03 -0400331#endif /* LINUX_MMC_CARD_H */