memtest86plus/app/badram.h

36 lines
685 B
C
Raw Permalink Normal View History

2020-05-24 23:30:55 +03:00
// SPDX-License-Identifier: GPL-2.0
#ifndef BADRAM_H
#define BADRAM_H
/**
* \file
2020-05-24 23:30:55 +03:00
*
* Provides functions for generating patterns for the Linux kernel BadRAM extension.
*
*//*
* Copyright (C) 2020-2022 Martin Whitaker.
2020-05-24 23:30:55 +03:00
*/
#include <stdbool.h>
#include <stdint.h>
#include "test.h"
/**
2020-05-24 23:30:55 +03:00
* Initialises the pattern array.
*/
void badram_init(void);
/**
2020-05-24 23:30:55 +03:00
* Inserts a single faulty address into the pattern array. Returns
* true iff the array was changed.
*/
bool badram_insert(testword_t page, testword_t offset);
2020-05-24 23:30:55 +03:00
/**
2020-05-24 23:30:55 +03:00
* Displays the pattern array in the scrollable display region in the
* format used by the Linux kernel.
*/
void badram_display(void);
#endif // BADRAM_H