RTEMS 6.1-rc4
Loading...
Searching...
No Matches
jedec_flash.h
1#if !defined(_ZQSPIFLASH_JEDEC_H_)
2#define _ZQSPIFLASH_JEDEC_H_
3
4#include <stdint.h>
5
6typedef struct {
7 uint32_t jedec_id;
8 uint32_t sec_size;
9 uint32_t page_size;
10 uint32_t flash_size;
11 uint32_t num_die;
12 char label[16];
14
16
17flash_definition flash_dev_table[] = {
18 {0x012018, 0x10000, 0x100, 0x1000000, 1, "S25FL128P_64K"},
19 {0x010218, 0x400000, 0x200, 0x4000000, 1, "S25FL512P_256K"},
20 {0x0, 0x0, 0x0, 0x0, 0, "end of table"}
21};
22
23#endif
Definition: jedec_flash.h:6