mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-10 03:35:49 +00:00
Added initial support and created the corresponding device tree part for building PSoC6 SoC as part of Zephyr. Signed-off-by: Nazar Chornenkyy <nazar.chornenkyy@cypress.com> Signed-off-by: Oleg Kapshii <oleg.kapshii@cypress.com>
23 lines
278 B
Plaintext
23 lines
278 B
Plaintext
/*
|
|
* Copyright (c) 2018, Cypress
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <arm/armv6-m.dtsi>
|
|
#include <cypress/psoc6.dtsi>
|
|
|
|
/ {
|
|
cpus {
|
|
cpu@0 {
|
|
compatible = "arm,cortex-m0+";
|
|
};
|
|
|
|
/delete-node/ cpu@1;
|
|
};
|
|
};
|
|
|
|
&nvic {
|
|
arm,num-irq-priority-bits = <2>;
|
|
};
|