2019-06-04 16:11:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2008-08-02 17:55:55 +08:00
|
|
|
* arch/arm/include/asm/mach/arch.h
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2000 Russell King
|
|
|
|
*/
|
|
|
|
|
2013-05-21 21:40:51 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __ASSEMBLY__
|
2013-07-09 07:01:39 +08:00
|
|
|
#include <linux/reboot.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct tag;
|
2011-11-10 02:13:43 +08:00
|
|
|
struct pt_regs;
|
2011-09-08 16:06:10 +08:00
|
|
|
struct smp_operations;
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
#define smp_ops(ops) (&(ops))
|
2013-05-21 21:40:51 +08:00
|
|
|
#define smp_init_ops(ops) (&(ops))
|
2011-09-08 16:06:10 +08:00
|
|
|
#else
|
|
|
|
#define smp_ops(ops) (struct smp_operations *)NULL
|
2013-05-21 21:40:51 +08:00
|
|
|
#define smp_init_ops(ops) (bool (*)(void))NULL
|
2011-09-08 16:06:10 +08:00
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct machine_desc {
|
|
|
|
unsigned int nr; /* architecture number */
|
|
|
|
const char *name; /* architecture name */
|
2011-07-06 10:38:10 +08:00
|
|
|
unsigned long atag_offset; /* tagged list (relative) */
|
2011-12-21 05:56:45 +08:00
|
|
|
const char *const *dt_compat; /* array of device tree
|
2011-04-29 04:27:21 +08:00
|
|
|
* 'compatible' strings */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-10-15 10:37:52 +08:00
|
|
|
unsigned int nr_irqs; /* number of IRQs */
|
|
|
|
|
2011-07-06 10:28:08 +08:00
|
|
|
#ifdef CONFIG_ZONE_DMA
|
2013-08-02 04:29:29 +08:00
|
|
|
phys_addr_t dma_zone_size; /* size of DMA-able area */
|
2011-07-06 10:28:08 +08:00
|
|
|
#endif
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
unsigned int video_start; /* start of video RAM */
|
|
|
|
unsigned int video_end; /* end of video RAM */
|
|
|
|
|
2011-11-01 22:27:33 +08:00
|
|
|
unsigned char reserve_lp0 :1; /* never has lp0 */
|
|
|
|
unsigned char reserve_lp1 :1; /* never has lp1 */
|
|
|
|
unsigned char reserve_lp2 :1; /* never has lp2 */
|
2013-07-09 07:01:39 +08:00
|
|
|
enum reboot_mode reboot_mode; /* default restart mode */
|
2014-04-28 22:24:10 +08:00
|
|
|
unsigned l2c_aux_val; /* L2 cache aux value */
|
|
|
|
unsigned l2c_aux_mask; /* L2 cache aux mask */
|
|
|
|
void (*l2c_write_sec)(unsigned long, unsigned);
|
2015-08-26 14:49:12 +08:00
|
|
|
const struct smp_operations *smp; /* SMP operations */
|
2013-05-21 21:40:51 +08:00
|
|
|
bool (*smp_init)(void);
|
2014-04-14 05:54:58 +08:00
|
|
|
void (*fixup)(struct tag *, char **);
|
2014-07-16 01:03:36 +08:00
|
|
|
void (*dt_fixup)(void);
|
2015-04-04 17:01:10 +08:00
|
|
|
long long (*pv_fixup)(void);
|
2010-05-23 01:18:57 +08:00
|
|
|
void (*reserve)(void);/* reserve mem blocks */
|
2005-04-17 06:20:36 +08:00
|
|
|
void (*map_io)(void);/* IO mapping function */
|
2010-12-16 21:49:34 +08:00
|
|
|
void (*init_early)(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
void (*init_irq)(void);
|
2012-11-09 03:40:59 +08:00
|
|
|
void (*init_time)(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
void (*init_machine)(void);
|
2012-04-25 22:24:44 +08:00
|
|
|
void (*init_late)(void);
|
2018-06-23 01:01:23 +08:00
|
|
|
#ifdef CONFIG_GENERIC_IRQ_MULTI_HANDLER
|
2010-12-13 16:42:34 +08:00
|
|
|
void (*handle_irq)(struct pt_regs *);
|
|
|
|
#endif
|
2013-07-09 07:01:40 +08:00
|
|
|
void (*restart)(enum reboot_mode, const char *);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2010-12-20 18:18:36 +08:00
|
|
|
/*
|
|
|
|
* Current machine - only accessible during boot.
|
|
|
|
*/
|
2013-07-26 21:55:59 +08:00
|
|
|
extern const struct machine_desc *machine_desc;
|
2010-12-20 18:18:36 +08:00
|
|
|
|
2011-04-29 04:27:21 +08:00
|
|
|
/*
|
|
|
|
* Machine type table - also only accessible during boot
|
|
|
|
*/
|
2013-07-26 21:55:59 +08:00
|
|
|
extern const struct machine_desc __arch_info_begin[], __arch_info_end[];
|
2011-04-29 04:27:21 +08:00
|
|
|
#define for_each_machine_desc(p) \
|
|
|
|
for (p = __arch_info_begin; p < __arch_info_end; p++)
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Set of macros to define architecture features. This is built into
|
|
|
|
* a table by the linker.
|
|
|
|
*/
|
2005-10-28 21:29:43 +08:00
|
|
|
#define MACHINE_START(_type,_name) \
|
|
|
|
static const struct machine_desc __mach_desc_##_type \
|
2007-05-12 07:18:55 +08:00
|
|
|
__used \
|
2005-09-20 23:45:20 +08:00
|
|
|
__attribute__((__section__(".arch.info.init"))) = { \
|
2005-10-28 21:29:43 +08:00
|
|
|
.nr = MACH_TYPE_##_type, \
|
2005-04-17 06:20:36 +08:00
|
|
|
.name = _name,
|
|
|
|
|
|
|
|
#define MACHINE_END \
|
|
|
|
};
|
|
|
|
|
2011-07-25 23:52:11 +08:00
|
|
|
#define DT_MACHINE_START(_name, _namestr) \
|
|
|
|
static const struct machine_desc __mach_desc_##_name \
|
|
|
|
__used \
|
|
|
|
__attribute__((__section__(".arch.info.init"))) = { \
|
|
|
|
.nr = ~0, \
|
|
|
|
.name = _namestr,
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|