|
@@ -29,7 +29,8 @@
|
|
|
*/
|
|
|
|
|
|
unsigned int zorro_num_autocon;
|
|
|
-struct zorro_dev zorro_autocon[ZORRO_NUM_AUTO];
|
|
|
+struct zorro_dev_init zorro_autocon_init[ZORRO_NUM_AUTO] __initdata;
|
|
|
+struct zorro_dev *zorro_autocon;
|
|
|
|
|
|
|
|
|
/*
|
|
@@ -38,6 +39,7 @@ struct zorro_dev zorro_autocon[ZORRO_NUM_AUTO];
|
|
|
|
|
|
struct zorro_bus {
|
|
|
struct device dev;
|
|
|
+ struct zorro_dev devices[0];
|
|
|
};
|
|
|
|
|
|
|
|
@@ -125,16 +127,20 @@ static struct resource __init *zorro_find_parent_resource(
|
|
|
static int __init amiga_zorro_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
struct zorro_bus *bus;
|
|
|
+ struct zorro_dev_init *zi;
|
|
|
struct zorro_dev *z;
|
|
|
struct resource *r;
|
|
|
unsigned int i;
|
|
|
int error;
|
|
|
|
|
|
/* Initialize the Zorro bus */
|
|
|
- bus = kzalloc(sizeof(*bus), GFP_KERNEL);
|
|
|
+ bus = kzalloc(sizeof(*bus) +
|
|
|
+ zorro_num_autocon * sizeof(bus->devices[0]),
|
|
|
+ GFP_KERNEL);
|
|
|
if (!bus)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
+ zorro_autocon = bus->devices;
|
|
|
bus->dev.parent = &pdev->dev;
|
|
|
dev_set_name(&bus->dev, "zorro");
|
|
|
error = device_register(&bus->dev);
|
|
@@ -151,15 +157,22 @@ static int __init amiga_zorro_probe(struct platform_device *pdev)
|
|
|
|
|
|
/* First identify all devices ... */
|
|
|
for (i = 0; i < zorro_num_autocon; i++) {
|
|
|
+ zi = &zorro_autocon_init[i];
|
|
|
z = &zorro_autocon[i];
|
|
|
+
|
|
|
+ z->rom = zi->rom;
|
|
|
z->id = (z->rom.er_Manufacturer<<16) | (z->rom.er_Product<<8);
|
|
|
if (z->id == ZORRO_PROD_GVP_EPC_BASE) {
|
|
|
/* GVP quirk */
|
|
|
- unsigned long magic = zorro_resource_start(z)+0x8000;
|
|
|
+ unsigned long magic = zi->boardaddr + 0x8000;
|
|
|
z->id |= *(u16 *)ZTWO_VADDR(magic) & GVP_PRODMASK;
|
|
|
}
|
|
|
+ z->slotaddr = zi->slotaddr;
|
|
|
+ z->slotsize = zi->slotsize;
|
|
|
sprintf(z->name, "Zorro device %08x", z->id);
|
|
|
zorro_name_device(z);
|
|
|
+ z->resource.start = zi->boardaddr;
|
|
|
+ z->resource.end = zi->boardaddr + zi->boardsize - 1;
|
|
|
z->resource.name = z->name;
|
|
|
r = zorro_find_parent_resource(pdev, z);
|
|
|
error = request_resource(r, &z->resource);
|