blob: 904e5ef6a11b2e958f0b33c29b4f7d3794cecb38 [file] [log] [blame]
Michal Simekec9f9102009-03-27 14:25:24 +01001/*
Michal Simeka43acfb2009-05-26 16:30:10 +02002 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2007-2009 PetaLogix
Michal Simekec9f9102009-03-27 14:25:24 +01004 * 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];
Michal Simekec9f9102009-03-27 14:25:24 +010022
23void early_printk(const char *fmt, ...);
24
25int setup_early_printk(char *opt);
Michal Simeke721a452011-04-04 15:45:06 +020026void remap_early_printk(void);
Michal Simekec9f9102009-03-27 14:25:24 +010027void disable_early_printk(void);
28
Michal Simek96a5ff42010-09-28 16:27:49 +100029#if defined(CONFIG_EARLY_PRINTK)
Michal Simek69717602010-08-06 14:13:13 +020030#define eprintk early_printk
31#else
32#define eprintk printk
33#endif
34
Michal Simekec9f9102009-03-27 14:25:24 +010035void heartbeat(void);
36void setup_heartbeat(void);
37
Michal Simeka43acfb2009-05-26 16:30:10 +020038# ifdef CONFIG_MMU
39extern void mmu_reset(void);
40extern void early_console_reg_tlb_alloc(unsigned int addr);
41# endif /* CONFIG_MMU */
42
Michal Simek42a24782009-10-02 12:48:47 +020043extern void of_platform_reset_gpio_probe(void);
44
Michal Simekec9f9102009-03-27 14:25:24 +010045void time_init(void);
46void init_IRQ(void);
47void machine_early_init(const char *cmdline, unsigned int ram,
Michal Simek26224342009-07-30 14:31:23 +020048 unsigned int fdt, unsigned int msr);
Michal Simekec9f9102009-03-27 14:25:24 +010049
50void machine_restart(char *cmd);
51void machine_shutdown(void);
52void machine_halt(void);
53void machine_power_off(void);
54
Michal Simeka43acfb2009-05-26 16:30:10 +020055# endif/* __KERNEL__ */
Michal Simekec9f9102009-03-27 14:25:24 +010056# endif /* __ASSEMBLY__ */
57#endif /* _ASM_MICROBLAZE_SETUP_H */