• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mmc/core/

Lines Matching refs:UNSTUFF_BITS

43 #define UNSTUFF_BITS(resp,start,size)					\
71 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24);
72 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
73 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
74 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
75 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
76 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
77 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
78 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8);
79 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4);
80 card->cid.fwrev = UNSTUFF_BITS(resp, 40, 4);
81 card->cid.serial = UNSTUFF_BITS(resp, 16, 24);
82 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
83 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
89 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
90 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
91 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
92 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
93 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
94 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
95 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
96 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
97 card->cid.serial = UNSTUFF_BITS(resp, 16, 32);
98 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
99 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
135 csd->structure = UNSTUFF_BITS(resp, 126, 2);
142 csd->mmca_vsn = UNSTUFF_BITS(resp, 122, 4);
143 m = UNSTUFF_BITS(resp, 115, 4);
144 e = UNSTUFF_BITS(resp, 112, 3);
146 csd->tacc_clks = UNSTUFF_BITS(resp, 104, 8) * 100;
148 m = UNSTUFF_BITS(resp, 99, 4);
149 e = UNSTUFF_BITS(resp, 96, 3);
151 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
153 e = UNSTUFF_BITS(resp, 47, 3);
154 m = UNSTUFF_BITS(resp, 62, 12);
157 csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
158 csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
159 csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
160 csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
161 csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
162 csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
163 csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
166 a = UNSTUFF_BITS(resp, 42, 5);
167 b = UNSTUFF_BITS(resp, 37, 5);