|
1 | 1 | /*
|
2 | 2 | * Copyright (c) 2021 SILA Embedded Solutions GmbH
|
| 3 | + * |
3 | 4 | * SPDX-License-Identifier: Apache-2.0
|
4 | 5 | */
|
5 | 6 |
|
6 |
| -#include <st/h7/stm32h7.dtsi> |
7 |
| - |
8 |
| -/ { |
9 |
| - soc { |
10 |
| - flash-controller@52002000 { |
11 |
| - flash0: flash@8000000 { |
12 |
| - write-block-size = <32>; |
13 |
| - erase-block-size = <DT_SIZE_K(128)>; |
14 |
| - }; |
15 |
| - }; |
16 |
| - |
17 |
| - uart9: serial@40011800 { |
18 |
| - compatible = "st,stm32-uart"; |
19 |
| - reg = <0x40011800 0x400>; |
20 |
| - clocks = <&rcc STM32_CLOCK_BUS_APB2 0x00000040>; |
21 |
| - interrupts = <155 0>; |
22 |
| - status = "disabled"; |
23 |
| - label = "UART_9"; |
24 |
| - }; |
25 |
| - |
26 |
| - usart10: serial@40011c00 { |
27 |
| - compatible = "st,stm32-usart", "st,stm32-uart"; |
28 |
| - reg = <0x40011c00 0x400>; |
29 |
| - clocks = <&rcc STM32_CLOCK_BUS_APB2 0x00000080>; |
30 |
| - interrupts = <156 0>; |
31 |
| - status = "disabled"; |
32 |
| - label = "UART_10"; |
33 |
| - }; |
34 |
| - |
35 |
| - dmamux1: dmamux@40020800 { |
36 |
| - dma-requests= <129>; |
37 |
| - }; |
38 |
| - |
39 |
| - cryp: cryp@48021000 { |
40 |
| - compatible = "st,stm32-cryp"; |
41 |
| - reg = <0x48021000 0x400>; |
42 |
| - clocks = <&rcc STM32_CLOCK_BUS_AHB2 0x00000010>; |
43 |
| - interrupts = <79 0>; |
44 |
| - status = "disabled"; |
45 |
| - label = "CRYP"; |
46 |
| - }; |
47 |
| - |
48 |
| - rng: rng@48021800 { |
49 |
| - health-test-magic = <0x17590abc>; |
50 |
| - health-test-config = <0xaa74>; |
51 |
| - }; |
52 |
| - |
53 |
| - ltdc: display-controller@50001000 { |
54 |
| - compatible = "st,stm32-ltdc"; |
55 |
| - reg = <0x50001000 0x200>; |
56 |
| - interrupts = <88 0>, <89 0>; |
57 |
| - interrupt-names = "ltdc", "ltdc_er"; |
58 |
| - clocks = <&rcc STM32_CLOCK_BUS_APB3 0x000000008>; |
59 |
| - label = "LTDC"; |
60 |
| - status = "disabled"; |
61 |
| - }; |
62 |
| - }; |
63 |
| - |
64 |
| - /* System data RAM accessible over AXI bus: AXI SRAM in D1 domain */ |
65 |
| - sram0: memory@24000000 { |
66 |
| - reg = <0x24000000 DT_SIZE_K(320)>; |
67 |
| - compatible = "mmio-sram"; |
68 |
| - }; |
69 |
| - |
70 |
| - /* System data RAM accessible over AHB bus: SRAM1 in D2 domain */ |
71 |
| - sram1: memory@30000000 { |
72 |
| - reg = <0x30000000 DT_SIZE_K(16)>; |
73 |
| - compatible = "zephyr,memory-region", "mmio-sram"; |
74 |
| - zephyr,memory-region = "SRAM1"; |
75 |
| - }; |
76 |
| - |
77 |
| - /* System data RAM accessible over AHB bus: SRAM2 in D2 domain */ |
78 |
| - sram2: memory@30040000 { |
79 |
| - reg = <0x30040000 DT_SIZE_K(16)>; |
80 |
| - compatible = "zephyr,memory-region", "mmio-sram"; |
81 |
| - zephyr,memory-region = "SRAM2"; |
82 |
| - }; |
83 |
| - |
84 |
| - /* System data RAM accessible over AHB bus: SRAM4 in D3 domain */ |
85 |
| - sram4: memory@38000000 { |
86 |
| - reg = <0x38000000 DT_SIZE_K(16)>; |
87 |
| - compatible = "zephyr,memory-region", "mmio-sram"; |
88 |
| - zephyr,memory-region = "SRAM4"; |
89 |
| - }; |
90 |
| - |
91 |
| - dtcm: memory@20000000 { |
92 |
| - compatible = "zephyr,memory-region", "arm,dtcm"; |
93 |
| - reg = <0x20000000 DT_SIZE_K(128)>; |
94 |
| - zephyr,memory-region = "DTCM"; |
95 |
| - }; |
96 |
| -}; |
| 7 | +#include <st/h7/stm32h730.dtsi> |
0 commit comments