xref: /openbmc/linux/arch/mips/kernel/prom.c (revision 9127dc47)
1f2ffa5abSDezhong Diao /*
2f2ffa5abSDezhong Diao  * MIPS support for CONFIG_OF device tree support
3f2ffa5abSDezhong Diao  *
4f2ffa5abSDezhong Diao  * Copyright (C) 2010 Cisco Systems Inc. <dediao@cisco.com>
5f2ffa5abSDezhong Diao  *
6f2ffa5abSDezhong Diao  * This program is free software; you can redistribute it and/or modify
7f2ffa5abSDezhong Diao  * it under the terms of the GNU General Public License version 2 as
8f2ffa5abSDezhong Diao  * published by the Free Software Foundation.
9f2ffa5abSDezhong Diao  */
10f2ffa5abSDezhong Diao 
11f2ffa5abSDezhong Diao #include <linux/init.h>
1273bc256dSPaul Gortmaker #include <linux/export.h>
13f2ffa5abSDezhong Diao #include <linux/errno.h>
14f2ffa5abSDezhong Diao #include <linux/types.h>
15f2ffa5abSDezhong Diao #include <linux/bootmem.h>
16f2ffa5abSDezhong Diao #include <linux/debugfs.h>
17f2ffa5abSDezhong Diao #include <linux/of.h>
18f2ffa5abSDezhong Diao #include <linux/of_fdt.h>
1984988c06SKevin Cernekee #include <linux/of_platform.h>
20f2ffa5abSDezhong Diao 
21f2ffa5abSDezhong Diao #include <asm/page.h>
22f2ffa5abSDezhong Diao #include <asm/prom.h>
23f2ffa5abSDezhong Diao 
249169a5d0SJohn Crispin static char mips_machine_name[64] = "Unknown";
259169a5d0SJohn Crispin 
269169a5d0SJohn Crispin __init void mips_set_machine_name(const char *name)
279169a5d0SJohn Crispin {
289169a5d0SJohn Crispin 	if (name == NULL)
299169a5d0SJohn Crispin 		return;
309169a5d0SJohn Crispin 
3141c8366bSChen Gang 	strlcpy(mips_machine_name, name, sizeof(mips_machine_name));
329169a5d0SJohn Crispin 	pr_info("MIPS: machine is %s\n", mips_get_machine_name());
339169a5d0SJohn Crispin }
349169a5d0SJohn Crispin 
359169a5d0SJohn Crispin char *mips_get_machine_name(void)
369169a5d0SJohn Crispin {
379169a5d0SJohn Crispin 	return mips_machine_name;
389169a5d0SJohn Crispin }
399169a5d0SJohn Crispin 
409169a5d0SJohn Crispin #ifdef CONFIG_OF
41f2ffa5abSDezhong Diao void __init early_init_dt_add_memory_arch(u64 base, u64 size)
42f2ffa5abSDezhong Diao {
43f2ffa5abSDezhong Diao 	return add_memory_region(base, size, BOOT_MEM_RAM);
44f2ffa5abSDezhong Diao }
45f2ffa5abSDezhong Diao 
46672c5446SGrant Likely void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align)
47f2ffa5abSDezhong Diao {
48672c5446SGrant Likely 	return __alloc_bootmem(size, align, __pa(MAX_DMA_ADDRESS));
49f2ffa5abSDezhong Diao }
50f2ffa5abSDezhong Diao 
510cdde839SRob Herring void __init __dt_setup_arch(void *bph)
52f2ffa5abSDezhong Diao {
53f75813c0SRob Herring 	if (!early_init_dt_scan(bph))
54f75813c0SRob Herring 		return;
559169a5d0SJohn Crispin 
5697e7f455SRob Herring 	mips_set_machine_name(of_flat_dt_get_machine_name());
57f2ffa5abSDezhong Diao }
5884988c06SKevin Cernekee 
5984988c06SKevin Cernekee int __init __dt_register_buses(const char *bus0, const char *bus1)
6084988c06SKevin Cernekee {
6184988c06SKevin Cernekee 	static struct of_device_id of_ids[3];
6284988c06SKevin Cernekee 
6384988c06SKevin Cernekee 	if (!of_have_populated_dt())
6484988c06SKevin Cernekee 		panic("device tree not present");
6584988c06SKevin Cernekee 
6684988c06SKevin Cernekee 	strlcpy(of_ids[0].compatible, bus0, sizeof(of_ids[0].compatible));
679127dc47SKevin Cernekee 	if (bus1) {
689127dc47SKevin Cernekee 		strlcpy(of_ids[1].compatible, bus1,
699127dc47SKevin Cernekee 			sizeof(of_ids[1].compatible));
709127dc47SKevin Cernekee 	}
7184988c06SKevin Cernekee 
7284988c06SKevin Cernekee 	if (of_platform_populate(NULL, of_ids, NULL, NULL))
7384988c06SKevin Cernekee 		panic("failed to populate DT");
7484988c06SKevin Cernekee 
7584988c06SKevin Cernekee 	return 0;
7684988c06SKevin Cernekee }
7784988c06SKevin Cernekee 
789169a5d0SJohn Crispin #endif
79