Linux 3.11-rc3
[cris-mirror.git] / arch / arc / include / asm / setup.h
blob229e506814970aa0cbec36c60a8a4b62f9e0cab1
1 /*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8 #ifndef __ASMARC_SETUP_H
9 #define __ASMARC_SETUP_H
12 #include <linux/types.h>
13 #include <uapi/asm/setup.h>
15 #define COMMAND_LINE_SIZE 256
18 * Data structure to map a ID to string
19 * Used a lot for bootup reporting of hardware diversity
21 struct id_to_str {
22 int id;
23 const char *str;
26 struct cpuinfo_data {
27 struct id_to_str info;
28 int up_range;
31 extern int root_mountflags, end_mem;
32 extern int running_on_hw;
34 void __init setup_processor(void);
35 void __init setup_arch_memory(void);
37 #endif /* __ASMARC_SETUP_H */