mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-18 01:58:56 +00:00
v1.0.3
This commit is contained in:
Binary file not shown.
6
target/d13x/demo88-nand/pack/env.txt
Normal file
6
target/d13x/demo88-nand/pack/env.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
osAB_next=A
|
||||
osAB_now=A
|
||||
upgrade_available=0
|
||||
bootlimit=5
|
||||
bootcount=0
|
||||
|
||||
@@ -3,9 +3,16 @@
|
||||
"size": "128m", // Size of SPI NAND
|
||||
"partitions": {
|
||||
"spl": { "size": "1m" },
|
||||
"env": { "size": "256k" },
|
||||
"env_r": { "size": "256k" },
|
||||
"os": { "size": "4m" },
|
||||
"rodata": { "size": "12m" },
|
||||
"data": { "size": "50m" },
|
||||
"data": {
|
||||
"size": "50m",
|
||||
"nftl": { // Volume in NFTL device
|
||||
"data": { "size": "-" },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
"image": {
|
||||
@@ -35,6 +42,11 @@
|
||||
"attr": ["mtd", "required"],
|
||||
"part": ["spl"]
|
||||
},
|
||||
"env": {
|
||||
"file": "env.bin",
|
||||
"attr": ["mtd", "optional"],
|
||||
"part": ["env","env_r"]
|
||||
},
|
||||
"os": {
|
||||
"file": "d13x_os.itb",
|
||||
"attr": ["mtd", "required"],
|
||||
@@ -67,6 +79,13 @@
|
||||
},
|
||||
},
|
||||
},
|
||||
"uboot_env": {
|
||||
"env.bin": {
|
||||
"file": "env.txt",
|
||||
"size": "4096",
|
||||
"redundant": "enable",
|
||||
},
|
||||
},
|
||||
"itb": {
|
||||
"d13x_os.itb": {
|
||||
"its": "d13x_os.its"
|
||||
|
||||
@@ -1,6 +1,68 @@
|
||||
{
|
||||
"psram": {
|
||||
"cfg0": {
|
||||
"common": {
|
||||
"clock": "198000000",
|
||||
"cs0_pins": "0x0",
|
||||
"cs1_pins": "0x0",
|
||||
"xspi_ctl": "0x116d",
|
||||
"xspi_tcr": "0x280011",
|
||||
"xspi_cfg": "0x03010001",
|
||||
"xspi_ldo": "0x17", //1.92V
|
||||
"psram_cfg0": "0x03030303",
|
||||
"psram_cfg1": "0x00400001",
|
||||
"xspi_cs0_iocfg1": "0x06060606",
|
||||
"xspi_cs0_iocfg2": "0x06060606",
|
||||
"xspi_cs0_iocfg3": "0x36062636",
|
||||
"xspi_cs0_iocfg4": "0x26",
|
||||
"xspi_cs1_iocfg1": "0x06060606",
|
||||
"xspi_cs1_iocfg2": "0x06060606",
|
||||
"xspi_cs1_iocfg3": "0x36062636",
|
||||
"xspi_cs1_iocfg4": "0x26",
|
||||
},
|
||||
"reset": {
|
||||
"proto": "0xff000001",
|
||||
"buf": "0x00ffffff",
|
||||
},
|
||||
"getid": {
|
||||
"proto": "0x40030204",
|
||||
"id": "0x80c980c9",
|
||||
"buf": "0xffffffff",
|
||||
},
|
||||
"init": {
|
||||
"proto0": "0xc0000002", //cmd: byte[0]=0xc0; dummy: byte[1]=0x00; addr: byte[2]=0x00; len: byte[3]=0x02;
|
||||
"buf0": "0x19000000",
|
||||
"proto1": "0xc0000402",
|
||||
"buf1": "0x80000000",
|
||||
"proto2": "0xffffffff",
|
||||
"buf2": "0xffffffff",
|
||||
"proto3": "0xffffffff",
|
||||
"buf3": "0xffffffff",
|
||||
},
|
||||
"xip_cfg": {
|
||||
"wr_proto": "0x80020002",
|
||||
"wr_buf": "0xffffffff",
|
||||
"rd_proto": "0x00060003",
|
||||
"rd_buf": "0xffffffff",
|
||||
},
|
||||
"backup": {
|
||||
"buf0": "0xFFFFFF01",
|
||||
"buf1": "0xFFFFFF02",
|
||||
"buf2": "0xFFFFFF03",
|
||||
"buf3": "0xFFFFFF04",
|
||||
"buf4": "0xFFFFFF05",
|
||||
"buf5": "0xFFFFFF06",
|
||||
"buf6": "0xFFFFFF07",
|
||||
"buf7": "0xFFFFFF08",
|
||||
"buf8": "0xFFFFFF09",
|
||||
"buf9": "0xFFFFFF00",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
"system": {
|
||||
"upgmode": { // Set PIN to enter BROM's upgrading mode
|
||||
// If set upgmode_pin_cfg_reg to "0", disable bootpin detect in PBP
|
||||
"upgmode_pin_cfg_reg": "0x18700080", // PINMUX REG, PA0
|
||||
"upgmode_pin_cfg_val": "0x10321", // PINMUX VAL
|
||||
"upgmode_pin_input_reg": "0x18700000", // INPUT VAL REG
|
||||
|
||||
Reference in New Issue
Block a user