📄 card.h
字号:
/* * linux/include/linux/mmc/card.h * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Card driver specific definitions. */#ifndef LINUX_MMC_CARD_H#define LINUX_MMC_CARD_H/** * container_of - cast a member of a structure out to the containing structure * @ptr: the pointer to the member. * @type: the type of the container struct this is embedded in. * @member: the name of the member within the struct. * */#define container_of(ptr, type, member) ({ \ const typeof( ((type *)0)->member ) *__mptr = (ptr); \ (type *)( (char *)__mptr - offsetof(type,member) );})#include <linux/mmc/mmc.h>struct mmc_cid { unsigned int manfid; char prod_name[8]; unsigned int serial; unsigned short oemid; unsigned short year; unsigned char hwrev; unsigned char fwrev; unsigned char month;};struct mmc_csd { unsigned char mmca_vsn; unsigned short cmdclass; unsigned short tacc_clks; unsigned int tacc_ns; unsigned int r2w_factor; unsigned int max_dtr; unsigned int read_blkbits; unsigned int write_blkbits; unsigned int capacity; unsigned int read_partial:1, read_misalign:1, write_partial:1, write_misalign:1;};struct sd_scr { unsigned char sda_vsn; unsigned char bus_widths;#define SD_SCR_BUS_WIDTH_1 (1<<0)#define SD_SCR_BUS_WIDTH_4 (1<<2)};#ifdef CONFIG_MMC_SUPPORT_MOVINANDstruct mmc_ext_csd { u8 s_cmd_set; u32 sec_count; u8 MIN_PERF_W_8_52; u8 MIN_PERF_R_8_52; u8 MIN_PERF_W_8_26_4_52; u8 MIN_PERF_R_8_26_4_52; u8 MIN_PERF_W_4_26; u8 MIN_PERF_R_4_26; u8 PWR_CL_26_360; u8 PWR_CL_52_360; u8 PWR_CL_26_195; u8 PWR_CL_52_195; u8 card_type; u8 csd_structure; u8 ext_csd_rev; u8 cmd_set; u8 cmd_set_rev; u8 power_class; u8 hs_timing; u8 bus_width;};#endifstruct mmc_host;/* * MMC device */struct mmc_card { struct list_head node; /* node in hosts devices list */ struct mmc_host *host; /* the host this device belongs to */#if 0 struct device dev; /* the device */#endif unsigned int rca; /* relative card address of device */ unsigned int state; /* (our) card state */#define MMC_STATE_PRESENT (1<<0) /* present in sysfs */#define MMC_STATE_DEAD (1<<1) /* device no longer in stack */#define MMC_STATE_BAD (1<<2) /* unrecognised device */#define MMC_STATE_SDCARD (1<<3) /* is an SD card */#ifdef CONFIG_MMC_SUPPORT_MOVINAND#define MMC_STATE_MMCPLUS (1<<4) /* is an MMCPLUS card */#define MMC_STATE_READONLY (1<<5) /* card is read-only */#else#define MMC_STATE_READONLY (1<<4) /* card is read-only */#endif u32 raw_cid[4]; /* raw card CID */ u32 raw_csd[4]; /* raw card CSD */ u32 raw_scr[2]; /* raw card SCR */#ifdef CONFIG_MMC_SUPPORT_MOVINAND u32 raw_ext_csd[128]; /*raw extended CSD */ u32 bus_test_data[128]; /*bus test data */ u32 bus_width; /* bus width */ u32 access_mode; /* access mode for MMC ver 4.2 */#define MMC_ACCESS_BYTE 0#define MMC_ACCESS_SECTOR 1#endif struct mmc_cid cid; /* card identification */ struct mmc_csd csd; /* card specific */ struct sd_scr scr; /* extra SD information */#ifdef CONFIG_MMC_SUPPORT_MOVINAND struct mmc_ext_csd ext_csd; /* extended card specific */#endif};#define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT)#define mmc_card_dead(c) ((c)->state & MMC_STATE_DEAD)#define mmc_card_bad(c) ((c)->state & MMC_STATE_BAD)#define mmc_card_sd(c) ((c)->state & MMC_STATE_SDCARD)#ifdef CONFIG_MMC_SUPPORT_MOVINAND#define mmc_card_mmcplus(c) ((c)->state & MMC_STATE_MMCPLUS)#endif#define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY)#define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT)#define mmc_card_set_dead(c) ((c)->state |= MMC_STATE_DEAD)#define mmc_card_set_bad(c) ((c)->state |= MMC_STATE_BAD)#define mmc_card_set_sd(c) ((c)->state |= MMC_STATE_SDCARD)#ifdef CONFIG_MMC_SUPPORT_MOVINAND#define mmc_card_set_mmcplus(c) ((c)->state |= MMC_STATE_MMCPLUS)#endif#define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY)#define mmc_card_name(c) ((c)->cid.prod_name)#define mmc_card_id(c) ((c)->dev.bus_id)#define mmc_list_to_card(l) container_of(l, struct mmc_card, node)#define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev)#define mmc_set_drvdata(c,d) dev_set_drvdata(&(c)->dev, d)/* * MMC device driver (e.g., Flash card, I/O card...) */#if 0struct mmc_driver { struct device_driver drv; int (*probe)(struct mmc_card *); void (*remove)(struct mmc_card *); int (*suspend)(struct mmc_card *, pm_message_t); int (*resume)(struct mmc_card *);};extern int mmc_register_driver(struct mmc_driver *);extern void mmc_unregister_driver(struct mmc_driver *);static inline int mmc_card_claim_host(struct mmc_card *card){ return __mmc_claim_host(card->host, card);}#define mmc_card_release_host(c) mmc_release_host((c)->host)#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -