Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | /* * 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> #include <dt-bindings/i2c/i2c.h> / { cpus { #address-cells = <1>; #size-cells = <0>; cpu@0 { device_type = "cpu"; compatible = "arm,cortex-m7"; reg = <0>; }; }; flash0: flash@400000 { compatible = "soc-nv-flash"; label = "FLASH_0"; reg = <0x00400000 DT_FLASH_SIZE>; }; sram0: memory@20400000 { device_type = "memory"; compatible = "mmio-sram"; reg = <0x20400000 DT_SRAM_SIZE>; }; soc { i2c0: i2c@40018000 { compatible = "atmel,sam-i2c-twihs"; clock-frequency = <I2C_BITRATE_STANDARD>; #address-cells = <1>; #size-cells = <0>; reg = <0x40018000 0x12B>; interrupts = <19 0>; peripheral-id = <19>; label = "I2C_0"; status = "disabled"; }; i2c1: i2c@4001C000 { compatible = "atmel,sam-i2c-twihs"; clock-frequency = <I2C_BITRATE_STANDARD>; #address-cells = <1>; #size-cells = <0>; reg = <0x4001C000 0x12B>; interrupts = <20 0>; peripheral-id = <20>; label = "I2C_1"; status = "disabled"; }; i2c2: i2c@40060000 { compatible = "atmel,sam-i2c-twihs"; clock-frequency = <I2C_BITRATE_STANDARD>; #address-cells = <1>; #size-cells = <0>; reg = <0x40060000 0x12B>; interrupts = <41 0>; peripheral-id = <41>; label = "I2C_2"; status = "disabled"; }; uart0: uart@400E0800 { compatible = "atmel,sam-uart"; reg = <0x400E0800 0x100>; interrupts = <7 1>; peripheral-id = <7>; status = "disabled"; label = "UART_0"; }; uart1: uart@400E0A00 { compatible = "atmel,sam-uart"; reg = <0x400E0A00 0x100>; interrupts = <8 1>; peripheral-id = <8>; status = "disabled"; label = "UART_1"; }; uart2: uart@400E1A00 { compatible = "atmel,sam-uart"; reg = <0x400E1A00 0x100>; interrupts = <44 1>; peripheral-id = <44>; status = "disabled"; label = "UART_2"; }; uart3: uart@400E1C00 { compatible = "atmel,sam-uart"; reg = <0x400E1C00 0x100>; interrupts = <45 1>; peripheral-id = <45>; status = "disabled"; label = "UART_3"; }; uart4: uart@400E1E00 { compatible = "atmel,sam-uart"; reg = <0x400E1E00 0x100>; interrupts = <46 1>; 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>; }; |