diff --git a/arch/Kconfig b/arch/Kconfig index c83df86db67..ef6850821f3 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -705,16 +705,6 @@ config BOARD_LOOPSPERMSEC driver initialization. These delay loops must be calibrated for each board in order to assure accurate timing by the delay loops. -config ARCH_CALIBRATION - bool "Calibrate delay loop" - default n - ---help--- - Enables some built in instrumentation that causes a 100 second delay - during boot-up. This 100 second delay serves no purpose other than it - allows you to calibrate BOARD_LOOPSPERMSEC. You simply use a stop - watch to measure the actual delay then adjust BOARD_LOOPSPERMSEC until - the actual delay is 100 seconds. - comment "Interrupt options" config ARCH_HAVE_INTERRUPTSTACK diff --git a/arch/arm/src/common/up_initialize.c b/arch/arm/src/common/up_initialize.c index 4b6cfe00df1..eaf0b6b5463 100644 --- a/arch/arm/src/common/up_initialize.c +++ b/arch/arm/src/common/up_initialize.c @@ -65,33 +65,6 @@ * Private Functions ****************************************************************************/ -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Name: up_color_intstack * @@ -145,10 +118,6 @@ void up_initialize(void) CURRENT_REGS = NULL; - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Colorize the interrupt stack */ up_color_intstack(); diff --git a/arch/avr/src/common/up_initialize.c b/arch/avr/src/common/up_initialize.c index ee9e471fba2..9317376fc4f 100644 --- a/arch/avr/src/common/up_initialize.c +++ b/arch/avr/src/common/up_initialize.c @@ -107,33 +107,6 @@ * Private Functions ****************************************************************************/ -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Name: up_color_intstack * @@ -187,10 +160,6 @@ void up_initialize(void) g_current_regs = NULL; - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Colorize the interrupt stack */ up_color_intstack(); diff --git a/arch/hc/src/common/up_initialize.c b/arch/hc/src/common/up_initialize.c index b976bf1f525..babaad95c48 100644 --- a/arch/hc/src/common/up_initialize.c +++ b/arch/hc/src/common/up_initialize.c @@ -59,37 +59,6 @@ #include "up_arch.h" #include "up_internal.h" -/**************************************************************************** - * Private Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Public Functions ****************************************************************************/ @@ -117,10 +86,6 @@ void up_initialize(void) g_current_regs = NULL; - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Add any extra memory fragments to the memory manager */ up_addregion(); diff --git a/arch/mips/src/common/up_initialize.c b/arch/mips/src/common/up_initialize.c index c99fb507422..31306bb51b5 100644 --- a/arch/mips/src/common/up_initialize.c +++ b/arch/mips/src/common/up_initialize.c @@ -61,37 +61,6 @@ #include "up_arch.h" #include "up_internal.h" -/**************************************************************************** - * Private Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Public Functions ****************************************************************************/ @@ -119,10 +88,6 @@ void up_initialize(void) g_current_regs = NULL; - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Add any extra memory fragments to the memory manager */ up_addregion(); diff --git a/arch/or1k/src/common/up_initialize.c b/arch/or1k/src/common/up_initialize.c index a3d0bb703af..6de04c1d014 100644 --- a/arch/or1k/src/common/up_initialize.c +++ b/arch/or1k/src/common/up_initialize.c @@ -124,33 +124,6 @@ static void up_enable_dcache(void) } #endif -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Name: up_color_intstack * @@ -204,10 +177,6 @@ void up_initialize(void) CURRENT_REGS = NULL; - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Colorize the interrupt stack */ up_color_intstack(); diff --git a/arch/renesas/src/common/up_initialize.c b/arch/renesas/src/common/up_initialize.c index 77dd322ca46..c4db00a92b2 100644 --- a/arch/renesas/src/common/up_initialize.c +++ b/arch/renesas/src/common/up_initialize.c @@ -59,45 +59,6 @@ #include "up_arch.h" #include "up_internal.h" -/**************************************************************************** - * Pre-processor Definitions - ****************************************************************************/ - -/* Define to enable timing loop calibration */ - -#undef CONFIG_ARCH_CALIBRATION - -/**************************************************************************** - * Private Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) & defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - swarn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - swarn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Public Functions ****************************************************************************/ @@ -125,10 +86,6 @@ void up_initialize(void) g_current_regs = NULL; - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Initialize the interrupt subsystem */ up_irqinitialize(); diff --git a/arch/risc-v/src/common/up_initialize.c b/arch/risc-v/src/common/up_initialize.c index 83effe7494b..dfee494c37e 100644 --- a/arch/risc-v/src/common/up_initialize.c +++ b/arch/risc-v/src/common/up_initialize.c @@ -55,31 +55,6 @@ * Private Functions ****************************************************************************/ -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG) -static void up_calibratedelay(void) -{ - int i; - lldbg("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - lldbg("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Name: up_color_intstack * @@ -129,10 +104,6 @@ static inline void up_color_intstack(void) void up_initialize(void) { - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Colorize the interrupt stack */ up_color_intstack(); diff --git a/arch/x86/src/common/up_initialize.c b/arch/x86/src/common/up_initialize.c index 7c0f3065afc..bfe107d0e11 100644 --- a/arch/x86/src/common/up_initialize.c +++ b/arch/x86/src/common/up_initialize.c @@ -61,37 +61,6 @@ #include "up_arch.h" #include "up_internal.h" -/**************************************************************************** - * Private Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Public Functions ****************************************************************************/ @@ -119,10 +88,6 @@ void up_initialize(void) g_current_regs = NULL; - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Add any extra memory fragments to the memory manager */ up_addregion(); diff --git a/arch/xtensa/src/common/xtensa_initialize.c b/arch/xtensa/src/common/xtensa_initialize.c index 9be32e3a170..97db241fcd1 100644 --- a/arch/xtensa/src/common/xtensa_initialize.c +++ b/arch/xtensa/src/common/xtensa_initialize.c @@ -60,37 +60,6 @@ #include "xtensa.h" -/**************************************************************************** - * Private Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Public Functions ****************************************************************************/ @@ -127,10 +96,6 @@ void up_initialize(void) CURRENT_REGS = NULL; #endif - /* Calibrate the timing loop */ - - up_calibratedelay(); - /* Add any extra memory fragments to the memory manager */ xtensa_add_region(); diff --git a/arch/z16/src/common/up_initialize.c b/arch/z16/src/common/up_initialize.c index 1d936d241e7..b7d9da772da 100644 --- a/arch/z16/src/common/up_initialize.c +++ b/arch/z16/src/common/up_initialize.c @@ -72,37 +72,6 @@ volatile FAR chipreg_t *g_current_regs; -/**************************************************************************** - * Private Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Public Functions ****************************************************************************/ @@ -130,10 +99,6 @@ void up_initialize(void) g_current_regs = NULL; - /* Calibrate the timing loop */ - - up_calibratedelay(); - #if CONFIG_MM_REGIONS > 1 /* Add any extra memory fragments to the memory manager */ diff --git a/arch/z80/src/common/up_initialize.c b/arch/z80/src/common/up_initialize.c index 53a539326d4..6bb0d56c57f 100644 --- a/arch/z80/src/common/up_initialize.c +++ b/arch/z80/src/common/up_initialize.c @@ -61,37 +61,6 @@ #include "up_arch.h" #include "up_internal.h" -/**************************************************************************** - * Private Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: up_calibratedelay - * - * Description: - * Delay loops are provided for short timing loops. This function, if - * enabled, will just wait for 100 seconds. Using a stopwatch, you can - * can then determine if the timing loops are properly calibrated. - * - ****************************************************************************/ - -#if defined(CONFIG_ARCH_CALIBRATION) && defined(CONFIG_DEBUG_FEATURES) -static void up_calibratedelay(void) -{ - int i; - - _warn("Beginning 100s delay\n"); - for (i = 0; i < 100; i++) - { - up_mdelay(1000); - } - - _warn("End 100s delay\n"); -} -#else -# define up_calibratedelay() -#endif - /**************************************************************************** * Public Functions ****************************************************************************/ @@ -119,10 +88,6 @@ void up_initialize(void) INIT_IRQCONTEXT(); - /* Calibrate the timing loop */ - - up_calibratedelay(); - #if CONFIG_MM_REGIONS > 1 /* Add any extra memory fragments to the memory manager */ diff --git a/configs/amber/README.txt b/configs/amber/README.txt index ecc627d6d3f..164a1e254a8 100644 --- a/configs/amber/README.txt +++ b/configs/amber/README.txt @@ -423,13 +423,6 @@ Amber Web Server Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_AVR_INT0=n diff --git a/configs/avr32dev1/README.txt b/configs/avr32dev1/README.txt index 2ce95ccce40..647de6f7bac 100644 --- a/configs/avr32dev1/README.txt +++ b/configs/avr32dev1/README.txt @@ -387,13 +387,6 @@ AVR32DEV1 Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_AVR32_GPIOIRQ - GPIO interrupt support diff --git a/configs/bambino-200e/README.txt b/configs/bambino-200e/README.txt index f2d1066c0fd..b7cb0ec47e5 100644 --- a/configs/bambino-200e/README.txt +++ b/configs/bambino-200e/README.txt @@ -229,13 +229,6 @@ Bambino-200e Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC43_ADC0=y diff --git a/configs/c5471evm/README.txt b/configs/c5471evm/README.txt index cde2f7bdc4d..6e4047bbef4 100644 --- a/configs/c5471evm/README.txt +++ b/configs/c5471evm/README.txt @@ -91,13 +91,6 @@ ARM/C5471-specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - C5471 specific device driver settings CONFIG_SERIAL_IRDA_CONSOLE - selects the IRDA UART for the diff --git a/configs/cloudctrl/README.txt b/configs/cloudctrl/README.txt index 73b97e1597f..0c8bd731f58 100644 --- a/configs/cloudctrl/README.txt +++ b/configs/cloudctrl/README.txt @@ -258,13 +258,6 @@ Cloudctrl-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB diff --git a/configs/demo9s12ne64/README.txt b/configs/demo9s12ne64/README.txt index 7ab6261482b..25c59f3f953 100644 --- a/configs/demo9s12ne64/README.txt +++ b/configs/demo9s12ne64/README.txt @@ -305,13 +305,6 @@ HCS12/DEMO9S12NEC64-specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - GPIO Interrupts CONFIG_HCS12_GPIOIRQ - Enable general support for GPIO IRQs diff --git a/configs/dk-tm4c129x/README.txt b/configs/dk-tm4c129x/README.txt index 2504559b3ce..3efff8286a4 100644 --- a/configs/dk-tm4c129x/README.txt +++ b/configs/dk-tm4c129x/README.txt @@ -598,13 +598,6 @@ DK-TM4129X Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - There are configurations for disabling support for interrupts GPIO ports. Only GPIOP and GPIOQ pins can be used as interrupting sources on the TM4C129X. Additional interrupt support can be disabled if desired to diff --git a/configs/ea3131/README.txt b/configs/ea3131/README.txt index 99a05b26600..b76473740a6 100644 --- a/configs/ea3131/README.txt +++ b/configs/ea3131/README.txt @@ -534,15 +534,11 @@ ARM/EA3131-specific Configuration Options CONFIG_ARCH_BUTTONS - Enable support for buttons. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. CONFIG_ARCH_DMA - Support DMA initialization + CONFIG_ARCH_LOWVECTORS - define if vectors reside at address 0x0000:00000 Undefine if vectors reside at address 0xffff:0000 + CONFIG_ARCH_ROMPGTABLE - A pre-initialized, read-only page table is available. If defined, then board-specific logic must also define PGTABLE_BASE_PADDR, PGTABLE_BASE_VADDR, and all memory section mapping in a file named diff --git a/configs/ea3152/README.txt b/configs/ea3152/README.txt index 3a6c80b6365..f663f2fdead 100644 --- a/configs/ea3152/README.txt +++ b/configs/ea3152/README.txt @@ -340,15 +340,11 @@ ARM/EA3152-specific Configuration Options CONFIG_ARCH_BUTTONS - Enable support for buttons. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. CONFIG_ARCH_DMA - Support DMA initialization + CONFIG_ARCH_LOWVECTORS - define if vectors reside at address 0x0000:00000 Undefine if vectors reside at address 0xffff:0000 + CONFIG_ARCH_ROMPGTABLE - A pre-initialized, read-only page table is available. If defined, then board-specific logic must also define PGTABLE_BASE_PADDR, PGTABLE_BASE_VADDR, and all memory section mapping in a file named diff --git a/configs/eagle100/README.txt b/configs/eagle100/README.txt index 6e19c1159b0..c6f38c49d29 100644 --- a/configs/eagle100/README.txt +++ b/configs/eagle100/README.txt @@ -126,13 +126,6 @@ Eagle100-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - There are configurations for disabling support for interrupts GPIO ports. GPIOH and GPIOJ must be disabled because they do not exist on the LM3S6918. Additional interrupt support can be disabled if desired to reduce memory diff --git a/configs/ekk-lm3s9b96/README.txt b/configs/ekk-lm3s9b96/README.txt index 8f7b3645c95..af873ceaa2c 100644 --- a/configs/ekk-lm3s9b96/README.txt +++ b/configs/ekk-lm3s9b96/README.txt @@ -133,13 +133,6 @@ Stellaris EKK-LM3S9B96 Evaluation Kit Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - There are configurations for disabling support for interrupts GPIO ports. GPIOJ must be disabled because it does not exist on the LM3S9B96. Additional interrupt support can be disabled if desired to reduce memory diff --git a/configs/fire-stm32v2/README.txt b/configs/fire-stm32v2/README.txt index 0e1e853056f..490d25c95cb 100644 --- a/configs/fire-stm32v2/README.txt +++ b/configs/fire-stm32v2/README.txt @@ -369,13 +369,6 @@ M3 Wildfire-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB --- diff --git a/configs/freedom-k64f/README.txt b/configs/freedom-k64f/README.txt index b8aa7682727..d55ed210476 100644 --- a/configs/freedom-k64f/README.txt +++ b/configs/freedom-k64f/README.txt @@ -709,13 +709,6 @@ Freedom K64F Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_KINETIS_TRACE -- Enable trace clocking on power up. diff --git a/configs/freedom-k66f/README.txt b/configs/freedom-k66f/README.txt index 67b5f43e7c2..c3fa065ea8e 100644 --- a/configs/freedom-k66f/README.txt +++ b/configs/freedom-k66f/README.txt @@ -712,13 +712,6 @@ Freedom K66F Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_KINETIS_TRACE -- Enable trace clocking on power up. diff --git a/configs/freedom-kl25z/README.txt b/configs/freedom-kl25z/README.txt index e69ec67d9d6..b84868e117f 100644 --- a/configs/freedom-kl25z/README.txt +++ b/configs/freedom-kl25z/README.txt @@ -207,13 +207,6 @@ Freedom KL25Z-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled as follows. These settings are for all of the K25Z100/120 line and may not be available for the MKL25Z128 in particular: diff --git a/configs/freedom-kl26z/README.txt b/configs/freedom-kl26z/README.txt index 073316f50a8..2d3119af64a 100644 --- a/configs/freedom-kl26z/README.txt +++ b/configs/freedom-kl26z/README.txt @@ -185,13 +185,6 @@ Freedom KL26Z-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled as follows. These settings are for all of the K25Z100/120 line and may not be available for the MKL26Z128 in particular: diff --git a/configs/hymini-stm32v/README.txt b/configs/hymini-stm32v/README.txt index 6c2953a8db9..9a2e0bfdb0d 100644 --- a/configs/hymini-stm32v/README.txt +++ b/configs/hymini-stm32v/README.txt @@ -159,13 +159,6 @@ HY-Mini specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB --- diff --git a/configs/kwikstik-k40/README.txt b/configs/kwikstik-k40/README.txt index 91b38cc909d..0370db7ab25 100644 --- a/configs/kwikstik-k40/README.txt +++ b/configs/kwikstik-k40/README.txt @@ -202,13 +202,6 @@ KwikStik-K40-specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_KINETIS_TRACE -- Enable trace clocking on power up. diff --git a/configs/lincoln60/README.txt b/configs/lincoln60/README.txt index 83857e4bd5d..e1a85f8d084 100644 --- a/configs/lincoln60/README.txt +++ b/configs/lincoln60/README.txt @@ -109,13 +109,6 @@ Lincoln 60 Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC17_MAINOSC=y CONFIG_LPC17_PLL0=y diff --git a/configs/lm3s6432-s2e/README.txt b/configs/lm3s6432-s2e/README.txt index 3d36afe085c..cee7eac36b5 100644 --- a/configs/lm3s6432-s2e/README.txt +++ b/configs/lm3s6432-s2e/README.txt @@ -129,13 +129,6 @@ Stellaris MDL-S2E Reference Design Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - There are configurations for disabling support for interrupts GPIO ports. GPIOH and GPIOJ must be disabled because they do not exist on the LM3S6432. Additional interrupt support can be disabled if desired to reduce memory diff --git a/configs/lm3s6965-ek/README.txt b/configs/lm3s6965-ek/README.txt index f6a4d1dc5b2..86ef7d61a2b 100644 --- a/configs/lm3s6965-ek/README.txt +++ b/configs/lm3s6965-ek/README.txt @@ -276,13 +276,6 @@ Stellaris LM3S6965 Evaluation Kit Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - There are configurations for disabling support for interrupts GPIO ports. GPIOJ must be disabled because it does not exist on the LM3S6965. Additional interrupt support can be disabled if desired to reduce memory diff --git a/configs/lm3s8962-ek/README.txt b/configs/lm3s8962-ek/README.txt index 26408a5ddfd..101d56c3a18 100644 --- a/configs/lm3s8962-ek/README.txt +++ b/configs/lm3s8962-ek/README.txt @@ -196,13 +196,6 @@ Stellaris LM3S8962 Evaluation Kit Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - There are configurations for disabling support for interrupts GPIO ports. GPIOJ must be disabled because it does not exist on the LM3S8962. Additional interrupt support can be disabled if desired to reduce memory diff --git a/configs/lm4f120-launchpad/README.txt b/configs/lm4f120-launchpad/README.txt index b6cbdb37711..235296c5c59 100644 --- a/configs/lm4f120-launchpad/README.txt +++ b/configs/lm4f120-launchpad/README.txt @@ -405,13 +405,6 @@ LM4F120 LaunchPad Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - There are configurations for disabling support for interrupts GPIO ports. GPIOJ must be disabled because it does not exist on the LM4F120. Additional interrupt support can be disabled if desired to reduce memory diff --git a/configs/lpc4330-xplorer/README.txt b/configs/lpc4330-xplorer/README.txt index a870bb440e3..77a6ff50734 100644 --- a/configs/lpc4330-xplorer/README.txt +++ b/configs/lpc4330-xplorer/README.txt @@ -481,13 +481,6 @@ LPC4330-Xplorer Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC43_ADC0=y diff --git a/configs/lpc4337-ws/README.txt b/configs/lpc4337-ws/README.txt index 4d4bb07564d..654e6c9e68d 100644 --- a/configs/lpc4337-ws/README.txt +++ b/configs/lpc4337-ws/README.txt @@ -520,13 +520,6 @@ LPC4337-ws Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC43_ADC0=y diff --git a/configs/lpc4357-evb/README.txt b/configs/lpc4357-evb/README.txt index 9443e9e9201..0766f691e92 100644 --- a/configs/lpc4357-evb/README.txt +++ b/configs/lpc4357-evb/README.txt @@ -517,13 +517,6 @@ LPC4357-EVB Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC43_ADC0=y diff --git a/configs/lpc4370-link2/README.txt b/configs/lpc4370-link2/README.txt index 6b69fcad41e..04e9521b5b0 100644 --- a/configs/lpc4370-link2/README.txt +++ b/configs/lpc4370-link2/README.txt @@ -520,13 +520,6 @@ LPC4370-Link2 Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC43_ADC0=y diff --git a/configs/lpcxpresso-lpc1115/README.txt b/configs/lpcxpresso-lpc1115/README.txt index ba4a5550fd0..5976255efb1 100644 --- a/configs/lpcxpresso-lpc1115/README.txt +++ b/configs/lpcxpresso-lpc1115/README.txt @@ -455,13 +455,6 @@ LPCXpresso Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC11_MAINOSC=y CONFIG_LPC11_PLL0=y diff --git a/configs/lpcxpresso-lpc1768/README.txt b/configs/lpcxpresso-lpc1768/README.txt index a0ba3a50e16..87d9935bbd9 100644 --- a/configs/lpcxpresso-lpc1768/README.txt +++ b/configs/lpcxpresso-lpc1768/README.txt @@ -427,13 +427,6 @@ LPCXpresso Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC17_MAINOSC=y CONFIG_LPC17_PLL0=y diff --git a/configs/mbed/README.txt b/configs/mbed/README.txt index 34ecc3b941a..a47a42e4cb3 100644 --- a/configs/mbed/README.txt +++ b/configs/mbed/README.txt @@ -72,13 +72,6 @@ mbed Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC17_MAINOSC=y CONFIG_LPC17_PLL0=y diff --git a/configs/mcb1700/README.txt b/configs/mcb1700/README.txt index 63ce4333a73..233f75fb595 100644 --- a/configs/mcb1700/README.txt +++ b/configs/mcb1700/README.txt @@ -73,13 +73,6 @@ mcb1700 Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC17_MAINOSC=y CONFIG_LPC17_PLL0=y diff --git a/configs/mcu123-lpc214x/README.txt b/configs/mcu123-lpc214x/README.txt index 89cf5d44f30..df3471d0eee 100644 --- a/configs/mcu123-lpc214x/README.txt +++ b/configs/mcu123-lpc214x/README.txt @@ -254,13 +254,6 @@ ARM/LPC214X-specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - LPC2148 specific chip initialization These provide register setup values: diff --git a/configs/micropendous3/README.txt b/configs/micropendous3/README.txt index a1de34a219c..f224f7428a0 100644 --- a/configs/micropendous3/README.txt +++ b/configs/micropendous3/README.txt @@ -442,13 +442,6 @@ Micropendous3 Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_AVR_INT0=n diff --git a/configs/mikroe-stm32f4/README.txt b/configs/mikroe-stm32f4/README.txt index c0fd0a65069..bb27a811910 100644 --- a/configs/mikroe-stm32f4/README.txt +++ b/configs/mikroe-stm32f4/README.txt @@ -282,13 +282,6 @@ Mikroe-STM32F4-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB1 diff --git a/configs/mirtoo/README.txt b/configs/mirtoo/README.txt index 66c643e9232..f018d4ab6ca 100644 --- a/configs/mirtoo/README.txt +++ b/configs/mirtoo/README.txt @@ -702,13 +702,6 @@ PIC32MX Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - PIC32MX Configuration CONFIG_PIC32MX_MVEC - Select muli- vs. single-vectored interrupts diff --git a/configs/moteino-mega/README.txt b/configs/moteino-mega/README.txt index d9334f950e1..09ac7efd090 100644 --- a/configs/moteino-mega/README.txt +++ b/configs/moteino-mega/README.txt @@ -183,13 +183,6 @@ MoteinoMEGA Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_AVR_INT0=n diff --git a/configs/ne64badge/README.txt b/configs/ne64badge/README.txt index aba98ed3be2..be257e12f36 100644 --- a/configs/ne64badge/README.txt +++ b/configs/ne64badge/README.txt @@ -412,13 +412,6 @@ HCS12/NE64BADGE-specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - GPIO Interrupts CONFIG_HCS12_GPIOIRQ - Enable general support for GPIO IRQs diff --git a/configs/nr5m100-nexys4/nsh/defconfig b/configs/nr5m100-nexys4/nsh/defconfig index 6a699af8e0f..1fe3cf00269 100644 --- a/configs/nr5m100-nexys4/nsh/defconfig +++ b/configs/nr5m100-nexys4/nsh/defconfig @@ -4,7 +4,6 @@ # CONFIG_STANDARD_SERIAL is not set CONFIG_ARCH_BOARD_NR5M100_NEXYS4=y CONFIG_ARCH_BOARD="nr5m100-nexys4" -CONFIG_ARCH_CALIBRATION=y CONFIG_ARCH_CHIP_NR5=y CONFIG_ARCH_CHIP_NR5M100=y CONFIG_ARCH_RISCV=y diff --git a/configs/ntosd-dm320/README.txt b/configs/ntosd-dm320/README.txt index 96c7adbe870..7bd71464f01 100644 --- a/configs/ntosd-dm320/README.txt +++ b/configs/ntosd-dm320/README.txt @@ -239,13 +239,6 @@ ARM/DM320-specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - DM320 specific device driver settings CONFIG_UARTn_SERIAL_CONSOLE - selects the UARTn for the diff --git a/configs/nutiny-nuc120/README.txt b/configs/nutiny-nuc120/README.txt index 8da136768df..0a26a1843a8 100644 --- a/configs/nutiny-nuc120/README.txt +++ b/configs/nutiny-nuc120/README.txt @@ -193,13 +193,6 @@ NuTiny-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled as follows. These settings are for all of the NUC100/120 line and may not be available for the NUC120LE3AN in particular: diff --git a/configs/olimex-lpc-h3131/README.txt b/configs/olimex-lpc-h3131/README.txt index 510f24cb267..8c65ef8aa38 100644 --- a/configs/olimex-lpc-h3131/README.txt +++ b/configs/olimex-lpc-h3131/README.txt @@ -429,15 +429,11 @@ ARM/LPC-H3131-specific Configuration Options CONFIG_ARCH_BUTTONS - Enable support for buttons. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. CONFIG_ARCH_DMA - Support DMA initialization + CONFIG_ARCH_LOWVECTORS - define if vectors reside at address 0x0000:00000 Undefine if vectors reside at address 0xffff:0000 + CONFIG_ARCH_ROMPGTABLE - A pre-initialized, read-only page table is available. If defined, then board-specific logic must also define PGTABLE_BASE_PADDR, PGTABLE_BASE_VADDR, and all memory section mapping in a file named diff --git a/configs/olimex-lpc1766stk/README.txt b/configs/olimex-lpc1766stk/README.txt index a5ef1818b8e..7c23300b763 100644 --- a/configs/olimex-lpc1766stk/README.txt +++ b/configs/olimex-lpc1766stk/README.txt @@ -509,13 +509,6 @@ Olimex LPC1766-STK Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC17_MAINOSC=y diff --git a/configs/pcblogic-pic32mx/README.txt b/configs/pcblogic-pic32mx/README.txt index a254778b638..80ca98bb2d5 100644 --- a/configs/pcblogic-pic32mx/README.txt +++ b/configs/pcblogic-pic32mx/README.txt @@ -413,13 +413,6 @@ PIC32MX Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - PIC32MX Configuration CONFIG_PIC32MX_MVEC - Select muli- vs. single-vectored interrupts diff --git a/configs/pic32mx-starterkit/README.txt b/configs/pic32mx-starterkit/README.txt index fec4c0c7bc4..f8ebdbe75d7 100644 --- a/configs/pic32mx-starterkit/README.txt +++ b/configs/pic32mx-starterkit/README.txt @@ -830,13 +830,6 @@ PIC32MX Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - PIC32MX Configuration CONFIG_PIC32MX_MVEC - Select muli- vs. single-vectored interrupts diff --git a/configs/pic32mx7mmb/README.txt b/configs/pic32mx7mmb/README.txt index 5843a39c9b5..c4baa5479c8 100644 --- a/configs/pic32mx7mmb/README.txt +++ b/configs/pic32mx7mmb/README.txt @@ -412,13 +412,6 @@ PIC32MX Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - PIC32MX Configuration CONFIG_PIC32MX_MVEC - Select muli- vs. single-vectored interrupts diff --git a/configs/sam3u-ek/README.txt b/configs/sam3u-ek/README.txt index 076ebec019d..f88ccbe0b29 100644 --- a/configs/sam3u-ek/README.txt +++ b/configs/sam3u-ek/README.txt @@ -140,13 +140,6 @@ SAM3U-EK-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAM34_RTC - Real Time Clock diff --git a/configs/sam4e-ek/README.txt b/configs/sam4e-ek/README.txt index 5796edd8a1b..b9c0c41dde0 100644 --- a/configs/sam4e-ek/README.txt +++ b/configs/sam4e-ek/README.txt @@ -927,13 +927,6 @@ SAM4E-EK-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAM34_SPI0 - Serial Peripheral Interface 0 (SPI0) diff --git a/configs/sam4l-xplained/README.txt b/configs/sam4l-xplained/README.txt index ba4982bde62..91e7ff967dc 100644 --- a/configs/sam4l-xplained/README.txt +++ b/configs/sam4l-xplained/README.txt @@ -294,13 +294,6 @@ SAM4L Xplained Pro-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CPU diff --git a/configs/sam4s-xplained-pro/README.txt b/configs/sam4s-xplained-pro/README.txt index a0cc4a2cd61..718b978584e 100644 --- a/configs/sam4s-xplained-pro/README.txt +++ b/configs/sam4s-xplained-pro/README.txt @@ -215,13 +215,6 @@ SAM4S Xplained-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAM34_RTC - Real Time Clock diff --git a/configs/sam4s-xplained/README.txt b/configs/sam4s-xplained/README.txt index a3d24fd2296..042344fafb2 100644 --- a/configs/sam4s-xplained/README.txt +++ b/configs/sam4s-xplained/README.txt @@ -210,13 +210,6 @@ SAM4S Xplained-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAM34_RTC - Real Time Clock diff --git a/configs/sama5d2-xult/README.txt b/configs/sama5d2-xult/README.txt index 361e74a9a9a..36042f3e28e 100644 --- a/configs/sama5d2-xult/README.txt +++ b/configs/sama5d2-xult/README.txt @@ -780,13 +780,6 @@ SAMA5D2-XULT Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: REVISIT: Unverified, cloned text from the SAMA5D4-EK README.txt diff --git a/configs/sama5d3-xplained/README.txt b/configs/sama5d3-xplained/README.txt index 4eb8dac6453..402a82216d4 100644 --- a/configs/sama5d3-xplained/README.txt +++ b/configs/sama5d3-xplained/README.txt @@ -2851,13 +2851,6 @@ SAMA5D3-Xplained Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAMA5_DBGU - Debug Unit diff --git a/configs/sama5d3x-ek/README.txt b/configs/sama5d3x-ek/README.txt index 0c833139ace..792da6e4db5 100644 --- a/configs/sama5d3x-ek/README.txt +++ b/configs/sama5d3x-ek/README.txt @@ -3170,13 +3170,6 @@ SAMA5D3x-EK Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAMA5_DBGU - Debug Unit diff --git a/configs/sama5d4-ek/README.txt b/configs/sama5d4-ek/README.txt index 2a5e4724eb9..444d4797a31 100644 --- a/configs/sama5d4-ek/README.txt +++ b/configs/sama5d4-ek/README.txt @@ -3456,13 +3456,6 @@ SAMA4D4-EK Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAMA5_DBGU - Debug Unit diff --git a/configs/samd20-xplained/README.txt b/configs/samd20-xplained/README.txt index 7fe16bcfbbf..69fe80ce4e8 100644 --- a/configs/samd20-xplained/README.txt +++ b/configs/samd20-xplained/README.txt @@ -536,13 +536,6 @@ SAMD20 Xplained Pro-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAMD2L2_WDT - Watchdog Timer" diff --git a/configs/samd21-xplained/README.txt b/configs/samd21-xplained/README.txt index 8cef7de0af6..6f6a5b46dbe 100644 --- a/configs/samd21-xplained/README.txt +++ b/configs/samd21-xplained/README.txt @@ -400,13 +400,6 @@ SAMD21 Xplained Pro-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAMD2L2_AC - Analog Comparator diff --git a/configs/saml21-xplained/README.txt b/configs/saml21-xplained/README.txt index db1ce483b66..c1a58a0e194 100644 --- a/configs/saml21-xplained/README.txt +++ b/configs/saml21-xplained/README.txt @@ -572,13 +572,6 @@ SAML21 Xplained Pro-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_SAMD2L2_AC - Analog Comparator diff --git a/configs/shenzhou/README.txt b/configs/shenzhou/README.txt index 0e7d9e96b3d..378058a526d 100644 --- a/configs/shenzhou/README.txt +++ b/configs/shenzhou/README.txt @@ -275,13 +275,6 @@ Shenzhou-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB diff --git a/configs/stm3210e-eval/README.txt b/configs/stm3210e-eval/README.txt index c2a791adbc9..43a32719b9c 100644 --- a/configs/stm3210e-eval/README.txt +++ b/configs/stm3210e-eval/README.txt @@ -306,13 +306,6 @@ STM3210E-EVAL-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB --- diff --git a/configs/stm3220g-eval/README.txt b/configs/stm3220g-eval/README.txt index 45ffbbb8e53..4243d42ce96 100644 --- a/configs/stm3220g-eval/README.txt +++ b/configs/stm3220g-eval/README.txt @@ -304,13 +304,6 @@ STM3220G-EVAL-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB1 diff --git a/configs/stm3240g-eval/README.txt b/configs/stm3240g-eval/README.txt index 75d08303e29..55c42fcabde 100644 --- a/configs/stm3240g-eval/README.txt +++ b/configs/stm3240g-eval/README.txt @@ -395,13 +395,6 @@ STM3240G-EVAL-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB1 diff --git a/configs/stm32_tiny/README.txt b/configs/stm32_tiny/README.txt index b7c09fc9f1b..24d0f86acfe 100644 --- a/configs/stm32_tiny/README.txt +++ b/configs/stm32_tiny/README.txt @@ -161,13 +161,6 @@ STM32 Tiny - specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB diff --git a/configs/stm32f103-minimum/README.txt b/configs/stm32f103-minimum/README.txt index ed7182f01d8..9fd2d3fd98a 100644 --- a/configs/stm32f103-minimum/README.txt +++ b/configs/stm32f103-minimum/README.txt @@ -601,13 +601,6 @@ STM32F103 Minimum - specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB diff --git a/configs/stm32f3discovery/README.txt b/configs/stm32f3discovery/README.txt index b7f7bd92ef2..0d54f12d350 100644 --- a/configs/stm32f3discovery/README.txt +++ b/configs/stm32f3discovery/README.txt @@ -274,13 +274,6 @@ STM32F3Discovery-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB1 diff --git a/configs/stm32f429i-disco/README.txt b/configs/stm32f429i-disco/README.txt index 5be3707c6d6..65337dd1ad3 100644 --- a/configs/stm32f429i-disco/README.txt +++ b/configs/stm32f429i-disco/README.txt @@ -454,13 +454,6 @@ STM32F429I-DISCO-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB1 diff --git a/configs/stm32f4discovery/README.txt b/configs/stm32f4discovery/README.txt index ec1638edb33..a7e498af6b3 100644 --- a/configs/stm32f4discovery/README.txt +++ b/configs/stm32f4discovery/README.txt @@ -795,13 +795,6 @@ STM32F4Discovery-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB1 diff --git a/configs/stm32f746g-disco/README.txt b/configs/stm32f746g-disco/README.txt index f5c839b4602..87aa0c0db33 100644 --- a/configs/stm32f746g-disco/README.txt +++ b/configs/stm32f746g-disco/README.txt @@ -257,13 +257,6 @@ STM32F746G-DISCO-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: APB1 diff --git a/configs/stm32ldiscovery/README.txt b/configs/stm32ldiscovery/README.txt index 26ae89712d0..706c94869fc 100644 --- a/configs/stm32ldiscovery/README.txt +++ b/configs/stm32ldiscovery/README.txt @@ -362,13 +362,6 @@ STM32L-Discovery-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB diff --git a/configs/stm32vldiscovery/README.txt b/configs/stm32vldiscovery/README.txt index 8dc62c0d658..377cceffe72 100644 --- a/configs/stm32vldiscovery/README.txt +++ b/configs/stm32vldiscovery/README.txt @@ -109,13 +109,6 @@ RX pin (PA10) of your board besides, of course, the GND pin. CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - when used togeter with CONFIG_DEBUG_FEATURES enables some - build in instrumentation that cause a 100 second delay during boot-up. - This 100 second delay serves no purpose other than it allows you to - calibratre CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to - measure the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: AHB diff --git a/configs/sure-pic32mx/README.txt b/configs/sure-pic32mx/README.txt index e8cbda1b055..977e55fc48c 100644 --- a/configs/sure-pic32mx/README.txt +++ b/configs/sure-pic32mx/README.txt @@ -494,13 +494,6 @@ PIC32MX Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - PIC32MX Configuration CONFIG_PIC32MX_MVEC - Select muli- vs. single-vectored interrupts diff --git a/configs/teensy-2.0/README.txt b/configs/teensy-2.0/README.txt index 0869d970d49..3089351da71 100644 --- a/configs/teensy-2.0/README.txt +++ b/configs/teensy-2.0/README.txt @@ -445,13 +445,6 @@ Teensy++ Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_AVR_INT0=n diff --git a/configs/teensy-3.x/README.txt b/configs/teensy-3.x/README.txt index 05e2e7dc944..f1a73bb3ed8 100644 --- a/configs/teensy-3.x/README.txt +++ b/configs/teensy-3.x/README.txt @@ -205,13 +205,6 @@ Teensy-3.1 Configuration settings CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibrate - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: To be provided diff --git a/configs/tm4c123g-launchpad/README.txt b/configs/tm4c123g-launchpad/README.txt index 3c388fe62f1..58b7c4df7d8 100644 --- a/configs/tm4c123g-launchpad/README.txt +++ b/configs/tm4c123g-launchpad/README.txt @@ -504,13 +504,6 @@ TM4C123G LaunchPad Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - There are configurations for disabling support for interrupts GPIO ports. Only GPIOP and GPIOQ pins can be used as interrupting sources on the TM4C129x. Additional interrupt support can be disabled if desired to diff --git a/configs/twr-k60n512/README.txt b/configs/twr-k60n512/README.txt index 701aab0f7db..b486cbf692a 100644 --- a/configs/twr-k60n512/README.txt +++ b/configs/twr-k60n512/README.txt @@ -341,13 +341,6 @@ TWR-K60N512-specific Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_KINETIS_TRACE -- Enable trace clocking on power up. diff --git a/configs/twr-k64f120m/README.txt b/configs/twr-k64f120m/README.txt index 4db2301c354..fe9ed6e5830 100644 --- a/configs/twr-k64f120m/README.txt +++ b/configs/twr-k64f120m/README.txt @@ -465,13 +465,6 @@ TWR-K64F120M-specific Configuration Options CONFIG_ARCH_STACKDUMP - Do stack dumps after assertions - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_KINETIS_TRACE -- Enable trace clocking on power up. diff --git a/configs/ubw32/README.txt b/configs/ubw32/README.txt index 3c0af99a5f0..5ec2ad04211 100644 --- a/configs/ubw32/README.txt +++ b/configs/ubw32/README.txt @@ -428,13 +428,6 @@ PIC32MX Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - PIC32MX Configuration CONFIG_PIC32MX_MVEC - Select muli- vs. single-vectored interrupts diff --git a/configs/zkit-arm-1769/README.txt b/configs/zkit-arm-1769/README.txt index 8f7d1bec6e5..982efb79b34 100644 --- a/configs/zkit-arm-1769/README.txt +++ b/configs/zkit-arm-1769/README.txt @@ -238,13 +238,6 @@ ZKit-ARM Configuration Options CONFIG_ARCH_LEDS - Use LEDs to show state. Unique to board architecture. - CONFIG_ARCH_CALIBRATION - Enables some build in instrumentation that - cause a 100 second delay during boot-up. This 100 second delay - serves no purpose other than it allows you to calibratre - CONFIG_ARCH_LOOPSPERMSEC. You simply use a stop watch to measure - the 100 second delay then adjust CONFIG_ARCH_LOOPSPERMSEC until - the delay actually is 100 seconds. - Individual subsystems can be enabled: CONFIG_LPC17_MAINOSC=y CONFIG_LPC17_PLL0=y