You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f203c27 Update headers and readme for 6.3.0 release.
40d3d10 Avoid clearing user extension in flash control block on opening flash
689dcc1 Added obsolete count and mapping bitmap cache for NOR flash. optimized block seraching logic.
b183526 Enable weekly pipeline build to avoid CodeQL expiration
2eec506 Enable codeql in onebranch pipeline
/* Define user extension for NOR flash control block. */
121
+
/* Define user extension for NOR flash control block. User extension is placed at the end of flash control block and it is not cleared on opening flash. */
117
122
/*
118
123
#define LX_NOR_FLASH_USER_EXTENSION ????
119
124
*/
120
125
121
-
/* Define user extension for NAND flash control block. */
126
+
/* Define user extension for NAND flash control block. User extension is placed at the end of flash control block and it is not cleared on opening flash. */
122
127
/*
123
128
#define LX_NAND_FLASH_USER_EXTENSION ????
124
129
*/
125
130
131
+
/* Determine if logical sector mapping bitmap should be enabled in extended cache.
132
+
Cache memory will be allocated to sector mapping bitmap first. One bit can be allocated for each physical sector. */
133
+
/*
134
+
#define LX_NOR_ENABLE_MAPPING_BITMAP
135
+
*/
136
+
137
+
/* Determine if obsolete count cache should be enabled in extended cache.
138
+
Cache memory will be allocated to obsolete count cache after the mapping bitmap if enabled,
139
+
and the rest of the cache memory is allocated to sector cache. */
140
+
/*
141
+
#define LX_NOR_ENABLE_OBSOLETE_COUNT_CACHE
142
+
*/
143
+
144
+
/* Defines obsolete count cache element size. If number of sectors per block is greater than 256, use USHORT instead of UCHAR. */
145
+
/*
146
+
#define LX_NOR_OBSOLETE_COUNT_CACHE_TYPE UCHAR
147
+
*/
148
+
149
+
/* Define the logical sector size for NOR flash. The sector size is in units of 32-bit words.
150
+
This sector size should match the sector size used in file system. */
0 commit comments