blob: 450abf100f06c6e141a57aea7a258f3c17028570 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Zorro Bus Services
3 *
4 * Copyright (C) 1995-2003 Geert Uytterhoeven
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive
8 * for more details.
9 */
10
11#include <linux/module.h>
12#include <linux/types.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/zorro.h>
16#include <linux/bitops.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080017#include <linux/string.h>
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020018#include <linux/platform_device.h>
19#include <linux/slab.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/setup.h>
22#include <asm/amigahw.h>
23
24#include "zorro.h"
25
26
27 /*
28 * Zorro Expansion Devices
29 */
30
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020031unsigned int zorro_num_autocon;
Geert Uytterhoevenc2937382013-06-29 10:40:20 +020032struct zorro_dev_init zorro_autocon_init[ZORRO_NUM_AUTO] __initdata;
33struct zorro_dev *zorro_autocon;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
36 /*
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020037 * Zorro bus
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020040struct zorro_bus {
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020041 struct device dev;
Geert Uytterhoevenc2937382013-06-29 10:40:20 +020042 struct zorro_dev devices[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
45
46 /*
47 * Find Zorro Devices
48 */
49
50struct zorro_dev *zorro_find_device(zorro_id id, struct zorro_dev *from)
51{
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020052 struct zorro_dev *z;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020054 if (!zorro_num_autocon)
55 return NULL;
56
57 for (z = from ? from+1 : &zorro_autocon[0];
58 z < zorro_autocon+zorro_num_autocon;
59 z++)
60 if (id == ZORRO_WILDCARD || id == z->id)
61 return z;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020064EXPORT_SYMBOL(zorro_find_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66
67 /*
68 * Bitmask indicating portions of available Zorro II RAM that are unused
69 * by the system. Every bit represents a 64K chunk, for a maximum of 8MB
70 * (128 chunks, physical 0x00200000-0x009fffff).
71 *
72 * If you want to use (= allocate) portions of this RAM, you should clear
73 * the corresponding bits.
74 *
75 * Possible uses:
76 * - z2ram device
77 * - SCSI DMA bounce buffers
78 *
79 * FIXME: use the normal resource management
80 */
81
82DECLARE_BITMAP(zorro_unused_z2ram, 128);
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020083EXPORT_SYMBOL(zorro_unused_z2ram);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85
86static void __init mark_region(unsigned long start, unsigned long end,
87 int flag)
88{
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if (flag)
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020090 start += Z2RAM_CHUNKMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 else
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020092 end += Z2RAM_CHUNKMASK;
93 start &= ~Z2RAM_CHUNKMASK;
94 end &= ~Z2RAM_CHUNKMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Geert Uytterhoeven0d305462009-04-05 12:40:41 +020096 if (end <= Z2RAM_START || start >= Z2RAM_END)
97 return;
98 start = start < Z2RAM_START ? 0x00000000 : start-Z2RAM_START;
99 end = end > Z2RAM_END ? Z2RAM_SIZE : end-Z2RAM_START;
100 while (start < end) {
101 u32 chunk = start>>Z2RAM_CHUNKSHIFT;
102 if (flag)
103 set_bit(chunk, zorro_unused_z2ram);
104 else
105 clear_bit(chunk, zorro_unused_z2ram);
106 start += Z2RAM_CHUNKSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200108}
109
110
111static struct resource __init *zorro_find_parent_resource(
112 struct platform_device *bridge, struct zorro_dev *z)
113{
114 int i;
115
116 for (i = 0; i < bridge->num_resources; i++) {
117 struct resource *r = &bridge->resource[i];
118 if (zorro_resource_start(z) >= r->start &&
119 zorro_resource_end(z) <= r->end)
120 return r;
121 }
122 return &iomem_resource;
123}
124
125
126
127static int __init amiga_zorro_probe(struct platform_device *pdev)
128{
129 struct zorro_bus *bus;
Geert Uytterhoevenc2937382013-06-29 10:40:20 +0200130 struct zorro_dev_init *zi;
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200131 struct zorro_dev *z;
132 struct resource *r;
133 unsigned int i;
134 int error;
135
136 /* Initialize the Zorro bus */
Geert Uytterhoevenc2937382013-06-29 10:40:20 +0200137 bus = kzalloc(sizeof(*bus) +
138 zorro_num_autocon * sizeof(bus->devices[0]),
139 GFP_KERNEL);
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200140 if (!bus)
141 return -ENOMEM;
142
Geert Uytterhoevenc2937382013-06-29 10:40:20 +0200143 zorro_autocon = bus->devices;
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200144 bus->dev.parent = &pdev->dev;
Geert Uytterhoeven83b7bce2013-10-16 11:28:54 +0200145 dev_set_name(&bus->dev, zorro_bus_type.name);
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200146 error = device_register(&bus->dev);
Geert Uytterhoeven11a8b2c2008-12-30 14:21:19 +0100147 if (error) {
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200148 pr_err("Zorro: Error registering zorro_bus\n");
Vasiliy Kulikov10b68792010-09-19 16:55:21 +0400149 put_device(&bus->dev);
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200150 kfree(bus);
151 return error;
Geert Uytterhoeven11a8b2c2008-12-30 14:21:19 +0100152 }
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200153 platform_set_drvdata(pdev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200155 pr_info("Zorro: Probing AutoConfig expansion devices: %u device%s\n",
156 zorro_num_autocon, zorro_num_autocon == 1 ? "" : "s");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Geert Uytterhoevena7f4d002011-09-22 21:47:38 +0200158 /* First identify all devices ... */
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200159 for (i = 0; i < zorro_num_autocon; i++) {
Geert Uytterhoevenc2937382013-06-29 10:40:20 +0200160 zi = &zorro_autocon_init[i];
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200161 z = &zorro_autocon[i];
Geert Uytterhoevenc2937382013-06-29 10:40:20 +0200162
163 z->rom = zi->rom;
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200164 z->id = (z->rom.er_Manufacturer<<16) | (z->rom.er_Product<<8);
165 if (z->id == ZORRO_PROD_GVP_EPC_BASE) {
166 /* GVP quirk */
Geert Uytterhoevenc2937382013-06-29 10:40:20 +0200167 unsigned long magic = zi->boardaddr + 0x8000;
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200168 z->id |= *(u16 *)ZTWO_VADDR(magic) & GVP_PRODMASK;
169 }
Geert Uytterhoevenc2937382013-06-29 10:40:20 +0200170 z->slotaddr = zi->slotaddr;
171 z->slotsize = zi->slotsize;
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200172 sprintf(z->name, "Zorro device %08x", z->id);
173 zorro_name_device(z);
Geert Uytterhoevenc2937382013-06-29 10:40:20 +0200174 z->resource.start = zi->boardaddr;
175 z->resource.end = zi->boardaddr + zi->boardsize - 1;
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200176 z->resource.name = z->name;
177 r = zorro_find_parent_resource(pdev, z);
178 error = request_resource(r, &z->resource);
179 if (error)
180 dev_err(&bus->dev,
181 "Address space collision on device %s %pR\n",
182 z->name, &z->resource);
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200183 z->dev.parent = &bus->dev;
184 z->dev.bus = &zorro_bus_type;
Geert Uytterhoeven83b7bce2013-10-16 11:28:54 +0200185 z->dev.id = i;
Geert Uytterhoevena7f4d002011-09-22 21:47:38 +0200186 }
187
188 /* ... then register them */
189 for (i = 0; i < zorro_num_autocon; i++) {
190 z = &zorro_autocon[i];
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200191 error = device_register(&z->dev);
192 if (error) {
193 dev_err(&bus->dev, "Error registering device %s\n",
194 z->name);
Vasiliy Kulikov10b68792010-09-19 16:55:21 +0400195 put_device(&z->dev);
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200196 continue;
197 }
198 error = zorro_create_sysfs_dev_files(z);
199 if (error)
200 dev_err(&z->dev, "Error creating sysfs files\n");
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200203 /* Mark all available Zorro II memory */
204 zorro_for_each_dev(z) {
205 if (z->rom.er_Type & ERTF_MEMLIST)
206 mark_region(zorro_resource_start(z),
207 zorro_resource_end(z)+1, 1);
208 }
209
210 /* Unmark all used Zorro II memory */
211 for (i = 0; i < m68k_num_memory; i++)
212 if (m68k_memory[i].addr < 16*1024*1024)
213 mark_region(m68k_memory[i].addr,
214 m68k_memory[i].addr+m68k_memory[i].size,
215 0);
216
217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200220static struct platform_driver amiga_zorro_driver = {
221 .driver = {
222 .name = "amiga-zorro",
223 .owner = THIS_MODULE,
224 },
225};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Geert Uytterhoeven0d305462009-04-05 12:40:41 +0200227static int __init amiga_zorro_init(void)
228{
229 return platform_driver_probe(&amiga_zorro_driver, amiga_zorro_probe);
230}
231
232module_init(amiga_zorro_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234MODULE_LICENSE("GPL");