mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-24 10:25:45 +00:00
This commit adds 'clock-frequency' property to the cpu nodes. The clock frequency specified in the added property is used during platform configuration. Examples: - The SWO logger uses clock frequency to configure SWO output. - Plenty of platforms need CPU clock specified for their HAL. - Most of devices with USB needs information about CPU clock in order to configure USB clock source. Signed-off-by: Piotr Zięcik <piotr.ziecik@nordicsemi.no>
22 lines
286 B
Plaintext
22 lines
286 B
Plaintext
/*
|
|
* Copyright (c) 2019 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/dts-v1/;
|
|
|
|
#include "sample_controller.dtsi"
|
|
|
|
/ {
|
|
model = "xt-sim";
|
|
compatible = "xtensa,sample_controller";
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
};
|
|
};
|
|
|
|
&cpu0 {
|
|
clock-frequency = <10000000>;
|
|
};
|