Thomas Gleixner | 1ccea77 | 2019-05-19 15:51:43 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Petr Mladek | 42a0bb3 | 2016-05-20 17:00:33 -0700 | [diff] [blame] | 2 | /* |
| 3 | * internal.h - printk internal definitions |
Petr Mladek | 42a0bb3 | 2016-05-20 17:00:33 -0700 | [diff] [blame] | 4 | */ |
| 5 | #include <linux/percpu.h> |
| 6 | |
Sergey Senozhatsky | 099f1c8 | 2016-12-27 23:16:06 +0900 | [diff] [blame] | 7 | #ifdef CONFIG_PRINTK |
| 8 | |
Petr Mladek | 8c4e93c | 2020-02-24 13:13:31 +0100 | [diff] [blame] | 9 | #define PRINTK_SAFE_CONTEXT_MASK 0x007ffffff |
| 10 | #define PRINTK_NMI_DIRECT_CONTEXT_MASK 0x008000000 |
| 11 | #define PRINTK_NMI_CONTEXT_MASK 0xff0000000 |
| 12 | |
| 13 | #define PRINTK_NMI_CONTEXT_OFFSET 0x010000000 |
Sergey Senozhatsky | 099f1c8 | 2016-12-27 23:16:06 +0900 | [diff] [blame] | 14 | |
| 15 | extern raw_spinlock_t logbuf_lock; |
| 16 | |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 17 | __printf(4, 0) |
Petr Mladek | 03fc7f9 | 2018-06-27 16:20:28 +0200 | [diff] [blame] | 18 | int vprintk_store(int facility, int level, |
John Ogness | 74caba7 | 2020-09-21 13:24:45 +0206 | [diff] [blame] | 19 | const struct dev_printk_info *dev_info, |
Petr Mladek | 03fc7f9 | 2018-06-27 16:20:28 +0200 | [diff] [blame] | 20 | const char *fmt, va_list args); |
| 21 | |
Sergey Senozhatsky | 099f1c8 | 2016-12-27 23:16:06 +0900 | [diff] [blame] | 22 | __printf(1, 0) int vprintk_default(const char *fmt, va_list args); |
Petr Mladek | 719f6a7 | 2017-04-20 10:52:31 +0200 | [diff] [blame] | 23 | __printf(1, 0) int vprintk_deferred(const char *fmt, va_list args); |
Sergey Senozhatsky | 099f1c8 | 2016-12-27 23:16:06 +0900 | [diff] [blame] | 24 | __printf(1, 0) int vprintk_func(const char *fmt, va_list args); |
| 25 | void __printk_safe_enter(void); |
| 26 | void __printk_safe_exit(void); |
| 27 | |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 28 | void printk_safe_init(void); |
| 29 | bool printk_percpu_data_ready(void); |
| 30 | |
Sergey Senozhatsky | 099f1c8 | 2016-12-27 23:16:06 +0900 | [diff] [blame] | 31 | #define printk_safe_enter_irqsave(flags) \ |
| 32 | do { \ |
| 33 | local_irq_save(flags); \ |
| 34 | __printk_safe_enter(); \ |
| 35 | } while (0) |
| 36 | |
| 37 | #define printk_safe_exit_irqrestore(flags) \ |
| 38 | do { \ |
| 39 | __printk_safe_exit(); \ |
| 40 | local_irq_restore(flags); \ |
| 41 | } while (0) |
| 42 | |
| 43 | #define printk_safe_enter_irq() \ |
| 44 | do { \ |
| 45 | local_irq_disable(); \ |
| 46 | __printk_safe_enter(); \ |
| 47 | } while (0) |
| 48 | |
| 49 | #define printk_safe_exit_irq() \ |
| 50 | do { \ |
| 51 | __printk_safe_exit(); \ |
| 52 | local_irq_enable(); \ |
| 53 | } while (0) |
| 54 | |
Petr Mladek | 03fc7f9 | 2018-06-27 16:20:28 +0200 | [diff] [blame] | 55 | void defer_console_output(void); |
| 56 | |
Sergey Senozhatsky | 099f1c8 | 2016-12-27 23:16:06 +0900 | [diff] [blame] | 57 | #else |
| 58 | |
| 59 | __printf(1, 0) int vprintk_func(const char *fmt, va_list args) { return 0; } |
| 60 | |
| 61 | /* |
| 62 | * In !PRINTK builds we still export logbuf_lock spin_lock, console_sem |
| 63 | * semaphore and some of console functions (console_unlock()/etc.), so |
| 64 | * printk-safe must preserve the existing local IRQ guarantees. |
| 65 | */ |
| 66 | #define printk_safe_enter_irqsave(flags) local_irq_save(flags) |
| 67 | #define printk_safe_exit_irqrestore(flags) local_irq_restore(flags) |
| 68 | |
| 69 | #define printk_safe_enter_irq() local_irq_disable() |
| 70 | #define printk_safe_exit_irq() local_irq_enable() |
| 71 | |
Sergey Senozhatsky | ab6f762 | 2020-03-03 20:30:02 +0900 | [diff] [blame] | 72 | static inline void printk_safe_init(void) { } |
| 73 | static inline bool printk_percpu_data_ready(void) { return false; } |
Sergey Senozhatsky | 099f1c8 | 2016-12-27 23:16:06 +0900 | [diff] [blame] | 74 | #endif /* CONFIG_PRINTK */ |