2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/include/asm/setup.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 1997-1999 Russell King
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Structure passed to kernel to tell it about the
|
|
|
|
* hardware it's running on. See Documentation/arm/Setup
|
|
|
|
* for more info.
|
|
|
|
*/
|
|
|
|
#ifndef __ASMARM_SETUP_H
|
|
|
|
#define __ASMARM_SETUP_H
|
|
|
|
|
2012-10-12 12:05:52 +00:00
|
|
|
#include <uapi/asm/setup.h>
|
2006-12-07 04:40:38 +00:00
|
|
|
|
|
|
|
|
2007-05-11 23:18:55 +00:00
|
|
|
#define __tag __used __attribute__((__section__(".taglist.init")))
|
2006-12-07 04:40:38 +00:00
|
|
|
#define __tagtable(tag, fn) \
|
2011-07-05 22:59:56 +00:00
|
|
|
static const struct tagtable __tagtable_##fn __tag = { tag, fn }
|
2006-12-07 04:40:38 +00:00
|
|
|
|
2013-10-22 16:53:16 +00:00
|
|
|
extern int arm_add_memory(u64 start, u64 size);
|
2011-04-28 20:27:21 +00:00
|
|
|
extern void early_print(const char *str, ...);
|
|
|
|
extern void dump_machine_table(void);
|
2011-04-28 20:27:20 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|