Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9cc975e0 authored by Ralf Baechle's avatar Ralf Baechle Committed by Jeff Garzik
Browse files

[PATCH] ne: Support for RBHMA4500 eval board.



Support for Toshiba's RBHMA4500 eval board for the TX4938.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>

 drivers/net/ne.c |   15 +++++++++++++++
 1 files changed, 15 insertions(+)
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 36156cdf
Loading
Loading
Loading
Loading
+15 −0
Original line number Original line Diff line number Diff line
@@ -54,6 +54,10 @@ static const char version2[] =
#include <asm/system.h>
#include <asm/system.h>
#include <asm/io.h>
#include <asm/io.h>


#if defined(CONFIG_TOSHIBA_RBTX4927) || defined(CONFIG_TOSHIBA_RBTX4938)
#include <asm/tx4938/rbtx4938.h>
#endif

#include "8390.h"
#include "8390.h"


#define DRV_NAME "ne"
#define DRV_NAME "ne"
@@ -111,6 +115,9 @@ bad_clone_list[] __initdata = {
    {"E-LAN100", "E-LAN200", {0x00, 0x00, 0x5d}}, /* Broken ne1000 clones */
    {"E-LAN100", "E-LAN200", {0x00, 0x00, 0x5d}}, /* Broken ne1000 clones */
    {"PCM-4823", "PCM-4823", {0x00, 0xc0, 0x6c}}, /* Broken Advantech MoBo */
    {"PCM-4823", "PCM-4823", {0x00, 0xc0, 0x6c}}, /* Broken Advantech MoBo */
    {"REALTEK", "RTL8019", {0x00, 0x00, 0xe8}}, /* no-name with Realtek chip */
    {"REALTEK", "RTL8019", {0x00, 0x00, 0xe8}}, /* no-name with Realtek chip */
#if defined(CONFIG_TOSHIBA_RBTX4927) || defined(CONFIG_TOSHIBA_RBTX4938)
    {"RBHMA4X00-RTL8019", "RBHMA4X00/RTL8019", {0x00, 0x60, 0x0a}},  /* Toshiba built-in */
#endif
    {"LCS-8834", "LCS-8836", {0x04, 0x04, 0x37}}, /* ShinyNet (SET) */
    {"LCS-8834", "LCS-8836", {0x04, 0x04, 0x37}}, /* ShinyNet (SET) */
    {NULL,}
    {NULL,}
};
};
@@ -226,6 +233,10 @@ struct net_device * __init ne_probe(int unit)
	sprintf(dev->name, "eth%d", unit);
	sprintf(dev->name, "eth%d", unit);
	netdev_boot_setup_check(dev);
	netdev_boot_setup_check(dev);


#ifdef CONFIG_TOSHIBA_RBTX4938
	dev->base_addr = 0x07f20280;
	dev->irq = RBTX4938_RTL_8019_IRQ;
#endif
	err = do_ne_probe(dev);
	err = do_ne_probe(dev);
	if (err)
	if (err)
		goto out;
		goto out;
@@ -506,6 +517,10 @@ static int __init ne_probe1(struct net_device *dev, int ioaddr)
	ei_status.name = name;
	ei_status.name = name;
	ei_status.tx_start_page = start_page;
	ei_status.tx_start_page = start_page;
	ei_status.stop_page = stop_page;
	ei_status.stop_page = stop_page;
#if defined(CONFIG_TOSHIBA_RBTX4927) || defined(CONFIG_TOSHIBA_RBTX4938)
	wordlength = 1;
#endif

#ifdef CONFIG_PLAT_OAKS32R
#ifdef CONFIG_PLAT_OAKS32R
	ei_status.word16 = 0;
	ei_status.word16 = 0;
#else
#else