arch.h 1.7 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *  arch/arm/include/asm/mach/arch.h
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 *  Copyright (C) 2000 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.
 */

#ifndef __ASSEMBLY__

struct tag;
struct meminfo;
struct sys_timer;

struct machine_desc {
	unsigned int		nr;		/* architecture number	*/
	const char		*name;		/* architecture name	*/
20
	unsigned long		boot_params;	/* tagged list		*/
L
Linus Torvalds 已提交
21

22 23
	unsigned int		nr_irqs;	/* number of IRQs */

L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33
	unsigned int		video_start;	/* start of video RAM	*/
	unsigned int		video_end;	/* end of video RAM	*/

	unsigned int		reserve_lp0 :1;	/* never has lp0	*/
	unsigned int		reserve_lp1 :1;	/* never has lp1	*/
	unsigned int		reserve_lp2 :1;	/* never has lp2	*/
	unsigned int		soft_reboot :1;	/* soft reboot		*/
	void			(*fixup)(struct machine_desc *,
					 struct tag *, char **,
					 struct meminfo *);
34
	void			(*reserve)(void);/* reserve mem blocks	*/
L
Linus Torvalds 已提交
35
	void			(*map_io)(void);/* IO mapping function	*/
36
	void			(*init_early)(void);
L
Linus Torvalds 已提交
37 38 39
	void			(*init_irq)(void);
	struct sys_timer	*timer;		/* system tick timer	*/
	void			(*init_machine)(void);
40 41 42
#ifdef CONFIG_MULTI_IRQ_HANDLER
	void			(*handle_irq)(struct pt_regs *);
#endif
L
Linus Torvalds 已提交
43 44
};

45 46 47 48 49
/*
 * Current machine - only accessible during boot.
 */
extern struct machine_desc *machine_desc;

L
Linus Torvalds 已提交
50 51 52 53
/*
 * Set of macros to define architecture features.  This is built into
 * a table by the linker.
 */
R
Russell King 已提交
54 55
#define MACHINE_START(_type,_name)			\
static const struct machine_desc __mach_desc_##_type	\
D
David Rientjes 已提交
56
 __used							\
57
 __attribute__((__section__(".arch.info.init"))) = {	\
R
Russell King 已提交
58
	.nr		= MACH_TYPE_##_type,		\
L
Linus Torvalds 已提交
59 60 61 62 63 64
	.name		= _name,

#define MACHINE_END				\
};

#endif