root/headers/private/kernel/arch/cpu.h
/*
 * Copyright 2002-2005, Axel Dörfler, axeld@pinc-software.de.
 * Distributed under the terms of the MIT License.
 *
 * Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
 * Distributed under the terms of the NewOS License.
 */
#ifndef _KERNEL_ARCH_CPU_H
#define _KERNEL_ARCH_CPU_H


#include <OS.h>


#define PAGE_ALIGN(x) (((x) + (B_PAGE_SIZE - 1)) & ~(B_PAGE_SIZE - 1))


struct kernel_args;


#ifdef __cplusplus
extern "C" {
#endif

status_t arch_cpu_preboot_init_percpu(struct kernel_args *args, int curr_cpu);
status_t arch_cpu_init(struct kernel_args *args);
status_t arch_cpu_init_percpu(struct kernel_args *args, int curr_cpu);
status_t arch_cpu_init_post_vm(struct kernel_args *args);
status_t arch_cpu_init_post_modules(struct kernel_args *args);
status_t arch_cpu_shutdown(bool reboot);

void arch_cpu_invalidate_tlb_range(intptr_t context, addr_t start, addr_t end);
void arch_cpu_invalidate_tlb_list(intptr_t context, addr_t pages[], int num_pages);
void arch_cpu_user_tlb_invalidate(intptr_t context);
void arch_cpu_global_tlb_invalidate(void);

void arch_cpu_sync_icache(void *address, size_t length);


#ifdef __cplusplus
}
#endif

#include <arch_cpu.h>

#define CACHE_LINE_ALIGN         __attribute__((aligned(CACHE_LINE_SIZE)))

#endif /* _KERNEL_ARCH_CPU_H */