1 /* 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__ 16 extern unsigned int boot_cpuid; /* move to smp.h */ 17 18 extern char cmd_line[COMMAND_LINE_SIZE]; 19 20 extern char *klimit; 21 22 void microblaze_heartbeat(void); 23 void microblaze_setup_heartbeat(void); 24 25 # ifdef CONFIG_MMU 26 extern void mmu_reset(void); 27 # endif /* CONFIG_MMU */ 28 29 extern void of_platform_reset_gpio_probe(void); 30 31 void time_init(void); 32 void init_IRQ(void); 33 void machine_early_init(const char *cmdline, unsigned int ram, 34 unsigned int fdt, unsigned int msr, unsigned int tlb0, 35 unsigned int tlb1); 36 37 void machine_restart(char *cmd); 38 void machine_shutdown(void); 39 void machine_halt(void); 40 void machine_power_off(void); 41 42 extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask); 43 44 # endif /* __ASSEMBLY__ */ 45 #endif /* _ASM_MICROBLAZE_SETUP_H */ 46