You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
524 B
27 lines
524 B
/*
|
|
* Copyright (c) 2021, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* For examples of multi-core and multi-device NPU, refer to the examples given in the
|
|
* Arm Ethos-N NPU driver stack.
|
|
* https://github.com/ARM-software/ethos-n-driver-stack
|
|
*/
|
|
|
|
/ {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
|
|
ethosn0: ethosn@6f300000 {
|
|
compatible = "ethosn";
|
|
reg = <0 0x6f300000 0 0x00100000>;
|
|
status = "okay";
|
|
|
|
core0 {
|
|
compatible = "ethosn-core";
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
|