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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | # Kconfig.beetle - ARM CMSDK APB SoC UART configuration options # # # Copyright (c) 2016 Linaro Limited # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # menuconfig UART_CMSDK_APB bool "ARM CMSDK APB UART driver" default n select SERIAL_HAS_DRIVER depends on SOC_FAMILY_ARM help This option enables the UART driver for ARM CMSDK APB UART. if UART_CMSDK_APB # ---------- Port 0 ---------- config UART_CMSDK_APB_PORT0 bool "Enable driver for UART 0" default n help Build the driver to utilize UART controller Port 0. config UART_CMSDK_APB_PORT0_NAME string "Device Name for UART 0" default "UART_0" depends on UART_CMSDK_APB_PORT0 help This is the device name for UART, and is included in the device struct. config UART_CMSDK_APB_PORT0_IRQ_PRI int "UART Interrupt Priority (Interrupt support)" default 2 depends on UART_CMSDK_APB_PORT0 depends on UART_INTERRUPT_DRIVEN help The interrupt priority for UART port. config UART_CMSDK_APB_PORT0_BAUD_RATE int "Baud Rate" range 9600 115200 default 115200 depends on UART_CMSDK_APB_PORT0 help The baud rate for UART port to be set to at boot. # ---------- Port 1 ---------- config UART_CMSDK_APB_PORT1 bool "Enable driver for UART 1" default n help Build the driver to utilize UART controller Port 1. config UART_CMSDK_APB_PORT1_NAME string "Device Name for UART 1" default "UART_1" depends on UART_CMSDK_APB_PORT1 help This is the device name for UART, and is included in the device struct. config UART_CMSDK_APB_PORT1_IRQ_PRI int "UART Interrupt Priority (Interrupt support)" default 2 depends on UART_CMSDK_APB_PORT1 depends on UART_INTERRUPT_DRIVEN help The interrupt priority for UART port. config UART_CMSDK_APB_PORT1_BAUD_RATE int "Baud Rate" range 9600 115200 default 115200 depends on UART_CMSDK_APB_PORT1 help The baud rate for UART port to be set to at boot. # ---------- Port 2 ---------- config UART_CMSDK_APB_PORT2 bool "Enable driver for UART 2" default n help Build the driver to utilize UART controller Port 2. config UART_CMSDK_APB_PORT2_NAME string "Device Name for UART 2" default "UART_2" depends on UART_CMSDK_APB_PORT2 help This is the device name for UART, and is included in the device struct. config UART_CMSDK_APB_PORT2_IRQ_PRI int "UART Interrupt Priority (Interrupt support)" default 2 depends on UART_CMSDK_APB_PORT2 depends on UART_INTERRUPT_DRIVEN help The interrupt priority for UART port. config UART_CMSDK_APB_PORT2_BAUD_RATE int "Baud Rate" range 9600 115200 default 115200 depends on UART_CMSDK_APB_PORT2 help The baud rate for UART port to be set to at boot. # ---------- Port 3 ---------- config UART_CMSDK_APB_PORT3 bool "Enable driver for UART 3" default n help Build the driver to utilize UART controller Port 3. config UART_CMSDK_APB_PORT3_NAME string "Device Name for UART 3" default "UART_3" depends on UART_CMSDK_APB_PORT3 help This is the device name for UART, and is included in the device struct. config UART_CMSDK_APB_PORT3_IRQ_PRI int "UART Interrupt Priority (Interrupt support)" default 2 depends on UART_CMSDK_APB_PORT3 depends on UART_INTERRUPT_DRIVEN help The interrupt priority for UART port. config UART_CMSDK_APB_PORT3_BAUD_RATE int "Baud Rate" range 9600 115200 default 115200 depends on UART_CMSDK_APB_PORT3 help The baud rate for UART port to be set to at boot. # ---------- Port 4 ---------- config UART_CMSDK_APB_PORT4 bool "Enable driver for UART 4" default n help Build the driver to utilize UART controller Port 4. config UART_CMSDK_APB_PORT4_NAME string "Device Name for UART 4" default "UART_4" depends on UART_CMSDK_APB_PORT4 help This is the device name for UART, and is included in the device struct. config UART_CMSDK_APB_PORT4_IRQ_PRI int "UART Interrupt Priority (Interrupt support)" default 2 depends on UART_CMSDK_APB_PORT4 depends on UART_INTERRUPT_DRIVEN help The interrupt priority for UART port. config UART_CMSDK_APB_PORT4_BAUD_RATE int "Baud Rate" range 9600 115200 default 115200 depends on UART_CMSDK_APB_PORT4 help The baud rate for UART port to be set to at boot. endif # UART_CMSDK_APB |