mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-27 10:00:17 -06:00
201 lines
4.9 KiB
C
201 lines
4.9 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef DISPLAY_H
|
|
#define DISPLAY_H
|
|
/**
|
|
* \file
|
|
*
|
|
* Provides (macro) functions that implement the UI display.
|
|
* All knowledge about the display layout is encapsulated here.
|
|
*
|
|
*//*
|
|
* Copyright (C) 2020-2022 Martin Whitaker.
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "screen.h"
|
|
|
|
#include "print.h"
|
|
#include "string.h"
|
|
|
|
#include "test.h"
|
|
|
|
#define ROW_MESSAGE_T 10
|
|
#define ROW_MESSAGE_B (SCREEN_HEIGHT - 2)
|
|
|
|
#define ROW_SCROLL_T (ROW_MESSAGE_T + 2)
|
|
#define ROW_SCROLL_B (SCREEN_HEIGHT - 2)
|
|
|
|
#define ROW_FOOTER (SCREEN_HEIGHT - 1)
|
|
|
|
#define BAR_LENGTH 40
|
|
|
|
#define ERROR_LIMIT UINT64_C(999999999999)
|
|
|
|
#define display_cpu_model(str) \
|
|
prints(0, 30, str)
|
|
|
|
#define display_cpu_clk(freq) \
|
|
printf(1, 10, "%i MHz", freq)
|
|
|
|
#define display_cpu_addr_mode(str) \
|
|
prints(1, 20, str)
|
|
|
|
#define display_l1_cache_size(size) \
|
|
printf(2, 10, "%kB", (uintptr_t)(size))
|
|
|
|
#define display_l2_cache_size(size) \
|
|
printf(3, 10, "%kB", (uintptr_t)(size))
|
|
|
|
#define display_l3_cache_size(size) \
|
|
printf(4, 10, "%kB", (uintptr_t)(size))
|
|
|
|
#define display_memory_size(size) \
|
|
printf(5, 10, "%kB", (uintptr_t)(size))
|
|
|
|
#define display_available_cpus(count) \
|
|
printi(7, 10, count, 4, false, false)
|
|
|
|
#define display_enabled_cpus(count) \
|
|
printi(7, 25, count, 4, false, false)
|
|
|
|
#define display_cpu_mode(str) \
|
|
prints(8, 11, str)
|
|
|
|
#define display_active_cpu(cpu_num) \
|
|
prints(8, 25, "core #"); \
|
|
printi(8, 31, cpu_num, 3, false, true)
|
|
|
|
#define display_all_active \
|
|
prints(8, 25, "all cores")
|
|
|
|
#define display_spinner(spin_state) \
|
|
printc(8, 36, spin_state)
|
|
|
|
#define display_pass_percentage(pct) \
|
|
printi(1, 34, pct, 3, false, false)
|
|
|
|
#define display_pass_bar(length) \
|
|
while (length > pass_bar_length) { \
|
|
printc(1, 39 + pass_bar_length, '#'); \
|
|
pass_bar_length++; \
|
|
}
|
|
|
|
#define display_test_percentage(pct) \
|
|
printi(2, 34, pct, 3, false, false)
|
|
|
|
#define display_test_bar(length) \
|
|
while (length > test_bar_length) { \
|
|
printc(2, 39 + test_bar_length, '#'); \
|
|
test_bar_length++; \
|
|
}
|
|
|
|
#define display_test_number(number) \
|
|
printi(3, 36, number, 2, false, true)
|
|
|
|
#define display_test_description(str) \
|
|
prints(3, 39, str)
|
|
|
|
#define display_test_addresses(pb, pe, total) \
|
|
{ \
|
|
clear_screen_region(4, 39, 4, SCREEN_WIDTH - 1); \
|
|
printf(4, 39, "%kB - %kB %kB of %kB", pb, pe, (pe) - (pb), total); \
|
|
}
|
|
|
|
#define display_test_stage_description(...) \
|
|
{ \
|
|
clear_screen_region(4, 39, 4, SCREEN_WIDTH - 1); \
|
|
printf(4, 39, __VA_ARGS__); \
|
|
}
|
|
|
|
#define display_test_pattern_name(str) \
|
|
{ \
|
|
clear_screen_region(5, 39, 5, SCREEN_WIDTH - 1); \
|
|
prints(5, 39, str); \
|
|
}
|
|
|
|
#define display_test_pattern_value(pattern) \
|
|
{ \
|
|
clear_screen_region(5, 39, 5, SCREEN_WIDTH - 1); \
|
|
printf(5, 39, "0x%0*x", TESTWORD_DIGITS, pattern); \
|
|
}
|
|
|
|
#define display_test_pattern_values(pattern, offset) \
|
|
{ \
|
|
clear_screen_region(5, 39, 5, SCREEN_WIDTH - 1); \
|
|
printf(5, 39, "0x%0*x - %i", TESTWORD_DIGITS, pattern, offset); \
|
|
}
|
|
|
|
#define display_run_time(hours, mins, secs) \
|
|
printf(7, 47, "%i:%02i:%02i", hours, mins, secs)
|
|
|
|
#define display_temperature(temp) \
|
|
printf(7, 71, "%2i%cC ", temp, 0xf8)
|
|
|
|
#define display_pass_count(count) \
|
|
printi(8, 47, count, 0, false, true)
|
|
|
|
#define display_error_count(count) \
|
|
printi(8, 66, count, 0, false, true)
|
|
|
|
#define clear_message_area() \
|
|
{ \
|
|
clear_screen_region(ROW_MESSAGE_T, 0, ROW_MESSAGE_B, SCREEN_WIDTH - 1); \
|
|
scroll_message_row = ROW_SCROLL_T - 1; \
|
|
}
|
|
|
|
#define display_pinned_message(row, col, ...) \
|
|
printf(ROW_MESSAGE_T + row, col, __VA_ARGS__)
|
|
|
|
#define display_scrolled_message(col, ...) \
|
|
printf(scroll_message_row, col, __VA_ARGS__)
|
|
|
|
#define display_notice(str) \
|
|
prints(ROW_MESSAGE_T + 6, (SCREEN_WIDTH - strlen(str)) / 2, str)
|
|
|
|
#define display_notice_with_args(length, ...) \
|
|
printf(ROW_MESSAGE_T + 6, (SCREEN_WIDTH - length) / 2, __VA_ARGS__)
|
|
|
|
#define clear_footer_message() \
|
|
{ \
|
|
set_background_colour(WHITE); \
|
|
clear_screen_region(ROW_FOOTER, 56, ROW_FOOTER, SCREEN_WIDTH - 1); \
|
|
set_background_colour(BLUE); \
|
|
}
|
|
|
|
#define display_footer_message(str) \
|
|
{ \
|
|
set_foreground_colour(BLUE); \
|
|
prints(ROW_FOOTER, 56, str); \
|
|
set_foreground_colour(WHITE); \
|
|
}
|
|
|
|
#define trace(my_cpu, ...) \
|
|
if (enable_trace) do_trace(my_cpu, __VA_ARGS__)
|
|
|
|
extern int scroll_message_row;
|
|
|
|
void display_init(void);
|
|
|
|
void post_display_init(void);
|
|
|
|
void display_start_run(void);
|
|
|
|
void display_start_pass(void);
|
|
|
|
void display_start_test(void);
|
|
|
|
void check_input(void);
|
|
|
|
void set_scroll_lock(bool enabled);
|
|
|
|
void toggle_scroll_lock(void);
|
|
|
|
void scroll(void);
|
|
|
|
void do_tick(int my_cpu);
|
|
|
|
void do_trace(int my_cpu, const char *fmt, ...);
|
|
|
|
#endif // DISPLAY_H
|