]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arc/include/asm/setup.h
arc: kgdb: add default implementation for kgdb_roundup_cpus()
[mirror_ubuntu-bionic-kernel.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 */
c121c506
VG
8#ifndef __ASMARC_SETUP_H
9#define __ASMARC_SETUP_H
10
8c2f4a8d 11
c121c506 12#include <linux/types.h>
8c2f4a8d 13#include <uapi/asm/setup.h>
c121c506
VG
14
15#define COMMAND_LINE_SIZE 256
16
af617428
VG
17/*
18 * Data structure to map a ID to string
19 * Used a lot for bootup reporting of hardware diversity
20 */
21struct id_to_str {
22 int id;
23 const char *str;
24};
25
26struct cpuinfo_data {
27 struct id_to_str info;
28 int up_range;
29};
30
c121c506
VG
31extern int root_mountflags, end_mem;
32extern int running_on_hw;
33
34void __init setup_processor(void);
35void __init setup_arch_memory(void);
36
37#endif /* __ASMARC_SETUP_H */