Change console code to emit SPEW with DEFAULT_CONSOLE_LOGLEVEL==8.
[coreboot.git] / src / include / console / loglevel.h
1 #ifndef LOGLEVEL_H
2 #define LOGLEVEL_H
3
4 /* Safe for inclusion in assembly */
5
6 #ifndef ASM_CONSOLE_LOGLEVEL
7 #define ASM_CONSOLE_LOGLEVEL CONFIG_MAXIMUM_CONSOLE_LOGLEVEL
8 #endif
9
10 #define BIOS_EMERG      0   /* system is unusable                   */
11 #define BIOS_ALERT      1   /* action must be taken immediately     */
12 #define BIOS_CRIT       2   /* critical conditions                  */
13 #define BIOS_ERR        3   /* error conditions                     */
14 #define BIOS_WARNING    4   /* warning conditions                   */
15 #define BIOS_NOTICE     5   /* normal but significant condition     */
16 #define BIOS_INFO       6   /* informational                        */
17 #define BIOS_DEBUG      7   /* debug-level messages                 */
18 #define BIOS_SPEW       8   /* Way too many details                 */
19
20 #endif /* LOGLEVEL_H */