@@ -423,12 +423,15 @@ The following are examples of correct specifications:
com1=baud=115200,parity=n,stop-bits=1,io-base=0x3f8,reg-width=4
### conring_size
-> `= <size>`
+> `= <size-in-bytes>`
-> Default: `conring_size=16k`
+> Default: `conring_size=32k`
Specify the size of the console ring buffer.
+The console ring buffer size can be selected at build time via
+CONFIG_CONRING_SIZE.
+
### console
> `= List of [ vga | com1[H,L] | com2[H,L] | pv | dbgp | ehci | xhci | none ]`
@@ -96,6 +96,17 @@ config SERIAL_TX_BUFSIZE
Default value is 32768 (32KiB).
+config CONRING_SIZE
+ int "Console buffer size"
+ default 32768
+ help
+ Select the boot console buffer size (in bytes).
+ Note, the value provided will be rounded down to the nearest power of 2.
+ Run-time console buffer size is the same as the boot console size,
+ unless enforced via 'conring_size=' boot parameter.
+
+ Default value is 32768 (32KiB). The supported range is [16KiB..128MiB].
+
config XHCI
bool "XHCI DbC UART driver"
depends on X86
@@ -100,12 +100,15 @@ static int cf_check parse_console_timestamps(const char *s);
custom_runtime_param("console_timestamps", parse_console_timestamps,
con_timestamp_mode_upd);
-/* conring_size: allows a large console ring than default (16kB). */
+/* conring_size: allows a large console ring than default (32 KiB). */
static uint32_t __initdata opt_conring_size;
size_param("conring_size", opt_conring_size);
-#define _CONRING_SIZE 16384
-#define CONRING_IDX_MASK(i) ((i)&(conring_size-1))
+#define _CONRING_SIZE (1UL << (31 - __builtin_clz(CONFIG_CONRING_SIZE)))
+_Static_assert(_CONRING_SIZE >= 4096 && _CONRING_SIZE <= MB(128),
+ "CONFIG_CONRING_SIZE must be in [4K..128M] range");
+
+#define CONRING_IDX_MASK(i) ( (i) & (conring_size - 1) )
static char __initdata _conring[_CONRING_SIZE];
static char *__read_mostly conring = _conring;
static uint32_t __read_mostly conring_size = _CONRING_SIZE;