ad2dc064a7
Add new variant configuration of it81202cx and it81302cx. This cx variant of it81xx2 changes are as follows: 1. SRAM size will increase from 60k to 128k. 2. Configurable ILM size is still 60k. 3. Support M extension of RISC-V. Signed-off-by: Tim Lin <tim2.lin@ite.corp-partner.google.com>
18 lines
246 B
Plaintext
18 lines
246 B
Plaintext
/*
|
|
* Copyright (c) 2022 ITE Corporation. All Rights Reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
|
|
/ {
|
|
soc {
|
|
sram0: memory@80100000 {
|
|
compatible = "mmio-sram";
|
|
reg = <0x80100000 DT_SIZE_K(128)>;
|
|
};
|
|
};
|
|
};
|
|
|