/*1* linux/arch/unicore32/kernel/setup.h2*3* Code specific to PKUnity SoC and UniCore ISA4*5* Copyright (C) 2001-2010 GUAN Xue-tao6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License version 2 as9* published by the Free Software Foundation.10*/11#ifndef __UNICORE_KERNEL_SETUP_H__12#define __UNICORE_KERNEL_SETUP_H__1314extern void paging_init(void);15extern void puv3_core_init(void);1617extern void puv3_ps2_init(void);18extern void pci_puv3_preinit(void);19extern void __init puv3_init_gpio(void);2021extern void setup_mm_for_reboot(char mode);2223extern char __stubs_start[], __stubs_end[];24extern char __vectors_start[], __vectors_end[];2526extern void kernel_thread_helper(void);2728extern void __init early_signal_init(void);29#endif303132