2 +++ b/include/asm-mips/mips_machine.h
5 + * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
7 + * This program is free software; you can redistribute it and/or modify it
8 + * under the terms of the GNU General Public License version 2 as published
9 + * by the Free Software Foundation.
13 +#ifndef __ASM_MIPS_MACHINE_H
14 +#define __ASM_MIPS_MACHINE_H
16 +#include <linux/init.h>
17 +#include <linux/list.h>
19 +#define MIPS_MACHINE_NAME_LEN 64
21 +struct mips_machine {
22 + unsigned long mach_type;
23 + void (*mach_setup)(void);
24 + unsigned char mach_name[MIPS_MACHINE_NAME_LEN];
25 + struct list_head list;
28 +void mips_machine_register(struct mips_machine *) __init;
29 +void mips_machine_setup(unsigned long machtype) __init;
31 +extern unsigned char mips_machine_name[MIPS_MACHINE_NAME_LEN];
33 +#define MIPS_MACHINE(_type, _name, _setup) \
34 +static struct mips_machine machine_##_type __initdata = \
36 + .mach_type = _type, \
37 + .mach_name = _name, \
38 + .mach_setup = _setup, \
41 +static int __init register_machine_##_type(void) \
43 + mips_machine_register(&machine_##_type); \
47 +pure_initcall(register_machine_##_type)
49 +#endif /* __ASM_MIPS_MACHINE_H */
52 +++ b/arch/mips/kernel/mips_machine.c
55 + * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
57 + * This program is free software; you can redistribute it and/or modify it
58 + * under the terms of the GNU General Public License version 2 as published
59 + * by the Free Software Foundation.
63 +#include <asm/mips_machine.h>
64 +#include <asm/bootinfo.h>
66 +static struct list_head mips_machines __initdata =
67 + LIST_HEAD_INIT(mips_machines);
69 +unsigned char mips_machine_name[MIPS_MACHINE_NAME_LEN] = "Unknown";
71 +static struct mips_machine * __init mips_machine_find(unsigned long machtype)
73 + struct list_head *this;
75 + list_for_each(this, &mips_machines) {
76 + struct mips_machine *mach;
78 + mach = list_entry(this, struct mips_machine, list);
79 + if (mach->mach_type == machtype)
86 +void __init mips_machine_register(struct mips_machine *mach)
88 + list_add_tail(&mach->list, &mips_machines);
91 +void __init mips_machine_setup(unsigned long machtype)
93 + struct mips_machine *mach;
95 + mach = mips_machine_find(machtype);
97 + printk(KERN_ALERT "MIPS: no machine registered for "
98 + "machtype %lu\n", machtype);
102 + if (mach->mach_name[0])
103 + strncpy(mips_machine_name, mach->mach_name,
104 + MIPS_MACHINE_NAME_LEN);
106 + printk(KERN_INFO "MIPS: machine is %s\n", mips_machine_name);
108 + if (mach->mach_setup)
109 + mach->mach_setup();
112 --- a/arch/mips/kernel/Makefile
113 +++ b/arch/mips/kernel/Makefile
114 @@ -85,6 +85,7 @@ obj-$(CONFIG_GPIO_TXX9) += gpio_txx9.o
116 obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o
117 obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
118 +obj-$(CONFIG_MIPS_MACHINE) += mips_machine.o
120 CFLAGS_cpu-bugs64.o = $(shell if $(CC) $(KBUILD_CFLAGS) -Wa,-mdaddi -c -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-DHAVE_AS_SET_DADDI"; fi)
122 --- a/arch/mips/Kconfig
123 +++ b/arch/mips/Kconfig
124 @@ -802,6 +802,9 @@ config MIPS_DISABLE_OBSOLETE_IDE
134 --- a/arch/mips/kernel/proc.c
135 +++ b/arch/mips/kernel/proc.c
137 #include <asm/cpu-features.h>
138 #include <asm/mipsregs.h>
139 #include <asm/processor.h>
140 +#include <asm/mips_machine.h>
142 unsigned int vced_count, vcei_count;
144 @@ -33,8 +34,12 @@ static int show_cpuinfo(struct seq_file
146 * For the first processor also print the system type
150 seq_printf(m, "system type\t\t: %s\n", get_system_type());
151 +#ifdef CONFIG_MIPS_MACHINE
152 + seq_printf(m, "machine\t\t\t: %s\n", mips_machine_name);
156 seq_printf(m, "processor\t\t: %ld\n", n);
157 sprintf(fmt, "cpu model\t\t: %%s V%%d.%%d%s\n",