Blame view

arch/mips/kernel/mips_machine.c 1.77 KB
487d70d0b   Gabor Juhos   MIPS: Add generic...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  /*
   *  Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
   *
   *  This program is free software; you can redistribute it and/or modify it
   *  under the terms of the GNU General Public License version 2 as published
   *  by the Free Software Foundation.
   *
   */
  #include <linux/mm.h>
  #include <linux/string.h>
  #include <linux/slab.h>
  
  #include <asm/mips_machine.h>
  
  static struct mips_machine *mips_machine __initdata;
  static char *mips_machine_name = "Unknown";
  
  #define for_each_machine(mach) \
  	for ((mach) = (struct mips_machine *)&__mips_machines_start; \
  	     (mach) && \
  	     (unsigned long)(mach) < (unsigned long)&__mips_machines_end; \
  	     (mach)++)
  
  __init void mips_set_machine_name(const char *name)
  {
  	char *p;
  
  	if (name == NULL)
  		return;
  
  	p = kstrdup(name, GFP_KERNEL);
  	if (!p)
  		pr_err("MIPS: no memory for machine_name
  ");
  
  	mips_machine_name = p;
  }
  
  char *mips_get_machine_name(void)
  {
  	return mips_machine_name;
  }
  
  __init int mips_machtype_setup(char *id)
  {
  	struct mips_machine *mach;
  
  	for_each_machine(mach) {
  		if (mach->mach_id == NULL)
  			continue;
  
  		if (strcmp(mach->mach_id, id) == 0) {
  			mips_machtype = mach->mach_type;
  			return 0;
  		}
  	}
  
  	pr_err("MIPS: no machine found for id '%s', supported machines:
  ", id);
  	pr_err("%-24s %s
  ", "id", "name");
  	for_each_machine(mach)
  		pr_err("%-24s %s
  ", mach->mach_id, mach->mach_name);
  
  	return 1;
  }
  
  __setup("machtype=", mips_machtype_setup);
  
  __init void mips_machine_setup(void)
  {
  	struct mips_machine *mach;
  
  	for_each_machine(mach) {
  		if (mips_machtype == mach->mach_type) {
  			mips_machine = mach;
  			break;
  		}
  	}
  
  	if (!mips_machine)
  		return;
  
  	mips_set_machine_name(mips_machine->mach_name);
  	pr_info("MIPS: machine is %s
  ", mips_machine_name);
  
  	if (mips_machine->mach_setup)
  		mips_machine->mach_setup();
  }