at v2.6.39 1.4 kB view raw
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 11#ifndef _ASM_MICROBLAZE_SETUP_H 12#define _ASM_MICROBLAZE_SETUP_H 13 14#define COMMAND_LINE_SIZE 256 15 16# ifndef __ASSEMBLY__ 17 18# ifdef __KERNEL__ 19extern unsigned int boot_cpuid; /* move to smp.h */ 20 21extern char cmd_line[COMMAND_LINE_SIZE]; 22 23void early_printk(const char *fmt, ...); 24 25int setup_early_printk(char *opt); 26void disable_early_printk(void); 27 28#if defined(CONFIG_EARLY_PRINTK) 29#define eprintk early_printk 30#else 31#define eprintk printk 32#endif 33 34void heartbeat(void); 35void setup_heartbeat(void); 36 37# ifdef CONFIG_MMU 38extern void mmu_reset(void); 39extern void early_console_reg_tlb_alloc(unsigned int addr); 40# endif /* CONFIG_MMU */ 41 42extern void of_platform_reset_gpio_probe(void); 43 44void time_init(void); 45void init_IRQ(void); 46void machine_early_init(const char *cmdline, unsigned int ram, 47 unsigned int fdt, unsigned int msr); 48 49void machine_restart(char *cmd); 50void machine_shutdown(void); 51void machine_halt(void); 52void machine_power_off(void); 53 54# endif/* __KERNEL__ */ 55# endif /* __ASSEMBLY__ */ 56#endif /* _ASM_MICROBLAZE_SETUP_H */