Linux 4.19.133
[linux/fpc-iii.git] / drivers / acpi / acpica / dbhistry.c
blobb0b9a26c7db5ec35de6dd391410c7759b4ce8618
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: dbhistry - debugger HISTORY command
6 * Copyright (C) 2000 - 2018, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
11 #include "accommon.h"
12 #include "acdebug.h"
14 #define _COMPONENT ACPI_CA_DEBUGGER
15 ACPI_MODULE_NAME("dbhistry")
17 #define HI_NO_HISTORY 0
18 #define HI_RECORD_HISTORY 1
19 #define HISTORY_SIZE 40
20 typedef struct history_info {
21 char *command;
22 u32 cmd_num;
24 } HISTORY_INFO;
26 static HISTORY_INFO acpi_gbl_history_buffer[HISTORY_SIZE];
27 static u16 acpi_gbl_lo_history = 0;
28 static u16 acpi_gbl_num_history = 0;
29 static u16 acpi_gbl_next_history_index = 0;
30 u32 acpi_gbl_next_cmd_num = 1;
32 /*******************************************************************************
34 * FUNCTION: acpi_db_add_to_history
36 * PARAMETERS: command_line - Command to add
38 * RETURN: None
40 * DESCRIPTION: Add a command line to the history buffer.
42 ******************************************************************************/
44 void acpi_db_add_to_history(char *command_line)
46 u16 cmd_len;
47 u16 buffer_len;
49 /* Put command into the next available slot */
51 cmd_len = (u16)strlen(command_line);
52 if (!cmd_len) {
53 return;
56 if (acpi_gbl_history_buffer[acpi_gbl_next_history_index].command !=
57 NULL) {
58 buffer_len =
59 (u16)
60 strlen(acpi_gbl_history_buffer[acpi_gbl_next_history_index].
61 command);
63 if (cmd_len > buffer_len) {
64 acpi_os_free(acpi_gbl_history_buffer
65 [acpi_gbl_next_history_index].command);
66 acpi_gbl_history_buffer[acpi_gbl_next_history_index].
67 command = acpi_os_allocate(cmd_len + 1);
69 } else {
70 acpi_gbl_history_buffer[acpi_gbl_next_history_index].command =
71 acpi_os_allocate(cmd_len + 1);
74 strcpy(acpi_gbl_history_buffer[acpi_gbl_next_history_index].command,
75 command_line);
77 acpi_gbl_history_buffer[acpi_gbl_next_history_index].cmd_num =
78 acpi_gbl_next_cmd_num;
80 /* Adjust indexes */
82 if ((acpi_gbl_num_history == HISTORY_SIZE) &&
83 (acpi_gbl_next_history_index == acpi_gbl_lo_history)) {
84 acpi_gbl_lo_history++;
85 if (acpi_gbl_lo_history >= HISTORY_SIZE) {
86 acpi_gbl_lo_history = 0;
90 acpi_gbl_next_history_index++;
91 if (acpi_gbl_next_history_index >= HISTORY_SIZE) {
92 acpi_gbl_next_history_index = 0;
95 acpi_gbl_next_cmd_num++;
96 if (acpi_gbl_num_history < HISTORY_SIZE) {
97 acpi_gbl_num_history++;
101 /*******************************************************************************
103 * FUNCTION: acpi_db_display_history
105 * PARAMETERS: None
107 * RETURN: None
109 * DESCRIPTION: Display the contents of the history buffer
111 ******************************************************************************/
113 void acpi_db_display_history(void)
115 u32 i;
116 u16 history_index;
118 history_index = acpi_gbl_lo_history;
120 /* Dump entire history buffer */
122 for (i = 0; i < acpi_gbl_num_history; i++) {
123 if (acpi_gbl_history_buffer[history_index].command) {
124 acpi_os_printf("%3ld %s\n",
125 acpi_gbl_history_buffer[history_index].
126 cmd_num,
127 acpi_gbl_history_buffer[history_index].
128 command);
131 history_index++;
132 if (history_index >= HISTORY_SIZE) {
133 history_index = 0;
138 /*******************************************************************************
140 * FUNCTION: acpi_db_get_from_history
142 * PARAMETERS: command_num_arg - String containing the number of the
143 * command to be retrieved
145 * RETURN: Pointer to the retrieved command. Null on error.
147 * DESCRIPTION: Get a command from the history buffer
149 ******************************************************************************/
151 char *acpi_db_get_from_history(char *command_num_arg)
153 u32 cmd_num;
155 if (command_num_arg == NULL) {
156 cmd_num = acpi_gbl_next_cmd_num - 1;
159 else {
160 cmd_num = strtoul(command_num_arg, NULL, 0);
163 return (acpi_db_get_history_by_index(cmd_num));
166 /*******************************************************************************
168 * FUNCTION: acpi_db_get_history_by_index
170 * PARAMETERS: cmd_num - Index of the desired history entry.
171 * Values are 0...(acpi_gbl_next_cmd_num - 1)
173 * RETURN: Pointer to the retrieved command. Null on error.
175 * DESCRIPTION: Get a command from the history buffer
177 ******************************************************************************/
179 char *acpi_db_get_history_by_index(u32 cmd_num)
181 u32 i;
182 u16 history_index;
184 /* Search history buffer */
186 history_index = acpi_gbl_lo_history;
187 for (i = 0; i < acpi_gbl_num_history; i++) {
188 if (acpi_gbl_history_buffer[history_index].cmd_num == cmd_num) {
190 /* Found the command, return it */
192 return (acpi_gbl_history_buffer[history_index].command);
195 /* History buffer is circular */
197 history_index++;
198 if (history_index >= HISTORY_SIZE) {
199 history_index = 0;
203 acpi_os_printf("Invalid history number: %u\n", history_index);
204 return (NULL);