[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: edb7312 and SkyeEye followup - SUCCESS
Jay Monkman wrote:
Joel Sherrill <joel@OARcorp.com> wrote:
The BSP has a network driver. It is for the on-CPU NIC right?
No, it's an external CS8900.
If so, then it should just be a matter of figuring out how to setup the
simulator to host part.
FWIW there are also cs8900a and rtl8019 simulator chunks in the source.
In that case, it shouldn't be too hard to get it working. I didn't know what
devices it supported.
In the source file device/net/dev_net_cs8900a.c, I see this:
static struct device_default_value cs8900a_net_def[] = {
/* name base size interrupt array */
{"at91", 0xfffa0000, 0x20, {16, 0, 0, 0}},
{"s3c2410x", 0x19000300, 0x20, {9, 0, 0, 0}},
{NULL},
};
I guess the name field has to match the mach field in the configuration.
It seems to end up dependent on the table in
arch/arm/common/arm_arch_interface.c. I don't really see how the NIC
gets hooked in yet.
--joel