xref: /freebsd/share/man/man9/bus_space.9 (revision 87569f75a91f298c52a71823c04d41cf53c88889)
1.\" $NetBSD: bus_space.9,v 1.9 1999/03/06 22:09:29 mycroft Exp $
2.\"
3.\" Copyright (c) 2005 M. Warner Losh.  All Rights Reserved.
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
13.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
14.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
15.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
16.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
17.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
18.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
19.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
20.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
21.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
22.\" POSSIBILITY OF SUCH DAMAGE.
23.\"
24.\"
25.\" Copyright (c) 1997 The NetBSD Foundation, Inc.
26.\" All rights reserved.
27.\"
28.\" This code is derived from software contributed to The NetBSD Foundation
29.\" by Christopher G. Demetriou.
30.\"
31.\" Redistribution and use in source and binary forms, with or without
32.\" modification, are permitted provided that the following conditions
33.\" are met:
34.\" 1. Redistributions of source code must retain the above copyright
35.\"    notice, this list of conditions and the following disclaimer.
36.\" 2. Redistributions in binary form must reproduce the above copyright
37.\"    notice, this list of conditions and the following disclaimer in the
38.\"    documentation and/or other materials provided with the distribution.
39.\" 3. All advertising materials mentioning features or use of this software
40.\"    must display the following acknowledgment:
41.\" 	This product includes software developed by the NetBSD
42.\" 	Foundation, Inc. and its contributors.
43.\" 4. Neither the name of The NetBSD Foundation nor the names of its
44.\"    contributors may be used to endorse or promote products derived
45.\"    from this software without specific prior written permission.
46.\"
47.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
48.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
49.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
50.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
51.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
52.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
53.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
54.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
55.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
56.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
57.\" POSSIBILITY OF SUCH DAMAGE.
58.\"
59.\" $FreeBSD$
60.\"
61.Dd June 13, 2005
62.Dt BUS_SPACE 9
63.Os
64.Sh NAME
65.Nm bus_space ,
66.Nm bus_space_barrier ,
67.Nm bus_space_copy_region_1 ,
68.Nm bus_space_copy_region_2 ,
69.Nm bus_space_copy_region_4 ,
70.Nm bus_space_copy_region_8 ,
71.Nm bus_space_free ,
72.Nm bus_space_map ,
73.Nm bus_space_read_1 ,
74.Nm bus_space_read_2 ,
75.Nm bus_space_read_4 ,
76.Nm bus_space_read_8 ,
77.Nm bus_space_read_multi_1 ,
78.Nm bus_space_read_multi_2 ,
79.Nm bus_space_read_multi_4 ,
80.Nm bus_space_read_multi_8 ,
81.Nm bus_space_read_region_1 ,
82.Nm bus_space_read_region_2 ,
83.Nm bus_space_read_region_4 ,
84.Nm bus_space_read_region_8 ,
85.Nm bus_space_set_region_1 ,
86.Nm bus_space_set_region_2 ,
87.Nm bus_space_set_region_4 ,
88.Nm bus_space_set_region_8 ,
89.Nm bus_space_subregion ,
90.Nm bus_space_unmap ,
91.Nm bus_space_set_multi_1 ,
92.Nm bus_space_set_multi_2 ,
93.Nm bus_space_set_multi_4 ,
94.Nm bus_space_set_multi_8 ,
95.Nm bus_space_write_1 ,
96.Nm bus_space_write_2 ,
97.Nm bus_space_write_4 ,
98.Nm bus_space_write_8 ,
99.Nm bus_space_write_multi_1 ,
100.Nm bus_space_write_multi_2 ,
101.Nm bus_space_write_multi_4 ,
102.Nm bus_space_write_multi_8 ,
103.Nm bus_space_write_region_1 ,
104.Nm bus_space_write_region_2 ,
105.Nm bus_space_write_region_4 ,
106.Nm bus_space_write_region_8
107.Nd "bus space manipulation functions"
108.Sh SYNOPSIS
109.In machine/bus.h
110.Ft int
111.Fo bus_space_map
112.Fa "bus_space_tag_t space" "bus_addr_t address"
113.Fa "bus_size_t size" "int flags" "bus_space_handle_t *handlep"
114.Fc
115.Ft void
116.Fo bus_space_unmap
117.Fa "bus_space_tag_t space" "bus_space_handle_t handle" "bus_size_t size"
118.Fc
119.Ft int
120.Fo bus_space_subregion
121.Fa "bus_space_tag_t space" "bus_space_handle_t handle"
122.Fa "bus_size_t offset" "bus_size_t size" "bus_space_handle_t *nhandlep"
123.Fc
124.Ft int
125.Fo bus_space_alloc
126.Fa "bus_space_tag_t space" "bus_addr_t reg_start" "bus_addr_t reg_end"
127.Fa "bus_size_t size" "bus_size_t alignment" "bus_size_t boundary"
128.Fa "int flags" "bus_addr_t *addrp" "bus_space_handle_t *handlep"
129.Fc
130.Ft void
131.Fo bus_space_free
132.Fa "bus_space_tag_t space" "bus_space_handle_t handle" "bus_size_t size"
133.Fc
134.Ft u_int8_t
135.Fo bus_space_read_1
136.Fa "bus_space_tag_t space" "bus_space_handle_t handle" "bus_size_t offset"
137.Fc
138.Ft u_int16_t
139.Fo bus_space_read_2
140.Fa "bus_space_tag_t space" "bus_space_handle_t handle" "bus_size_t offset"
141.Fc
142.Ft u_int32_t
143.Fo bus_space_read_4
144.Fa "bus_space_tag_t space" "bus_space_handle_t handle" "bus_size_t offset"
145.Fc
146.Ft u_int64_t
147.Fo bus_space_read_8
148.Fa "bus_space_tag_t space" "bus_space_handle_t handle" "bus_size_t offset"
149.Fc
150.Ft void
151.Fo bus_space_write_1
152.Fa "bus_space_tag_t space" "bus_space_handle_t handle"
153.Fa "bus_size_t offset" "u_int8_t value"
154.Fc
155.Ft void
156.Fo bus_space_write_2
157.Fa "bus_space_tag_t space" "bus_space_handle_t handle"
158.Fa "bus_size_t offset" "u_int16_t value"
159.Fc
160.Ft void
161.Fo bus_space_write_4
162.Fa "bus_space_tag_t space" "bus_space_handle_t handle"
163.Fa "bus_size_t offset" "u_int32_t value"
164.Fc
165.Ft void
166.Fo bus_space_write_8
167.Fa "bus_space_tag_t space" "bus_space_handle_t handle"
168.Fa "bus_size_t offset" "u_int64_t value"
169.Fc
170.Ft void
171.Fo bus_space_barrier
172.Fa "bus_space_tag_t space" "bus_space_handle_t handle"
173.Fa "bus_size_t offset" "bus_size_t length" "int flags"
174.Fc
175.Ft void
176.Fo bus_space_read_region_1
177.Fa "bus_space_tag_t space"
178.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int8_t *datap"
179.Fa "bus_size_t count"
180.Fc
181.Ft void
182.Fo bus_space_read_region_2
183.Fa "bus_space_tag_t space"
184.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int16_t *datap"
185.Fa "bus_size_t count"
186.Fc
187.Ft void
188.Fo bus_space_read_region_4
189.Fa "bus_space_tag_t space"
190.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int32_t *datap"
191.Fa "bus_size_t count"
192.Fc
193.Ft void
194.Fo bus_space_read_region_8
195.Fa "bus_space_tag_t space"
196.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int64_t *datap"
197.Fa "bus_size_t count"
198.Fc
199.Ft void
200.Fo bus_space_write_region_1
201.Fa "bus_space_tag_t space"
202.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int8_t *datap"
203.Fa "bus_size_t count"
204.Fc
205.Ft void
206.Fo bus_space_write_region_2
207.Fa "bus_space_tag_t space"
208.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int16_t *datap"
209.Fa "bus_size_t count"
210.Fc
211.Ft void
212.Fo bus_space_write_region_4
213.Fa "bus_space_tag_t space"
214.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int32_t *datap"
215.Fa "bus_size_t count"
216.Fc
217.Ft void
218.Fo bus_space_write_region_8
219.Fa "bus_space_tag_t space"
220.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int64_t *datap"
221.Fa "bus_size_t count"
222.Fc
223.Ft void
224.Fo bus_space_copy_region_1
225.Fa "bus_space_tag_t space"
226.Fa "bus_space_handle_t srchandle" "bus_size_t srcoffset"
227.Fa "bus_space_handle_t dsthandle" "bus_size_t dstoffset" "bus_size_t count"
228.Fc
229.Ft void
230.Fo bus_space_copy_region_2
231.Fa "bus_space_tag_t space"
232.Fa "bus_space_handle_t srchandle" "bus_size_t srcoffset"
233.Fa "bus_space_handle_t dsthandle" "bus_size_t dstoffset" "bus_size_t count"
234.Fc
235.Ft void
236.Fo bus_space_copy_region_4
237.Fa "bus_space_tag_t space"
238.Fa "bus_space_handle_t srchandle" "bus_size_t srcoffset"
239.Fa "bus_space_handle_t dsthandle" "bus_size_t dstoffset" "bus_size_t count"
240.Fc
241.Ft void
242.Fo bus_space_copy_region_8
243.Fa "bus_space_tag_t space"
244.Fa "bus_space_handle_t srchandle" "bus_size_t srcoffset"
245.Fa "bus_space_handle_t dsthandle" "bus_size_t dstoffset" "bus_size_t count"
246.Fc
247.Ft void
248.Fo bus_space_set_region_1
249.Fa "bus_space_tag_t space"
250.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int8_t value"
251.Fa "bus_size_t count"
252.Fc
253.Ft void
254.Fo bus_space_set_region_2
255.Fa "bus_space_tag_t space"
256.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int16_t value"
257.Fa "bus_size_t count"
258.Fc
259.Ft void
260.Fo bus_space_set_region_4
261.Fa "bus_space_tag_t space"
262.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int32_t value"
263.Fa "bus_size_t count"
264.Fc
265.Ft void
266.Fo bus_space_set_region_8
267.Fa "bus_space_tag_t space"
268.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int64_t value"
269.Fa "bus_size_t count"
270.Fc
271.Ft void
272.Fo bus_space_read_multi_1
273.Fa "bus_space_tag_t space"
274.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int8_t *datap"
275.Fa "bus_size_t count"
276.Fc
277.Ft void
278.Fo bus_space_read_multi_2
279.Fa "bus_space_tag_t space"
280.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int16_t *datap"
281.Fa "bus_size_t count"
282.Fc
283.Ft void
284.Fo bus_space_read_multi_4
285.Fa "bus_space_tag_t space"
286.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int32_t *datap"
287.Fa "bus_size_t count"
288.Fc
289.Ft void
290.Fo bus_space_read_multi_8
291.Fa "bus_space_tag_t space"
292.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int64_t *datap"
293.Fa "bus_size_t count"
294.Fc
295.Ft void
296.Fo bus_space_write_multi_1
297.Fa "bus_space_tag_t space"
298.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int8_t *datap"
299.Fa "bus_size_t count"
300.Fc
301.Ft void
302.Fo bus_space_write_multi_2
303.Fa "bus_space_tag_t space"
304.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int16_t *datap"
305.Fa "bus_size_t count"
306.Fc
307.Ft void
308.Fo bus_space_write_multi_4
309.Fa "bus_space_tag_t space"
310.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int32_t *datap"
311.Fa "bus_size_t count"
312.Fc
313.Ft void
314.Fo bus_space_write_multi_8
315.Fa "bus_space_tag_t space"
316.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int64_t *datap"
317.Fa "bus_size_t count"
318.Fc
319.Ft void
320.Fo bus_space_set_multi_1
321.Fa "bus_space_tag_t space"
322.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int8_t value"
323.Fa "bus_size_t count"
324.Fc
325.Ft void
326.Fo bus_space_set_multi_2
327.Fa "bus_space_tag_t space"
328.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int16_t value"
329.Fa "bus_size_t count"
330.Fc
331.Ft void
332.Fo bus_space_set_multi_4
333.Fa "bus_space_tag_t space"
334.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int32_t value"
335.Fa "bus_size_t count"
336.Fc
337.Ft void
338.Fo bus_space_set_multi_8
339.Fa "bus_space_tag_t space"
340.Fa "bus_space_handle_t handle" "bus_size_t offset" "u_int64_t value"
341.Fa "bus_size_t count"
342.Fc
343.Sh DESCRIPTION
344The
345.Nm
346functions exist to allow device drivers
347machine-independent access to bus memory and register areas.
348All of the
349functions and types described in this document can be used by including
350the
351.In machine/bus.h
352header file.
353.Pp
354Many common devices are used on multiple architectures, but are accessed
355differently on each because of architectural constraints.
356For instance, a device which is mapped in one system's I/O space may be
357mapped in memory space on a second system.
358On a third system, architectural
359limitations might change the way registers need to be accessed (e.g.\&
360creating a non-linear register space).
361In some cases, a single
362driver may need to access the same type of device in multiple ways in a
363single system or architecture.
364The goal of the
365.Nm
366functions is to allow a single driver source file to manipulate a set
367of devices on different system architectures, and to allow a single driver
368object file to manipulate a set of devices on multiple bus types on a
369single architecture.
370.Pp
371Not all busses have to implement all functions described in this
372document, though that is encouraged if the operations are logically
373supported by the bus.
374Unimplemented functions should cause
375compile-time errors if possible.
376.Pp
377All of the interface definitions described in this document are shown as
378function prototypes and discussed as if they were required to be
379functions.
380Implementations are encouraged to implement prototyped
381(type-checked) versions of these interfaces, but may implement them as
382macros if appropriate.
383Machine-dependent types, variables, and functions
384should be marked clearly in
385.In machine/bus.h
386to avoid confusion with the
387machine-independent types and functions, and, if possible, should be
388given names which make the machine-dependence clear.
389.Sh CONCEPTS AND GUIDELINES
390Bus spaces are described by bus space tags, which can be created only by
391machine-dependent code.
392A given machine may have several different types
393of bus space (e.g.\& memory space and I/O space), and thus may provide
394multiple different bus space tags.
395Individual busses or devices on a machine may use more than one bus space
396tag.
397For instance, ISA devices are
398given an ISA memory space tag and an ISA I/O space tag.
399Architectures
400may have several different tags which represent the same type of
401space, for instance because of multiple different host bus interface
402chipsets.
403.Pp
404A range in bus space is described by a bus address and a bus size.
405The
406bus address describes the start of the range in bus space.
407The bus
408size describes the size of the range in bytes.
409Busses which are not byte
410addressable may require use of bus space ranges with appropriately
411aligned addresses and properly rounded sizes.
412.Pp
413Access to regions of bus space is facilitated by use of bus space handles,
414which are usually created by mapping a specific range of a bus space.
415Handles may also be created by allocating
416and mapping a range of bus space, the actual location of which is picked
417by the implementation within bounds specified by the caller of the
418allocation function.
419.Pp
420All of the bus space access functions require one bus space tag
421argument, at least one handle argument, and at least one offset argument
422(a bus size).
423The bus space tag specifies the space, each handle specifies a region in
424the space, and each offset specifies the offset into the region of the
425actual location(s) to be accessed.
426Offsets are given in bytes, though busses
427may impose alignment constraints.
428The offset used to access data
429relative to a given handle must be such that all of the data being
430accessed is in the mapped region that the handle describes.
431Trying to
432access data outside that region is an error.
433.Pp
434Because some architectures' memory systems use buffering to improve
435memory and device access performance, there is a mechanism which can be
436used to create
437.Dq barriers
438in the bus space read and write stream.
439There
440are three types of barriers: read, write, and read/write.
441All reads
442started to the region before a read barrier must complete before any reads
443after the read barrier are started.
444(The analogous requirement is true for
445write barriers.)
446Read/write barriers force all reads and writes started
447before the barrier to complete before any reads or writes after the
448barrier are started.
449Correctly-written drivers will include all
450appropriate barriers, and assume only the read/write ordering imposed by
451the barrier operations.
452.Pp
453People trying to write portable drivers with the
454.Nm
455functions should
456try to make minimal assumptions about what the system allows.
457In particular,
458they should expect that the system requires bus space addresses being
459accessed to be naturally aligned (i.e., base address of handle added to
460offset is a multiple of the access size), and that the system does
461alignment checking on pointers (i.e., pointer to objects being read and
462written must point to properly-aligned data).
463.Pp
464The descriptions of the
465.Nm
466functions given below all assume that
467they are called with proper arguments.
468If called with invalid arguments
469or arguments that are out of range (e.g.\& trying to access data outside of
470the region mapped when a given handle was created), undefined behaviour
471results.
472In that case, they may cause the
473system to halt, either intentionally (via panic) or unintentionally (by
474causing a fatal trap of by some other means) or may cause improper
475operation which is not immediately fatal.
476Functions which return
477.Ft void
478or which return data read from bus space (i.e., functions which
479do not obviously return an error code) do not fail.
480They could only fail
481if given invalid arguments, and in that case their behaviour is undefined.
482.Sh TYPES
483Several types are defined in
484.In machine/bus.h
485to facilitate use of the
486.Nm
487functions by drivers.
488.Ss Vt bus_addr_t
489The
490.Vt bus_addr_t
491type is used to describe bus addresses.
492It must be an
493unsigned integral type
494capable of holding the largest bus address usable by the architecture.
495This
496type is primarily used when mapping and unmapping bus space.
497.Ss Vt bus_size_t
498The
499.Vt bus_size_t
500type is used to describe sizes of ranges in bus space.
501It must be an
502unsigned integral type capable of holding the size of the largest bus
503address range usable on the architecture.
504This type is used by virtually all
505of the
506.Nm
507functions, describing sizes when mapping regions and
508offsets into regions when performing space access operations.
509.Ss Vt bus_space_tag_t
510The
511.Vt bus_space_tag_t
512type is used to describe a particular bus space on a machine.
513Its
514contents are machine-dependent and should be considered opaque by
515machine-independent code.
516This type is used by all
517.Nm
518functions to name the space on which they are operating.
519.Ss Vt bus_space_handle_t
520The
521.Vt bus_space_handle_t
522type is used to describe a mapping of a range of bus space.
523Its
524contents are machine-dependent and should be considered opaque by
525machine-independent code.
526This type is used when performing bus space
527access operations.
528.Sh MAPPING AND UNMAPPING BUS SPACE
529This section is specific to the
530.Nx
531version of these functions and may or may not apply to the
532.Fx
533version.
534.Pp
535Bus space must be mapped before it can be used, and should be
536unmapped when it is no longer needed.
537The
538.Fn bus_space_map
539and
540.Fn bus_space_unmap
541functions provide these capabilities.
542.Pp
543Some drivers need to be able to pass a subregion of already-mapped bus
544space to another driver or module within a driver.
545The
546.Fn bus_space_subregion
547function allows such subregions to be created.
548.Ss Fn bus_space_map space address size flags handlep
549The
550.Fn bus_space_map
551function maps the region of bus space named by the
552.Fa space , address ,
553and
554.Fa size
555arguments.
556If successful, it returns zero
557and fills in the bus space handle pointed to by
558.Fa handlep
559with the handle
560that can be used to access the mapped region.
561If unsuccessful,
562it will return non-zero and leave the bus space handle pointed
563to by
564.Fa handlep
565in an undefined state.
566.Pp
567The
568.Fa flags
569argument controls how the space is to be mapped.
570Supported flags include:
571.Bl -tag -width ".Dv BUS_SPACE_MAP_CACHEABLE"
572.It Dv BUS_SPACE_MAP_CACHEABLE
573Try to map the space so that accesses can be cached and/or
574prefetched by the system.
575If this flag is not specified, the
576implementation should map the space so that it will not be cached or
577prefetched.
578.Pp
579This flag must have a value of 1 on all implementations for backward
580compatibility.
581.It Dv BUS_SPACE_MAP_LINEAR
582Try to map the space so that its contents can be accessed linearly via
583normal memory access methods (e.g.\& pointer dereferencing and structure
584accesses).
585This is useful when software wants to do direct access to a memory
586device, e.g.\& a frame buffer.
587If this flag is specified and linear
588mapping is not possible, the
589.Fn bus_space_map
590call should fail.
591If this
592flag is not specified, the system may map the space in whatever way is
593most convenient.
594.El
595.Pp
596Not all combinations of flags make sense or are supported with all
597spaces.
598For instance,
599.Dv BUS_SPACE_MAP_CACHEABLE
600may be meaningless when
601used on many systems' I/O port spaces, and on some systems
602.Dv BUS_SPACE_MAP_LINEAR
603without
604.Dv BUS_SPACE_MAP_CACHEABLE
605may never work.
606When the system hardware or firmware provides hints as to how spaces should be
607mapped (e.g.\& the PCI memory mapping registers'
608.Dq prefetchable
609bit), those
610hints should be followed for maximum compatibility.
611On some systems,
612requesting a mapping that cannot be satisfied (e.g.\& requesting a
613non-cacheable mapping when the system can only provide a cacheable one)
614will cause the request to fail.
615.Pp
616Some implementations may keep track of use of bus space for some or all
617bus spaces and refuse to allow duplicate allocations.
618This is encouraged
619for bus spaces which have no notion of slot-specific space addressing,
620such as ISA and VME, and for spaces which coexist with those spaces
621(e.g.\& EISA and PCI memory and I/O spaces co-existing with ISA memory and
622I/O spaces).
623.Pp
624Mapped regions may contain areas for which no there is no device on the
625bus.
626If space in those areas is accessed, the results are
627bus-dependent.
628.Ss Fn bus_space_unmap space handle size
629The
630.Fn bus_space_unmap
631function unmaps a region of bus space mapped with
632.Fn bus_space_map .
633When unmapping a region, the
634.Fa size
635specified should be
636the same as the size given to
637.Fn bus_space_map
638when mapping that region.
639.Pp
640After
641.Fn bus_space_unmap
642is called on a handle, that handle is no longer
643valid.
644(If copies were made of the handle they are no longer valid,
645either.)
646.Pp
647This function will never fail.
648If it would fail (e.g.\& because of an
649argument error), that indicates a software bug which should cause a
650panic.
651In that case,
652.Fn bus_space_unmap
653will never return.
654.Ss Fn bus_space_subregion space handle offset size nhandlep
655The
656.Fn bus_space_subregion
657function is a convenience function which makes a
658new handle to some subregion of an already-mapped region of bus space.
659The subregion described by the new handle starts at byte offset
660.Fa offset
661into the region described by
662.Fa handle ,
663with the size give by
664.Fa size ,
665and must be wholly contained within the original region.
666.Pp
667If successful,
668.Fn bus_space_subregion
669returns zero and fills in the bus
670space handle pointed to by
671.Fa nhandlep .
672If unsuccessful, it returns non-zero and leaves the bus space handle
673pointed to by
674.Fa nhandlep
675in an
676undefined state.
677In either case, the handle described by
678.Fa handle
679remains valid and is unmodified.
680.Pp
681When done with a handle created by
682.Fn bus_space_subregion ,
683the handle should
684be thrown away.
685Under no circumstances should
686.Fn bus_space_unmap
687be used on the handle.
688Doing so may confuse any resource management
689being done on the space, and will result in undefined behaviour.
690When
691.Fn bus_space_unmap
692or
693.Fn bus_space_free
694is called on a handle, all subregions of that handle become invalid.
695.Sh ALLOCATING AND FREEING BUS SPACE
696This section is specific to the
697.Nx
698version of these functions and may or may not apply to the
699.Fx
700version.
701.Pp
702Some devices require or allow bus space to be allocated by the operating
703system for device use.
704When the devices no longer need the space, the
705operating system should free it for use by other devices.
706The
707.Fn bus_space_alloc
708and
709.Fn bus_space_free
710functions provide these capabilities.
711.Ss Fn bus_space_alloc space reg_start reg_end size alignment boundary \
712flags addrp handlep
713The
714.Fn bus_space_alloc
715function allocates and maps a region of bus space with the size given by
716.Fa size ,
717corresponding to the given constraints.
718If successful, it returns
719zero, fills in the bus address pointed to by
720.Fa addrp
721with the bus space address of the allocated region, and fills in
722the bus space handle pointed to by
723.Fa handlep
724with the handle that can be used to access that region.
725If unsuccessful, it returns non-zero and leaves the bus address pointed to by
726.Fa addrp
727and the bus space handle pointed to by
728.Fa handlep
729in an undefined state.
730.Pp
731Constraints on the allocation are given by the
732.Fa reg_start , reg_end , alignment ,
733and
734.Fa boundary
735parameters.
736The allocated region will start at or after
737.Fa reg_start
738and end before or at
739.Fa reg_end .
740The
741.Fa alignment
742constraint must be a power of two, and the allocated region will start at
743an address that is an even multiple of that power of two.
744The
745.Fa boundary
746constraint, if non-zero, ensures that the region is allocated so that
747.Fa "first address in region"
748/
749.Fa boundary
750has the same value as
751.Fa "last address in region"
752/
753.Fa boundary .
754If the constraints cannot be met,
755.Fn bus_space_alloc
756will fail.
757It is an error to specify a set of
758constraints that can never be met
759(for example,
760.Fa size
761greater than
762.Fa boundary ) .
763.Pp
764The
765.Fa flags
766parameter is the same as the like-named parameter to
767.Fn bus_space_map ,
768the same flag values should be used, and they have the
769same meanings.
770.Pp
771Handles created by
772.Fn bus_space_alloc
773should only be freed with
774.Fn bus_space_free .
775Trying to use
776.Fn bus_space_unmap
777on them causes undefined behaviour.
778The
779.Fn bus_space_subregion
780function can be used on
781handles created by
782.Fn bus_space_alloc .
783.Ss Fn bus_space_free space handle size
784The
785.Fn bus_space_free
786function unmaps and frees a region of bus space mapped
787and allocated with
788.Fn bus_space_alloc .
789When unmapping a region, the
790.Fa size
791specified should be the same as the size given to
792.Fn bus_space_alloc
793when allocating the region.
794.Pp
795After
796.Fn bus_space_free
797is called on a handle, that handle is no longer valid.
798(If copies were
799made of the handle, they are no longer valid, either.)
800.Pp
801This function will never fail.
802If it would fail (e.g.\& because of an
803argument error), that indicates a software bug which should cause a
804panic.
805In that case,
806.Fn bus_space_free
807will never return.
808.Sh READING AND WRITING SINGLE DATA ITEMS
809The simplest way to access bus space is to read or write a single data
810item.
811The
812.Fn bus_space_read_N
813and
814.Fn bus_space_write_N
815families of functions provide
816the ability to read and write 1, 2, 4, and 8 byte data items on busses
817which support those access sizes.
818.Ss Fn bus_space_read_1 space handle offset
819.Ss Fn bus_space_read_2 space handle offset
820.Ss Fn bus_space_read_4 space handle offset
821.Ss Fn bus_space_read_8 space handle offset
822The
823.Fn bus_space_read_N
824family of functions reads a 1, 2, 4, or 8 byte data item from
825the offset specified by
826.Fa offset
827into the region specified by
828.Fa handle
829of the bus space specified by
830.Fa space .
831The location being read must lie within the bus space region specified by
832.Fa handle .
833.Pp
834For portability, the starting address of the region specified by
835.Fa handle
836plus the offset should be a multiple of the size of data item being read.
837On some systems, not obeying this requirement may cause incorrect data to
838be read, on others it may cause a system crash.
839.Pp
840Read operations done by the
841.Fn bus_space_read_N
842functions may be executed out
843of order with respect to other pending read and write operations unless
844order is enforced by use of the
845.Fn bus_space_barrier
846function.
847.Pp
848These functions will never fail.
849If they would fail (e.g.\& because of an
850argument error), that indicates a software bug which should cause a
851panic.
852In that case, they will never return.
853.Ss Fn bus_space_write_1 space handle offset value
854.Ss Fn bus_space_write_2 space handle offset value
855.Ss Fn bus_space_write_4 space handle offset value
856.Ss Fn bus_space_write_8 space handle offset value
857The
858.Fn bus_space_write_N
859family of functions writes a 1, 2, 4, or 8 byte data item to the offset
860specified by
861.Fa offset
862into the region specified by
863.Fa handle
864of the bus space specified by
865.Fa space .
866The location being written must lie within
867the bus space region specified by
868.Fa handle .
869.Pp
870For portability, the starting address of the region specified by
871.Fa handle
872plus the offset should be a multiple of the size of data item being
873written.
874On some systems, not obeying this requirement may cause
875incorrect data to be written, on others it may cause a system crash.
876.Pp
877Write operations done by the
878.Fn bus_space_write_N
879functions may be executed
880out of order with respect to other pending read and write operations
881unless order is enforced by use of the
882.Fn bus_space_barrier
883function.
884.Pp
885These functions will never fail.
886If they would fail (e.g.\& because of an
887argument error), that indicates a software bug which should cause a
888panic.
889In that case, they will never return.
890.Sh BARRIERS
891In order to allow high-performance buffering implementations to avoid bus
892activity on every operation, read and write ordering should be specified
893explicitly by drivers when necessary.
894The
895.Fn bus_space_barrier
896function provides that ability.
897.Ss Fn bus_space_barrier space handle offset length flags
898The
899.Fn bus_space_barrier
900function enforces ordering of bus space read and write operations
901for the specified subregion (described by the
902.Fa offset
903and
904.Fa length
905parameters) of the region named by
906.Fa handle
907in the space named by
908.Fa space .
909.Pp
910The
911.Fa flags
912argument controls what types of operations are to be ordered.
913Supported flags are:
914.Bl -tag -width ".Dv BUS_SPACE_BARRIER_WRITE"
915.It Dv BUS_SPACE_BARRIER_READ
916Synchronize read operations.
917.It Dv BUS_SPACE_BARRIER_WRITE
918Synchronize write operations.
919.El
920.Pp
921Those flags can be combined (or-ed together) to enforce ordering on both
922read and write operations.
923.Pp
924All of the specified type(s) of operation which are done to the region
925before the barrier operation are guaranteed to complete before any of the
926specified type(s) of operation done after the barrier.
927.Pp
928Example: Consider a hypothetical device with two single-byte ports, one
929write-only input port (at offset 0) and a read-only output port (at
930offset 1).
931Operation of the device is as follows: data bytes are written
932to the input port, and are placed by the device on a stack, the top of
933which is read by reading from the output port.
934The sequence to correctly
935write two data bytes to the device then read those two data bytes back
936would be:
937.Bd -literal
938/*
939 * t and h are the tag and handle for the mapped device's
940 * space.
941 */
942bus_space_write_1(t, h, 0, data0);
943bus_space_barrier(t, h, 0, 1, BUS_SPACE_BARRIER_WRITE);  /* 1 */
944bus_space_write_1(t, h, 0, data1);
945bus_space_barrier(t, h, 0, 2,
946    BUS_SPACE_BARRIER_READ|BUS_SPACE_BARRIER_WRITE);     /* 2 */
947ndata1 = bus_space_read_1(t, h, 1);
948bus_space_barrier(t, h, 1, 1, BUS_SPACE_BARRIER_READ);   /* 3 */
949ndata0 = bus_space_read_1(t, h, 1);
950/* data0 == ndata0, data1 == ndata1 */
951.Ed
952.Pp
953The first barrier makes sure that the first write finishes before the
954second write is issued, so that two writes to the input port are done
955in order and are not collapsed into a single write.
956This ensures that
957the data bytes are written to the device correctly and in order.
958.Pp
959The second barrier makes sure that the writes to the output port finish
960before any of the reads to the input port are issued, thereby making sure
961that all of the writes are finished before data is read.
962This ensures
963that the first byte read from the device really is the last one that was
964written.
965.Pp
966The third barrier makes sure that the first read finishes before the
967second read is issued, ensuring that data is read correctly and in order.
968.Pp
969The barriers in the example above are specified to cover the absolute
970minimum number of bus space locations.
971It is correct (and often
972easier) to make barrier operations cover the device's whole range of bus
973space, that is, to specify an offset of zero and the size of the
974whole region.
975.Sh REGION OPERATIONS
976Some devices use buffers which are mapped as regions in bus space.
977Often, drivers want to copy the contents of those buffers to or from
978memory, e.g.\& into mbufs which can be passed to higher levels of the
979system or from mbufs to be output to a network.
980In order to allow
981drivers to do this as efficiently as possible, the
982.Fn bus_space_read_region_N
983and
984.Fn bus_space_write_region_N
985families of functions are provided.
986.Pp
987Drivers occasionally need to copy one region of a bus space to another,
988or to set all locations in a region of bus space to contain a single
989value.
990The
991.Fn bus_space_copy_region_N
992family of functions and the
993.Fn bus_space_set_region_N
994family of functions allow drivers to perform these operations.
995.Ss Fn bus_space_read_region_1 space handle offset datap count
996.Ss Fn bus_space_read_region_2 space handle offset datap count
997.Ss Fn bus_space_read_region_4 space handle offset datap count
998.Ss Fn bus_space_read_region_8 space handle offset datap count
999The
1000.Fn bus_space_read_region_N
1001family of functions reads
1002.Fa count
10031, 2, 4, or 8 byte data items from bus space
1004starting at byte offset
1005.Fa offset
1006in the region specified by
1007.Fa handle
1008of the bus space specified by
1009.Fa space
1010and writes them into the array specified by
1011.Fa datap .
1012Each successive data item is read from an offset
10131, 2, 4, or 8 bytes after the previous data item (depending on which
1014function is used).
1015All locations being read must lie within the bus
1016space region specified by
1017.Fa handle .
1018.Pp
1019For portability, the starting address of the region specified by
1020.Fa handle
1021plus the offset should be a multiple of the size of data items being
1022read and the data array pointer should be properly aligned.
1023On some
1024systems, not obeying these requirements may cause incorrect data to be
1025read, on others it may cause a system crash.
1026.Pp
1027Read operations done by the
1028.Fn bus_space_read_region_N
1029functions may be executed in any order.
1030They may also be executed out
1031of order with respect to other pending read and write operations unless
1032order is enforced by use of the
1033.Fn bus_space_barrier
1034function.
1035There is no way to insert barriers between reads of
1036individual bus space locations executed by the
1037.Fn bus_space_read_region_N
1038functions.
1039.Pp
1040These functions will never fail.
1041If they would fail (e.g.\& because of an
1042argument error), that indicates a software bug which should cause a
1043panic.
1044In that case, they will never return.
1045.Ss Fn bus_space_write_region_1 space handle offset datap count
1046.Ss Fn bus_space_write_region_2 space handle offset datap count
1047.Ss Fn bus_space_write_region_4 space handle offset datap count
1048.Ss Fn bus_space_write_region_8 space handle offset datap count
1049The
1050.Fn bus_space_write_region_N
1051family of functions reads
1052.Fa count
10531, 2, 4, or 8 byte data items from the array
1054specified by
1055.Fa datap
1056and writes them to bus space starting at byte offset
1057.Fa offset
1058in the region specified by
1059.Fa handle
1060of the bus space specified
1061by
1062.Fa space .
1063Each successive data item is written to an offset 1, 2, 4,
1064or 8 bytes after the previous data item (depending on which function is
1065used).
1066All locations being written must lie within the bus space region
1067specified by
1068.Fa handle .
1069.Pp
1070For portability, the starting address of the region specified by
1071.Fa handle
1072plus the offset should be a multiple of the size of data items being
1073written and the data array pointer should be properly aligned.
1074On some
1075systems, not obeying these requirements may cause incorrect data to be
1076written, on others it may cause a system crash.
1077.Pp
1078Write operations done by the
1079.Fn bus_space_write_region_N
1080functions may be
1081executed in any order.
1082They may also be executed out of order with
1083respect to other pending read and write operations unless order is
1084enforced by use of the
1085.Fn bus_space_barrier
1086function.
1087There is no way to insert barriers between writes of
1088individual bus space locations executed by the
1089.Fn bus_space_write_region_N
1090functions.
1091.Pp
1092These functions will never fail.
1093If they would fail (e.g.\& because of an
1094argument error), that indicates a software bug which should cause a
1095panic.
1096In that case, they will never return.
1097.Ss Fn bus_space_copy_region_1 space srchandle srcoffset dsthandle \
1098dstoffset count
1099.Ss Fn bus_space_copy_region_2 space srchandle srcoffset dsthandle \
1100dstoffset count
1101.Ss Fn bus_space_copy_region_4 space srchandle srcoffset dsthandle \
1102dstoffset count
1103.Ss Fn bus_space_copy_region_8 space srchandle srcoffset dsthandle \
1104dstoffset count
1105The
1106.Fn bus_space_copy_region_N
1107family of functions copies
1108.Fa count
11091, 2, 4, or 8 byte data items in bus space
1110from the area starting at byte offset
1111.Fa srcoffset
1112in the region specified by
1113.Fa srchandle
1114of the bus space specified by
1115.Fa space
1116to the area starting at byte offset
1117.Fa dstoffset
1118in the region specified by
1119.Fa dsthandle
1120in the same bus space.
1121Each successive data item read or written has
1122an offset 1, 2, 4, or 8 bytes after the previous data item (depending
1123on which function is used).
1124All locations being read and written must
1125lie within the bus space region specified by their respective handles.
1126.Pp
1127For portability, the starting addresses of the regions specified by the
1128each handle plus its respective offset should be a multiple of the size
1129of data items being copied.
1130On some systems, not obeying this
1131requirement may cause incorrect data to be copied, on others it may cause
1132a system crash.
1133.Pp
1134Read and write operations done by the
1135.Fn bus_space_copy_region_N
1136functions may be executed in any order.
1137They may also be executed out
1138of order with respect to other pending read and write operations unless
1139order is enforced by use of the
1140.Fn bus_space_barrier function .
1141There is no way to insert barriers between reads or writes of
1142individual bus space locations executed by the
1143.Fn bus_space_copy_region_N
1144functions.
1145.Pp
1146Overlapping copies between different subregions of a single region
1147of bus space are handled correctly by the
1148.Fn bus_space_copy_region_N
1149functions.
1150.Pp
1151These functions will never fail.
1152If they would fail (e.g.\& because of an
1153argument error), that indicates a software bug which should cause a
1154panic.
1155In that case, they will never return.
1156.Ss Fn bus_space_set_region_1 space handle offset value count
1157.Ss Fn bus_space_set_region_2 space handle offset value count
1158.Ss Fn bus_space_set_region_4 space handle offset value count
1159.Ss Fn bus_space_set_region_8 space handle offset value count
1160The
1161.Fn bus_space_set_region_N
1162family of functions writes the given
1163.Fa value
1164to
1165.Fa count
11661, 2, 4, or 8 byte
1167data items in bus space starting at byte offset
1168.Fa offset
1169in the region specified by
1170.Fa handle
1171of the bus space specified by
1172.Fa space .
1173Each successive data item has an offset 1, 2, 4, or 8 bytes after the
1174previous data item (depending on which function is used).
1175All
1176locations being written must lie within the bus space region specified
1177by
1178.Fa handle .
1179.Pp
1180For portability, the starting address of the region specified by
1181.Fa handle
1182plus the offset should be a multiple of the size of data items being
1183written.
1184On some systems, not obeying this requirement may cause
1185incorrect data to be written, on others it may cause a system crash.
1186.Pp
1187Write operations done by the
1188.Fn bus_space_set_region_N
1189functions may be
1190executed in any order.
1191They may also be executed out of order with
1192respect to other pending read and write operations unless order is
1193enforced by use of the
1194.Fn bus_space_barrier
1195function.
1196There is no way to insert barriers between writes of
1197individual bus space locations executed by the
1198.Fn bus_space_set_region_N
1199functions.
1200.Pp
1201These functions will never fail.
1202If they would fail (e.g.\& because of an
1203argument error), that indicates a software bug which should cause a
1204panic.
1205In that case, they will never return.
1206.Sh READING AND WRITING A SINGLE LOCATION MULTIPLE TIMES
1207Some devices implement single locations in bus space which are to be read
1208or written multiple times to communicate data, e.g.\& some ethernet
1209devices' packet buffer FIFOs.
1210In order to allow drivers to manipulate
1211these types of devices as efficiently as possible, the
1212.Fn bus_space_read_multi_N ,
1213.Fn bus_space_set_multi_N ,
1214and
1215.Fn bus_space_write_multi_N
1216families of functions are provided.
1217.Ss Fn bus_space_read_multi_1 space handle offset datap count
1218.Ss Fn bus_space_read_multi_2 space handle offset datap count
1219.Ss Fn bus_space_read_multi_4 space handle offset datap count
1220.Ss Fn bus_space_read_multi_8 space handle offset datap count
1221The
1222.Fn bus_space_read_multi_N
1223family of functions reads
1224.Fa count
12251, 2, 4, or 8 byte data items from bus space
1226at byte offset
1227.Fa offset
1228in the region specified by
1229.Fa handle
1230of the bus space specified by
1231.Fa space
1232and writes them into the array specified by
1233.Fa datap .
1234Each successive data item is read from the same location in bus
1235space.
1236The location being read must lie within the bus space region
1237specified by
1238.Fa handle .
1239.Pp
1240For portability, the starting address of the region specified by
1241.Fa handle
1242plus the offset should be a multiple of the size of data items being
1243read and the data array pointer should be properly aligned.
1244On some
1245systems, not obeying these requirements may cause incorrect data to be
1246read, on others it may cause a system crash.
1247.Pp
1248Read operations done by the
1249.Fn bus_space_read_multi_N
1250functions may be
1251executed out of order with respect to other pending read and write
1252operations unless order is enforced by use of the
1253.Fn bus_space_barrier
1254function.
1255Because the
1256.Fn bus_space_read_multi_N
1257functions read the same bus space location multiple times, they
1258place an implicit read barrier between each successive read of that bus
1259space location.
1260.Pp
1261These functions will never fail.
1262If they would fail (e.g.\& because of an
1263argument error), that indicates a software bug which should cause a
1264panic.
1265In that case, they will never return.
1266.Ss Fn bus_space_write_multi_1 space handle offset datap count
1267.Ss Fn bus_space_write_multi_2 space handle offset datap count
1268.Ss Fn bus_space_write_multi_4 space handle offset datap count
1269.Ss Fn bus_space_write_multi_8 space handle offset datap count
1270The
1271.Fn bus_space_write_multi_N
1272family of functions reads
1273.Fa count
12741, 2, 4, or 8 byte data items from the array
1275specified by
1276.Fa datap
1277and writes them into bus space at byte offset
1278.Fa offset
1279in the region specified by
1280.Fa handle
1281of the bus space specified by
1282.Fa space .
1283Each successive data item is written to the same location in
1284bus space.
1285The location being written must lie within the bus space
1286region specified by
1287.Fa handle .
1288.Pp
1289For portability, the starting address of the region specified by
1290.Fa handle
1291plus the offset should be a multiple of the size of data items being
1292written and the data array pointer should be properly aligned.
1293On some
1294systems, not obeying these requirements may cause incorrect data to be
1295written, on others it may cause a system crash.
1296.Pp
1297Write operations done by the
1298.Fn bus_space_write_multi_N
1299functions may be executed out of order with respect to other pending
1300read and write operations unless order is enforced by use of the
1301.Fn bus_space_barrier
1302function.
1303Because the
1304.Fn bus_space_write_multi_N
1305functions write the same bus space location multiple times, they
1306place an implicit write barrier between each successive write of that
1307bus space location.
1308.Pp
1309These functions will never fail.
1310If they would fail (e.g.\& because of an
1311argument error), that indicates a software bug which should cause a
1312panic.
1313In that case, they will never return.
1314.Ss Fn bus_space_set_multi_1 space handle offset value count
1315.Ss Fn bus_space_set_multi_2 space handle offset value count
1316.Ss Fn bus_space_set_multi_4 space handle offset value count
1317.Ss Fn bus_space_set_multi_8 space handle offset value count
1318The
1319.Fn bus_space_set_multi_N
1320writes
1321.Fa value
1322into bus space at byte offset
1323.Fa offset
1324in the region specified by
1325.Fa handle
1326of the bus space specified by
1327.Fa space ,
1328.Fa count
1329times.
1330The location being written must lie within the bus space
1331region specified by
1332.Fa handle .
1333.Pp
1334For portability, the starting address of the region specified by
1335.Fa handle
1336plus the offset should be a multiple of the size of data items being
1337written and the data array pointer should be properly aligned.
1338On some
1339systems, not obeying these requirements may cause incorrect data to be
1340written, on others it may cause a system crash.
1341.Pp
1342Write operations done by the
1343.Fn bus_space_set_multi_N
1344functions may be executed out of order with respect to other pending
1345read and write operations unless order is enforced by use of the
1346.Fn bus_space_barrier
1347function.
1348Because the
1349.Fn bus_space_set_multi_N
1350functions write the same bus space location multiple times, they
1351place an implicit write barrier between each successive write of that
1352bus space location.
1353.Pp
1354These functions will never fail.
1355If they would fail (e.g.\& because of an
1356argument error), that indicates a software bug which should cause a
1357panic.
1358In that case, they will never return.
1359.Sh COMPATIBILITY
1360The current
1361.Nx
1362version of the
1363.Nm
1364interface specification differs slightly from the original
1365specification that came into wide use and
1366.Fx
1367adopted.
1368A few of the function names and arguments have changed
1369for consistency and increased functionality.
1370.Sh SEE ALSO
1371.Xr bus_dma 9
1372.Sh HISTORY
1373The
1374.Nm
1375functions were introduced in a different form (memory and I/O spaces
1376were accessed via different sets of functions) in
1377.Nx 1.2 .
1378The functions were merged to work on generic
1379.Dq spaces
1380early in the
1381.Nx 1.3
1382development cycle, and many drivers were converted to use them.
1383This document was written later during the
1384.Nx 1.3
1385development cycle, and the specification was updated to fix some
1386consistency problems and to add some missing functionality.
1387.Pp
1388The manual page was then adopted to the version of the interface that
1389.Fx
1390imported for the CAM SCSI drivers, plus subsequent evolution.
1391The
1392.Fx
1393.Nm
1394version was imported in
1395.Fx 3.0 .
1396.Sh AUTHORS
1397.An -nosplit
1398The
1399.Nm
1400interfaces were designed and implemented by the
1401.Nx
1402developer
1403community.
1404Primary contributors and implementors were
1405.An Chris Demetriou ,
1406.An Jason Thorpe ,
1407and
1408.An Charles Hannum ,
1409but the rest of the
1410.Nx
1411developers and the user community played a significant role in development.
1412.Pp
1413.An Justin Gibbs
1414ported these interfaces to
1415.Fx .
1416.Pp
1417.An Chris Demetriou
1418wrote this manual page.
1419.Pp
1420.An Warner Losh
1421modified it for the
1422.Fx
1423implementation.
1424.Sh BUGS
1425This manual may not completely and accurately document the interface,
1426and many parts of the interface are unspecified.
1427