hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/arch/mips/Kconfig.debug
....@@ -32,7 +32,6 @@
3232
3333 config CMDLINE_BOOL
3434 bool "Built-in kernel command line"
35
- default n
3635 help
3736 For most systems, it is firmware or second stage bootloader that
3837 by default specifies the kernel command line options. However,
....@@ -53,7 +52,6 @@
5352 config CMDLINE
5453 string "Default kernel command string"
5554 depends on CMDLINE_BOOL
56
- default ""
5755 help
5856 On some platforms, there is currently no way for the boot loader to
5957 pass arguments to the kernel. For these platforms, and for the cases
....@@ -68,7 +66,6 @@
6866
6967 config CMDLINE_OVERRIDE
7068 bool "Built-in command line overrides firmware arguments"
71
- default n
7269 depends on CMDLINE_BOOL
7370 help
7471 By setting this option to 'Y' you will have your kernel ignore
....@@ -151,4 +148,14 @@
151148 form their addresses. That is, log base 2 of the span between
152149 adjacent ns16550 registers in the system.
153150
151
+config MIPS_CPS_NS16550_WIDTH
152
+ int "UART Register Width"
153
+ default 1
154
+ help
155
+ ns16550 registers width. UART registers IO access methods will be
156
+ selected in accordance with this parameter. By setting it to 1, 2 or
157
+ 4 UART registers will be accessed by means of lb/sb, lh/sh or lw/sw
158
+ instructions respectively. Any value not from that set activates
159
+ lb/sb instructions.
160
+
154161 endif # MIPS_CPS_NS16550_BOOL