hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst)
{
   unsigned int block, lastblock;
   unsigned int page, page_offset;
 
   /* offs has to be aligned to a page address! */
   block = offs / CONFIG_SYS_NAND_BLOCK_SIZE;
   lastblock = (offs + size - 1) / CONFIG_SYS_NAND_BLOCK_SIZE;
   page = (offs % CONFIG_SYS_NAND_BLOCK_SIZE) / CONFIG_SYS_NAND_PAGE_SIZE;
   page_offset = offs % CONFIG_SYS_NAND_PAGE_SIZE;
 
   while (block <= lastblock) {
       if (!nand_is_bad_block(block)) {
           /* Skip bad blocks */
           while (page < CONFIG_SYS_NAND_PAGE_COUNT) {
               nand_read_page(block, page, dst);
               /*
                * When offs is not aligned to page address the
                * extra offset is copied to dst as well. Copy
                * the image such that its first byte will be
                * at the dst.
                */
               if (unlikely(page_offset)) {
                   memmove(dst, dst + page_offset,
                       CONFIG_SYS_NAND_PAGE_SIZE);
                   dst = (void *)((int)dst - page_offset);
                   page_offset = 0;
               }
               dst += CONFIG_SYS_NAND_PAGE_SIZE;
               page++;
           }
 
           page = 0;
       } else {
           lastblock++;
       }
 
       block++;
   }
 
   return 0;
}
 
#ifdef CONFIG_SPL_UBI
/*
 * Temporary storage for non NAND page aligned and non NAND page sized
 * reads. Note: This does not support runtime detected FLASH yet, but
 * that should be reasonably easy to fix by making the buffer large
 * enough :)
 */
static u8 scratch_buf[CONFIG_SYS_NAND_PAGE_SIZE];
 
/**
 * nand_spl_read_block - Read data from physical eraseblock into a buffer
 * @block:    Number of the physical eraseblock
 * @offset:    Data offset from the start of @peb
 * @len:    Data size to read
 * @dst:    Address of the destination buffer
 *
 * This could be further optimized if we'd have a subpage read
 * function in the simple code. On NAND which allows subpage reads
 * this would spare quite some time to readout e.g. the VID header of
 * UBI.
 *
 * Notes:
 *    @offset + @len are not allowed to be larger than a physical
 *    erase block. No sanity check done for simplicity reasons.
 *
 * To support runtime detected flash this needs to be extended by
 * information about the actual flash geometry, but thats beyond the
 * scope of this effort and for most applications where fast boot is
 * required it is not an issue anyway.
 */
int nand_spl_read_block(int block, int offset, int len, void *dst)
{
   int page, read;
 
   /* Calculate the page number */
   page = offset / CONFIG_SYS_NAND_PAGE_SIZE;
 
   /* Offset to the start of a flash page */
   offset = offset % CONFIG_SYS_NAND_PAGE_SIZE;
 
   while (len) {
       /*
        * Non page aligned reads go to the scratch buffer.
        * Page aligned reads go directly to the destination.
        */
       if (offset || len < CONFIG_SYS_NAND_PAGE_SIZE) {
           nand_read_page(block, page, scratch_buf);
           read = min(len, CONFIG_SYS_NAND_PAGE_SIZE - offset);
           memcpy(dst, scratch_buf + offset, read);
           offset = 0;
       } else {
           nand_read_page(block, page, dst);
           read = CONFIG_SYS_NAND_PAGE_SIZE;
       }
       page++;
       len -= read;
       dst += read;
   }
   return 0;
}
#endif