~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm/include/asm/mach/arch.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 /*
  3  *  arch/arm/include/asm/mach/arch.h
  4  *
  5  *  Copyright (C) 2000 Russell King
  6  */
  7 
  8 #include <linux/types.h>
  9 
 10 #ifndef __ASSEMBLY__
 11 #include <linux/reboot.h>
 12 
 13 struct tag;
 14 struct pt_regs;
 15 struct smp_operations;
 16 #ifdef CONFIG_SMP
 17 #define smp_ops(ops) (&(ops))
 18 #define smp_init_ops(ops) (&(ops))
 19 #else
 20 #define smp_ops(ops) (struct smp_operations *)NULL
 21 #define smp_init_ops(ops) (bool (*)(void))NULL
 22 #endif
 23 
 24 struct machine_desc {
 25         unsigned int            nr;             /* architecture number  */
 26         const char              *name;          /* architecture name    */
 27         unsigned long           atag_offset;    /* tagged list (relative) */
 28         const char *const       *dt_compat;     /* array of device tree
 29                                                  * 'compatible' strings */
 30 
 31         unsigned int            nr_irqs;        /* number of IRQs */
 32 
 33 #ifdef CONFIG_ZONE_DMA
 34         phys_addr_t             dma_zone_size;  /* size of DMA-able area */
 35 #endif
 36 
 37         unsigned int            video_start;    /* start of video RAM   */
 38         unsigned int            video_end;      /* end of video RAM     */
 39 
 40         unsigned char           reserve_lp0 :1; /* never has lp0        */
 41         unsigned char           reserve_lp1 :1; /* never has lp1        */
 42         unsigned char           reserve_lp2 :1; /* never has lp2        */
 43         enum reboot_mode        reboot_mode;    /* default restart mode */
 44         unsigned                l2c_aux_val;    /* L2 cache aux value   */
 45         unsigned                l2c_aux_mask;   /* L2 cache aux mask    */
 46         void                    (*l2c_write_sec)(unsigned long, unsigned);
 47         const struct smp_operations     *smp;   /* SMP operations       */
 48         bool                    (*smp_init)(void);
 49         void                    (*fixup)(struct tag *, char **);
 50         void                    (*dt_fixup)(void);
 51         long long               (*pv_fixup)(void);
 52         void                    (*reserve)(void);/* reserve mem blocks  */
 53         void                    (*map_io)(void);/* IO mapping function  */
 54         void                    (*init_early)(void);
 55         void                    (*init_irq)(void);
 56         void                    (*init_time)(void);
 57         void                    (*init_machine)(void);
 58         void                    (*init_late)(void);
 59         void                    (*restart)(enum reboot_mode, const char *);
 60 };
 61 
 62 /*
 63  * Current machine - only accessible during boot.
 64  */
 65 extern const struct machine_desc *machine_desc;
 66 
 67 /*
 68  * Machine type table - also only accessible during boot
 69  */
 70 extern const struct machine_desc __arch_info_begin[], __arch_info_end[];
 71 #define for_each_machine_desc(p)                        \
 72         for (p = __arch_info_begin; p < __arch_info_end; p++)
 73 
 74 /*
 75  * Set of macros to define architecture features.  This is built into
 76  * a table by the linker.
 77  */
 78 #define MACHINE_START(_type,_name)                      \
 79 static const struct machine_desc __mach_desc_##_type    \
 80  __used                                                 \
 81  __section(".arch.info.init") = {                       \
 82         .nr             = MACH_TYPE_##_type,            \
 83         .name           = _name,
 84 
 85 #define MACHINE_END                             \
 86 };
 87 
 88 #define DT_MACHINE_START(_name, _namestr)               \
 89 static const struct machine_desc __mach_desc_##_name    \
 90  __used                                                 \
 91  __section(".arch.info.init") = {                       \
 92         .nr             = ~0,                           \
 93         .name           = _namestr,
 94 
 95 #endif
 96 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php