2020-05-24 21:30:55 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
#ifndef CONFIG_H
|
|
|
|
|
#define CONFIG_H
|
2022-02-19 16:17:40 +00:00
|
|
|
/**
|
|
|
|
|
* \file
|
|
|
|
|
*
|
2020-05-24 21:30:55 +01:00
|
|
|
* Provides the configuration settings and pop-up menu.
|
|
|
|
|
*
|
2022-02-19 19:56:55 +00:00
|
|
|
*//*
|
2022-01-31 22:59:14 +00:00
|
|
|
* Copyright (C) 2020-2022 Martin Whitaker.
|
2020-05-24 21:30:55 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
#include "smp.h"
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
|
PAR,
|
|
|
|
|
SEQ,
|
|
|
|
|
ONE
|
|
|
|
|
} cpu_mode_t;
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
|
ERROR_MODE_NONE,
|
|
|
|
|
ERROR_MODE_SUMMARY,
|
|
|
|
|
ERROR_MODE_ADDRESS,
|
|
|
|
|
ERROR_MODE_BADRAM
|
|
|
|
|
} error_mode_t;
|
|
|
|
|
|
|
|
|
|
extern uintptr_t pm_limit_lower;
|
|
|
|
|
extern uintptr_t pm_limit_upper;
|
|
|
|
|
|
|
|
|
|
extern uintptr_t num_pages_to_test;
|
|
|
|
|
|
|
|
|
|
extern cpu_mode_t cpu_mode;
|
|
|
|
|
|
|
|
|
|
extern error_mode_t error_mode;
|
|
|
|
|
|
2022-01-31 22:59:14 +00:00
|
|
|
extern cpu_state_t cpu_state[MAX_CPUS];
|
2020-05-24 21:30:55 +01:00
|
|
|
|
|
|
|
|
extern bool enable_temperature;
|
|
|
|
|
extern bool enable_trace;
|
2022-02-12 16:16:56 +00:00
|
|
|
extern bool enable_halt;
|
2020-05-24 21:30:55 +01:00
|
|
|
|
2021-12-23 14:08:02 +00:00
|
|
|
extern bool pause_at_start;
|
|
|
|
|
|
2020-05-24 21:30:55 +01:00
|
|
|
void config_init(void);
|
|
|
|
|
|
|
|
|
|
void config_menu(bool initial);
|
|
|
|
|
|
|
|
|
|
void initial_config(void);
|
|
|
|
|
|
|
|
|
|
#endif // CONFIG_H
|