ARM: restart: allow platforms more flexibility specifying restart mode
[deliverable/linux.git] / arch / arm / include / asm / mach / arch.h
CommitLineData
1da177e4 1/*
4baa9922 2 * arch/arm/include/asm/mach/arch.h
1da177e4
LT
3 *
4 * Copyright (C) 2000 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef __ASSEMBLY__
12
13struct tag;
14struct meminfo;
15struct sys_timer;
16
17struct machine_desc {
1da177e4 18 unsigned int nr; /* architecture number */
1da177e4 19 const char *name; /* architecture name */
2bb9839e 20 unsigned long atag_offset; /* tagged list (relative) */
93c02ab4
GL
21 const char **dt_compat; /* array of device tree
22 * 'compatible' strings */
1da177e4 23
d71e3eb5
NP
24 unsigned int nr_irqs; /* number of IRQs */
25
4fddcaeb
NP
26#ifdef CONFIG_ZONE_DMA
27 unsigned long dma_zone_size; /* size of DMA-able area */
28#endif
29
1da177e4
LT
30 unsigned int video_start; /* start of video RAM */
31 unsigned int video_end; /* end of video RAM */
32
b44c350d
RK
33 unsigned char reserve_lp0 :1; /* never has lp0 */
34 unsigned char reserve_lp1 :1; /* never has lp1 */
35 unsigned char reserve_lp2 :1; /* never has lp2 */
36 char restart_mode; /* default restart mode */
0744a3ee 37 void (*fixup)(struct tag *, char **,
1da177e4 38 struct meminfo *);
98c672cf 39 void (*reserve)(void);/* reserve mem blocks */
1da177e4 40 void (*map_io)(void);/* IO mapping function */
dec12e62 41 void (*init_early)(void);
1da177e4
LT
42 void (*init_irq)(void);
43 struct sys_timer *timer; /* system tick timer */
44 void (*init_machine)(void);
52108641 45#ifdef CONFIG_MULTI_IRQ_HANDLER
46 void (*handle_irq)(struct pt_regs *);
47#endif
a528721d 48 void (*restart)(char, const char *);
1da177e4
LT
49};
50
8ff1443c
RK
51/*
52 * Current machine - only accessible during boot.
53 */
54extern struct machine_desc *machine_desc;
55
6291319d
GL
56/*
57 * Machine type table - also only accessible during boot
58 */
59extern struct machine_desc __arch_info_begin[], __arch_info_end[];
60#define for_each_machine_desc(p) \
61 for (p = __arch_info_begin; p < __arch_info_end; p++)
62
1da177e4
LT
63/*
64 * Set of macros to define architecture features. This is built into
65 * a table by the linker.
66 */
f339ab3d
RK
67#define MACHINE_START(_type,_name) \
68static const struct machine_desc __mach_desc_##_type \
b91d8a12 69 __used \
9d0fd1eb 70 __attribute__((__section__(".arch.info.init"))) = { \
f339ab3d 71 .nr = MACH_TYPE_##_type, \
1da177e4
LT
72 .name = _name,
73
1da177e4
LT
74#define MACHINE_END \
75};
76
85cad1b0
GL
77#define DT_MACHINE_START(_name, _namestr) \
78static const struct machine_desc __mach_desc_##_name \
79 __used \
80 __attribute__((__section__(".arch.info.init"))) = { \
81 .nr = ~0, \
82 .name = _namestr,
83
1da177e4 84#endif
This page took 0.610955 seconds and 5 git commands to generate.