Thomas Gleixner | d952367 | 2019-05-29 07:18:01 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Thierry Escande | afe9dba4 | 2017-03-28 18:11:26 +0200 | [diff] [blame] | 2 | /* |
| 3 | * memconsole.h |
| 4 | * |
| 5 | * Internal headers of the memory based BIOS console. |
| 6 | * |
| 7 | * Copyright 2017 Google Inc. |
Thierry Escande | afe9dba4 | 2017-03-28 18:11:26 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __FIRMWARE_GOOGLE_MEMCONSOLE_H |
| 11 | #define __FIRMWARE_GOOGLE_MEMCONSOLE_H |
| 12 | |
Julius Werner | 7918cfc | 2017-05-02 15:16:29 -0700 | [diff] [blame] | 13 | #include <linux/types.h> |
| 14 | |
Thierry Escande | afe9dba4 | 2017-03-28 18:11:26 +0200 | [diff] [blame] | 15 | /* |
| 16 | * memconsole_setup |
| 17 | * |
Julius Werner | 7918cfc | 2017-05-02 15:16:29 -0700 | [diff] [blame] | 18 | * Initialize the memory console, passing the function to handle read accesses. |
Thierry Escande | afe9dba4 | 2017-03-28 18:11:26 +0200 | [diff] [blame] | 19 | */ |
Julius Werner | 7918cfc | 2017-05-02 15:16:29 -0700 | [diff] [blame] | 20 | void memconsole_setup(ssize_t (*read_func)(char *, loff_t, size_t)); |
Thierry Escande | afe9dba4 | 2017-03-28 18:11:26 +0200 | [diff] [blame] | 21 | |
| 22 | /* |
| 23 | * memconsole_sysfs_init |
| 24 | * |
| 25 | * Update memory console length and create binary file |
| 26 | * for firmware object. |
| 27 | */ |
| 28 | int memconsole_sysfs_init(void); |
| 29 | |
| 30 | /* memconsole_exit |
| 31 | * |
| 32 | * Unmap the console buffer. |
| 33 | */ |
| 34 | void memconsole_exit(void); |
| 35 | |
| 36 | #endif /* __FIRMWARE_GOOGLE_MEMCONSOLE_H */ |