Browse Source
1. Add it51526bw SoC variant to it51xxx SoC series. 2. Create the .dtsi file with adjusted flash size for 512Kb (default = 1M). Signed-off-by: Tim Lin <tim2.lin@ite.corp-partner.google.com>pull/89775/head
3 changed files with 29 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2025 ITE Corporation. All Rights Reserved. |
||||||
|
* |
||||||
|
* SPDX-License-Identifier: Apache-2.0 |
||||||
|
*/ |
||||||
|
|
||||||
|
/ { |
||||||
|
soc { |
||||||
|
flashctrl: flash-controller@f01000 { |
||||||
|
compatible = "ite,it8xxx2-flash-controller"; |
||||||
|
reg = <0x00f01000 0x100>; |
||||||
|
#address-cells = <1>; |
||||||
|
#size-cells = <1>; |
||||||
|
|
||||||
|
flash0: flash@0 { |
||||||
|
compatible = "soc-nv-flash"; |
||||||
|
reg = <0 DT_SIZE_K(512)>; |
||||||
|
erase-block-size = <4096>; |
||||||
|
write-block-size = <4>; |
||||||
|
}; |
||||||
|
}; |
||||||
|
}; |
||||||
|
}; |
Loading…
Reference in new issue