--- /dev/null
+/*
+ * Ralink machine types
+ *
+ * Copyright (C) 2009 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.
+ */
+
+enum ramips_mach_type {
+ RAMIPS_MACH_GENERIC,
+ RAMIPS_MACH_WHR_G300N, /* Buffalo WHR-G300N */
+};
+
+extern enum ramips_mach_type ramips_mach;
extern unsigned long rt288x_cpu_freq;
extern unsigned long rt288x_sys_freq;
-extern unsigned long rt288x_mach_type;
-#define RT288X_MACH_GENERIC 0
-
#define RT288X_CPU_IRQ_BASE 0
#define RT288X_INTC_IRQ_BASE 8
#define RT288X_INTC_IRQ_COUNT 32
#include <asm/bootinfo.h>
#include <asm/addrspace.h>
+#include <asm/mips_machine.h>
#include <asm/mach-ralink/common.h>
+#include <asm/mach-ralink/machine.h>
#include <ralink_soc.h>
unsigned char ramips_sys_type[RAMIPS_SYS_TYPE_LEN];
+enum ramips_mach_type ramips_mach = RAMIPS_MACH_GENERIC;
const char *get_system_type(void)
{
detect_mem_size();
ramips_soc_setup();
}
+
+static int __init ramips_machine_setup(void)
+{
+ mips_machine_setup(ramips_mach);
+ return 0;
+}
+
+arch_initcall(ramips_machine_setup);
+
+static void __init ramips_generic_init(void)
+{
+}
+
+MIPS_MACHINE(RAMIPS_MACH_GENERIC, "Generic Ralink board", ramips_generic_init);
obj-y := prom.o irq.o setup.o rt288x.o devices.o
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
-
-obj-$(CONFIG_RT288X_MACH_GENERIC) += mach-generic.o
+++ /dev/null
-/*
- * Generic RT288x machine setup
- *
- * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
- * Copyright (C) 2008 Imre Kaloz <kaloz@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/init.h>
-
-#include <asm/mach-ralink/rt288x.h>
-#include <asm/mips_machine.h>
-
-static void __init rt288x_generic_init(void)
-{
-}
-
-MIPS_MACHINE(RT288X_MACH_GENERIC, "Generic RT288x board", rt288x_generic_init);
"fw_arg2=%08x, fw_arg3=%08x\n",
(unsigned int)fw_arg0, (unsigned int)fw_arg1,
(unsigned int)fw_arg2, (unsigned int)fw_arg3);
-
- rt288x_mach_type = RT288X_MACH_GENERIC;
}
void __init prom_free_prom_memory(void)
#include <asm/mach-ralink/rt288x.h>
#include <asm/mach-ralink/rt288x_regs.h>
-unsigned long rt288x_mach_type;
-
static void rt288x_restart(char *command)
{
rt288x_sysc_wr(RT2880_RESET_SYSTEM, SYSC_REG_RESET_CTRL);
{
mips_hpt_frequency = rt288x_cpu_freq / 2;
}
-
-static int __init rt288x_machine_setup(void)
-{
- mips_machine_setup(rt288x_mach_type);
-
- return 0;
-}
-
-arch_initcall(rt288x_machine_setup);
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
-obj-$(CONFIG_RT305X_MACH_GENERIC) += mach-generic.o
obj-$(CONFIG_RT305X_MACH_WHR_G300N) += mach-whr-g300n.o
+++ /dev/null
-/*
- * Generic RT305x machine setup
- *
- * Copyright (C) 2009 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/init.h>
-
-#include <asm/mips_machine.h>
-
-#include "machine.h"
-
-static void __init rt305x_generic_init(void)
-{
-}
-
-MIPS_MACHINE(RT305X_MACH_GENERIC, "Generic RT305x board", rt305x_generic_init);
#include <linux/leds.h>
#include <asm/mips_machine.h>
+#include <asm/mach-ralink/machine.h>
#include <asm/mach-ralink/dev_gpio_leds.h>
-#include "machine.h"
#include "devices.h"
#define WHR_G300N_GPIO_LED_DIAG 7
whr_g300n_leds_gpio);
}
-MIPS_MACHINE(RT305X_MACH_WHR_G300N, "Buffalo WHR-G300N", whr_g300n_init);
+MIPS_MACHINE(RAMIPS_MACH_WHR_G300N, "Buffalo WHR-G300N", whr_g300n_init);
+++ /dev/null
-/*
- * Ralink RT305x SoC specific setup
- *
- * Copyright (C) 2009 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.
- */
-
-enum rt305x_mach_type {
- RT305X_MACH_GENERIC,
- RT305X_MACH_WHR_G300N, /* Buffalo WHR-G300N */
-};
-
-extern enum rt305x_mach_type rt305x_mach;
#include <asm/bootinfo.h>
#include <asm/mach-ralink/common.h>
+#include <asm/mach-ralink/machine.h>
#include <asm/mach-ralink/rt305x.h>
#include <asm/mach-ralink/rt305x_regs.h>
-#include "machine.h"
-
struct board_rec {
char *name;
- enum rt305x_mach_type mach_type;
+ enum ramips_mach_type mach_type;
};
static int rt305x_prom_argc __initdata;
static struct board_rec boards[] __initdata = {
{
.name = "WHR-G300N",
- .mach_type = RT305X_MACH_WHR_G300N,
+ .mach_type = RAMIPS_MACH_WHR_G300N,
}
};
{
int i;
- rt305x_mach = RT305X_MACH_GENERIC;
-
for (i = 0; i < ARRAY_SIZE(boards); i++)
if (strcmp(name, boards[i].name) == 0) {
- rt305x_mach = boards[i].mach_type;
+ ramips_mach = boards[i].mach_type;
break;
}
}
#include <asm/mach-ralink/rt305x.h>
#include <asm/mach-ralink/rt305x_regs.h>
-#include "machine.h"
-
-enum rt305x_mach_type rt305x_mach;
-
static void rt305x_restart(char *command)
{
rt305x_sysc_wr(RT305X_RESET_SYSTEM, SYSC_REG_RESET_CTRL);
{
mips_hpt_frequency = rt305x_cpu_freq / 2;
}
-
-static int __init rt305x_machine_setup(void)
-{
- mips_machine_setup(rt305x_mach);
-
- return 0;
-}
-
-arch_initcall(rt305x_machine_setup);