2 * Copyright (C) 2006 Michael Brown <mbrown@fensystems.co.uk>.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * Non-volatile storage
30 * Read from non-volatile storage device
33 * @v address Address from which to read
35 * @v len Length of data buffer
36 * @ret rc Return status code
38 int nvs_read ( struct nvs_device *nvs, unsigned int address,
39 void *data, size_t len ) {
43 /* We don't even attempt to handle buffer lengths that aren't
44 * an integral number of words.
46 assert ( ( len & ( ( 1 << nvs->word_len_log2 ) - 1 ) ) == 0 );
50 /* Calculate space remaining up to next block boundary */
51 frag_len = ( ( nvs->block_size -
52 ( address & ( nvs->block_size - 1 ) ) )
53 << nvs->word_len_log2 );
55 /* Limit to space remaining in buffer */
59 /* Read this portion of the buffer from the device */
60 if ( ( rc = nvs->read ( nvs, address, data, frag_len ) ) != 0 )
63 /* Update parameters */
65 address += ( frag_len >> nvs->word_len_log2 );