mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 20:03:34 +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>
19 lines
255 B
Plaintext
19 lines
255 B
Plaintext
/*
|
|
* Copyright (c) 2018, 2019, Synopsys, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "nsim_em.dtsi"
|
|
|
|
/ {
|
|
model = "snps,nsim_em";
|
|
compatible = "snps,nsim_em";
|
|
};
|
|
|
|
&cpu0 {
|
|
clock-frequency = <5000000>;
|
|
};
|