2009-07-27 20:23:08 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
2017-02-10 06:03:59 +03:00
|
|
|
** Distributed under the terms of the MIT License.
|
2009-07-27 20:23:08 +04:00
|
|
|
*/
|
2009-08-13 22:57:36 +04:00
|
|
|
#ifndef KERNEL_ARCH_ARM_KERNEL_ARGS_H
|
|
|
|
#define KERNEL_ARCH_ARM_KERNEL_ARGS_H
|
2009-07-27 20:23:08 +04:00
|
|
|
|
|
|
|
#ifndef KERNEL_BOOT_KERNEL_ARGS_H
|
|
|
|
# error This file is included from <boot/kernel_args.h> only
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// kernel args
|
|
|
|
typedef struct {
|
2011-03-14 16:48:21 +03:00
|
|
|
int cpu_type;
|
|
|
|
int fpu_type;
|
|
|
|
int mmu_type;
|
|
|
|
int platform;
|
|
|
|
int machine; // platform specific machine type
|
|
|
|
|
2009-07-27 20:23:08 +04:00
|
|
|
// architecture specific
|
2009-08-13 22:57:36 +04:00
|
|
|
uint32 phys_pgdir;
|
|
|
|
uint32 vir_pgdir;
|
2014-09-07 06:45:14 +04:00
|
|
|
uint32 next_pagetable;
|
2009-07-27 20:23:08 +04:00
|
|
|
} arch_kernel_args;
|
|
|
|
|
2009-08-13 22:57:36 +04:00
|
|
|
#endif /* KERNEL_ARCH_ARM_KERNEL_ARGS_H */
|