Setup MAC addresses for routerboards
SVN-Revision: 9682
This commit is contained in:
parent
2efb83ebcb
commit
d37e090fe9
2 changed files with 13 additions and 2 deletions
|
@ -43,6 +43,8 @@
|
||||||
#include <adm5120_board.h>
|
#include <adm5120_board.h>
|
||||||
#include <adm5120_platform.h>
|
#include <adm5120_platform.h>
|
||||||
#include <adm5120_cf.h>
|
#include <adm5120_cf.h>
|
||||||
|
#include <adm5120_info.h>
|
||||||
|
#include <prom/routerboot.h>
|
||||||
|
|
||||||
#define RB1XX_NAND_CHIP_DELAY 25
|
#define RB1XX_NAND_CHIP_DELAY 25
|
||||||
|
|
||||||
|
@ -62,6 +64,8 @@
|
||||||
#define RB153_GPIO_CF_RDY ADM5120_GPIO_P1L1
|
#define RB153_GPIO_CF_RDY ADM5120_GPIO_P1L1
|
||||||
#define RB153_GPIO_CF_WT ADM5120_GPIO_P0L0
|
#define RB153_GPIO_CF_WT ADM5120_GPIO_P0L0
|
||||||
|
|
||||||
|
extern struct rb_hard_settings rb_hs;
|
||||||
|
|
||||||
/*--------------------------------------------------------------------------*/
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
static struct adm5120_pci_irq rb1xx_pci_irqs[] __initdata = {
|
static struct adm5120_pci_irq rb1xx_pci_irqs[] __initdata = {
|
||||||
|
@ -218,7 +222,12 @@ static void rb150_nand_cmd_ctrl(struct mtd_info *mtd, int cmd,
|
||||||
|
|
||||||
static void __init rb1xx_mac_setup(void)
|
static void __init rb1xx_mac_setup(void)
|
||||||
{
|
{
|
||||||
/* TODO */
|
int i, j;
|
||||||
|
|
||||||
|
for (i = 0; i < rb_hs.mac_count; i++) {
|
||||||
|
for (j = 0; j < RB_MAC_SIZE; j++)
|
||||||
|
adm5120_eth_macs[i][j] = rb_hs.macs[i][j];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __init rb1xx_flash_setup(void)
|
static void __init rb1xx_flash_setup(void)
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/string.h>
|
#include <linux/string.h>
|
||||||
|
#include <linux/module.h>
|
||||||
|
|
||||||
#include <asm/bootinfo.h>
|
#include <asm/bootinfo.h>
|
||||||
#include <asm/addrspace.h>
|
#include <asm/addrspace.h>
|
||||||
|
@ -35,7 +36,8 @@
|
||||||
#include <prom/routerboot.h>
|
#include <prom/routerboot.h>
|
||||||
#include "prom_read.h"
|
#include "prom_read.h"
|
||||||
|
|
||||||
static struct rb_hard_settings rb_hs;
|
struct rb_hard_settings rb_hs;
|
||||||
|
EXPORT_SYMBOL(rb_hs);
|
||||||
static int rb_found;
|
static int rb_found;
|
||||||
|
|
||||||
static int __init routerboot_load_hs(u8 *buf, u16 buflen)
|
static int __init routerboot_load_hs(u8 *buf, u16 buflen)
|
||||||
|
|
Loading…
Reference in a new issue