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 +#include <asm/bootinfo.h>
21 +#define MIPS_MACHINE_NAME_LEN 64
23 +struct mips_machine {
24 + unsigned long mach_type;
25 + void (*mach_setup)(void);
26 + unsigned char mach_name[MIPS_MACHINE_NAME_LEN];
27 + struct list_head list;
30 +void mips_machine_register(struct mips_machine *) __init;
31 +void mips_machine_setup(void) __init;
33 +extern unsigned char mips_machine_name[MIPS_MACHINE_NAME_LEN];
35 +#define MIPS_MACHINE(_type, _name, _setup) \
36 +static struct mips_machine machine_##_type __initdata = \
38 + .mach_type = _type, \
39 + .mach_name = _name, \
40 + .mach_setup = _setup, \
43 +static int __init register_machine_##_type(void) \
45 + mips_machine_register(&machine_##_type); \
49 +pure_initcall(register_machine_##_type)
51 +#endif /* __ASM_MIPS_MACHINE_H */
54 +++ b/arch/mips/kernel/mips_machine.c
57 + * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
59 + * This program is free software; you can redistribute it and/or modify it
60 + * under the terms of the GNU General Public License version 2 as published
61 + * by the Free Software Foundation.
65 +#include <asm/mips_machine.h>
66 +#include <asm/bootinfo.h>
68 +static struct list_head mips_machines __initdata =
69 + LIST_HEAD_INIT(mips_machines);
71 +unsigned char mips_machine_name[MIPS_MACHINE_NAME_LEN] = "Unknown";
73 +static struct mips_machine * __init mips_machine_find(unsigned long machtype)
75 + struct list_head *this;
77 + list_for_each(this, &mips_machines) {
78 + struct mips_machine *mach;
80 + mach = list_entry(this, struct mips_machine, list);
81 + if (mach->mach_type == machtype)
88 +void __init mips_machine_register(struct mips_machine *mach)
90 + list_add_tail(&mach->list, &mips_machines);
93 +void __init mips_machine_setup(void)
95 + struct mips_machine *mach;
97 + mach = mips_machine_find(mips_machtype);
99 + printk(KERN_ALERT "MIPS: no machine registered for "
100 + "machtype %lu\n", mips_machtype);
104 + if (mach->mach_name[0])
105 + strncpy(mips_machine_name, mach->mach_name,
106 + MIPS_MACHINE_NAME_LEN);
108 + printk(KERN_INFO "MIPS: machine is %s\n", mips_machine_name);
110 + if (mach->mach_setup)
111 + mach->mach_setup();
114 --- a/arch/mips/kernel/Makefile
115 +++ b/arch/mips/kernel/Makefile
116 @@ -83,6 +83,7 @@ obj-$(CONFIG_GPIO_TXX9) += gpio_txx9.o
118 obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o
119 obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
120 +obj-$(CONFIG_MIPS_MACHINE) += mips_machine.o
122 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)
124 --- a/arch/mips/Kconfig
125 +++ b/arch/mips/Kconfig
126 @@ -615,6 +615,7 @@ config WR_PPMC
130 +source "arch/mips/ar71xx/Kconfig"
131 source "arch/mips/au1000/Kconfig"
132 source "arch/mips/basler/excite/Kconfig"
133 source "arch/mips/jazz/Kconfig"
134 @@ -788,6 +789,9 @@ config MYLOADER