Blackfin arch: add AXIS AX88180 Gigabit Ethernet Hardware and Driver to board files
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
This commit is contained in:
parent
4c26c6c9bf
commit
561cc18b86
|
@ -183,6 +183,28 @@ static struct platform_device dm9000_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
|
||||||
|
static struct resource ax88180_resources[] = {
|
||||||
|
[0] = {
|
||||||
|
.start = 0x20300000,
|
||||||
|
.end = 0x20300000 + 0x8000,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
[1] = {
|
||||||
|
.start = IRQ_PF7,
|
||||||
|
.end = IRQ_PF7,
|
||||||
|
.flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device ax88180_device = {
|
||||||
|
.name = "ax88180",
|
||||||
|
.id = -1,
|
||||||
|
.num_resources = ARRAY_SIZE(ax88180_resources),
|
||||||
|
.resource = ax88180_resources,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
|
#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
|
||||||
static struct resource sl811_hcd_resources[] = {
|
static struct resource sl811_hcd_resources[] = {
|
||||||
{
|
{
|
||||||
|
@ -671,6 +693,10 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
&dm9000_device,
|
&dm9000_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
|
||||||
|
&ax88180_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
&bfin_mac_device,
|
&bfin_mac_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -116,6 +116,28 @@ static struct platform_device smc91x_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
|
||||||
|
static struct resource ax88180_resources[] = {
|
||||||
|
[0] = {
|
||||||
|
.start = 0x2c000000,
|
||||||
|
.end = 0x2c000000 + 0x8000,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
[1] = {
|
||||||
|
.start = IRQ_PF10,
|
||||||
|
.end = IRQ_PF10,
|
||||||
|
.flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device ax88180_device = {
|
||||||
|
.name = "ax88180",
|
||||||
|
.id = -1,
|
||||||
|
.num_resources = ARRAY_SIZE(ax88180_resources),
|
||||||
|
.resource = ax88180_resources,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
static struct resource bfin_uart_resources[] = {
|
||||||
{
|
{
|
||||||
|
@ -228,6 +250,11 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
|
#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
|
||||||
&smc91x_device,
|
&smc91x_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE)
|
||||||
|
&ax88180_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
&bfin_spi0_device,
|
&bfin_spi0_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue