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 Mikrotik 46384740dcSRalf Baechle */ 47384740dcSRalf Baechle #define MACH_MIKROTIK_RB532 0 /* Mikrotik RouterBoard 532 */ 48384740dcSRalf Baechle #define MACH_MIKROTIK_RB532A 1 /* Mikrotik RouterBoard 532A */ 49384740dcSRalf Baechle 503209e70eSWu Zhangjin /* 513209e70eSWu Zhangjin * Valid machtype for Loongson family 523209e70eSWu Zhangjin */ 531bdb7b76SJiaxun Yang enum loongson2ef_machine_type { 545f6d693eSHuacai Chen MACH_LOONGSON_UNKNOWN, 555f6d693eSHuacai Chen MACH_LEMOTE_FL2E, 565f6d693eSHuacai Chen MACH_LEMOTE_FL2F, 575f6d693eSHuacai Chen MACH_LEMOTE_ML2F7, 585f6d693eSHuacai Chen MACH_LEMOTE_YL2F89, 595f6d693eSHuacai Chen MACH_DEXXON_GDIUM2F10, 605f6d693eSHuacai Chen MACH_LEMOTE_NAS, 615f6d693eSHuacai Chen MACH_LEMOTE_LL2F, 625f6d693eSHuacai Chen MACH_LOONGSON_END 635f6d693eSHuacai Chen }; 643209e70eSWu Zhangjin 6583ccf69dSLars-Peter Clausen /* 6683ccf69dSLars-Peter Clausen * Valid machtype for group INGENIC 6783ccf69dSLars-Peter Clausen */ 68*68c48f7cSPaul Cercueil enum ingenic_machine_type { 69*68c48f7cSPaul Cercueil MACH_INGENIC_UNKNOWN, 70*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4720, 71*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4725, 72*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4725B, 73*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4730, 74*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4740, 75*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4750, 76*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4755, 77*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4760, 78*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4770, 79*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4775, 80*68c48f7cSPaul Cercueil MACH_INGENIC_JZ4780, 81*68c48f7cSPaul Cercueil MACH_INGENIC_X1000, 82*68c48f7cSPaul Cercueil MACH_INGENIC_X1830, 83*68c48f7cSPaul Cercueil }; 8483ccf69dSLars-Peter Clausen 85384740dcSRalf Baechle extern char *system_type; 86384740dcSRalf Baechle const char *get_system_type(void); 87384740dcSRalf Baechle 88384740dcSRalf Baechle extern unsigned long mips_machtype; 89384740dcSRalf Baechle 90384740dcSRalf Baechle #define BOOT_MEM_RAM 1 91384740dcSRalf Baechle #define BOOT_MEM_ROM_DATA 2 92384740dcSRalf Baechle #define BOOT_MEM_RESERVED 3 9343064c0cSDavid Daney #define BOOT_MEM_INIT_RAM 4 949b9a59dbSSerge Semin #define BOOT_MEM_NOMAP 5 95384740dcSRalf Baechle 9615d45cceSRalf Baechle extern void add_memory_region(phys_addr_t start, phys_addr_t size, long type); 9715d45cceSRalf Baechle extern void detect_memory_region(phys_addr_t start, phys_addr_t sz_min, phys_addr_t sz_max); 98384740dcSRalf Baechle 99384740dcSRalf Baechle extern void prom_init(void); 100384740dcSRalf Baechle extern void prom_free_prom_memory(void); 101c0de00b2SThomas Bogendoerfer extern void prom_cleanup(void); 102384740dcSRalf Baechle 103384740dcSRalf Baechle extern void free_init_pages(const char *what, 104384740dcSRalf Baechle unsigned long begin, unsigned long end); 105384740dcSRalf Baechle 1060893d3fbSMarkos Chandras extern void (*free_init_pages_eva)(void *begin, void *end); 1070893d3fbSMarkos Chandras 108384740dcSRalf Baechle /* 109384740dcSRalf Baechle * Initial kernel command line, usually setup by prom_init() 110384740dcSRalf Baechle */ 1117580c9c3SDmitri Vorobiev extern char arcs_cmdline[COMMAND_LINE_SIZE]; 112384740dcSRalf Baechle 113384740dcSRalf Baechle /* 114384740dcSRalf Baechle * Registers a0, a1, a3 and a4 as passed to the kernel entry by firmware 115384740dcSRalf Baechle */ 116384740dcSRalf Baechle extern unsigned long fw_arg0, fw_arg1, fw_arg2, fw_arg3; 117384740dcSRalf Baechle 11815f37e15SJonas Gorski #ifdef CONFIG_USE_OF 11915f37e15SJonas Gorski extern unsigned long fw_passed_dtb; 12015f37e15SJonas Gorski #endif 12115f37e15SJonas Gorski 122384740dcSRalf Baechle /* 1232a3d47c9STiezhu Yang * Platform memory detection hook called by arch_mem_init() 124384740dcSRalf Baechle */ 125384740dcSRalf Baechle extern void plat_mem_setup(void); 126384740dcSRalf Baechle 127ee71b7d2SDavid Daney #ifdef CONFIG_SWIOTLB 128ee71b7d2SDavid Daney /* 129ee71b7d2SDavid Daney * Optional platform hook to call swiotlb_setup(). 130ee71b7d2SDavid Daney */ 131ee71b7d2SDavid Daney extern void plat_swiotlb_setup(void); 132ee71b7d2SDavid Daney 133ee71b7d2SDavid Daney #else 134ee71b7d2SDavid Daney 135ee71b7d2SDavid Daney static inline void plat_swiotlb_setup(void) {} 136ee71b7d2SDavid Daney 137ee71b7d2SDavid Daney #endif /* CONFIG_SWIOTLB */ 138ee71b7d2SDavid Daney 1395e7c1c91SMatt Redfearn #ifdef CONFIG_USE_OF 1405e7c1c91SMatt Redfearn /** 1415e7c1c91SMatt Redfearn * plat_get_fdt() - Return a pointer to the platform's device tree blob 1425e7c1c91SMatt Redfearn * 1435e7c1c91SMatt Redfearn * This function provides a platform independent API to get a pointer to the 1445e7c1c91SMatt Redfearn * flattened device tree blob. The interface between bootloader and kernel 1455e7c1c91SMatt Redfearn * is not consistent across platforms so it is necessary to provide this 1465e7c1c91SMatt Redfearn * API such that common startup code can locate the FDT. 1475e7c1c91SMatt Redfearn * 1485e7c1c91SMatt Redfearn * This is used by the KASLR code to get command line arguments and random 1495e7c1c91SMatt Redfearn * seed from the device tree. Any platform wishing to use KASLR should 1505e7c1c91SMatt Redfearn * provide this API and select SYS_SUPPORTS_RELOCATABLE. 1515e7c1c91SMatt Redfearn * 1525e7c1c91SMatt Redfearn * Return: Pointer to the flattened device tree blob. 1535e7c1c91SMatt Redfearn */ 1545e7c1c91SMatt Redfearn extern void *plat_get_fdt(void); 1550063fdedSMarcin Nowakowski 1560063fdedSMarcin Nowakowski #ifdef CONFIG_RELOCATABLE 1570063fdedSMarcin Nowakowski 1580063fdedSMarcin Nowakowski /** 1590063fdedSMarcin Nowakowski * plat_fdt_relocated() - Update platform's information about relocated dtb 1600063fdedSMarcin Nowakowski * 1610063fdedSMarcin Nowakowski * This function provides a platform-independent API to set platform's 1620063fdedSMarcin Nowakowski * information about relocated DTB if it needs to be moved due to kernel 1630063fdedSMarcin Nowakowski * relocation occurring at boot. 1640063fdedSMarcin Nowakowski */ 1650063fdedSMarcin Nowakowski void plat_fdt_relocated(void *new_location); 1660063fdedSMarcin Nowakowski 1670063fdedSMarcin Nowakowski #endif /* CONFIG_RELOCATABLE */ 1685e7c1c91SMatt Redfearn #endif /* CONFIG_USE_OF */ 1695e7c1c91SMatt Redfearn 170384740dcSRalf Baechle #endif /* _ASM_BOOTINFO_H */ 171