sp1/amd64: Add machine/param.h

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-04-17 09:00:45 -04:00
parent 7f91fd1fea
commit 36cf115d3e
2 changed files with 40 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
/*
* Copyright (c) 2026, Mirocom Laboratories
* All rights reserved.
*
* The following sources are CONFIDENTIAL and PROPRIETARY
* property of Mirocom Laboratories. Unauthorized copying,
* use, distribution or modification of this file, in whole
* and in part, is strictly prohibited without the prior written
* consent from Mirocom Laboratories.
*/
#ifndef _MACHINE_PARAM_H_
#define _MACHINE_PARAM_H_ 1
/* Presumed cache-line size */
#ifndef COHERENCY_UNIT
#define COHERENCY_UNIT 64
#endif /* !COHERENCY_UNIT */
/* Pagesize in bytes */
#define PAGESIZE 4096
#endif /* !_MACHINE_PARAM_H_ */
+17
View File
@@ -0,0 +1,17 @@
/*
* Copyright (c) 2026, Mirocom Laboratories
* All rights reserved.
*
* The following sources are CONFIDENTIAL and PROPRIETARY
* property of Mirocom Laboratories. Unauthorized copying,
* use, distribution or modification of this file, in whole
* and in part, is strictly prohibited without the prior written
* consent from Mirocom Laboratories.
*/
#ifndef _MU_PARAM_H_
#define _MU_PARAM_H_ 1
#include <machine/param.h> /* shared */
#endif /* !_MU_PARAM_H_ */