Stefan Reinauer | 1b34226 | 2011-01-05 02:27:53 +0000 | [diff] [blame] | 1 | menu "Console" |
Hung-Te Lin | ad173ea | 2013-02-06 21:24:12 +0800 | [diff] [blame] | 2 | |
Gabe Black | fbb11cf | 2013-06-06 00:21:20 -0700 | [diff] [blame] | 3 | config BOOTBLOCK_CONSOLE |
| 4 | bool "Enable early (bootblock) console output." |
Paul Burton | 6ea3eff | 2014-06-14 00:04:33 +0100 | [diff] [blame] | 5 | depends on ARCH_ARM || ARCH_RISCV || ARCH_MIPS |
Stefan Reinauer | d2f45c6 | 2013-06-19 13:42:00 -0700 | [diff] [blame] | 6 | default n |
Gabe Black | fbb11cf | 2013-06-06 00:21:20 -0700 | [diff] [blame] | 7 | help |
| 8 | Use console during the bootblock if supported |
| 9 | |
Kyösti Mälkki | 361cd81 | 2013-08-12 23:29:57 +0300 | [diff] [blame] | 10 | config SQUELCH_EARLY_SMP |
| 11 | bool "Squelch AP CPUs from early console." |
| 12 | default y |
Kyösti Mälkki | 361cd81 | 2013-08-12 23:29:57 +0300 | [diff] [blame] | 13 | help |
| 14 | When selected only the BSP CPU will output to early console. |
| 15 | |
| 16 | Console drivers have unpredictable behaviour if multiple threads |
| 17 | attempt to share the same resources without a spinlock. |
| 18 | |
| 19 | If unsure, say Y. |
| 20 | |
Hung-Te Lin | ad173ea | 2013-02-06 21:24:12 +0800 | [diff] [blame] | 21 | config CONSOLE_SERIAL |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 22 | bool "Serial port console output" |
Stefan Reinauer | 509f772 | 2012-12-07 17:31:37 -0800 | [diff] [blame] | 23 | default y |
Kyösti Mälkki | afa7b13 | 2014-02-13 17:16:22 +0200 | [diff] [blame] | 24 | depends on DRIVERS_UART_8250IO || DRIVERS_UART_8250MEM || HAVE_UART_SPECIAL |
Stefan Reinauer | 509f772 | 2012-12-07 17:31:37 -0800 | [diff] [blame] | 25 | help |
Kyösti Mälkki | afa7b13 | 2014-02-13 17:16:22 +0200 | [diff] [blame] | 26 | Send coreboot debug output to a serial port. |
David Hendricks | 6a503b6 | 2012-12-31 17:28:43 -0800 | [diff] [blame] | 27 | |
Kyösti Mälkki | afa7b13 | 2014-02-13 17:16:22 +0200 | [diff] [blame] | 28 | The type of serial port driver selected based on your configuration is |
| 29 | shown on the following menu line. Supporting multiple different types |
| 30 | of UARTs in one build is not supported. |
Stefan Reinauer | 4885daa | 2011-04-26 23:47:04 +0000 | [diff] [blame] | 31 | |
Kyösti Mälkki | afa7b13 | 2014-02-13 17:16:22 +0200 | [diff] [blame] | 32 | if CONSOLE_SERIAL |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 33 | |
Kyösti Mälkki | afa7b13 | 2014-02-13 17:16:22 +0200 | [diff] [blame] | 34 | comment "I/O mapped, 8250-compatible" |
| 35 | depends on DRIVERS_UART_8250IO |
| 36 | |
| 37 | comment "memory mapped, 8250-compatible" |
| 38 | depends on DRIVERS_UART_8250MEM |
| 39 | |
| 40 | comment "device-specific UART" |
Hung-Te Lin | ad173ea | 2013-02-06 21:24:12 +0800 | [diff] [blame] | 41 | depends on HAVE_UART_SPECIAL |
Stefan Reinauer | 509f772 | 2012-12-07 17:31:37 -0800 | [diff] [blame] | 42 | |
Kyösti Mälkki | 70342a7 | 2014-03-14 22:28:29 +0200 | [diff] [blame] | 43 | config UART_FOR_CONSOLE |
Kyösti Mälkki | d540377 | 2014-05-01 00:02:43 +0300 | [diff] [blame] | 44 | int "Index for UART port to use for console" |
Kyösti Mälkki | 70342a7 | 2014-03-14 22:28:29 +0200 | [diff] [blame] | 45 | default 0 |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 46 | |
Kyösti Mälkki | 70342a7 | 2014-03-14 22:28:29 +0200 | [diff] [blame] | 47 | # FIXME: Early programming in romstage is incorrect as we should |
| 48 | # program different LDN to actually change the physical port. |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 49 | config TTYS0_BASE |
| 50 | hex |
Gabe Black | 77ffa0d | 2013-09-30 21:25:49 -0700 | [diff] [blame] | 51 | depends on DRIVERS_UART |
Kyösti Mälkki | 70342a7 | 2014-03-14 22:28:29 +0200 | [diff] [blame] | 52 | default 0x3f8 if UART_FOR_CONSOLE = 0 |
| 53 | default 0x2f8 if UART_FOR_CONSOLE = 1 |
| 54 | default 0x3e8 if UART_FOR_CONSOLE = 2 |
| 55 | default 0x2e8 if UART_FOR_CONSOLE = 3 |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 56 | help |
Kyösti Mälkki | 70342a7 | 2014-03-14 22:28:29 +0200 | [diff] [blame] | 57 | Map the COM port number to the respective I/O port. |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 58 | |
| 59 | choice |
Uwe Hermann | a081a3b | 2009-10-26 23:52:34 +0000 | [diff] [blame] | 60 | prompt "Baud rate" |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 61 | default CONSOLE_SERIAL_115200 |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 62 | |
| 63 | config CONSOLE_SERIAL_115200 |
| 64 | bool "115200" |
| 65 | help |
Uwe Hermann | a081a3b | 2009-10-26 23:52:34 +0000 | [diff] [blame] | 66 | Set serial port Baud rate to 115200. |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 67 | config CONSOLE_SERIAL_57600 |
| 68 | bool "57600" |
| 69 | help |
Uwe Hermann | a081a3b | 2009-10-26 23:52:34 +0000 | [diff] [blame] | 70 | Set serial port Baud rate to 57600. |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 71 | config CONSOLE_SERIAL_38400 |
| 72 | bool "38400" |
| 73 | help |
Uwe Hermann | a081a3b | 2009-10-26 23:52:34 +0000 | [diff] [blame] | 74 | Set serial port Baud rate to 38400. |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 75 | config CONSOLE_SERIAL_19200 |
| 76 | bool "19200" |
| 77 | help |
Uwe Hermann | a081a3b | 2009-10-26 23:52:34 +0000 | [diff] [blame] | 78 | Set serial port Baud rate to 19200. |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 79 | config CONSOLE_SERIAL_9600 |
| 80 | bool "9600" |
| 81 | help |
Uwe Hermann | a081a3b | 2009-10-26 23:52:34 +0000 | [diff] [blame] | 82 | Set serial port Baud rate to 9600. |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 83 | |
| 84 | endchoice |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 85 | |
Stefan Reinauer | 509f772 | 2012-12-07 17:31:37 -0800 | [diff] [blame] | 86 | #FIXME(dhendrix): Change name to SERIAL_BAUD? (Stefan sayz: yes!!) |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 87 | config TTYS0_BAUD |
Uwe Hermann | d12b703 | 2009-10-16 22:39:55 +0000 | [diff] [blame] | 88 | int |
| 89 | default 115200 if CONSOLE_SERIAL_115200 |
| 90 | default 57600 if CONSOLE_SERIAL_57600 |
| 91 | default 38400 if CONSOLE_SERIAL_38400 |
| 92 | default 19200 if CONSOLE_SERIAL_19200 |
| 93 | default 9600 if CONSOLE_SERIAL_9600 |
| 94 | help |
Uwe Hermann | a081a3b | 2009-10-26 23:52:34 +0000 | [diff] [blame] | 95 | Map the Baud rates to an integer. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 96 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 97 | # TODO: Allow user-friendly selection of settings other than 8n1. |
Patrick Georgi | 0e9a925 | 2009-10-06 20:48:07 +0000 | [diff] [blame] | 98 | config TTYS0_LCS |
| 99 | int |
| 100 | default 3 |
Kyösti Mälkki | afa7b13 | 2014-02-13 17:16:22 +0200 | [diff] [blame] | 101 | depends on DRIVERS_UART_8250IO || DRIVERS_UART_8250MEM |
| 102 | |
| 103 | endif # CONSOLE_SERIAL |
Patrick Georgi | 0e9a925 | 2009-10-06 20:48:07 +0000 | [diff] [blame] | 104 | |
Vladimir Serbinenko | 45988da | 2013-03-30 02:02:13 +0100 | [diff] [blame] | 105 | config SPKMODEM |
| 106 | bool "spkmodem (console on speaker) console output" |
| 107 | default n |
| 108 | help |
| 109 | Send coreboot debug output through speaker |
| 110 | |
Kyösti Mälkki | ab94bbf | 2014-02-25 12:06:14 +0200 | [diff] [blame] | 111 | config CONSOLE_USB |
| 112 | bool "USB dongle console output" |
| 113 | depends on USBDEBUG |
Kyösti Mälkki | 8101aa6 | 2013-08-15 16:27:06 +0300 | [diff] [blame] | 114 | default n |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 115 | help |
Kyösti Mälkki | ab94bbf | 2014-02-25 12:06:14 +0200 | [diff] [blame] | 116 | Send coreboot debug output to USB. |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 117 | |
Kyösti Mälkki | ab94bbf | 2014-02-25 12:06:14 +0200 | [diff] [blame] | 118 | Configuration for USB hardware is under menu Generic Drivers. |
Kyösti Mälkki | d2dac0a | 2013-08-23 23:33:16 +0300 | [diff] [blame] | 119 | |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 120 | # TODO: Deps? |
| 121 | # TODO: Improve description. |
Stefan Reinauer | abc0c85 | 2010-11-22 08:09:50 +0000 | [diff] [blame] | 122 | config ONBOARD_VGA_IS_PRIMARY |
Uwe Hermann | 168b11b | 2009-10-07 16:15:40 +0000 | [diff] [blame] | 123 | bool "Use onboard VGA as primary video device" |
Myles Watson | 45bb25f | 2009-09-22 18:49:08 +0000 | [diff] [blame] | 124 | default n |
| 125 | help |
| 126 | If not selected, the last adapter found will be used. |
| 127 | |
Rudolf Marek | 4aa93cc | 2010-07-16 20:02:09 +0000 | [diff] [blame] | 128 | config CONSOLE_NE2K |
| 129 | bool "Network console over NE2000 compatible Ethernet adapter" |
| 130 | default n |
| 131 | help |
| 132 | Send coreboot debug output to a Ethernet console, it works |
| 133 | same way as Linux netconsole, packets are received to UDP |
| 134 | port 6666 on IP/MAC specified with options bellow. |
| 135 | Use following netcat command: nc -u -l -p 6666 |
| 136 | |
| 137 | config CONSOLE_NE2K_DST_MAC |
| 138 | depends on CONSOLE_NE2K |
| 139 | string "Destination MAC address of remote system" |
| 140 | default "00:13:d4:76:a2:ac" |
| 141 | help |
| 142 | Type in either MAC address of logging system or MAC address |
| 143 | of the router. |
| 144 | |
| 145 | config CONSOLE_NE2K_DST_IP |
| 146 | depends on CONSOLE_NE2K |
| 147 | string "Destination IP of logging system" |
| 148 | default "10.0.1.27" |
| 149 | help |
Daniele Forsi | 53847a2 | 2014-07-22 18:00:56 +0200 | [diff] [blame] | 150 | This is IP address of the system running for example |
Rudolf Marek | 4aa93cc | 2010-07-16 20:02:09 +0000 | [diff] [blame] | 151 | netcat command to dump the packets. |
| 152 | |
| 153 | config CONSOLE_NE2K_SRC_IP |
| 154 | depends on CONSOLE_NE2K |
Stefan Reinauer | d6b4f1c | 2010-09-23 18:29:40 +0000 | [diff] [blame] | 155 | string "IP address of coreboot system" |
Rudolf Marek | 4aa93cc | 2010-07-16 20:02:09 +0000 | [diff] [blame] | 156 | default "10.0.1.253" |
| 157 | help |
Stefan Reinauer | d6b4f1c | 2010-09-23 18:29:40 +0000 | [diff] [blame] | 158 | This is the IP of the coreboot system |
Rudolf Marek | 4aa93cc | 2010-07-16 20:02:09 +0000 | [diff] [blame] | 159 | |
| 160 | config CONSOLE_NE2K_IO_PORT |
| 161 | depends on CONSOLE_NE2K |
| 162 | hex "NE2000 adapter fixed IO port address" |
| 163 | default 0xe00 |
| 164 | help |
| 165 | This is the IO port address for the IO port |
| 166 | on the card, please select some non-conflicting region, |
| 167 | 32 bytes of IO spaces will be used (and align on 32 bytes |
| 168 | boundary, qemu needs broader align) |
| 169 | |
Vadim Bendebury | c34b463 | 2011-09-28 13:51:30 -0700 | [diff] [blame] | 170 | config CONSOLE_CBMEM |
Vadim Bendebury | c34b463 | 2011-09-28 13:51:30 -0700 | [diff] [blame] | 171 | bool "Send console output to a CBMEM buffer" |
Paul Menzel | 60ef456 | 2014-03-08 10:46:52 +0100 | [diff] [blame] | 172 | default y |
Vadim Bendebury | c34b463 | 2011-09-28 13:51:30 -0700 | [diff] [blame] | 173 | help |
| 174 | Enable this to save the console output in a CBMEM buffer. This would |
| 175 | allow to see coreboot console output from Linux space. |
| 176 | |
Kyösti Mälkki | 8659e40 | 2014-12-21 08:55:47 +0200 | [diff] [blame] | 177 | if CONSOLE_CBMEM |
| 178 | |
Vadim Bendebury | c34b463 | 2011-09-28 13:51:30 -0700 | [diff] [blame] | 179 | config CONSOLE_CBMEM_BUFFER_SIZE |
Vadim Bendebury | c34b463 | 2011-09-28 13:51:30 -0700 | [diff] [blame] | 180 | hex "Room allocated for console output in CBMEM" |
Vladimir Serbinenko | eb67a04 | 2014-09-13 20:55:58 +0200 | [diff] [blame] | 181 | default 0x20000 |
Vadim Bendebury | c34b463 | 2011-09-28 13:51:30 -0700 | [diff] [blame] | 182 | help |
| 183 | Space allocated for console output storage in CBMEM. The default |
Vladimir Serbinenko | eb67a04 | 2014-09-13 20:55:58 +0200 | [diff] [blame] | 184 | value (128K or 0x20000 bytes) is large enough to accommodate |
Vadim Bendebury | c34b463 | 2011-09-28 13:51:30 -0700 | [diff] [blame] | 185 | even the BIOS_SPEW level. |
| 186 | |
Kyösti Mälkki | 8659e40 | 2014-12-21 08:55:47 +0200 | [diff] [blame] | 187 | config CONSOLE_PRERAM_BUFFER_BASE |
| 188 | hex |
Kyösti Mälkki | a637194 | 2015-03-10 07:25:35 +0200 | [diff] [blame] | 189 | default 0xabadbeef if !CACHE_AS_RAM || LATE_CBMEM_INIT |
Kyösti Mälkki | 8659e40 | 2014-12-21 08:55:47 +0200 | [diff] [blame] | 190 | default 0x0 |
| 191 | |
Gabe Black | 35382a6 | 2014-04-02 17:57:05 -0700 | [diff] [blame] | 192 | config CONSOLE_PRERAM_BUFFER_SIZE |
Kyösti Mälkki | 8659e40 | 2014-12-21 08:55:47 +0200 | [diff] [blame] | 193 | hex |
| 194 | default 0x0 if CONSOLE_PRERAM_BUFFER_BASE = 0xabadbeef |
Vadim Bendebury | c34b463 | 2011-09-28 13:51:30 -0700 | [diff] [blame] | 195 | default 0xc00 |
| 196 | help |
| 197 | Console is used before RAM is initialized. This is the room reserved |
Gabe Black | 35382a6 | 2014-04-02 17:57:05 -0700 | [diff] [blame] | 198 | in the DCACHE based RAM, SRAM, etc. to keep console output before it |
| 199 | can be saved in a CBMEM buffer. 3K bytes should be enough even for |
| 200 | the BIOS_SPEW level. |
Gerd Hoffmann | 038aa29 | 2013-05-29 13:06:22 +0200 | [diff] [blame] | 201 | |
Kyösti Mälkki | 8659e40 | 2014-12-21 08:55:47 +0200 | [diff] [blame] | 202 | endif |
| 203 | |
Gerd Hoffmann | d7c6e44 | 2013-05-30 10:32:31 +0200 | [diff] [blame] | 204 | config CONSOLE_QEMU_DEBUGCON |
Gerd Hoffmann | 038aa29 | 2013-05-29 13:06:22 +0200 | [diff] [blame] | 205 | bool "QEMU debug console output" |
| 206 | depends on BOARD_EMULATION_QEMU_X86 |
| 207 | default y |
| 208 | help |
| 209 | Send coreboot debug output to QEMU's isa-debugcon device: |
| 210 | |
| 211 | qemu-system-x86_64 \ |
| 212 | -chardev file,id=debugcon,path=/dir/file.log \ |
| 213 | -device isa-debugcon,iobase=0x402,chardev=debugcon |
| 214 | |
Gerd Hoffmann | d7c6e44 | 2013-05-30 10:32:31 +0200 | [diff] [blame] | 215 | config CONSOLE_QEMU_DEBUGCON_PORT |
Gerd Hoffmann | 038aa29 | 2013-05-29 13:06:22 +0200 | [diff] [blame] | 216 | hex "QEMU debug console port" |
Gerd Hoffmann | d7c6e44 | 2013-05-30 10:32:31 +0200 | [diff] [blame] | 217 | depends on CONSOLE_QEMU_DEBUGCON |
Gerd Hoffmann | 038aa29 | 2013-05-29 13:06:22 +0200 | [diff] [blame] | 218 | default 0x402 |
| 219 | |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 220 | choice |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 221 | prompt "Default console log level" |
| 222 | default DEFAULT_CONSOLE_LOGLEVEL_8 |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 223 | |
| 224 | config DEFAULT_CONSOLE_LOGLEVEL_8 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 225 | bool "8: SPEW" |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 226 | help |
| 227 | Way too many details. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 228 | config DEFAULT_CONSOLE_LOGLEVEL_7 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 229 | bool "7: DEBUG" |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 230 | help |
| 231 | Debug-level messages. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 232 | config DEFAULT_CONSOLE_LOGLEVEL_6 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 233 | bool "6: INFO" |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 234 | help |
| 235 | Informational messages. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 236 | config DEFAULT_CONSOLE_LOGLEVEL_5 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 237 | bool "5: NOTICE" |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 238 | help |
| 239 | Normal but significant conditions. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 240 | config DEFAULT_CONSOLE_LOGLEVEL_4 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 241 | bool "4: WARNING" |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 242 | help |
| 243 | Warning conditions. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 244 | config DEFAULT_CONSOLE_LOGLEVEL_3 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 245 | bool "3: ERR" |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 246 | help |
| 247 | Error conditions. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 248 | config DEFAULT_CONSOLE_LOGLEVEL_2 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 249 | bool "2: CRIT" |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 250 | help |
| 251 | Critical conditions. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 252 | config DEFAULT_CONSOLE_LOGLEVEL_1 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 253 | bool "1: ALERT" |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 254 | help |
| 255 | Action must be taken immediately. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 256 | config DEFAULT_CONSOLE_LOGLEVEL_0 |
Myles Watson | 0364618 | 2009-10-16 19:29:45 +0000 | [diff] [blame] | 257 | bool "0: EMERG" |
| 258 | help |
| 259 | System is unusable. |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 260 | |
| 261 | endchoice |
| 262 | |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 263 | config DEFAULT_CONSOLE_LOGLEVEL |
Uwe Hermann | 7fe4191 | 2009-10-11 13:35:24 +0000 | [diff] [blame] | 264 | int |
| 265 | default 0 if DEFAULT_CONSOLE_LOGLEVEL_0 |
| 266 | default 1 if DEFAULT_CONSOLE_LOGLEVEL_1 |
| 267 | default 2 if DEFAULT_CONSOLE_LOGLEVEL_2 |
| 268 | default 3 if DEFAULT_CONSOLE_LOGLEVEL_3 |
| 269 | default 4 if DEFAULT_CONSOLE_LOGLEVEL_4 |
| 270 | default 5 if DEFAULT_CONSOLE_LOGLEVEL_5 |
| 271 | default 6 if DEFAULT_CONSOLE_LOGLEVEL_6 |
| 272 | default 7 if DEFAULT_CONSOLE_LOGLEVEL_7 |
| 273 | default 8 if DEFAULT_CONSOLE_LOGLEVEL_8 |
| 274 | help |
| 275 | Map the log level config names to an integer. |
Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 276 | |
Stefan Reinauer | c719f1a | 2010-03-30 09:57:28 +0000 | [diff] [blame] | 277 | config NO_POST |
| 278 | bool "Don't show any POST codes" |
| 279 | default n |
| 280 | |
Duncan Laurie | b6e97b1 | 2012-09-09 19:09:56 -0700 | [diff] [blame] | 281 | config CMOS_POST |
| 282 | bool "Store post codes in CMOS for debugging" |
Stefan Reinauer | c2d5a16 | 2012-12-06 14:25:27 -0800 | [diff] [blame] | 283 | depends on !NO_POST && PC80_SYSTEM |
Duncan Laurie | b6e97b1 | 2012-09-09 19:09:56 -0700 | [diff] [blame] | 284 | default n |
| 285 | help |
| 286 | If enabled, coreboot will store post codes in CMOS and switch between |
| 287 | two offsets on each boot so the last post code in the previous boot |
| 288 | can be retrieved. This uses 3 bytes of CMOS. |
| 289 | |
| 290 | config CMOS_POST_OFFSET |
| 291 | hex "Offset into CMOS to store POST codes" |
| 292 | depends on CMOS_POST |
| 293 | default 0 |
| 294 | help |
| 295 | If CMOS_POST is enabled then an offset into CMOS must be provided. |
| 296 | If CONFIG_HAVE_OPTION_TABLE is enabled then it will use the value |
| 297 | defined in the mainboard option table. |
| 298 | |
Duncan Laurie | d5686fe | 2013-06-10 10:21:41 -0700 | [diff] [blame] | 299 | config CMOS_POST_EXTRA |
| 300 | bool "Store extra logging info into CMOS" |
| 301 | depends on CMOS_POST |
| 302 | default n |
| 303 | help |
| 304 | This will enable extra logging of work that happens between post |
| 305 | codes into CMOS for debug. This uses an additional 8 bytes of CMOS. |
| 306 | |
Daniele Forsi | ad488d2 | 2014-07-30 12:23:35 +0200 | [diff] [blame] | 307 | config CONSOLE_POST |
Idwer Vollering | 5809a73 | 2014-03-11 15:36:21 +0000 | [diff] [blame] | 308 | bool "Show POST codes on the debug console" |
| 309 | depends on !NO_POST |
| 310 | default n |
| 311 | help |
| 312 | If enabled, coreboot will additionally print POST codes (which are |
| 313 | usually displayed using a so-called "POST card" ISA/PCI/PCI-E |
| 314 | device) on the debug console. |
| 315 | |
| 316 | config POST_DEVICE |
| 317 | bool "Send POST codes to an external device" |
| 318 | depends on !NO_POST |
| 319 | default y |
| 320 | |
| 321 | choice |
| 322 | prompt "Device to send POST codes to" |
| 323 | depends on POST_DEVICE |
| 324 | default POST_DEVICE_NONE |
| 325 | |
| 326 | config POST_DEVICE_NONE |
| 327 | bool "None" |
| 328 | config POST_DEVICE_LPC |
| 329 | bool "LPC" |
| 330 | config POST_DEVICE_PCI_PCIE |
| 331 | bool "PCI/PCIe" |
| 332 | endchoice |
| 333 | |
| 334 | config POST_IO |
David Hendricks | 6b908d0 | 2012-11-05 12:34:09 -0800 | [diff] [blame] | 335 | bool "Send POST codes to an IO port" |
Idwer Vollering | 5809a73 | 2014-03-11 15:36:21 +0000 | [diff] [blame] | 336 | depends on PC80_SYSTEM && !NO_POST |
David Hendricks | 6b908d0 | 2012-11-05 12:34:09 -0800 | [diff] [blame] | 337 | default y |
| 338 | help |
| 339 | If enabled, POST codes will be written to an IO port. |
Stefan Reinauer | c719f1a | 2010-03-30 09:57:28 +0000 | [diff] [blame] | 340 | |
Idwer Vollering | 5809a73 | 2014-03-11 15:36:21 +0000 | [diff] [blame] | 341 | config POST_IO_PORT |
| 342 | depends on POST_IO |
David Hendricks | 6b908d0 | 2012-11-05 12:34:09 -0800 | [diff] [blame] | 343 | hex "IO port for POST codes" |
| 344 | default 0x80 |
| 345 | help |
| 346 | POST codes on x86 are typically written to the LPC bus on port |
Daniele Forsi | 53847a2 | 2014-07-22 18:00:56 +0200 | [diff] [blame] | 347 | 0x80. However, it may be desirable to change the port number |
David Hendricks | 6b908d0 | 2012-11-05 12:34:09 -0800 | [diff] [blame] | 348 | depending on the presence of coprocessors/microcontrollers or if the |
| 349 | platform does not support IO in the conventional x86 manner. |
| 350 | |
| 351 | endmenu |