8becfc92eee783bdceb3fc8d4d32afb0fb7b7dce
2 * Ralink RT288x SoC specific prom routines
4 * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@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.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
15 #include <linux/serial_reg.h>
17 #include <asm/bootinfo.h>
18 #include <asm/addrspace.h>
20 #include <asm/mach-ralink/rt288x.h>
21 #include <asm/mach-ralink/rt288x_regs.h>
23 void __init
prom_init(void)
25 printk(KERN_DEBUG
"prom: fw_arg0=%08x, fw_arg1=%08x, "
26 "fw_arg2=%08x, fw_arg3=%08x\n",
27 (unsigned int)fw_arg0
, (unsigned int)fw_arg1
,
28 (unsigned int)fw_arg2
, (unsigned int)fw_arg3
);
31 void __init
prom_free_prom_memory(void)
33 /* We do not have to prom memory to free */
This page took 0.03946 seconds and 3 git commands to generate.