2 * linux/zorro.h -- Amiga AutoConfig (Zorro) Bus Definitions
4 * Copyright (C) 1995--2003 Geert Uytterhoeven
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
11 #ifndef _LINUX_ZORRO_H
12 #define _LINUX_ZORRO_H
16 #include <linux/device.h>
20 * Each Zorro board has a 32-bit ID of the form
22 * mmmmmmmmmmmmmmmmppppppppeeeeeeee
26 * mmmmmmmmmmmmmmmm 16-bit Manufacturer ID (assigned by CBM (sigh))
27 * pppppppp 8-bit Product ID (assigned by manufacturer)
28 * eeeeeeee 8-bit Extended Product ID (currently only used
29 * for some GVP boards)
33 #define ZORRO_MANUF(id) ((id) >> 16)
34 #define ZORRO_PROD(id) (((id) >> 8) & 0xff)
35 #define ZORRO_EPC(id) ((id) & 0xff)
37 #define ZORRO_ID(manuf, prod, epc) \
38 ((ZORRO_MANUF_##manuf << 16) | ((prod) << 8) | (epc))
40 typedef __u32 zorro_id
;
43 #define ZORRO_WILDCARD (0xffffffff) /* not official */
45 /* Include the ID list */
46 #include <linux/zorro_ids.h>
50 * GVP identifies most of its products through the 'extended product code'
51 * (epc). The epc has to be ANDed with the GVP_PRODMASK before the
55 #define GVP_PRODMASK (0xf8)
56 #define GVP_SCSICLKMASK (0x01)
70 struct Node
*ln_Succ
; /* Pointer to next (successor) */
71 struct Node
*ln_Pred
; /* Pointer to previous (predecessor) */
73 __s8 ln_Pri
; /* Priority, for sorting */
74 __s8
*ln_Name
; /* ID string, null terminated */
75 } __attribute__ ((packed
));
78 /* -First 16 bytes of the expansion ROM */
79 __u8 er_Type
; /* Board type, size and flags */
80 __u8 er_Product
; /* Product number, assigned by manufacturer */
81 __u8 er_Flags
; /* Flags */
82 __u8 er_Reserved03
; /* Must be zero ($ff inverted) */
83 __u16 er_Manufacturer
; /* Unique ID, ASSIGNED BY COMMODORE-AMIGA! */
84 __u32 er_SerialNumber
; /* Available for use by manufacturer */
85 __u16 er_InitDiagVec
; /* Offset to optional "DiagArea" structure */
90 } __attribute__ ((packed
));
92 /* er_Type board type bits */
93 #define ERT_TYPEMASK 0xc0
94 #define ERT_ZORROII 0xc0
95 #define ERT_ZORROIII 0x80
97 /* other bits defined in er_Type */
98 #define ERTB_MEMLIST 5 /* Link RAM into free memory list */
99 #define ERTF_MEMLIST (1<<5)
103 __u8 cd_Flags
; /* (read/write) */
104 __u8 cd_Pad
; /* reserved */
105 struct ExpansionRom cd_Rom
; /* copy of board's expansion ROM */
106 void *cd_BoardAddr
; /* where in memory the board was placed */
107 __u32 cd_BoardSize
; /* size of board in bytes */
108 __u16 cd_SlotAddr
; /* which slot number (PRIVATE) */
109 __u16 cd_SlotSize
; /* number of slots (PRIVATE) */
110 void *cd_Driver
; /* pointer to node of driver */
111 struct ConfigDev
*cd_NextCD
; /* linked list of drivers to config */
112 __u32 cd_Unused
[4]; /* for whatever the driver wants */
113 } __attribute__ ((packed
));
115 #else /* __ASSEMBLY__ */
122 LN_sizeof
= LN_Name
+4
125 ER_Product
= ER_Type
+1
126 ER_Flags
= ER_Product
+1
127 ER_Reserved03
= ER_Flags
+1
128 ER_Manufacturer
= ER_Reserved03
+1
129 ER_SerialNumber
= ER_Manufacturer
+2
130 ER_InitDiagVec
= ER_SerialNumber
+4
131 ER_Reserved0c
= ER_InitDiagVec
+2
132 ER_Reserved0d
= ER_Reserved0c
+1
133 ER_Reserved0e
= ER_Reserved0d
+1
134 ER_Reserved0f
= ER_Reserved0e
+1
135 ER_sizeof
= ER_Reserved0f
+1
138 CD_Flags
= CD_Node
+LN_sizeof
141 CD_BoardAddr
= CD_Rom
+ER_sizeof
142 CD_BoardSize
= CD_BoardAddr
+4
143 CD_SlotAddr
= CD_BoardSize
+4
144 CD_SlotSize
= CD_SlotAddr
+2
145 CD_Driver
= CD_SlotSize
+2
146 CD_NextCD
= CD_Driver
+4
147 CD_Unused
= CD_NextCD
+4
148 CD_sizeof
= CD_Unused
+(4*4)
150 #endif /* __ASSEMBLY__ */
154 #define ZORRO_NUM_AUTO 16
158 #include <linux/init.h>
159 #include <linux/ioport.h>
161 #include <asm/zorro.h>
169 struct ExpansionRom rom
;
171 struct zorro_driver
*driver
; /* which driver has allocated this device */
172 struct device dev
; /* Generic device interface */
176 struct resource resource
;
179 #define to_zorro_dev(n) container_of(n, struct zorro_dev, dev)
187 struct list_head devices
; /* list of devices on this bus */
188 unsigned int num_resources
; /* number of resources */
189 struct resource resources
[4]; /* address space routed to this bus */
194 extern struct zorro_bus zorro_bus
; /* single Zorro bus */
195 extern struct bus_type zorro_bus_type
;
202 struct zorro_device_id
{
203 zorro_id id
; /* Device ID or ZORRO_WILDCARD */
204 unsigned long driver_data
; /* Data private to the driver */
209 * Zorro device drivers
212 struct zorro_driver
{
213 struct list_head node
;
215 const struct zorro_device_id
*id_table
; /* NULL if wants all devices */
216 int (*probe
)(struct zorro_dev
*z
, const struct zorro_device_id
*id
); /* New device inserted */
217 void (*remove
)(struct zorro_dev
*z
); /* Device removed (NULL if not a hot-plug capable driver) */
218 struct device_driver driver
;
221 #define to_zorro_driver(drv) container_of(drv, struct zorro_driver, driver)
224 #define zorro_for_each_dev(dev) \
225 for (dev = &zorro_autocon[0]; dev < zorro_autocon+zorro_num_autocon; dev++)
228 /* New-style probing */
229 extern int zorro_register_driver(struct zorro_driver
*);
230 extern void zorro_unregister_driver(struct zorro_driver
*);
231 extern const struct zorro_device_id
*zorro_match_device(const struct zorro_device_id
*ids
, const struct zorro_dev
*z
);
232 static inline struct zorro_driver
*zorro_dev_driver(const struct zorro_dev
*z
)
238 extern unsigned int zorro_num_autocon
; /* # of autoconfig devices found */
239 extern struct zorro_dev zorro_autocon
[ZORRO_NUM_AUTO
];
246 extern struct zorro_dev
*zorro_find_device(zorro_id id
,
247 struct zorro_dev
*from
);
249 #define zorro_resource_start(z) ((z)->resource.start)
250 #define zorro_resource_end(z) ((z)->resource.end)
251 #define zorro_resource_len(z) ((z)->resource.end-(z)->resource.start+1)
252 #define zorro_resource_flags(z) ((z)->resource.flags)
254 #define zorro_request_device(z, name) \
255 request_mem_region(zorro_resource_start(z), zorro_resource_len(z), name)
256 #define zorro_release_device(z) \
257 release_mem_region(zorro_resource_start(z), zorro_resource_len(z))
259 /* Similar to the helpers above, these manipulate per-zorro_dev
260 * driver-specific data. They are really just a wrapper around
261 * the generic device structure functions of these calls.
263 static inline void *zorro_get_drvdata (struct zorro_dev
*z
)
265 return dev_get_drvdata(&z
->dev
);
268 static inline void zorro_set_drvdata (struct zorro_dev
*z
, void *data
)
270 dev_set_drvdata(&z
->dev
, data
);
275 * A helper function which helps ensure correct zorro_driver
276 * setup and cleanup for commonly-encountered hotplug/modular cases
278 * This MUST stay in a header, as it checks for -DMODULE
280 static inline int zorro_module_init(struct zorro_driver
*drv
)
282 int rc
= zorro_register_driver(drv
);
287 /* iff CONFIG_HOTPLUG and built into kernel, we should
288 * leave the driver around for future hotplug events.
289 * For the module case, a hotplug daemon of some sort
290 * should load a module in response to an insert event. */
291 #if defined(CONFIG_HOTPLUG) && !defined(MODULE)
299 /* if we get here, we need to clean up Zorro driver instance
300 * and return some sort of error */
301 zorro_unregister_driver(drv
);
308 * Bitmask indicating portions of available Zorro II RAM that are unused
309 * by the system. Every bit represents a 64K chunk, for a maximum of 8MB
310 * (128 chunks, physical 0x00200000-0x009fffff).
312 * If you want to use (= allocate) portions of this RAM, you should clear
313 * the corresponding bits.
316 extern DECLARE_BITMAP(zorro_unused_z2ram
, 128);
318 #define Z2RAM_START (0x00200000)
319 #define Z2RAM_END (0x00a00000)
320 #define Z2RAM_SIZE (0x00800000)
321 #define Z2RAM_CHUNKSIZE (0x00010000)
322 #define Z2RAM_CHUNKMASK (0x0000ffff)
323 #define Z2RAM_CHUNKSHIFT (16)
326 #endif /* !__ASSEMBLY__ */
327 #endif /* __KERNEL__ */
329 #endif /* _LINUX_ZORRO_H */