Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_FLASH_NOR_NON_CFI_H
non_cfi
cfi_fixup_non_cfi(struct flash_bank *);
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsrc/flash/nor/non_cfi.h
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2007 by Dominic Rath * * Dominic.Rath@gmx.de * ***************************************************************************//* ... */ #ifndef OPENOCD_FLASH_NOR_NON_CFI_H #define OPENOCD_FLASH_NOR_NON_CFI_H struct non_cfi { uint16_t mfr; uint16_t id; uint16_t pri_id; uint32_t dev_size; uint16_t interface_desc; uint16_t max_buf_write_size; uint8_t num_erase_regions; uint32_t erase_region_info[6]; uint8_t status_poll_mask; ...}; void cfi_fixup_non_cfi(struct flash_bank *bank); /* ... */ #endif /* OPENOCD_FLASH_NOR_NON_CFI_H */