1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2004 by Jens Arnold
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 #if (CONFIG_STORAGE & STORAGE_MMC)
29 /* helper function to extract n (<=32) bits from an arbitrary position.
30 counting from MSB to LSB */
31 unsigned long card_extract_bits(
32 const unsigned long *p
, /* the start of the bitfield array */
33 unsigned int start
, /* bit no. to start reading */
34 unsigned int size
) /* how many bits to read */
36 unsigned int long_index
, bit_index
;
39 /* we assume words of CSD/CID are stored most significant word first */
42 long_index
= start
/ 32;
43 bit_index
= start
% 32;
45 result
= p
[long_index
] << bit_index
;
47 if (bit_index
+ size
> 32) /* crossing longword boundary */
48 result
|= p
[long_index
+1] >> (32 - bit_index
);