| /* |
| * Copyright (c) 2017 Piotr Mienkowski |
| * Copyright (c) 2017 Justin Watson |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| #include <arm/armv7-m.dtsi> |
| #include <atmel/same70_mem.h> |
| |
| / { |
| cpus { |
| #address-cells = <1>; |
| #size-cells = <0>; |
| |
| cpu@0 { |
| device_type = "cpu"; |
| compatible = "arm,cortex-m7"; |
| reg = <0>; |
| }; |
| }; |
| |
| flash0: flash@400000 { |
| reg = <0x00400000 DT_FLASH_SIZE>; |
| }; |
| |
| sram0: memory@20400000 { |
| device_type = "memory"; |
| compatible = "mmio-sram"; |
| reg = <0x20400000 DT_SRAM_SIZE>; |
| }; |
| |
| soc { |
| uart0: uart@400E0800 { |
| compatible = "atmel,sam-uart"; |
| reg = <0x400E0800 0x100>; |
| interrupts = <7 0>; |
| peripheral-id = <7>; |
| status = "disabled"; |
| label = "UART_0"; |
| }; |
| |
| uart1: uart@400E0A00 { |
| compatible = "atmel,sam-uart"; |
| reg = <0x400E0A00 0x100>; |
| interrupts = <8 0>; |
| peripheral-id = <8>; |
| status = "disabled"; |
| label = "UART_1"; |
| }; |
| |
| uart2: uart@400E1A00 { |
| compatible = "atmel,sam-uart"; |
| reg = <0x400E1A00 0x100>; |
| interrupts = <44 0>; |
| peripheral-id = <44>; |
| status = "disabled"; |
| label = "UART_2"; |
| }; |
| |
| uart3: uart@400E1C00 { |
| compatible = "atmel,sam-uart"; |
| reg = <0x400E1C00 0x100>; |
| interrupts = <45 0>; |
| peripheral-id = <45>; |
| status = "disabled"; |
| label = "UART_3"; |
| }; |
| |
| uart4: uart@400E1E00 { |
| compatible = "atmel,sam-uart"; |
| reg = <0x400E1E00 0x100>; |
| interrupts = <46 0>; |
| peripheral-id = <46>; |
| status = "disabled"; |
| label = "UART_4"; |
| }; |
| |
| usart0: usart@40024000 { |
| compatible = "atmel,sam-usart"; |
| reg = <0x40024000 0x100>; |
| interrupts = <13 0>; |
| peripheral-id = <13>; |
| status = "disabled"; |
| label = "USART_0"; |
| }; |
| |
| usart1: usart@40028000 { |
| compatible = "atmel,sam-usart"; |
| reg = <0x40028000 0x100>; |
| interrupts = <14 0>; |
| peripheral-id = <14>; |
| status = "disabled"; |
| label = "USART_1"; |
| }; |
| |
| usart2: usart@4002C000 { |
| compatible = "atmel,sam-usart"; |
| reg = <0x4002C000 0x100>; |
| interrupts = <15 0>; |
| peripheral-id = <15>; |
| status = "disabled"; |
| label = "USART_2"; |
| }; |
| |
| adc0: adc@4003C000 { |
| compatible = "atmel,sam-afec"; |
| reg = <0x4003C000 0x100>; |
| interrupts = <29 0>; |
| peripheral-id = <29>; |
| status = "disabled"; |
| label = "ADC_0"; |
| }; |
| |
| adc1: adc@40064000 { |
| compatible = "atmel,sam-afec"; |
| reg = <0x40064000 0x100>; |
| interrupts = <40 0>; |
| peripheral-id = <40>; |
| status = "disabled"; |
| label = "ADC_1"; |
| }; |
| }; |
| }; |
| |
| &nvic { |
| arm,num-irq-priority-bits = <3>; |
| }; |