Loading...
1/*
2 * 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>
17#include <linux/string.h>
18#include <linux/platform_device.h>
19#include <linux/dma-mapping.h>
20#include <linux/slab.h>
21
22#include <asm/byteorder.h>
23#include <asm/setup.h>
24#include <asm/amigahw.h>
25
26#include "zorro.h"
27
28
29 /*
30 * Zorro Expansion Devices
31 */
32
33unsigned int zorro_num_autocon;
34struct zorro_dev_init zorro_autocon_init[ZORRO_NUM_AUTO] __initdata;
35struct zorro_dev *zorro_autocon;
36
37
38 /*
39 * Zorro bus
40 */
41
42struct zorro_bus {
43 struct device dev;
44 struct zorro_dev devices[];
45};
46
47
48 /*
49 * Find Zorro Devices
50 */
51
52struct zorro_dev *zorro_find_device(zorro_id id, struct zorro_dev *from)
53{
54 struct zorro_dev *z;
55
56 if (!zorro_num_autocon)
57 return NULL;
58
59 for (z = from ? from+1 : &zorro_autocon[0];
60 z < zorro_autocon+zorro_num_autocon;
61 z++)
62 if (id == ZORRO_WILDCARD || id == z->id)
63 return z;
64 return NULL;
65}
66EXPORT_SYMBOL(zorro_find_device);
67
68
69 /*
70 * Bitmask indicating portions of available Zorro II RAM that are unused
71 * by the system. Every bit represents a 64K chunk, for a maximum of 8MB
72 * (128 chunks, physical 0x00200000-0x009fffff).
73 *
74 * If you want to use (= allocate) portions of this RAM, you should clear
75 * the corresponding bits.
76 *
77 * Possible uses:
78 * - z2ram device
79 * - SCSI DMA bounce buffers
80 *
81 * FIXME: use the normal resource management
82 */
83
84DECLARE_BITMAP(zorro_unused_z2ram, 128);
85EXPORT_SYMBOL(zorro_unused_z2ram);
86
87
88static void __init mark_region(unsigned long start, unsigned long end,
89 int flag)
90{
91 if (flag)
92 start += Z2RAM_CHUNKMASK;
93 else
94 end += Z2RAM_CHUNKMASK;
95 start &= ~Z2RAM_CHUNKMASK;
96 end &= ~Z2RAM_CHUNKMASK;
97
98 if (end <= Z2RAM_START || start >= Z2RAM_END)
99 return;
100 start = start < Z2RAM_START ? 0x00000000 : start-Z2RAM_START;
101 end = end > Z2RAM_END ? Z2RAM_SIZE : end-Z2RAM_START;
102 while (start < end) {
103 u32 chunk = start>>Z2RAM_CHUNKSHIFT;
104
105 if (flag)
106 set_bit(chunk, zorro_unused_z2ram);
107 else
108 clear_bit(chunk, zorro_unused_z2ram);
109 start += Z2RAM_CHUNKSIZE;
110 }
111}
112
113
114static struct resource __init *zorro_find_parent_resource(
115 struct platform_device *bridge, struct zorro_dev *z)
116{
117 int i;
118
119 for (i = 0; i < bridge->num_resources; i++) {
120 struct resource *r = &bridge->resource[i];
121
122 if (zorro_resource_start(z) >= r->start &&
123 zorro_resource_end(z) <= r->end)
124 return r;
125 }
126 return &iomem_resource;
127}
128
129
130
131static int __init amiga_zorro_probe(struct platform_device *pdev)
132{
133 struct zorro_bus *bus;
134 struct zorro_dev_init *zi;
135 struct zorro_dev *z;
136 struct resource *r;
137 unsigned int i;
138 int error;
139
140 /* Initialize the Zorro bus */
141 bus = kzalloc(struct_size(bus, devices, zorro_num_autocon),
142 GFP_KERNEL);
143 if (!bus)
144 return -ENOMEM;
145
146 zorro_autocon = bus->devices;
147 bus->dev.parent = &pdev->dev;
148 dev_set_name(&bus->dev, zorro_bus_type.name);
149 error = device_register(&bus->dev);
150 if (error) {
151 pr_err("Zorro: Error registering zorro_bus\n");
152 put_device(&bus->dev);
153 kfree(bus);
154 return error;
155 }
156 platform_set_drvdata(pdev, bus);
157
158 pr_info("Zorro: Probing AutoConfig expansion devices: %u device%s\n",
159 zorro_num_autocon, zorro_num_autocon == 1 ? "" : "s");
160
161 /* First identify all devices ... */
162 for (i = 0; i < zorro_num_autocon; i++) {
163 zi = &zorro_autocon_init[i];
164 z = &zorro_autocon[i];
165
166 z->rom = zi->rom;
167 z->id = (be16_to_cpu(z->rom.er_Manufacturer) << 16) |
168 (z->rom.er_Product << 8);
169 if (z->id == ZORRO_PROD_GVP_EPC_BASE) {
170 /* GVP quirk */
171 unsigned long magic = zi->boardaddr + 0x8000;
172
173 z->id |= *(u16 *)ZTWO_VADDR(magic) & GVP_PRODMASK;
174 }
175 z->slotaddr = zi->slotaddr;
176 z->slotsize = zi->slotsize;
177 sprintf(z->name, "Zorro device %08x", z->id);
178 zorro_name_device(z);
179 z->resource.start = zi->boardaddr;
180 z->resource.end = zi->boardaddr + zi->boardsize - 1;
181 z->resource.name = z->name;
182 r = zorro_find_parent_resource(pdev, z);
183 error = request_resource(r, &z->resource);
184 if (error)
185 dev_err(&bus->dev,
186 "Address space collision on device %s %pR\n",
187 z->name, &z->resource);
188 z->dev.parent = &bus->dev;
189 z->dev.bus = &zorro_bus_type;
190 z->dev.id = i;
191 switch (z->rom.er_Type & ERT_TYPEMASK) {
192 case ERT_ZORROIII:
193 z->dev.coherent_dma_mask = DMA_BIT_MASK(32);
194 break;
195
196 case ERT_ZORROII:
197 default:
198 z->dev.coherent_dma_mask = DMA_BIT_MASK(24);
199 break;
200 }
201 z->dev.dma_mask = &z->dev.coherent_dma_mask;
202 }
203
204 /* ... then register them */
205 for (i = 0; i < zorro_num_autocon; i++) {
206 z = &zorro_autocon[i];
207 error = device_register(&z->dev);
208 if (error) {
209 dev_err(&bus->dev, "Error registering device %s\n",
210 z->name);
211 put_device(&z->dev);
212 continue;
213 }
214 }
215
216 /* Mark all available Zorro II memory */
217 zorro_for_each_dev(z) {
218 if (z->rom.er_Type & ERTF_MEMLIST)
219 mark_region(zorro_resource_start(z),
220 zorro_resource_end(z)+1, 1);
221 }
222
223 /* Unmark all used Zorro II memory */
224 for (i = 0; i < m68k_num_memory; i++)
225 if (m68k_memory[i].addr < 16*1024*1024)
226 mark_region(m68k_memory[i].addr,
227 m68k_memory[i].addr+m68k_memory[i].size,
228 0);
229
230 return 0;
231}
232
233static struct platform_driver amiga_zorro_driver = {
234 .driver = {
235 .name = "amiga-zorro",
236 },
237};
238
239static int __init amiga_zorro_init(void)
240{
241 return platform_driver_probe(&amiga_zorro_driver, amiga_zorro_probe);
242}
243
244module_init(amiga_zorro_init);
245
246MODULE_LICENSE("GPL");
1/*
2 * 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>
17#include <linux/string.h>
18#include <linux/platform_device.h>
19#include <linux/dma-mapping.h>
20#include <linux/slab.h>
21#include <linux/string_choices.h>
22
23#include <asm/byteorder.h>
24#include <asm/setup.h>
25#include <asm/amigahw.h>
26
27#include "zorro.h"
28
29
30 /*
31 * Zorro Expansion Devices
32 */
33
34unsigned int zorro_num_autocon;
35struct zorro_dev_init zorro_autocon_init[ZORRO_NUM_AUTO] __initdata;
36struct zorro_dev *zorro_autocon;
37
38
39 /*
40 * Zorro bus
41 */
42
43struct zorro_bus {
44 struct device dev;
45 struct zorro_dev devices[];
46};
47
48
49 /*
50 * Find Zorro Devices
51 */
52
53struct zorro_dev *zorro_find_device(zorro_id id, struct zorro_dev *from)
54{
55 struct zorro_dev *z;
56
57 if (!zorro_num_autocon)
58 return NULL;
59
60 for (z = from ? from+1 : &zorro_autocon[0];
61 z < zorro_autocon+zorro_num_autocon;
62 z++)
63 if (id == ZORRO_WILDCARD || id == z->id)
64 return z;
65 return NULL;
66}
67EXPORT_SYMBOL(zorro_find_device);
68
69
70 /*
71 * Bitmask indicating portions of available Zorro II RAM that are unused
72 * by the system. Every bit represents a 64K chunk, for a maximum of 8MB
73 * (128 chunks, physical 0x00200000-0x009fffff).
74 *
75 * If you want to use (= allocate) portions of this RAM, you should clear
76 * the corresponding bits.
77 *
78 * Possible uses:
79 * - z2ram device
80 * - SCSI DMA bounce buffers
81 *
82 * FIXME: use the normal resource management
83 */
84
85DECLARE_BITMAP(zorro_unused_z2ram, 128);
86EXPORT_SYMBOL(zorro_unused_z2ram);
87
88
89static void __init mark_region(unsigned long start, unsigned long end,
90 int flag)
91{
92 if (flag)
93 start += Z2RAM_CHUNKMASK;
94 else
95 end += Z2RAM_CHUNKMASK;
96 start &= ~Z2RAM_CHUNKMASK;
97 end &= ~Z2RAM_CHUNKMASK;
98
99 if (end <= Z2RAM_START || start >= Z2RAM_END)
100 return;
101 start = start < Z2RAM_START ? 0x00000000 : start-Z2RAM_START;
102 end = end > Z2RAM_END ? Z2RAM_SIZE : end-Z2RAM_START;
103 while (start < end) {
104 u32 chunk = start>>Z2RAM_CHUNKSHIFT;
105
106 if (flag)
107 set_bit(chunk, zorro_unused_z2ram);
108 else
109 clear_bit(chunk, zorro_unused_z2ram);
110 start += Z2RAM_CHUNKSIZE;
111 }
112}
113
114
115static struct resource __init *zorro_find_parent_resource(
116 struct platform_device *bridge, struct zorro_dev *z)
117{
118 int i;
119
120 for (i = 0; i < bridge->num_resources; i++) {
121 if (resource_contains(&bridge->resource[i], &z->resource))
122 return &bridge->resource[i];
123 }
124
125 return &iomem_resource;
126}
127
128static int __init amiga_zorro_probe(struct platform_device *pdev)
129{
130 struct zorro_bus *bus;
131 struct zorro_dev_init *zi;
132 struct zorro_dev *z;
133 struct resource *r;
134 unsigned int i;
135 int error;
136
137 /* Initialize the Zorro bus */
138 bus = kzalloc(struct_size(bus, devices, zorro_num_autocon),
139 GFP_KERNEL);
140 if (!bus)
141 return -ENOMEM;
142
143 zorro_autocon = bus->devices;
144 bus->dev.parent = &pdev->dev;
145 dev_set_name(&bus->dev, zorro_bus_type.name);
146 error = device_register(&bus->dev);
147 if (error) {
148 pr_err("Zorro: Error registering zorro_bus\n");
149 put_device(&bus->dev);
150 kfree(bus);
151 return error;
152 }
153 platform_set_drvdata(pdev, bus);
154
155 pr_info("Zorro: Probing AutoConfig expansion devices: %u device%s\n",
156 zorro_num_autocon, str_plural(zorro_num_autocon));
157
158 /* First identify all devices ... */
159 for (i = 0; i < zorro_num_autocon; i++) {
160 zi = &zorro_autocon_init[i];
161 z = &zorro_autocon[i];
162
163 z->rom = zi->rom;
164 z->id = (be16_to_cpu(z->rom.er_Manufacturer) << 16) |
165 (z->rom.er_Product << 8);
166 if (z->id == ZORRO_PROD_GVP_EPC_BASE) {
167 /* GVP quirk */
168 unsigned long magic = zi->boardaddr + 0x8000;
169
170 z->id |= *(u16 *)ZTWO_VADDR(magic) & GVP_PRODMASK;
171 }
172 z->slotaddr = zi->slotaddr;
173 z->slotsize = zi->slotsize;
174 sprintf(z->name, "Zorro device %08x", z->id);
175 zorro_name_device(z);
176 z->resource = DEFINE_RES_MEM_NAMED(zi->boardaddr, zi->boardsize, z->name);
177 r = zorro_find_parent_resource(pdev, z);
178 error = request_resource(r, &z->resource);
179 if (error && !(z->rom.er_Type & ERTF_MEMLIST))
180 dev_err(&bus->dev,
181 "Address space collision on device %s %pR\n",
182 z->name, &z->resource);
183 z->dev.parent = &bus->dev;
184 z->dev.bus = &zorro_bus_type;
185 z->dev.id = i;
186 switch (z->rom.er_Type & ERT_TYPEMASK) {
187 case ERT_ZORROIII:
188 z->dev.coherent_dma_mask = DMA_BIT_MASK(32);
189 break;
190
191 case ERT_ZORROII:
192 default:
193 z->dev.coherent_dma_mask = DMA_BIT_MASK(24);
194 break;
195 }
196 z->dev.dma_mask = &z->dev.coherent_dma_mask;
197 }
198
199 /* ... then register them */
200 for (i = 0; i < zorro_num_autocon; i++) {
201 z = &zorro_autocon[i];
202 error = device_register(&z->dev);
203 if (error) {
204 dev_err(&bus->dev, "Error registering device %s\n",
205 z->name);
206 put_device(&z->dev);
207 continue;
208 }
209 }
210
211 /* Mark all available Zorro II memory */
212 zorro_for_each_dev(z) {
213 if (z->rom.er_Type & ERTF_MEMLIST)
214 mark_region(zorro_resource_start(z),
215 zorro_resource_end(z)+1, 1);
216 }
217
218 /* Unmark all used Zorro II memory */
219 for (i = 0; i < m68k_num_memory; i++)
220 if (m68k_memory[i].addr < 16*1024*1024)
221 mark_region(m68k_memory[i].addr,
222 m68k_memory[i].addr+m68k_memory[i].size,
223 0);
224
225 return 0;
226}
227
228static struct platform_driver amiga_zorro_driver = {
229 .driver = {
230 .name = "amiga-zorro",
231 },
232};
233
234static int __init amiga_zorro_init(void)
235{
236 return platform_driver_probe(&amiga_zorro_driver, amiga_zorro_probe);
237}
238
239module_init(amiga_zorro_init);
240
241MODULE_LICENSE("GPL");