]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - arch/arc/include/asm/setup.h
ARC: Hostlink Pseudo-Driver for Metaware Debugger
[thirdparty/kernel/stable.git] / arch / arc / include / asm / setup.h
CommitLineData
c121c506
VG
1/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
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
9#ifndef __ASMARC_SETUP_H
10#define __ASMARC_SETUP_H
11
12#include <linux/types.h>
13
14#define COMMAND_LINE_SIZE 256
15
af617428
VG
16/*
17 * Data structure to map a ID to string
18 * Used a lot for bootup reporting of hardware diversity
19 */
20struct id_to_str {
21 int id;
22 const char *str;
23};
24
25struct cpuinfo_data {
26 struct id_to_str info;
27 int up_range;
28};
29
c121c506
VG
30extern int root_mountflags, end_mem;
31extern int running_on_hw;
32
33void __init setup_processor(void);
34void __init setup_arch_memory(void);
35
36#endif /* __ASMARC_SETUP_H */