1384740dcSRalf Baechle /* 2384740dcSRalf Baechle * This file is subject to the terms and conditions of the GNU General Public 3384740dcSRalf Baechle * License. See the file COPYING in the main directory of this archive 4384740dcSRalf Baechle * for more details. 5384740dcSRalf Baechle * 6384740dcSRalf Baechle * Copyright (C) 1995, 1996, 2003 by Ralf Baechle 7384740dcSRalf Baechle * Copyright (C) 1995, 1996 Andreas Busse 8384740dcSRalf Baechle * Copyright (C) 1995, 1996 Stoned Elipot 9384740dcSRalf Baechle * Copyright (C) 1995, 1996 Paul M. Antoine. 103209e70eSWu Zhangjin * Copyright (C) 2009 Zhang Le 11384740dcSRalf Baechle */ 12384740dcSRalf Baechle #ifndef _ASM_BOOTINFO_H 13384740dcSRalf Baechle #define _ASM_BOOTINFO_H 14384740dcSRalf Baechle 15384740dcSRalf Baechle #include <linux/types.h> 16384740dcSRalf Baechle #include <asm/setup.h> 17384740dcSRalf Baechle 18384740dcSRalf Baechle /* 19384740dcSRalf Baechle * The MACH_ IDs are sort of equivalent to PCI product IDs. As such the 20384740dcSRalf Baechle * numbers do not necessarily reflect technical relations or similarities 21384740dcSRalf Baechle * between systems. 22384740dcSRalf Baechle */ 23384740dcSRalf Baechle 24384740dcSRalf Baechle /* 25384740dcSRalf Baechle * Valid machtype values for group unknown 26384740dcSRalf Baechle */ 27384740dcSRalf Baechle #define MACH_UNKNOWN 0 /* whatever... */ 28384740dcSRalf Baechle 29384740dcSRalf Baechle /* 30384740dcSRalf Baechle * Valid machtype for group DEC 31384740dcSRalf Baechle */ 32384740dcSRalf Baechle #define MACH_DSUNKNOWN 0 33384740dcSRalf Baechle #define MACH_DS23100 1 /* DECstation 2100 or 3100 */ 34384740dcSRalf Baechle #define MACH_DS5100 2 /* DECsystem 5100 */ 35384740dcSRalf Baechle #define MACH_DS5000_200 3 /* DECstation 5000/200 */ 36384740dcSRalf Baechle #define MACH_DS5000_1XX 4 /* DECstation 5000/120, 125, 133, 150 */ 37384740dcSRalf Baechle #define MACH_DS5000_XX 5 /* DECstation 5000/20, 25, 33, 50 */ 38384740dcSRalf Baechle #define MACH_DS5000_2X0 6 /* DECstation 5000/240, 260 */ 39384740dcSRalf Baechle #define MACH_DS5400 7 /* DECsystem 5400 */ 40384740dcSRalf Baechle #define MACH_DS5500 8 /* DECsystem 5500 */ 41384740dcSRalf Baechle #define MACH_DS5800 9 /* DECsystem 5800 */ 42384740dcSRalf Baechle #define MACH_DS5900 10 /* DECsystem 5900 */ 43384740dcSRalf Baechle 44384740dcSRalf Baechle /* 45384740dcSRalf Baechle * Valid machtype for group PMC-MSP 46384740dcSRalf Baechle */ 47384740dcSRalf Baechle #define MACH_MSP4200_EVAL 0 /* PMC-Sierra MSP4200 Evaluation */ 48384740dcSRalf Baechle #define MACH_MSP4200_GW 1 /* PMC-Sierra MSP4200 Gateway demo */ 49384740dcSRalf Baechle #define MACH_MSP4200_FPGA 2 /* PMC-Sierra MSP4200 Emulation */ 50384740dcSRalf Baechle #define MACH_MSP7120_EVAL 3 /* PMC-Sierra MSP7120 Evaluation */ 51384740dcSRalf Baechle #define MACH_MSP7120_GW 4 /* PMC-Sierra MSP7120 Residential GW */ 52384740dcSRalf Baechle #define MACH_MSP7120_FPGA 5 /* PMC-Sierra MSP7120 Emulation */ 53384740dcSRalf Baechle #define MACH_MSP_OTHER 255 /* PMC-Sierra unknown board type */ 54384740dcSRalf Baechle 55384740dcSRalf Baechle /* 56384740dcSRalf Baechle * Valid machtype for group Mikrotik 57384740dcSRalf Baechle */ 58384740dcSRalf Baechle #define MACH_MIKROTIK_RB532 0 /* Mikrotik RouterBoard 532 */ 59384740dcSRalf Baechle #define MACH_MIKROTIK_RB532A 1 /* Mikrotik RouterBoard 532A */ 60384740dcSRalf Baechle 613209e70eSWu Zhangjin /* 623209e70eSWu Zhangjin * Valid machtype for Loongson family 633209e70eSWu Zhangjin */ 645f6d693eSHuacai Chen enum loongson_machine_type { 655f6d693eSHuacai Chen MACH_LOONGSON_UNKNOWN, 665f6d693eSHuacai Chen MACH_LEMOTE_FL2E, 675f6d693eSHuacai Chen MACH_LEMOTE_FL2F, 685f6d693eSHuacai Chen MACH_LEMOTE_ML2F7, 695f6d693eSHuacai Chen MACH_LEMOTE_YL2F89, 705f6d693eSHuacai Chen MACH_DEXXON_GDIUM2F10, 715f6d693eSHuacai Chen MACH_LEMOTE_NAS, 725f6d693eSHuacai Chen MACH_LEMOTE_LL2F, 733adeb256SHuacai Chen MACH_LOONGSON_GENERIC, 745f6d693eSHuacai Chen MACH_LOONGSON_END 755f6d693eSHuacai Chen }; 763209e70eSWu Zhangjin 7783ccf69dSLars-Peter Clausen /* 7883ccf69dSLars-Peter Clausen * Valid machtype for group INGENIC 7983ccf69dSLars-Peter Clausen */ 8083ccf69dSLars-Peter Clausen #define MACH_INGENIC_JZ4730 0 /* JZ4730 SOC */ 8183ccf69dSLars-Peter Clausen #define MACH_INGENIC_JZ4740 1 /* JZ4740 SOC */ 8283ccf69dSLars-Peter Clausen 83384740dcSRalf Baechle extern char *system_type; 84384740dcSRalf Baechle const char *get_system_type(void); 85384740dcSRalf Baechle 86384740dcSRalf Baechle extern unsigned long mips_machtype; 87384740dcSRalf Baechle 88384740dcSRalf Baechle #define BOOT_MEM_MAP_MAX 32 89384740dcSRalf Baechle #define BOOT_MEM_RAM 1 90384740dcSRalf Baechle #define BOOT_MEM_ROM_DATA 2 91384740dcSRalf Baechle #define BOOT_MEM_RESERVED 3 9243064c0cSDavid Daney #define BOOT_MEM_INIT_RAM 4 93384740dcSRalf Baechle 94384740dcSRalf Baechle /* 95384740dcSRalf Baechle * A memory map that's built upon what was determined 96384740dcSRalf Baechle * or specified on the command line. 97384740dcSRalf Baechle */ 98384740dcSRalf Baechle struct boot_mem_map { 99384740dcSRalf Baechle int nr_map; 100384740dcSRalf Baechle struct boot_mem_map_entry { 10115d45cceSRalf Baechle phys_addr_t addr; /* start of memory segment */ 10215d45cceSRalf Baechle phys_addr_t size; /* size of memory segment */ 103384740dcSRalf Baechle long type; /* type of memory segment */ 104384740dcSRalf Baechle } map[BOOT_MEM_MAP_MAX]; 105384740dcSRalf Baechle }; 106384740dcSRalf Baechle 107384740dcSRalf Baechle extern struct boot_mem_map boot_mem_map; 108384740dcSRalf Baechle 10915d45cceSRalf Baechle extern void add_memory_region(phys_addr_t start, phys_addr_t size, long type); 11015d45cceSRalf Baechle extern void detect_memory_region(phys_addr_t start, phys_addr_t sz_min, phys_addr_t sz_max); 111384740dcSRalf Baechle 112384740dcSRalf Baechle extern void prom_init(void); 113384740dcSRalf Baechle extern void prom_free_prom_memory(void); 114384740dcSRalf Baechle 115384740dcSRalf Baechle extern void free_init_pages(const char *what, 116384740dcSRalf Baechle unsigned long begin, unsigned long end); 117384740dcSRalf Baechle 1180893d3fbSMarkos Chandras extern void (*free_init_pages_eva)(void *begin, void *end); 1190893d3fbSMarkos Chandras 120384740dcSRalf Baechle /* 121384740dcSRalf Baechle * Initial kernel command line, usually setup by prom_init() 122384740dcSRalf Baechle */ 1237580c9c3SDmitri Vorobiev extern char arcs_cmdline[COMMAND_LINE_SIZE]; 124384740dcSRalf Baechle 125384740dcSRalf Baechle /* 126384740dcSRalf Baechle * Registers a0, a1, a3 and a4 as passed to the kernel entry by firmware 127384740dcSRalf Baechle */ 128384740dcSRalf Baechle extern unsigned long fw_arg0, fw_arg1, fw_arg2, fw_arg3; 129384740dcSRalf Baechle 13015f37e15SJonas Gorski #ifdef CONFIG_USE_OF 13115f37e15SJonas Gorski extern unsigned long fw_passed_dtb; 13215f37e15SJonas Gorski #endif 13315f37e15SJonas Gorski 134384740dcSRalf Baechle /* 135384740dcSRalf Baechle * Platform memory detection hook called by setup_arch 136384740dcSRalf Baechle */ 137384740dcSRalf Baechle extern void plat_mem_setup(void); 138384740dcSRalf Baechle 139ee71b7d2SDavid Daney #ifdef CONFIG_SWIOTLB 140ee71b7d2SDavid Daney /* 141ee71b7d2SDavid Daney * Optional platform hook to call swiotlb_setup(). 142ee71b7d2SDavid Daney */ 143ee71b7d2SDavid Daney extern void plat_swiotlb_setup(void); 144ee71b7d2SDavid Daney 145ee71b7d2SDavid Daney #else 146ee71b7d2SDavid Daney 147ee71b7d2SDavid Daney static inline void plat_swiotlb_setup(void) {} 148ee71b7d2SDavid Daney 149ee71b7d2SDavid Daney #endif /* CONFIG_SWIOTLB */ 150ee71b7d2SDavid Daney 1515e7c1c91SMatt Redfearn #ifdef CONFIG_USE_OF 1525e7c1c91SMatt Redfearn /** 1535e7c1c91SMatt Redfearn * plat_get_fdt() - Return a pointer to the platform's device tree blob 1545e7c1c91SMatt Redfearn * 1555e7c1c91SMatt Redfearn * This function provides a platform independent API to get a pointer to the 1565e7c1c91SMatt Redfearn * flattened device tree blob. The interface between bootloader and kernel 1575e7c1c91SMatt Redfearn * is not consistent across platforms so it is necessary to provide this 1585e7c1c91SMatt Redfearn * API such that common startup code can locate the FDT. 1595e7c1c91SMatt Redfearn * 1605e7c1c91SMatt Redfearn * This is used by the KASLR code to get command line arguments and random 1615e7c1c91SMatt Redfearn * seed from the device tree. Any platform wishing to use KASLR should 1625e7c1c91SMatt Redfearn * provide this API and select SYS_SUPPORTS_RELOCATABLE. 1635e7c1c91SMatt Redfearn * 1645e7c1c91SMatt Redfearn * Return: Pointer to the flattened device tree blob. 1655e7c1c91SMatt Redfearn */ 1665e7c1c91SMatt Redfearn extern void *plat_get_fdt(void); 167*0063fdedSMarcin Nowakowski 168*0063fdedSMarcin Nowakowski #ifdef CONFIG_RELOCATABLE 169*0063fdedSMarcin Nowakowski 170*0063fdedSMarcin Nowakowski /** 171*0063fdedSMarcin Nowakowski * plat_fdt_relocated() - Update platform's information about relocated dtb 172*0063fdedSMarcin Nowakowski * 173*0063fdedSMarcin Nowakowski * This function provides a platform-independent API to set platform's 174*0063fdedSMarcin Nowakowski * information about relocated DTB if it needs to be moved due to kernel 175*0063fdedSMarcin Nowakowski * relocation occurring at boot. 176*0063fdedSMarcin Nowakowski */ 177*0063fdedSMarcin Nowakowski void plat_fdt_relocated(void *new_location); 178*0063fdedSMarcin Nowakowski 179*0063fdedSMarcin Nowakowski #endif /* CONFIG_RELOCATABLE */ 1805e7c1c91SMatt Redfearn #endif /* CONFIG_USE_OF */ 1815e7c1c91SMatt Redfearn 182384740dcSRalf Baechle #endif /* _ASM_BOOTINFO_H */ 183