Home
last modified time | relevance | path

Searched refs:UNSTUFF_BITS (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/drivers/mmc/core/
H A Dsd.c59 #define UNSTUFF_BITS(resp,start,size) \ macro
98 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8); in mmc_decode_cid()
99 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16); in mmc_decode_cid()
100 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8); in mmc_decode_cid()
101 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8); in mmc_decode_cid()
102 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8); in mmc_decode_cid()
103 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8); in mmc_decode_cid()
104 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8); in mmc_decode_cid()
105 card->cid.hwrev = UNSTUFF_BITS(resp, 60, 4); in mmc_decode_cid()
106 card->cid.fwrev = UNSTUFF_BITS(resp, 56, 4); in mmc_decode_cid()
[all …]
H A Dmmc.c54 #define UNSTUFF_BITS(resp,start,size) \ macro
88 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24); in mmc_decode_cid()
89 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8); in mmc_decode_cid()
90 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8); in mmc_decode_cid()
91 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8); in mmc_decode_cid()
92 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8); in mmc_decode_cid()
93 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8); in mmc_decode_cid()
94 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8); in mmc_decode_cid()
95 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8); in mmc_decode_cid()
96 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4); in mmc_decode_cid()
[all …]
/openbmc/u-boot/arch/arm/mach-snapdragon/
H A Dmisc.c14 #define UNSTUFF_BITS(resp, start, size) \ macro
36 return UNSTUFF_BITS(mmc_dev->cid, 16, 32); in msm_board_serial()