]> Pileus Git - ~andy/linux/blob - arch/arm/include/asm/mach/arch.h
ARM: introduce atag_offset to replace boot_params
[~andy/linux] / arch / arm / include / asm / mach / arch.h
1 /*
2  *  arch/arm/include/asm/mach/arch.h
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
13 struct tag;
14 struct meminfo;
15 struct sys_timer;
16
17 struct machine_desc {
18         unsigned int            nr;             /* architecture number  */
19         const char              *name;          /* architecture name    */
20         unsigned long           boot_params;    /* tagged list          */
21         unsigned long           atag_offset;    /* tagged list (relative) */
22         const char              **dt_compat;    /* array of device tree
23                                                  * 'compatible' strings */
24
25         unsigned int            nr_irqs;        /* number of IRQs */
26
27 #ifdef CONFIG_ZONE_DMA
28         unsigned long           dma_zone_size;  /* size of DMA-able area */
29 #endif
30
31         unsigned int            video_start;    /* start of video RAM   */
32         unsigned int            video_end;      /* end of video RAM     */
33
34         unsigned int            reserve_lp0 :1; /* never has lp0        */
35         unsigned int            reserve_lp1 :1; /* never has lp1        */
36         unsigned int            reserve_lp2 :1; /* never has lp2        */
37         unsigned int            soft_reboot :1; /* soft reboot          */
38         void                    (*fixup)(struct machine_desc *,
39                                          struct tag *, char **,
40                                          struct meminfo *);
41         void                    (*reserve)(void);/* reserve mem blocks  */
42         void                    (*map_io)(void);/* IO mapping function  */
43         void                    (*init_early)(void);
44         void                    (*init_irq)(void);
45         struct sys_timer        *timer;         /* system tick timer    */
46         void                    (*init_machine)(void);
47 #ifdef CONFIG_MULTI_IRQ_HANDLER
48         void                    (*handle_irq)(struct pt_regs *);
49 #endif
50 };
51
52 /*
53  * Current machine - only accessible during boot.
54  */
55 extern struct machine_desc *machine_desc;
56
57 /*
58  * Machine type table - also only accessible during boot
59  */
60 extern struct machine_desc __arch_info_begin[], __arch_info_end[];
61 #define for_each_machine_desc(p)                        \
62         for (p = __arch_info_begin; p < __arch_info_end; p++)
63
64 /*
65  * Set of macros to define architecture features.  This is built into
66  * a table by the linker.
67  */
68 #define MACHINE_START(_type,_name)                      \
69 static const struct machine_desc __mach_desc_##_type    \
70  __used                                                 \
71  __attribute__((__section__(".arch.info.init"))) = {    \
72         .nr             = MACH_TYPE_##_type,            \
73         .name           = _name,
74
75 #define MACHINE_END                             \
76 };
77
78 #define DT_MACHINE_START(_name, _namestr)               \
79 static const struct machine_desc __mach_desc_##_name    \
80  __used                                                 \
81  __attribute__((__section__(".arch.info.init"))) = {    \
82         .nr             = ~0,                           \
83         .name           = _namestr,
84
85 #endif