linux/arch/microblaze/include/asm/setup.h
<<
>>
Prefs
   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__
  16extern unsigned int boot_cpuid; /* move to smp.h */
  17
  18extern char cmd_line[COMMAND_LINE_SIZE];
  19
  20extern char *klimit;
  21
  22void early_printk(const char *fmt, ...);
  23
  24int setup_early_printk(char *opt);
  25void remap_early_printk(void);
  26void disable_early_printk(void);
  27
  28void heartbeat(void);
  29void setup_heartbeat(void);
  30
  31#   ifdef CONFIG_MMU
  32extern void mmu_reset(void);
  33extern void early_console_reg_tlb_alloc(unsigned int addr);
  34#   endif /* CONFIG_MMU */
  35
  36extern void of_platform_reset_gpio_probe(void);
  37
  38void time_init(void);
  39void init_IRQ(void);
  40void machine_early_init(const char *cmdline, unsigned int ram,
  41                unsigned int fdt, unsigned int msr, unsigned int tlb0,
  42                unsigned int tlb1);
  43
  44void machine_restart(char *cmd);
  45void machine_shutdown(void);
  46void machine_halt(void);
  47void machine_power_off(void);
  48
  49extern void *alloc_maybe_bootmem(size_t size, gfp_t mask);
  50extern void *zalloc_maybe_bootmem(size_t size, gfp_t mask);
  51
  52# endif /* __ASSEMBLY__ */
  53#endif /* _ASM_MICROBLAZE_SETUP_H */
  54