blob: be84a4d3917fc1c901bc71c6ca44362c28680257 [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 */
Michal Simekec9f9102009-03-27 14:25:24 +010010#ifndef _ASM_MICROBLAZE_SETUP_H
11#define _ASM_MICROBLAZE_SETUP_H
12
David Howells3cb0eab2012-10-09 09:47:10 +010013#include <uapi/asm/setup.h>
Michal Simekec9f9102009-03-27 14:25:24 +010014
15# ifndef __ASSEMBLY__
Michal Simekec9f9102009-03-27 14:25:24 +010016extern unsigned int boot_cpuid; /* move to smp.h */
17
18extern char cmd_line[COMMAND_LINE_SIZE];
Michal Simekec9f9102009-03-27 14:25:24 +010019
David Howellsc40d04d2012-03-28 18:30:02 +010020extern char *klimit;
21
Michal Simekec9f9102009-03-27 14:25:24 +010022int setup_early_printk(char *opt);
Michal Simeke721a452011-04-04 15:45:06 +020023void remap_early_printk(void);
Michal Simekec9f9102009-03-27 14:25:24 +010024void disable_early_printk(void);
25
Guenter Roeck79c157a2014-02-17 22:46:54 -080026void microblaze_heartbeat(void);
27void microblaze_setup_heartbeat(void);
Michal Simekec9f9102009-03-27 14:25:24 +010028
Michal Simeka43acfb2009-05-26 16:30:10 +020029# ifdef CONFIG_MMU
30extern void mmu_reset(void);
31extern void early_console_reg_tlb_alloc(unsigned int addr);
32# endif /* CONFIG_MMU */
33
Michal Simek42a24782009-10-02 12:48:47 +020034extern void of_platform_reset_gpio_probe(void);
35
Michal Simekec9f9102009-03-27 14:25:24 +010036void time_init(void);
37void init_IRQ(void);
38void machine_early_init(const char *cmdline, unsigned int ram,
Michal Simek95b0f9e2010-02-08 16:41:38 +010039 unsigned int fdt, unsigned int msr, unsigned int tlb0,
40 unsigned int tlb1);
Michal Simekec9f9102009-03-27 14:25:24 +010041
42void machine_restart(char *cmd);
43void machine_shutdown(void);
44void machine_halt(void);
45void machine_power_off(void);
46
David Howellsc40d04d2012-03-28 18:30:02 +010047extern void *alloc_maybe_bootmem(size_t size, gfp_t mask);
48extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask);
49
Michal Simekec9f9102009-03-27 14:25:24 +010050# endif /* __ASSEMBLY__ */
51#endif /* _ASM_MICROBLAZE_SETUP_H */