Compare commits
10 Commits
42ee296a37
...
afefafd929
Author | SHA1 | Date | |
---|---|---|---|
afefafd929 | |||
7a7ca31d5e | |||
aa9f455a5f | |||
d8f8786994 | |||
b30b76afa7 | |||
38fb152503 | |||
47413fc6d5 | |||
0a5fe4f990 | |||
44b46a128c | |||
7c5202c699 |
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,8 +1,7 @@
|
||||||
__pycache__
|
__pycache__
|
||||||
bin/
|
env/
|
||||||
lib/
|
|
||||||
lib64
|
|
||||||
pyvenv.cfg
|
pyvenv.cfg
|
||||||
log/
|
log/
|
||||||
*.bin
|
*.bin
|
||||||
*.ini
|
*.ini
|
||||||
|
whole_img.pack
|
||||||
|
|
|
@ -117,8 +117,8 @@ class MainClass:
|
||||||
else:
|
else:
|
||||||
filedir = config.get(item, 'filedir')
|
filedir = config.get(item, 'filedir')
|
||||||
address = config.get(item, 'address')
|
address = config.get(item, 'address')
|
||||||
if not self.get_value_file(item, filedir, address, args.cpu_id):
|
if not self.get_value_file(item, filedir, address, args.cpu_id):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
try:
|
try:
|
||||||
|
|
33
README.md
Normal file
33
README.md
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
Boufallo Lab Flash Command - Open Source Version
|
||||||
|
================================================
|
||||||
|
|
||||||
|
This repo contains the completed work of "open sourcing" the Boufallo Lab
|
||||||
|
flash command. This utility is provided in binary form under Apache 2.0 License.
|
||||||
|
It is a [pyinstaller]() executable, so I have unpacked the binary, run it
|
||||||
|
through several Python 3.7 decompilers, and made a few adjustments. Primary
|
||||||
|
changes:
|
||||||
|
|
||||||
|
* The libs/bflb_configobj.py file has been completely rewritten. It appears
|
||||||
|
to have been a handwritten recursive descent parser for ini files that
|
||||||
|
include the ability to have complex objects. In reality, the configuration
|
||||||
|
that seems to exist for flashing is simple key/value pairs in sections,
|
||||||
|
so 2k+ lines of code were removed and replaced with simple shims to the
|
||||||
|
python standard library
|
||||||
|
* Some additional logs were added to the output to let the user know what
|
||||||
|
files were being used. This was necessary to debug the decompiler output
|
||||||
|
and I thought they were useful
|
||||||
|
|
||||||
|
I have licensed this as Apache 2.0 to reflect the origin license. This is tested
|
||||||
|
and working with BL616 MCU. The flashing host computer was running Linux. This
|
||||||
|
is good for my needs and it should work for other MCUs/other flashing hosts.
|
||||||
|
However, I do not intend to provide support for anything beyond my own needs.
|
||||||
|
I am happy to take pull requests!
|
||||||
|
|
||||||
|
Decompilers used
|
||||||
|
----------------
|
||||||
|
|
||||||
|
* [decompyle3](https://pypi.org/project/decompyle3/): This was the primary decompiler for the project
|
||||||
|
* [unpyc3](https://github.com/andrew-tavera/unpyc37.git): unpyc3 did a better job on 2 or 3 of the files (see logs)
|
||||||
|
* [pycdc](https://github.com/zrax/pycd): While not used on any files, it served
|
||||||
|
as a useful comparison tool. A few miscompiles from decompyle3 were more
|
||||||
|
obvious because both pycdc and unpyc3 disagreed with the decompyle3 output
|
Binary file not shown.
Binary file not shown.
|
@ -1228,6 +1228,8 @@ class BaseEflashLoader(object):
|
||||||
cfg_dir = app_path + '/utils/flash/' + self.chip_type + '/'
|
cfg_dir = app_path + '/utils/flash/' + self.chip_type + '/'
|
||||||
conf_name = self.get_suitable_conf_name(cfg_dir, flash_id)
|
conf_name = self.get_suitable_conf_name(cfg_dir, flash_id)
|
||||||
if os.path.isfile(cfg_dir + conf_name) is False:
|
if os.path.isfile(cfg_dir + conf_name) is False:
|
||||||
|
printf('ERROR: Could not find flash configuration for chip')
|
||||||
|
printf('File must be at: %s' % cfg_dir + conf_name)
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
73
utils/flash/bl602/BY25128BS_684018.conf
Normal file
73
utils/flash/bl602/BY25128BS_684018.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x68
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/BY25Q16BS_684015.conf
Normal file
73
utils/flash/bl602/BY25Q16BS_684015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x68
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/BY25Q32BS_684016.conf
Normal file
73
utils/flash/bl602/BY25Q32BS_684016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x68
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/BY25Q64BS_684017.conf
Normal file
73
utils/flash/bl602/BY25Q64BS_684017.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x68
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/FM25Q08_a14014.conf
Normal file
73
utils/flash/bl602/FM25Q08_a14014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 800
|
||||||
|
blk32k_erase_time = 3000
|
||||||
|
blk64k_erase_time = 4000
|
||||||
|
page_prog_time = 10
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/FTVQ80_5e6014.conf
Normal file
73
utils/flash/bl602/FTVQ80_5e6014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25LE16C_c86015.conf
Normal file
73
utils/flash/bl602/GD25LE16C_c86015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25LQ32D_c86016.conf
Normal file
73
utils/flash/bl602/GD25LQ32D_c86016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25LQ80C_c86014.conf
Normal file
73
utils/flash/bl602/GD25LQ80C_c86014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25Q127C_c84018.conf
Normal file
73
utils/flash/bl602/GD25Q127C_c84018.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 33000
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25Q16E_c84015.conf
Normal file
73
utils/flash/bl602/GD25Q16E_c84015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25Q32C_c84016.conf
Normal file
73
utils/flash/bl602/GD25Q32C_c84016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25Q64E_c84017.conf
Normal file
73
utils/flash/bl602/GD25Q64E_c84017.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25Q80E_c84014.conf
Normal file
73
utils/flash/bl602/GD25Q80E_c84014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25WQ16E_c86515.conf
Normal file
73
utils/flash/bl602/GD25WQ16E_c86515.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 4
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 4
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0x12
|
73
utils/flash/bl602/GD25WQ32E_c86516.conf
Normal file
73
utils/flash/bl602/GD25WQ32E_c86516.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/GD25WQ80E_c86514.conf
Normal file
73
utils/flash/bl602/GD25WQ80E_c86514.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 4
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 4
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0x12
|
73
utils/flash/bl602/IS25LP016D_9d6015.conf
Normal file
73
utils/flash/bl602/IS25LP016D_9d6015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 5
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/IS25LP032D_9d6016.conf
Normal file
73
utils/flash/bl602/IS25LP032D_9d6016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 5
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/IS25LP080D_9d6014.conf
Normal file
73
utils/flash/bl602/IS25LP080D_9d6014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 5
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/IS25WP016D_9d7015.conf
Normal file
73
utils/flash/bl602/IS25WP016D_9d7015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 5
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/IS25WP032D_9d7016.conf
Normal file
73
utils/flash/bl602/IS25WP032D_9d7016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 5
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/IS25WP080D_9d7014.conf
Normal file
73
utils/flash/bl602/IS25WP080D_9d7014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 5
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/KH25V16_c22015.conf
Normal file
73
utils/flash/bl602/KH25V16_c22015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 0x11
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x00
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x00
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 0
|
||||||
|
cont_read_code = 0x00
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/KH25V40_c22013.conf
Normal file
73
utils/flash/bl602/KH25V40_c22013.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 0x11
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x00
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x00
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 0
|
||||||
|
cont_read_code = 0x00
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/KH25V80_c22014.conf
Normal file
73
utils/flash/bl602/KH25V80_c22014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 0x11
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x00
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x00
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 0
|
||||||
|
cont_read_code = 0x00
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/MD25D40_514013.conf
Normal file
73
utils/flash/bl602/MD25D40_514013.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x51
|
||||||
|
io_mode = 0x11
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 0
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/MX25V1633FM_c22535.conf
Normal file
73
utils/flash/bl602/MX25V1633FM_c22535.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x10
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa5
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x02
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 45
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/MX25V3233FM_c22536.conf
Normal file
73
utils/flash/bl602/MX25V3233FM_c22536.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x10
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa5
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x02
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 45
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/MX25V8035F_c22534.conf
Normal file
73
utils/flash/bl602/MX25V8035F_c22534.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x10
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa5
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x02
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 45
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/P25Q16H_856015.conf
Normal file
73
utils/flash/bl602/P25Q16H_856015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x85
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/P25Q32H_856016.conf
Normal file
73
utils/flash/bl602/P25Q32H_856016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x85
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/P25Q64H_856017.conf
Normal file
73
utils/flash/bl602/P25Q64H_856017.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x85
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/P25Q80H_856014.conf
Normal file
73
utils/flash/bl602/P25Q80H_856014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x85
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/TH25Q16HB_eb6015.conf
Normal file
73
utils/flash/bl602/TH25Q16HB_eb6015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xeb
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 800
|
||||||
|
blk32k_erase_time = 3000
|
||||||
|
blk64k_erase_time = 4000
|
||||||
|
page_prog_time = 10
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/TH25Q80HB_cd6014.conf
Normal file
73
utils/flash/bl602/TH25Q80HB_cd6014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xcd
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 800
|
||||||
|
blk32k_erase_time = 3000
|
||||||
|
blk64k_erase_time = 4000
|
||||||
|
page_prog_time = 10
|
||||||
|
chip_erase_time = 33000
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q128FW_ef6018.conf
Normal file
73
utils/flash/bl602/W25Q128FW_ef6018.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q128JV_ef7018.conf
Normal file
73
utils/flash/bl602/W25Q128JV_ef7018.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q16FW_ef6015.conf
Normal file
73
utils/flash/bl602/W25Q16FW_ef6015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q16JV_ef4015.conf
Normal file
73
utils/flash/bl602/W25Q16JV_ef4015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q16JV_ef7015.conf
Normal file
73
utils/flash/bl602/W25Q16JV_ef7015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q32FV_ef4016.conf
Normal file
73
utils/flash/bl602/W25Q32FV_ef4016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q32FW_ef6016.conf
Normal file
73
utils/flash/bl602/W25Q32FW_ef6016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q32JW_ef8016.conf
Normal file
73
utils/flash/bl602/W25Q32JW_ef8016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q80DV_ef4014.conf
Normal file
73
utils/flash/bl602/W25Q80DV_ef4014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xA0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/W25Q80EW_ef6014.conf
Normal file
73
utils/flash/bl602/W25Q80EW_ef6014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XM25QE32C_204016.conf
Normal file
73
utils/flash/bl602/XM25QE32C_204016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x20
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XM25QH128_204018.conf
Normal file
73
utils/flash/bl602/XM25QH128_204018.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x20
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XM25QH16C_204015.conf
Normal file
73
utils/flash/bl602/XM25QH16C_204015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x20
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XM25QH64_204017.conf
Normal file
73
utils/flash/bl602/XM25QH64_204017.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x20
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XM25QH80B_204014.conf
Normal file
73
utils/flash/bl602/XM25QH80B_204014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x20
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XT25F04D_0b4013.conf
Normal file
73
utils/flash/bl602/XT25F04D_0b4013.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x0b
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XT25F16B_0b4015.conf
Normal file
73
utils/flash/bl602/XT25F16B_0b4015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x0b
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XT25F32B_0b4016.conf
Normal file
73
utils/flash/bl602/XT25F32B_0b4016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x0b
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XT25F64B_0b4017.conf
Normal file
73
utils/flash/bl602/XT25F64B_0b4017.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x0b
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XT25Q32B_0b6016.conf
Normal file
73
utils/flash/bl602/XT25Q32B_0b6016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x0b
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 6000
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/XT25Q80B_0b6014.conf
Normal file
73
utils/flash/bl602/XT25Q80B_0b6014.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x0b
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 20
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZB25D40B_5e3213.conf
Normal file
73
utils/flash/bl602/ZB25D40B_5e3213.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 0x11
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 0
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 33000
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZB25D40B_5e6013.conf
Normal file
73
utils/flash/bl602/ZB25D40B_5e6013.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZB25D80B_5e3214.conf
Normal file
73
utils/flash/bl602/ZB25D80B_5e3214.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 0x11
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 0
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 33000
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZB25Q16B_5e4015.conf
Normal file
73
utils/flash/bl602/ZB25Q16B_5e4015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 33000
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZB25Q32B_5e4016.conf
Normal file
73
utils/flash/bl602/ZB25Q32B_5e4016.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 33000
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZBVQ128_5e4018.conf
Normal file
73
utils/flash/bl602/ZBVQ128_5e4018.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZBVQ16_5e6015.conf
Normal file
73
utils/flash/bl602/ZBVQ16_5e6015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 400
|
||||||
|
blk32k_erase_time = 1600
|
||||||
|
blk64k_erase_time = 2000
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZBVQ64_5e4017.conf
Normal file
73
utils/flash/bl602/ZBVQ64_5e4017.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZBWQ16A_5e3415.conf
Normal file
73
utils/flash/bl602/ZBWQ16A_5e3415.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x5e
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 33000
|
||||||
|
power_down_delay = 8
|
||||||
|
qe_data = 0
|
73
utils/flash/bl602/ZD25Q16B_ba6015.conf
Normal file
73
utils/flash/bl602/ZD25Q16B_ba6015.conf
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xba
|
||||||
|
io_mode = 0x14
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
release_power_down = 0xab
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
||||||
|
power_down_delay = 3
|
||||||
|
qe_data = 0
|
71
utils/flash/bl60x/BY25Q16BS_684015.conf
Normal file
71
utils/flash/bl60x/BY25Q16BS_684015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x68
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/BY25Q32AL_686016.conf
Normal file
71
utils/flash/bl60x/BY25Q32AL_686016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x68
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/BY25Q32BS_684016.conf
Normal file
71
utils/flash/bl60x/BY25Q32BS_684016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x68
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/FM25Q16A_a14015.conf
Normal file
71
utils/flash/bl60x/FM25Q16A_a14015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xa1
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 800
|
||||||
|
blk32k_erase_time = 3000
|
||||||
|
blk64k_erase_time = 4000
|
||||||
|
page_prog_time = 10
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/GD25LE16C_c86015.conf
Normal file
71
utils/flash/bl60x/GD25LE16C_c86015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/GD25LQ32D_c86016.conf
Normal file
71
utils/flash/bl60x/GD25LQ32D_c86016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/GD25LQ80C_c86014.conf
Normal file
71
utils/flash/bl60x/GD25LQ80C_c86014.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/GD25Q08C_c84014.conf
Normal file
71
utils/flash/bl60x/GD25Q08C_c84014.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/GD25Q16C_c84015.conf
Normal file
71
utils/flash/bl60x/GD25Q16C_c84015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/GD25Q32C_c84016.conf
Normal file
71
utils/flash/bl60x/GD25Q32C_c84016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc8
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/IS25LP016D_9d6015.conf
Normal file
71
utils/flash/bl60x/IS25LP016D_9d6015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/IS25LP032D_9d6016.conf
Normal file
71
utils/flash/bl60x/IS25LP032D_9d6016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/IS25LP080D_9d6014.conf
Normal file
71
utils/flash/bl60x/IS25LP080D_9d6014.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x9d
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x00
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x06
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/MX25V1633FM_c22535.conf
Normal file
71
utils/flash/bl60x/MX25V1633FM_c22535.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x10
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa5
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x02
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/MX25V3233FM_c22536.conf
Normal file
71
utils/flash/bl60x/MX25V3233FM_c22536.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x10
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa5
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x02
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/MX25V8035F_c22534.conf
Normal file
71
utils/flash/bl60x/MX25V8035F_c22534.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xc2
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0xc0
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x00
|
||||||
|
de_burst_wrap_code_mode = 0
|
||||||
|
de_burst_wrap_code = 0x10
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 0
|
||||||
|
qe_bit_pos = 6
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa5
|
||||||
|
burst_wrap_cmd = 0xc0
|
||||||
|
burst_wrap_dmy_clk = 0x00
|
||||||
|
burst_wrap_data_mode = 0
|
||||||
|
burst_wrap_code = 0x02
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/P25Q16H_856015.conf
Normal file
71
utils/flash/bl60x/P25Q16H_856015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x85
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/P25Q32H_856016.conf
Normal file
71
utils/flash/bl60x/P25Q32H_856016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x85
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/P25Q80H_856014.conf
Normal file
71
utils/flash/bl60x/P25Q80H_856014.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0x85
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/TH25Q16HB_eb6015.conf
Normal file
71
utils/flash/bl60x/TH25Q16HB_eb6015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xeb
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 2
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x01
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0xa0
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xff
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 0
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 800
|
||||||
|
blk32k_erase_time = 3000
|
||||||
|
blk64k_erase_time = 4000
|
||||||
|
page_prog_time = 10
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/W25Q16FW_ef6015.conf
Normal file
71
utils/flash/bl60x/W25Q16FW_ef6015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/W25Q16JV_ef4015.conf
Normal file
71
utils/flash/bl60x/W25Q16JV_ef4015.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/W25Q32FV_ef4016.conf
Normal file
71
utils/flash/bl60x/W25Q32FV_ef4016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/W25Q32FW_ef6016.conf
Normal file
71
utils/flash/bl60x/W25Q32FW_ef6016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
71
utils/flash/bl60x/W25Q32JW_ef8016.conf
Normal file
71
utils/flash/bl60x/W25Q32JW_ef8016.conf
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
[FLASH_CFG]
|
||||||
|
exit_contread_cmd = 0xff
|
||||||
|
exit_contread_cmd_size = 3
|
||||||
|
mfg_id = 0xef
|
||||||
|
io_mode = 4
|
||||||
|
de_burst_wrap_cmd = 0x77
|
||||||
|
de_burst_wrap_cmd_dmy_clk = 0x03
|
||||||
|
de_burst_wrap_code_mode = 2
|
||||||
|
de_burst_wrap_code = 0xF0
|
||||||
|
write_enable_cmd = 0x06
|
||||||
|
wel_reg_index = 0
|
||||||
|
wel_bit_pos = 1
|
||||||
|
wel_reg_read_len = 1
|
||||||
|
wel_reg_write_len = 2
|
||||||
|
qe_reg_index = 1
|
||||||
|
qe_bit_pos = 1
|
||||||
|
qe_reg_write_len = 1
|
||||||
|
qe_reg_read_len = 1
|
||||||
|
busy_reg_index = 0
|
||||||
|
busy_bit_pos = 0
|
||||||
|
busy_reg_read_len = 1
|
||||||
|
rsvd1 = 0
|
||||||
|
reg_read_cmd0 = 0x05
|
||||||
|
reg_read_cmd1 = 0x35
|
||||||
|
reg_write_cmd0 = 0x01
|
||||||
|
reg_write_cmd1 = 0x31
|
||||||
|
fast_read_qio_cmd = 0xeb
|
||||||
|
fast_read_qio_dmy_clk = 2
|
||||||
|
cont_read_support = 1
|
||||||
|
cont_read_code = 0x20
|
||||||
|
burst_wrap_cmd = 0x77
|
||||||
|
burst_wrap_dmy_clk = 0x03
|
||||||
|
burst_wrap_data_mode = 2
|
||||||
|
burst_wrap_code = 0x40
|
||||||
|
chip_erase_cmd = 0xc7
|
||||||
|
sector_erase_cmd = 0x20
|
||||||
|
blk32k_erase_cmd = 0x52
|
||||||
|
blk64k_erase_cmd = 0xd8
|
||||||
|
page_prog_cmd = 0x02
|
||||||
|
qpage_prog_cmd = 0x32
|
||||||
|
qual_page_prog_addr_mode = 0
|
||||||
|
reset_en_cmd = 0x66
|
||||||
|
reset_cmd = 0x99
|
||||||
|
cont_read_exit_code = 0xf0
|
||||||
|
jedecid_cmd = 0x9f
|
||||||
|
jedecid_cmd_dmy_clk = 0
|
||||||
|
qpi_jedecid_cmd = 0x9f
|
||||||
|
qpi_jedecid_dmy_clk = 0
|
||||||
|
sector_size = 4
|
||||||
|
page_size = 256
|
||||||
|
fast_read_cmd = 0x0b
|
||||||
|
fast_read_dmy_clk = 1
|
||||||
|
qpi_fast_read_cmd = 0x0b
|
||||||
|
qpi_fast_read_dmy_clk = 1
|
||||||
|
fast_read_do_cmd = 0x3b
|
||||||
|
fast_read_do_dmy_clk = 1
|
||||||
|
fast_read_dio_cmd = 0xbb
|
||||||
|
fast_read_dio_dmy_clk = 1
|
||||||
|
fast_read_qo_cmd = 0x6b
|
||||||
|
fast_read_qo_dmy_clk = 1
|
||||||
|
qpi_fast_read_qio_cmd = 0xeb
|
||||||
|
qpi_fast_read_qio_dmy_clk = 2
|
||||||
|
qpi_page_prog_cmd = 0x02
|
||||||
|
write_vreg_enable_cmd = 0x50
|
||||||
|
enter_qpi_cmd = 0x38
|
||||||
|
exit_qpi_cmd = 0xff
|
||||||
|
sector_erase_time = 300
|
||||||
|
blk32k_erase_time = 1200
|
||||||
|
blk64k_erase_time = 1200
|
||||||
|
page_prog_time = 5
|
||||||
|
chip_erase_time = 65535
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user