blob: ce9b7b7861569501c0339491338da38a2cdb0050 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2007-2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10#ifndef _ASM_MICROBLAZE_SETUP_H
11#define _ASM_MICROBLAZE_SETUP_H
12
13#include <uapi/asm/setup.h>
14
15# ifndef __ASSEMBLY__
16extern unsigned int boot_cpuid; /* move to smp.h */
17
18extern char cmd_line[COMMAND_LINE_SIZE];
19
20extern char *klimit;
21
22# ifdef CONFIG_MMU
23extern void mmu_reset(void);
24# endif /* CONFIG_MMU */
25
26void time_init(void);
27void init_IRQ(void);
28void machine_early_init(const char *cmdline, unsigned int ram,
29 unsigned int fdt, unsigned int msr, unsigned int tlb0,
30 unsigned int tlb1);
31
32void machine_restart(char *cmd);
33void machine_shutdown(void);
34void machine_halt(void);
35void machine_power_off(void);
36
37extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask);
38
39# endif /* __ASSEMBLY__ */
40#endif /* _ASM_MICROBLAZE_SETUP_H */