dts: arm: Put IRQ priority into the interrupt property

Rather than having a zephyr specific property we will encode the IRQ
priority as part of the interrupt property for ARM NVIC based interrupt
controllers.

Change-Id: I7d1489f0bffa7a6369f0622f748bb70dc83fa0cd
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-03-23 13:41:32 -05:00
commit 94107bc71d
23 changed files with 60 additions and 104 deletions

View file

@ -20,8 +20,7 @@
usart1: uart@40013800 {
compatible = "st,stm32-usart", "st,stm32-uart";
reg = <0x40013800 0x400>;
interrupts = <37>;
zephyr,irq-prio = <0>;
interrupts = <37 0>;
baud-rate = <115200>;
status = "disabled";
};
@ -29,8 +28,7 @@
usart2: uart@40004400 {
compatible = "st,stm32-usart", "st,stm32-uart";
reg = <0x40004400 0x400>;
interrupts = <38>;
zephyr,irq-prio = <0>;
interrupts = <38 0>;
baud-rate = <115200>;
status = "disabled";
};
@ -38,8 +36,7 @@
usart3: uart@40004800 {
compatible = "st,stm32-usart", "st,stm32-uart";
reg = <0x40004800 0x400>;
interrupts = <39>;
zephyr,irq-prio = <0>;
interrupts = <39 0>;
baud-rate = <115200>;
status = "disabled";
};
@ -47,8 +44,7 @@
uart4: uart@40004c00 {
compatible = "st,stm32-uart";
reg = <0x40004c00 0x400>;
interrupts = <52>;
zephyr,irq-prio = <0>;
interrupts = <52 0>;
baud-rate = <115200>;
status = "disabled";
};
@ -56,8 +52,7 @@
uart5: uart@40005000 {
compatible = "st,stm32-uart";
reg = <0x40005000 0x400>;
interrupts = <53>;
zephyr,irq-prio = <0>;
interrupts = <53 0>;
baud-rate = <115200>;
status = "disabled";
};