Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 1 | /* |
Michal Simek | a43acfb | 2009-05-26 16:30:10 +0200 | [diff] [blame] | 2 | * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu> |
| 3 | * Copyright (C) 2007-2009 PetaLogix |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 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 | */ |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 10 | #ifndef _ASM_MICROBLAZE_SETUP_H |
| 11 | #define _ASM_MICROBLAZE_SETUP_H |
| 12 | |
David Howells | 3cb0eab | 2012-10-09 09:47:10 +0100 | [diff] [blame] | 13 | #include <uapi/asm/setup.h> |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 14 | |
| 15 | # ifndef __ASSEMBLY__ |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 16 | extern unsigned int boot_cpuid; /* move to smp.h */ |
| 17 | |
| 18 | extern char cmd_line[COMMAND_LINE_SIZE]; |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 19 | |
David Howells | c40d04d | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 20 | extern char *klimit; |
| 21 | |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 22 | int setup_early_printk(char *opt); |
Michal Simek | e721a45 | 2011-04-04 15:45:06 +0200 | [diff] [blame] | 23 | void remap_early_printk(void); |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 24 | void disable_early_printk(void); |
| 25 | |
Guenter Roeck | 79c157a | 2014-02-17 22:46:54 -0800 | [diff] [blame] | 26 | void microblaze_heartbeat(void); |
| 27 | void microblaze_setup_heartbeat(void); |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 28 | |
Michal Simek | a43acfb | 2009-05-26 16:30:10 +0200 | [diff] [blame] | 29 | # ifdef CONFIG_MMU |
| 30 | extern void mmu_reset(void); |
| 31 | extern void early_console_reg_tlb_alloc(unsigned int addr); |
| 32 | # endif /* CONFIG_MMU */ |
| 33 | |
Michal Simek | 42a2478 | 2009-10-02 12:48:47 +0200 | [diff] [blame] | 34 | extern void of_platform_reset_gpio_probe(void); |
| 35 | |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 36 | void time_init(void); |
| 37 | void init_IRQ(void); |
| 38 | void machine_early_init(const char *cmdline, unsigned int ram, |
Michal Simek | 95b0f9e | 2010-02-08 16:41:38 +0100 | [diff] [blame] | 39 | unsigned int fdt, unsigned int msr, unsigned int tlb0, |
| 40 | unsigned int tlb1); |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 41 | |
| 42 | void machine_restart(char *cmd); |
| 43 | void machine_shutdown(void); |
| 44 | void machine_halt(void); |
| 45 | void machine_power_off(void); |
| 46 | |
David Howells | c40d04d | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 47 | extern void *alloc_maybe_bootmem(size_t size, gfp_t mask); |
| 48 | extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask); |
| 49 | |
Michal Simek | ec9f910 | 2009-03-27 14:25:24 +0100 | [diff] [blame] | 50 | # endif /* __ASSEMBLY__ */ |
| 51 | #endif /* _ASM_MICROBLAZE_SETUP_H */ |