-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Telink] Add Tercel A1 (tl721x) support
- Loading branch information
Showing
5 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
&flash { | ||
reg = <0x20000000 0x200000>; | ||
|
||
/delete-node/ partitions; | ||
partitions { | ||
compatible = "fixed-partitions"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
|
||
boot_partition: partition@0 { | ||
label = "mcuboot"; | ||
reg = <0x00000000 0x13000>; | ||
}; | ||
slot0_partition: partition@13000 { | ||
label = "image-0"; | ||
reg = <0x13000 0xef000>; | ||
}; | ||
factory_partition: partition@102000 { | ||
label = "factory-data"; | ||
reg = <0x102000 0x800>; | ||
}; | ||
factory_rfu_partition: partition@102800 { | ||
label = "factory-data-rfu"; | ||
reg = <0x102800 0x800>; | ||
}; | ||
storage_partition: partition@103000 { | ||
label = "storage"; | ||
reg = <0x103000 0xc000>; | ||
}; | ||
slot1_partition: partition@10f000 { | ||
label = "image-1"; | ||
reg = <0x10f000 0xef000>; | ||
}; | ||
vendor_partition: partition@1fe000 { | ||
label = "vendor-data"; | ||
reg = <0x1fe000 0x2000>; | ||
}; | ||
}; | ||
}; |