Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48884
b: refs/heads/master
c: 946acb1
h: refs/heads/master
v: v3
  • Loading branch information
Michael-Luke Jones authored and Russell King committed Feb 6, 2007
1 parent f9abdc1 commit 12ea10e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0f1859719537acf5a611fd18be5d81c0cfd5fbf4
refs/heads/master: 946acb1c70f91f07331d2b8691dfccf95c95ff3d
40 changes: 40 additions & 0 deletions trunk/arch/arm/mach-ixp4xx/avila-setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,34 @@ static struct platform_device avila_uart = {
.resource = avila_uart_resources
};

static struct resource avila_pata_resources[] = {
{
.flags = IORESOURCE_MEM
},
{
.flags = IORESOURCE_MEM,
},
{
.name = "intrq",
.start = IRQ_IXP4XX_GPIO12,
.end = IRQ_IXP4XX_GPIO12,
.flags = IORESOURCE_IRQ,
},
};

static struct ixp4xx_pata_data avila_pata_data = {
.cs0_bits = 0xbfff0043,
.cs1_bits = 0xbfff0043,
};

static struct platform_device avila_pata = {
.name = "pata_ixp4xx_cf",
.id = 0,
.dev.platform_data = &avila_pata_data,
.num_resources = ARRAY_SIZE(avila_pata_resources),
.resource = avila_pata_resources,
};

static struct platform_device *avila_devices[] __initdata = {
&avila_i2c_controller,
&avila_flash,
Expand All @@ -119,6 +147,18 @@ static void __init avila_init(void)
IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;

platform_add_devices(avila_devices, ARRAY_SIZE(avila_devices));

avila_pata_resources[0].start = IXP4XX_EXP_BUS_BASE(1);
avila_pata_resources[0].end = IXP4XX_EXP_BUS_END(1);

avila_pata_resources[1].start = IXP4XX_EXP_BUS_BASE(2);
avila_pata_resources[1].end = IXP4XX_EXP_BUS_END(2);

avila_pata_data.cs0_cfg = IXP4XX_EXP_CS1;
avila_pata_data.cs1_cfg = IXP4XX_EXP_CS2;

platform_device_register(&avila_pata);

}

MACHINE_START(AVILA, "Gateworks Avila Network Platform")
Expand Down

0 comments on commit 12ea10e

Please sign in to comment.