mirror of
https://github.com/olofk/serv.git
synced 2025-04-23 13:27:05 -04:00
23 lines
371 B
Text
23 lines
371 B
Text
/*
|
|
* Copyright (c) 2020 Olof Kindgren <olof.kindgren@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "olofk,servant";
|
|
|
|
cpus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
cpu0: cpu@0 {
|
|
compatible = "olofk,serv";
|
|
riscv,isa = "rv32i_zicsr";
|
|
reg = <0>;
|
|
device_type = "cpu";
|
|
};
|
|
};
|
|
};
|