reboot: arm: remove unused restart_mode fields from some arm subarchs
[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
b382b940
JM
11#include <linux/types.h>
12
1da177e4
LT
13#ifndef __ASSEMBLY__
14
15struct tag;
16struct meminfo;
1a1f2be2 17struct pt_regs;
abcee5fb
MZ
18struct smp_operations;
19#ifdef CONFIG_SMP
20#define smp_ops(ops) (&(ops))
b382b940 21#define smp_init_ops(ops) (&(ops))
abcee5fb
MZ
22#else
23#define smp_ops(ops) (struct smp_operations *)NULL
b382b940 24#define smp_init_ops(ops) (bool (*)(void))NULL
abcee5fb 25#endif
1da177e4
LT
26
27struct machine_desc {
1da177e4 28 unsigned int nr; /* architecture number */
1da177e4 29 const char *name; /* architecture name */
2bb9839e 30 unsigned long atag_offset; /* tagged list (relative) */
7b482c83 31 const char *const *dt_compat; /* array of device tree
93c02ab4 32 * 'compatible' strings */
1da177e4 33
d71e3eb5
NP
34 unsigned int nr_irqs; /* number of IRQs */
35
4fddcaeb
NP
36#ifdef CONFIG_ZONE_DMA
37 unsigned long dma_zone_size; /* size of DMA-able area */
38#endif
39
1da177e4
LT
40 unsigned int video_start; /* start of video RAM */
41 unsigned int video_end; /* end of video RAM */
42
b44c350d
RK
43 unsigned char reserve_lp0 :1; /* never has lp0 */
44 unsigned char reserve_lp1 :1; /* never has lp1 */
45 unsigned char reserve_lp2 :1; /* never has lp2 */
46 char restart_mode; /* default restart mode */
abcee5fb 47 struct smp_operations *smp; /* SMP operations */
b382b940 48 bool (*smp_init)(void);
0744a3ee 49 void (*fixup)(struct tag *, char **,
1da177e4 50 struct meminfo *);
98c672cf 51 void (*reserve)(void);/* reserve mem blocks */
1da177e4 52 void (*map_io)(void);/* IO mapping function */
dec12e62 53 void (*init_early)(void);
1da177e4 54 void (*init_irq)(void);
6bb27d73 55 void (*init_time)(void);
1da177e4 56 void (*init_machine)(void);
90de4137 57 void (*init_late)(void);
52108641 58#ifdef CONFIG_MULTI_IRQ_HANDLER
59 void (*handle_irq)(struct pt_regs *);
60#endif
a528721d 61 void (*restart)(char, const char *);
1da177e4
LT
62};
63
8ff1443c
RK
64/*
65 * Current machine - only accessible during boot.
66 */
67extern struct machine_desc *machine_desc;
68
6291319d
GL
69/*
70 * Machine type table - also only accessible during boot
71 */
72extern struct machine_desc __arch_info_begin[], __arch_info_end[];
73#define for_each_machine_desc(p) \
74 for (p = __arch_info_begin; p < __arch_info_end; p++)
75
1da177e4
LT
76/*
77 * Set of macros to define architecture features. This is built into
78 * a table by the linker.
79 */
f339ab3d
RK
80#define MACHINE_START(_type,_name) \
81static const struct machine_desc __mach_desc_##_type \
b91d8a12 82 __used \
9d0fd1eb 83 __attribute__((__section__(".arch.info.init"))) = { \
f339ab3d 84 .nr = MACH_TYPE_##_type, \
1da177e4
LT
85 .name = _name,
86
1da177e4
LT
87#define MACHINE_END \
88};
89
85cad1b0
GL
90#define DT_MACHINE_START(_name, _namestr) \
91static const struct machine_desc __mach_desc_##_name \
92 __used \
93 __attribute__((__section__(".arch.info.init"))) = { \
94 .nr = ~0, \
95 .name = _namestr,
96
1da177e4 97#endif
This page took 0.640229 seconds and 5 git commands to generate.