xref: /freebsd/share/man/man9/bhnd.9 (revision 97cb52fa9aefd90fad38790fded50905aeeb9b9e)
1.\" Copyright (c) 2015-2016 Landon Fuller <landonf@FreeBSD.org>
2.\" Copyright (c) 2017 The FreeBSD Foundation
3.\" All rights reserved.
4.\"
5.\" Portions of this documentation were written by Landon Fuller
6.\" under sponsorship from the FreeBSD Foundation.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\"    notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\"    notice, this list of conditions and the following disclaimer in the
15.\"    documentation and/or other materials provided with the distribution.
16.\"
17.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27.\" SUCH DAMAGE.
28.\"
29.\" $FreeBSD$
30.\"
31.Dd November 9, 2017
32.Dt BHND 9
33.Os
34.Sh NAME
35.Nm bhnd
36.Nd BHND driver programming interface
37.Sh SYNOPSIS
38.In dev/bhnd/bhnd.h
39.\"
40.Ss Bus Resource Functions
41.Ft int
42.Fo bhnd_activate_resource
43.Fa "device_t dev" "int type" "int rid" "struct bhnd_resource *r"
44.Fc
45.Ft "struct bhnd_resource *"
46.Fo bhnd_alloc_resource
47.Fa "device_t dev" "int type" "int *rid" "rman_res_t start" "rman_res_t end"
48.Fa "rman_res_t count" "u_int flags"
49.Fc
50.Ft "struct bhnd_resource *"
51.Fo bhnd_alloc_resource_any
52.Fa "device_t dev" "int type" "int *rid" "u_int flags"
53.Fc
54.Ft int
55.Fo bhnd_alloc_resources
56.Fa "device_t dev" "struct resource_spec *rs" "struct bhnd_resource **res"
57.Fc
58.Ft int
59.Fo bhnd_deactivate_resource
60.Fa "device_t dev" "int type" "int rid" "struct bhnd_resource *r"
61.Fc
62.Ft int
63.Fo bhnd_release_resource
64.Fa "device_t dev" "int type" "int rid" "struct bhnd_resource *r"
65.Fc
66.Ft void
67.Fo bhnd_release_resources
68.Fa "device_t dev" "const struct resource_spec *rs"
69.Fa "struct bhnd_resource **res"
70.Fc
71.\"
72.Ss "Bus Space Functions"
73.Ft void
74.Fo bhnd_bus_barrier
75.Fa "struct bhnd_resource *r" "bus_size_t offset"
76.Fa "bus_size_t length" "int flags"
77.Fc
78.Ft uint8_t
79.Fn bhnd_bus_read_1 "struct bhnd_resource *r" "bus_size_t offset"
80.Ft uint16_t
81.Fn bhnd_bus_read_2 "struct bhnd_resource *r" "bus_size_t offset"
82.Ft uint32_t
83.Fn bhnd_bus_read_4 "struct bhnd_resource *r" "bus_size_t offset"
84.Ft void
85.Fo bhnd_bus_read_multi_1
86.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t *datap"
87.Fa "bus_size_t count"
88.Fc
89.Ft void
90.Fo bhnd_bus_read_multi_2
91.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t *datap"
92.Fa "bus_size_t count"
93.Fc
94.Ft void
95.Fo bhnd_bus_read_multi_4
96.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t *datap"
97.Fa "bus_size_t count"
98.Fc
99.Ft void
100.Fo bhnd_bus_read_multi_stream_1
101.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t *datap"
102.Fa "bus_size_t count"
103.Fc
104.Ft void
105.Fo bhnd_bus_read_multi_stream_2
106.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t *datap"
107.Fa "bus_size_t count"
108.Fc
109.Ft void
110.Fo bhnd_bus_read_multi_stream_4
111.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t *datap"
112.Fa "bus_size_t count"
113.Fc
114.Ft void
115.Fo bhnd_bus_read_region_1
116.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t *datap"
117.Fa "bus_size_t count"
118.Fc
119.Ft void
120.Fo bhnd_bus_read_region_2
121.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t *datap"
122.Fa "bus_size_t count"
123.Fc
124.Ft void
125.Fo bhnd_bus_read_region_4
126.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t *datap"
127.Fa "bus_size_t count"
128.Fc
129.Ft void
130.Fo bhnd_bus_read_region_stream_1
131.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t *datap"
132.Fa "bus_size_t count"
133.Fc
134.Ft void
135.Fo bhnd_bus_read_region_stream_2
136.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t *datap"
137.Fa "bus_size_t count"
138.Fc
139.Ft void
140.Fo bhnd_bus_read_region_stream_4
141.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t *datap"
142.Fa "bus_size_t count"
143.Fc
144.Ft void
145.Fn bhnd_bus_read_stream_1 "struct bhnd_resource *r" "bus_size_t offset"
146.Ft void
147.Fn bhnd_bus_read_stream_2 "struct bhnd_resource *r" "bus_size_t offset"
148.Ft uint32_t
149.Fn bhnd_bus_read_stream_4 "struct bhnd_resource *r" "bus_size_t offset"
150.Ft void
151.Fo bhnd_bus_set_multi_1
152.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t value"
153.Fa "bus_size_t count"
154.Fc
155.Ft void
156.Fo bhnd_bus_set_multi_2
157.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t value"
158.Fa "bus_size_t count"
159.Fc
160.Ft void
161.Fo bhnd_bus_set_multi_4
162.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t value"
163.Fa "bus_size_t count"
164.Fc
165.Ft void
166.Fo bhnd_bus_set_region_1
167.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t value"
168.Fa "bus_size_t count"
169.Fc
170.Ft void
171.Fo bhnd_bus_set_region_2
172.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t value"
173.Fa "bus_size_t count"
174.Fc
175.Ft void
176.Fo bhnd_bus_set_region_4
177.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t value"
178.Fa "bus_size_t count"
179.Fc
180.Ft void
181.Fn bhnd_bus_write_1 "struct bhnd_resource *r" "uint8_t value"
182.Ft void
183.Fn bhnd_bus_write_2 "struct bhnd_resource *r" "uint16_t value"
184.Ft void
185.Fn bhnd_bus_write_4 "struct bhnd_resource *r" "uint32_t value"
186.Ft void
187.Fo bhnd_bus_write_multi_1
188.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t *datap"
189.Fa "bus_size_t count"
190.Fc
191.Ft void
192.Fo bhnd_bus_write_multi_2
193.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t *datap"
194.Fa "bus_size_t count"
195.Fc
196.Ft void
197.Fo bhnd_bus_write_multi_4
198.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t *datap"
199.Fa "bus_size_t count"
200.Fc
201.Ft void
202.Fo bhnd_bus_write_multi_stream_1
203.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t *datap"
204.Fa "bus_size_t count"
205.Fc
206.Ft void
207.Fo bhnd_bus_write_multi_stream_2
208.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t *datap"
209.Fa "bus_size_t count"
210.Fc
211.Ft void
212.Fo bhnd_bus_write_multi_stream_4
213.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t *datap"
214.Fa "bus_size_t count"
215.Fc
216.Ft void
217.Fo bhnd_bus_write_region_1
218.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t *datap"
219.Fa "bus_size_t count"
220.Fc
221.Ft void
222.Fo bhnd_bus_write_region_2
223.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t *datap"
224.Fa "bus_size_t count"
225.Fc
226.Ft void
227.Fo bhnd_bus_write_region_4
228.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t *datap"
229.Fa "bus_size_t count"
230.Fc
231.Ft void
232.Fo bhnd_bus_write_region_stream_1
233.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint8_t *datap"
234.Fa "bus_size_t count"
235.Fc
236.Ft void
237.Fo bhnd_bus_write_region_stream_2
238.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint16_t *datap"
239.Fa "bus_size_t count"
240.Fc
241.Ft void
242.Fo bhnd_bus_write_region_stream_4
243.Fa "struct bhnd_resource *r" "bus_size_t offset" "uint32_t *datap"
244.Fa "bus_size_t count"
245.Fc
246.Ft void
247.Fn bhnd_bus_write_stream_1 "struct bhnd_resource *r" "uint8_t value"
248.Ft void
249.Fn bhnd_bus_write_stream_2 "struct bhnd_resource *r" "uint16_t value"
250.Ft void
251.Fn bhnd_bus_write_stream_4 "struct bhnd_resource *r" "uint32_t value"
252.\"
253.Ss "Device Configuration Functions"
254.Ft int
255.Fn bhnd_read_ioctl "device_t dev" "uint16_t *ioctl"
256.Ft int
257.Fn bhnd_write_ioctl "device_t dev" "uint16_t value" "uint16_t mask"
258.Ft int
259.Fn bhnd_read_iost "device_t dev" "uint16_t *iost"
260.Ft uint32_t
261.Fo bhnd_read_config
262.Fa "device_t dev" "bus_size_t offset" "void *value" "u_int width"
263.Fc
264.Ft int
265.Fo bhnd_write_config
266.Fa "device_t dev" "bus_size_t offset" "const void *value" "u_int width"
267.Fc
268.Ft int
269.Fn bhnd_reset_hw "device_t dev" "uint16_t ioctl" "uint16_t reset_ioctl"
270.Ft int
271.Fn bhnd_suspend_hw "device_t dev" "uint16_t ioctl"
272.Ft bool
273.Fn bhnd_is_hw_suspended "device_t dev"
274.\"
275.Ss "Device Information Functions"
276.Ft bhnd_attach_type
277.Fo bhnd_get_attach_type
278.Fa "device_t dev"
279.Fc
280.Ft "const struct bhnd_chipid *"
281.Fo bhnd_get_chipid
282.Fa "device_t dev"
283.Fc
284.Ft bhnd_devclass_t
285.Fo bhnd_get_class
286.Fa "device_t dev"
287.Fc
288.Ft u_int
289.Fo bhnd_get_core_index
290.Fa "device_t dev"
291.Fc
292.Ft "struct bhnd_core_info"
293.Fo bhnd_get_core_info
294.Fa "device_t dev"
295.Fc
296.Ft int
297.Fo bhnd_get_core_unit
298.Fa "device_t dev"
299.Fc
300.Ft uint16_t
301.Fo bhnd_get_device
302.Fa "device_t dev"
303.Fc
304.Ft const char *
305.Fo bhnd_get_device_name
306.Fa "device_t dev"
307.Fc
308.Ft uint8_t
309.Fo bhnd_get_hwrev
310.Fa "device_t dev"
311.Fc
312.Ft uint16_t
313.Fo bhnd_get_vendor
314.Fa "device_t dev"
315.Fc
316.Ft const char *
317.Fo bhnd_get_vendor_name
318.Fa "device_t dev"
319.Fc
320.Ft int
321.Fo bhnd_read_board_info
322.Fa "device_t dev" "struct bhnd_board_info *info"
323.Fc
324.\"
325.Ss "Device Matching Functions"
326.Ft bool
327.Fo bhnd_board_matches
328.Fa "const struct bhnd_board_info *board" "const struct bhnd_board_match *desc"
329.Fc
330.Ft device_t
331.Fo bhnd_bus_match_child
332.Fa "device_t bus" "const struct bhnd_core_match *desc"
333.Fc
334.Ft bool
335.Fo bhnd_chip_matches
336.Fa "const struct bhnd_chipid *chip" "const struct bhnd_chip_match *desc"
337.Fc
338.Ft "struct bhnd_core_match"
339.Fo bhnd_core_get_match_desc
340.Fa "const struct bhnd_core_info *core"
341.Fc
342.Ft bool
343.Fo bhnd_core_matches
344.Fa "const struct bhnd_core_info *core" "const struct bhnd_core_match *desc"
345.Fc
346.Ft bool
347.Fo bhnd_cores_equal
348.Fa "const struct bhnd_core_info *lhs" "const struct bhnd_core_info *rhs"
349.Fc
350.Ft bool
351.Fo bhnd_hwrev_matches
352.Fa "uint16_t hwrev" "const struct bhnd_hwrev_match *desc"
353.Fc
354.Ft "const struct bhnd_core_info *"
355.Fo bhnd_match_core
356.Fa "const struct bhnd_core_info *cores" "u_int num_cores"
357.Fa "const struct bhnd_core_match *desc"
358.Fc
359.\"
360.Ss "Device Table Functions"
361.Ft "const struct bhnd_device *"
362.Fo bhnd_device_lookup
363.Fa "device_t dev" "const struct bhnd_device *table" "size_t entry_size"
364.Fc
365.Ft bool
366.Fo bhnd_device_matches
367.Fa "device_t dev" "const struct bhnd_device_match *desc"
368.Fc
369.Ft uint32_t
370.Fo bhnd_device_quirks
371.Fa "device_t dev" "const struct bhnd_device *table" "size_t entry_size"
372.Fc
373.Fo BHND_BOARD_QUIRK
374.Fa "board" "flags"
375.Fc
376.Fo BHND_CHIP_QUIRK
377.Fa "chip" "hwrev" "flags"
378.Fc
379.Fo BHND_CORE_QUIRK
380.Fa "hwrev" "flags"
381.Fc
382.Fo BHND_DEVICE
383.Fa "vendor" "device" "desc" "quirks" "..."
384.Fc
385.Fo BHND_DEVICE_IS_END
386.Fa "struct bhnd_device *d"
387.Fc
388.Fo BHND_DEVICE_QUIRK_IS_END
389.Fa "struct bhnd_device_quirk *q"
390.Fc
391.Fo BHND_PKG_QUIRK
392.Fa "chip" "pkg" "flags"
393.Fc
394.Bd -literal
395struct bhnd_device_quirk {
396	struct bhnd_device_match	desc;
397	uint32_t			quirks;
398};
399.Ed
400.Bd -literal
401struct bhnd_device {
402    const struct bhnd_device_match	 core;
403    const char				*desc;
404    const struct bhnd_device_quirk	*quirks_table;
405    uint32_t				 device_flags;
406};
407.Ed
408.Bd -literal
409enum {
410	BHND_DF_ANY	= 0,
411	BHND_DF_HOSTB	= (1 << 0),
412	BHND_DF_SOC	= (1 << 1),
413	BHND_DF_ADAPTER	= (1 << 2)
414};
415.Ed
416.Bd -literal
417#define BHND_DEVICE_END { { BHND_MATCH_ANY }, NULL, NULL, 0 }
418.Ed
419.Bd -literal
420#define BHND_DEVICE_QUIRK_END { { BHND_MATCH_ANY }, 0 }
421.Ed
422.\"
423.Ss "DMA Address Translation Functions"
424.Ft int
425.Fo bhnd_get_dma_translation
426.Fa "device_t dev" "u_int width" "uint32_t flags" "bus_dma_tag_t *dmat"
427.Fa "struct bhnd_dma_translation *translation"
428.Fc
429.Bd -literal
430struct bhnd_dma_translation {
431	bhnd_addr_t	base_addr;
432	bhnd_addr_t	addr_mask;
433	bhnd_addr_t	addrext_mask;
434	uint32_t	flags;
435};
436.Ed
437.Bd -literal
438typedef enum {
439	BHND_DMA_ADDR_30BIT	= 30,
440	BHND_DMA_ADDR_32BIT	= 32,
441	BHND_DMA_ADDR_64BIT	= 64
442} bhnd_dma_addrwidth;
443.Ed
444.Bd -literal
445enum bhnd_dma_translation_flags {
446	BHND_DMA_TRANSLATION_PHYSMAP		= (1<<0),
447	BHND_DMA_TRANSLATION_BYTESWAPPED	= (1<<1)
448};
449.Ed
450.\"
451.Ss "Interrupt Functions"
452.Ft u_int
453.Fo bhnd_get_intr_count
454.Fa "device_t dev"
455.Fc
456.Ft int
457.Fo bhnd_get_intr_ivec
458.Fa "device_t dev" "u_int intr" "u_int *ivec"
459.Fc
460.Ft int
461.Fo bhnd_map_intr
462.Fa "device_t dev" "u_int intr" "rman_res_t *irq"
463.Fc
464.Ft void
465.Fo bhnd_unmap_intr
466.Fa "device_t dev" "rman_res_t irq"
467.Fc
468.\"
469.Ss "NVRAM Functions"
470.Ft int
471.Fo bhnd_nvram_getvar
472.Fa "device_t dev" "const char *name" "void *buf" "size_t *len"
473.Fa "bhnd_nvram_type type"
474.Fc
475.Ft int
476.Fo bhnd_nvram_getvar_array
477.Fa "device_t dev" "const char *name" "void *buf" "size_t size"
478.Fa "bhnd_nvram_type type"
479.Fc
480.Ft int
481.Fo bhnd_nvram_getvar_int
482.Fa "device_t dev" "const char *name" "void *value" "int width"
483.Fc
484.Ft int
485.Fn bhnd_nvram_getvar_int8 "device_t dev" "const char *name" "int8_t *value"
486.Ft int
487.Fn bhnd_nvram_getvar_int16 "device_t dev" "const char *name" "int16_t *value"
488.Ft int
489.Fn bhnd_nvram_getvar_int32 "device_t dev" "const char *name" "int32_t *value"
490.Ft int
491.Fo bhnd_nvram_getvar_uint
492.Fa "device_t dev" "const char *name" "void *value" "int width"
493.Fc
494.Ft int
495.Fo bhnd_nvram_getvar_uint8
496.Fa "device_t dev" "const char *name" "uint8_t *value"
497.Fc
498.Ft int
499.Fo bhnd_nvram_getvar_uint16
500.Fa "device_t dev" "const char *name" "uint16_t *value"
501.Fc
502.Ft int
503.Fo bhnd_nvram_getvar_uint32
504.Fa "device_t dev" "const char *name" "uint32_t *value"
505.Fc
506.Ft int
507.Fo bhnd_nvram_getvar_str
508.Fa "device_t dev" "const char *name" "char *buf" "size_t len" "size_t *rlen"
509.Fc
510.Ft "const char *"
511.Fo bhnd_nvram_string_array_next
512.Fa "const char *inp" "size_t ilen" "const char *prev" "size_t *olen"
513.Fc
514.Bd -literal
515typedef enum {
516	BHND_NVRAM_TYPE_UINT8		= 0,
517	BHND_NVRAM_TYPE_UINT16		= 1,
518	BHND_NVRAM_TYPE_UINT32		= 2,
519	BHND_NVRAM_TYPE_UINT64		= 3,
520	BHND_NVRAM_TYPE_INT8		= 4,
521	BHND_NVRAM_TYPE_INT16		= 5,
522	BHND_NVRAM_TYPE_INT32		= 6,
523	BHND_NVRAM_TYPE_INT64		= 7,
524	BHND_NVRAM_TYPE_CHAR		= 8,
525	BHND_NVRAM_TYPE_STRING		= 9,
526	BHND_NVRAM_TYPE_BOOL		= 10,
527	BHND_NVRAM_TYPE_NULL		= 11,
528	BHND_NVRAM_TYPE_DATA		= 12
529	BHND_NVRAM_TYPE_UINT8_ARRAY	= 16,
530	BHND_NVRAM_TYPE_UINT16_ARRAY	= 17,
531	BHND_NVRAM_TYPE_UINT32_ARRAY	= 18,
532	BHND_NVRAM_TYPE_UINT64_ARRAY	= 19,
533	BHND_NVRAM_TYPE_INT8_ARRAY	= 20,
534	BHND_NVRAM_TYPE_INT16_ARRAY	= 21,
535	BHND_NVRAM_TYPE_INT32_ARRAY	= 22,
536	BHND_NVRAM_TYPE_INT64_ARRAY	= 23,
537	BHND_NVRAM_TYPE_CHAR_ARRAY	= 24,
538	BHND_NVRAM_TYPE_STRING_ARRAY	= 25,
539	BHND_NVRAM_TYPE_BOOL_ARRAY	= 26
540} bhnd_nvram_type;
541.Ed
542.\"
543.Ss "Port/Region Functions"
544.Ft int
545.Fo bhnd_decode_port_rid
546.Fa "device_t dev" "int type" "int rid" "bhnd_port_type *port_type"
547.Fa "u_int *port" "u_int *region"
548.Fc
549.Ft u_int
550.Fo bhnd_get_port_count
551.Fa "device_t dev" "bhnd_port_type type"
552.Fc
553.Ft int
554.Fo bhnd_get_port_rid
555.Fa "device_t dev" "bhnd_port_type type" "u_int port" "u_int region"
556.Fc
557.Ft int
558.Fo bhnd_get_region_addr
559.Fa "device_t dev" "bhnd_port_type port_type" "u_int port" "u_int region"
560.Fa "bhnd_addr_t *region_addr" "bhnd_size_t *region_size"
561.Fc
562.Ft u_int
563.Fo bhnd_get_region_count
564.Fa "device_t dev" "bhnd_port_type type" "u_int port"
565.Fc
566.Ft bool
567.Fo bhnd_is_region_valid
568.Fa "device_t dev" "bhnd_port_type type" "u_int port" "u_int region"
569.Fc
570.Bd -literal
571typedef enum {
572	BHND_PORT_DEVICE	= 0,
573	BHND_PORT_BRIDGE	= 1,
574	BHND_PORT_AGENT		= 2
575} bhnd_port_type;
576.Ed
577.\"
578.Ss "Power Management Functions"
579.Ft int
580.Fo bhnd_alloc_pmu
581.Fa "device_t dev"
582.Fc
583.Ft int
584.Fo bhnd_release_pmu
585.Fa "device_t dev"
586.Fc
587.Ft int
588.Fo bhnd_enable_clocks
589.Fa "device_t dev" "uint32_t clocks"
590.Fc
591.Ft int
592.Fo bhnd_request_clock
593.Fa "device_t dev" "bhnd_clock clock"
594.Fc
595.Ft int
596.Fo bhnd_get_clock_freq
597.Fa "device_t dev" "bhnd_clock clock" "u_int *freq"
598.Fc
599.Ft int
600.Fo bhnd_get_clock_latency
601.Fa "device_t dev" "bhnd_clock clock" "u_int *latency"
602.Fc
603.Ft int
604.Fo bhnd_request_ext_rsrc
605.Fa "device_t dev" "u_int rsrc"
606.Fc
607.Ft int
608.Fo bhnd_release_ext_rsrc
609.Fa "device_t dev" "u_int rsrc"
610.Fc
611.Bd -literal
612typedef enum {
613	BHND_CLOCK_DYN	= (1 << 0),
614	BHND_CLOCK_ILP	= (1 << 1),
615	BHND_CLOCK_ALP	= (1 << 2),
616	BHND_CLOCK_HT	= (1 << 3)
617} bhnd_clock;
618.Ed
619.\"
620.Ss "Service Provider Functions"
621.Ft int
622.Fo bhnd_register_provider
623.Fa "device_t dev" "bhnd_service_t service"
624.Fc
625.Ft int
626.Fo bhnd_deregister_provider
627.Fa "device_t dev" "bhnd_service_t service"
628.Fc
629.Ft device_t
630.Fo bhnd_retain_provider
631.Fa "device_t dev" "bhnd_service_t service"
632.Fc
633.Ft void
634.Fo bhnd_release_provider
635.Fa "device_t dev" "device_t provider" "bhnd_service_t service"
636.Fc
637.Bd -literal
638typedef enum {
639	BHND_SERVICE_CHIPC,
640	BHND_SERVICE_PWRCTL,
641	BHND_SERVICE_PMU,
642	BHND_SERVICE_NVRAM,
643	BHND_SERVICE_GPIO,
644	BHND_SERVICE_ANY	= 1000
645} bhnd_service_t;
646.Ed
647.\"
648.Ss "Utility Functions"
649.Ft "bhnd_erom_class_t *"
650.Fo bhnd_driver_get_erom_class
651.Fa "driver_t *driver"
652.Fc
653.Ft bhnd_devclass_t
654.Fo bhnd_find_core_class
655.Fa "uint16_t vendor" "uint16_t device"
656.Fc
657.Ft "const char *"
658.Fo bhnd_find_core_name
659.Fa "uint16_t vendor" "uint16_t device"
660.Fc
661.Ft bhnd_devclass_t
662.Fo bhnd_core_class
663.Fa "const struct bhnd_core_info *ci"
664.Fc
665.Ft "const char *"
666.Fo bhnd_core_name
667.Fa "const struct bhnd_core_info *ci"
668.Fc
669.Ft int
670.Fo bhnd_format_chip_id
671.Fa "char *buffer" "size_t size" "uint16_t chip_id"
672.Fc
673.Ft void
674.Fo bhnd_set_custom_core_desc
675.Fa "device_t dev" "const char *dev_name"
676.Fc
677.Ft void
678.Fo bhnd_set_default_core_desc
679.Fa "device_t dev"
680.Fc
681.Ft "const char *"
682.Fo bhnd_vendor_name
683.Fa "uint16_t vendor"
684.Fc
685.Bd -literal
686#define	BHND_CHIPID_MAX_NAMELEN	32
687.Ed
688.\"
689.Sh DESCRIPTION
690.Nm
691provides a unified bus and driver programming interface for the
692on-chip interconnects and IP cores found in Broadcom Home Networking Division
693(BHND) devices.
694.Pp
695The BHND device family consists of MIPS/ARM SoCs (System On a Chip) and
696host-connected chipsets based on a common library of Broadcom IP cores,
697connected via one of two on-chip backplane (hardware bus) architectures.
698.Pp
699Hardware designed prior to 2009 used Broadcom's
700.Dq SSB
701backplane architecture, based on Sonics Silicon's interconnect IP.
702Each core on the Sonics backplane vends a 4 KiB register block, containing both
703device-specific CSRs, and SSB-specific per-core device management
704(enable/reset/etc) registers.
705.Pp
706Subsequent hardware is based on Broadcom's
707.Dq BCMA
708backplane, based on ARM's AMBA IP.
709The IP cores used in earlier SSB-based devices were adapted for compatibility
710with the new backplane, with additional
711.Dq wrapper
712cores providing per-core device management functions in place of the SSB
713per-core management registers.
714.Pp
715When BHND hardware is used as a host-connected peripheral (e.g., in a PCI Wi-Fi
716card), the on-chip peripheral controller core is configured to operate as
717an endpoint device, bridging access to the SoC hardware:
718.Pp
719.Bl -dash -offset indent
720.It
721Host access to SoC address space is provided via a set of register windows
722(e.g., a set of configurable windows into SoC address space mapped via PCI BARs)
723.It
724DMA is supported by the bridge core's sparse mapping of host address space into
725the backplane address space.
726These address regions may be used as a target for the on-chip DMA engine.
727.It
728Any backplane interrupt vectors routed to the bridge core may be mapped by the
729bridge to host interrupts (e.g., PCI INTx/MSI/MSI-X).
730.El
731.Pp
732The
733.Nm
734driver programming interface \(em and
735.Xr bhndb 4
736host bridge drivers \(em support the implementation of common drivers for
737Broadcom IP cores, whether attached via a BHND host bridge, or via the native
738SoC backplane.
739.\"
740.Ss "Bus Resource Functions"
741The bhnd_resource functions are wrappers for the standard
742.Vt "struct resource"
743bus APIs, providing support for
744.Vt SYS_RES_MEMORY
745resources that, on
746.Xr bhndb 4
747bridged chipsets, may require on-demand remapping of address windows
748prior to accessing bus memory.
749.Pp
750These functions are primarily used in the implementation of BHND platform device
751drivers that, on host-connected peripherals, must share a small set of register
752windows during initial setup and teardown.
753.Pp
754BHND peripherals are designed to not require register window remapping
755during normal operation, and most drivers may safely use the standard
756.Vt struct resource
757APIs directly.
758.Pp
759The
760.Fn bhnd_activate_resource
761function activates a previously allocated resource.
762.Pp
763The arguments are as follows:
764.Bl -tag -width indent
765.It Fa dev
766The device holding ownership of the allocated resource.
767.It Fa type
768The type of the resource.
769.It Fa rid
770The bus-specific handle that identifies the resource being activated.
771.It Fa r
772A pointer to the resource returned by
773.Fn bhnd_alloc_resource .
774.El
775.Pp
776The
777.Fn bhnd_alloc_resource
778function allocates a resource from a device's parent
779.Xr bhnd 4
780bus.
781.Pp
782The arguments are as follows:
783.Bl -tag -width indent
784.It Fa dev
785The device requesting resource ownership.
786.It Fa type
787The type of resource to allocate.
788This may be any type supported by the standard
789.Xr bus_alloc_resource 9
790function.
791.It Fa rid
792The bus-specific handle identifying the resource being allocated.
793.It Fa start
794The start address of the resource.
795.It Fa end
796The end address of the resource.
797.It Fa count
798The size of the resource.
799.It Fa flags
800The flags for the resource to be allocated.
801These may be any values supported by the standard
802.Xr bus_alloc_resource 9
803function.
804.El
805.Pp
806To request that the bus supply the resource's default
807.Fa start ,
808.Fa end ,
809and
810.Fa count
811values, pass
812.Fa start
813and
814.Fa end
815values of 0ul and ~0ul respectively, and a
816.Fa count
817of 1.
818.Pp
819The
820.Fn bhnd_alloc_resource_any
821function is a convenience wrapper for
822.Fn bhnd_alloc_resource ,
823using the resource's default
824.Fa start ,
825.Fa end ,
826and
827.Fa count
828values.
829.Pp
830The arguments are as follows:
831.Bl -tag -width indent
832.It Fa dev
833The device requesting resource ownership.
834.It Fa type
835The type of resource to allocate.
836This may be any type supported by the standard
837.Xr bus_alloc_resource 9
838function.
839.It Fa rid
840The bus-specific handle identifying the resource being allocated.
841.It Fa flags
842The flags for the resource to be allocated.
843These may be any values supported by the standard
844.Xr bus_alloc_resource 9
845function.
846.El
847.Pp
848The
849.Fn bhnd_alloc_resources
850function allocates resources defined in resource specification from a device's
851parent
852.Xr bhnd 4
853bus.
854.Pp
855The arguments are as follows:
856.Bl -tag -width indent
857.It Fa dev
858The device requesting ownership of the resources.
859.It Fa rs
860A standard bus resource specification. If all requested resources, are
861successfully allocated, this will be updated with the allocated resource
862identifiers.
863.It Fa res
864If all requested resources are successfully allocated, this will be populated
865with the allocated
866.Vt "struct bhnd_resource"
867instances.
868.El
869.Pp
870The
871.Fn bhnd_deactivate_resource
872function deactivates a resource previously activated by.
873.Fn bhnd_activate_resource .
874The arguments are as follows:
875.Bl -tag -width indent
876.It Fa dev
877The device holding ownership of the activated resource.
878.It Fa type
879The type of the resource.
880.It Fa rid
881The bus-specific handle identifying the resource.
882.It Fa r
883A pointer to the resource returned by bhnd_alloc_resource.
884.El
885.Pp
886The
887.Fn bhnd_release_resource
888function frees a resource previously returned by
889.Fn bhnd_alloc_resource .
890The arguments are as follows:
891.Bl -tag -width indent
892.It Fa dev
893The device holding ownership of the resource.
894.It Fa type
895The type of the resource.
896.It Fa rid
897The bus-specific handle identifying the resource.
898.It Fa r
899A pointer to the resource returned by bhnd_alloc_resource.
900.El
901.Pp
902The
903.Fn bhnd_release_resources
904function frees resources previously returned by
905.Fn bhnd_alloc_resources .
906The arguments are as follows:
907.Bl -tag -width indent
908.It Fa dev
909The device that owns the resources.
910.It Fa rs
911A standard bus resource specification previously initialized by
912.Fn bhnd_alloc_resources .
913.It Fa res
914The resources to be released.
915.El
916.Pp
917The
918.Vt bhnd_resource
919structure contains the following fields:
920.Bl -tag -width "direct"
921.It Fa res
922A pointer to the bus
923.Vt struct resource .
924.It Fa direct
925If true, the resource requires bus window remapping before it is MMIO
926accessible.
927.El
928.Pp
929.\"
930.Ss "Bus Space Functions"
931The bhnd_bus_space functions wrap their equivalent
932.Xr bus_space 9
933counterparts, and provide support for accessing bus memory via
934.Vt "struct bhnd_resource".
935.Pp
936.Bl -ohang -offset indent -compact
937.It Fn bhnd_bus_barrier
938.It Fn bhnd_bus_[read|write]_[1|2|4]
939.It Fn bhnd_bus_[read_multi|write_multi]_[1|2|4]
940.It Fn bhnd_bus_[read_multi_stream|write_multi_stream]_[1|2|4]
941.It Fn bhnd_bus_[read_region|write_region]_[1|2|4]
942.It Fn bhnd_bus_[read_region_stream|write_region_stream]_[1|2|4]
943.It Fn bhnd_bus_[read_stream|write_stream]_[1|2|4]
944.It Fn bhnd_bus_[set_multi|set_stream]_[1|2|4]
945.El
946.Pp
947Drivers that do not rely on
948.Vt "struct bhnd_resource"
949should use the standard
950.Vt struct resource
951and
952.Xr bus_space 9
953APIs directly.
954.\"
955.Ss "Device Configuration Functions"
956The
957.Fn bhnd_read_ioctl
958function is used to read the I/O control register value of device
959.Fa dev ,
960returning the current value in
961.Fa ioctl .
962.Pp
963The
964.Fn bhnd_write_ioctl
965function is used to modify the I/O control register of
966.Fa dev .
967The new value of the register is computed by updating any bits set in
968.Fa mask
969to
970.Fa value .
971The following I/O control flags are supported:
972.Bl -tag -width ".Dv BHND_IOCTL_CLK_FORCE" -offset indent
973.It Dv BHND_IOCTL_BIST
974Initiate a built-in self-test (BIST).
975Must be cleared after BIST results are read via the IOST (I/O Status) register.
976.It Dv BHND_IOCTL_PME
977Enable posting of power management events by the core.
978.It Dv BHND_IOCTL_CLK_FORCE
979Force disable of clock gating, resulting in all clocks being distributed within
980the core.
981Should be set when asserting/deasserting reset to ensure the reset signal fully
982propagates to the entire core.
983.It Dv BHND_IOCTL_CLK_EN
984If cleared, the core clock will be disabled.
985Should be set during normal operation, and cleared when the core is held in
986reset.
987.It Dv BHND_IOCTL_CFLAGS
988The mask of IOCTL bits reserved for additional core-specific I/O control flags.
989.El
990.Pp
991The
992.Fn bhnd_read_iost
993function is used to read the I/O status register of device
994.Fa dev ,
995returning the current value in
996.Fa iost .
997The following I/O status flags are supported:
998.Bl -tag -width ".Dv BHND_IOST_BIST_DONE" -offset indent
999.It Dv BHND_IOST_BIST_DONE
1000Set upon BIST completion.
1001Will be cleared when the
1002.Dv BHND_IOCTL_BIST
1003flag of the I/O control register is cleared using
1004.Fn bhnd_write_ioctl .
1005.It Dv BHND_IOST_BIST_FAIL
1006Set upon detection of a BIST error; the value is unspecified if BIST has not
1007completed and
1008.Dv BHND_IOST_BIST_DONE
1009is not also set.
1010.It Dv BHND_IOST_CLK
1011Set if the core has required that clocked be ungated, or cleared otherwise.
1012The value is undefined if a core does not support clock gating.
1013.It Dv BHND_IOST_DMA64
1014Set if this core supports 64-bit DMA.
1015.It Dv BHND_IOST_CFLAGS
1016The mask of IOST bits reserved for additional core-specific I/O status flags.
1017.El
1018.Pp
1019The
1020.Fn bhnd_read_config
1021function is used to read a data item of
1022.Fa width
1023bytes at
1024.Fa offset
1025from the backplane-specific agent/config space of the device
1026.Fa dev .
1027.Pp
1028The
1029.Fn bhnd_write_config
1030function is used to write a data item of
1031.Fa width
1032bytes with
1033.Fa value
1034at
1035.Fa offset
1036from the backplane-specific agent/config space of the device
1037.Fa dev .
1038The requested
1039.Fa width
1040must be one of 1, 2, or 4 bytes.
1041.Pp
1042The agent/config space accessible via
1043.Fn bhnd_read_config
1044and
1045.Fn bhnd_write_config
1046is backplane-specific, and these functions should only be used for functionality
1047that is not available via another
1048.Nm
1049function.
1050.Pp
1051The
1052.Fn bhnd_suspend_hw
1053function transitions the device
1054.Fa dev
1055to a low power
1056.Dq RESET
1057state, writing
1058.Fa ioctl
1059to the I/O control flags of
1060.Fa dev .
1061The hardware may be brought out of this state using
1062.Fn bhnd_reset_hw .
1063.Pp
1064The
1065.Fn bhnd_reset_hw
1066function first transitions the device
1067.Fa dev
1068to a low power RESET state, writing
1069.Fa ioctl_reset
1070to the I/O control flags
1071of
1072.Fa dev ,
1073and then brings the device out of RESET, writing
1074.Fa ioctl
1075to the device's I/O control flags.
1076.Pp
1077The
1078.Fn bhnd_is_hw_suspended
1079function returns
1080.Dv true
1081if the device
1082.Fa dev
1083is currently held in a RESET state, or is otherwise not clocked.
1084Otherwise, it returns
1085.Dv false .
1086.Pp
1087Any outstanding per-device PMU requests made using
1088.Fn bhnd_enable_clocks ,
1089.Fn bhnd_request_clock ,
1090or
1091.Fn bhnd_request_ext_rsrc
1092will be released automatically upon placing a device into a RESET state.
1093.Ss "Device Information Functions"
1094The
1095.Fn bhnd_get_attach_type
1096function returns the attachment type of the parent
1097.Xr bhnd 4
1098bus of device
1099.Fa dev .
1100.Pp
1101The following attachment types are supported:
1102.Bl -hang -width ".Dv BHND_ATTACH_ADAPTER" -offset indent
1103.It Dv BHND_ATTACH_ADAPTER
1104The bus is resident on a bridged adapter, such as a PCI Wi-Fi device.
1105.It Dv BHND_ATTACH_NATIVE
1106The bus is resident on the native host, such as the primary or secondary bus of
1107an embedded SoC.
1108.El
1109.Pp
1110The
1111.Fn bhnd_get_chipid
1112function returns chip information from the parent
1113.Xr bhnd 4
1114bus of device
1115.Fa dev .
1116The returned
1117.Vt bhnd_chipid
1118struct contains the following fields:
1119.Pp
1120.Bl -tag -width "enum_addr" -offset indent
1121.It Fa chip_id
1122The chip identifier.
1123.It Fa chip_rev
1124The chip's hardware revision.
1125.It Fa chip_pkg
1126The chip's semiconductor package identifier.
1127.Pp
1128Several different physical semiconductor package variants may exist for a given
1129chip, each of which may require driver workarounds for hardware errata,
1130unpopulated components, etc.
1131.It Fa chip_type
1132The interconnect architecture used by this chip.
1133.It Fa enum_addr
1134The backplane enumeration address.
1135On SSB devices, this will be the base address of the first SSB core.
1136On BCMA devices, this will be the address of the enumeration ROM (EROM) core.
1137.It Fa ncores
1138The number of cores on the chip backplane, or 0 if unknown.
1139.El
1140.Pp
1141The following constants are defined for known
1142.Fa chip_type
1143values:
1144.Bl -tag -width ".Dv BHND_CHIPTYPE_BCMA_ALT" -offset indent -compact
1145.It Dv BHND_CHIPTYPE_SIBA
1146SSB interconnect.
1147.It Dv BHND_CHIPTYPE_BCMA
1148BCMA interconnect.
1149.It Dv BHND_CHIPTYPE_BCMA_ALT
1150BCMA-compatible variant found in Broadcom Northstar ARM SoCs.
1151.It Dv BHND_CHIPTYPE_UBUS
1152UBUS interconnect.
1153This BCMA-derived interconnect is found in Broadcom BCM33xx DOCSIS SoCs, and
1154BCM63xx xDSL SoCs.
1155UBUS is not currently supported by
1156.Xr bhnd 4 .
1157.El
1158.Pp
1159Additional symbolic constants for known
1160.Fa chip_id ,
1161.Fa chip_pkg ,
1162and
1163.Fa chip_type
1164values are defined in
1165.In dev/bhnd/bhnd_ids.h .
1166.Pp
1167The
1168.Fn bhnd_get_class
1169function returns the BHND class of device
1170.Fa dev ,
1171if the device's
1172.Em vendor
1173and
1174.Em device
1175identifiers are recognized.
1176Otherwise, returns
1177.Dv BHND_DEVCLASS_OTHER .
1178.Pp
1179One of the following device classes will be returned:
1180.Pp
1181.Bl -tag -width ".Dv BHND_DEVCLASS_SOC_ROUTER"  -offset indent -compact
1182.It Dv BHND_DEVCLASS_CC
1183ChipCommon I/O Controller
1184.It Dv BHND_DEVCLASS_CC_B
1185ChipCommon Auxiliary Controller
1186.It Dv BHND_DEVCLASS_PMU
1187PMU Controller
1188.It Dv BHND_DEVCLASS_PCI
1189PCI Host/Device Bridge
1190.It Dv BHND_DEVCLASS_PCIE
1191PCIe Host/Device Bridge
1192.It Dv BHND_DEVCLASS_PCCARD
1193PCMCIA Host/Device Bridge
1194.It Dv BHND_DEVCLASS_RAM
1195Internal RAM/SRAM
1196.It Dv BHND_DEVCLASS_MEMC
1197Memory Controller
1198.It Dv BHND_DEVCLASS_ENET
1199IEEE 802.3 MAC/PHY
1200.It Dv BHND_DEVCLASS_ENET_MAC
1201IEEE 802.3 MAC
1202.It Dv BHND_DEVCLASS_ENET_PHY
1203IEEE 802.3 PHY
1204.It Dv BHND_DEVCLASS_WLAN
1205IEEE 802.11 MAC/PHY/Radio
1206.It Dv BHND_DEVCLASS_WLAN_MAC
1207IEEE 802.11 MAC
1208.It Dv BHND_DEVCLASS_WLAN_PHY
1209IEEE 802.11 PHY
1210.It Dv BHND_DEVCLASS_CPU
1211CPU Core
1212.It Dv BHND_DEVCLASS_SOC_ROUTER
1213Interconnect Router
1214.It Dv BHND_DEVCLASS_SOC_BRIDGE
1215Interconnect Host Bridge
1216.It Dv BHND_DEVCLASS_EROM
1217Device Enumeration ROM
1218.It Dv BHND_DEVCLASS_NVRAM
1219NVRAM/Flash Controller
1220.It Dv BHND_DEVCLASS_USB_HOST
1221USB Host Controller
1222.It Dv BHND_DEVCLASS_USB_DEV
1223USB Device Controller
1224.It Dv BHND_DEVCLASS_USB_DUAL
1225USB Host/Device Controller
1226.It Dv BHND_DEVCLASS_OTHER
1227Other / Unknown
1228.It Dv BHND_DEVCLASS_INVALID
1229Invalid Class
1230.El
1231.Pp
1232The
1233.Fn bhnd_get_core_info
1234function returns the core information for device
1235.Fa dev .
1236The returned
1237.Vt bhnd_core_info
1238structure contains the following fields:
1239.Pp
1240.Bl -tag -width "core_idx" -offset indent -compact
1241.It Fa vendor
1242Vendor identifier (JEP-106, ARM 4-bit continuation encoded)
1243.It Fa device
1244Device identifier
1245.It Fa hwrev
1246Hardware revision
1247.It Fa core_idx
1248Core index
1249.It Fa unit
1250Core unit
1251.El
1252.Pp
1253Symbolic constants for common vendor and device identifiers are defined in
1254.In dev/bhnd/bhnd_ids.h .
1255Common vendor identifiers include:
1256.Pp
1257.Bl -tag -width ".Dv BHND_MFGID_MIPS" -offset indent -compact
1258.It Dv BHND_MFGID_ARM
1259ARM
1260.It Dv BHND_MFGID_BCM
1261Broadcom
1262.It Dv BHND_MFGID_MIPS
1263MIPS
1264.El
1265.Pp
1266The
1267.Fn bhnd_get_core_index ,
1268.Fn bhnd_get_core_unit ,
1269.Fn bhnd_get_device ,
1270.Fn bhnd_get_hwrev ,
1271and
1272.Fn bhnd_get_vendor
1273functions are convenience wrappers for
1274.Fn bhnd_get_core_info ,
1275returning, respect the
1276.Fa core_idx ,
1277.Fa core_unit ,
1278.Fa device ,
1279.Fa hwrev ,
1280or
1281.Fa vendor
1282field from the
1283.Vt bhnd_core_info
1284structure.
1285.Pp
1286The
1287.Fn bhnd_get_device_name
1288function returns a human readable name for device
1289.Fa dev .
1290.Pp
1291The
1292.Fn bhnd_get_vendor_name
1293function returns a human readable name for the vendor of device
1294.Fa dev .
1295.Pp
1296The
1297.Fn bhnd_read_board_info
1298function attempts to read the board information for device
1299.Fa dev .
1300The board information will be returned in the location pointed to by
1301.Fa info
1302on success.
1303.Pp
1304The
1305.Vt bhnd_board_info
1306structure contains the following fields:
1307.Pp
1308.Bl -tag -width "board_srom_rev" -offset indent
1309.It Fa board_vendor
1310Vendor ID of the board manufacturer (PCI-SIG assigned).
1311.It Fa board_type
1312Device ID.
1313This is generally a Broadcom-assigned globally unique identifier.
1314.It Fa board_rev
1315Board revision.
1316.It Fa board_srom_rev
1317Board SROM format revision.
1318.It Fa board_flags
1319Board flags (1)
1320.It Fa board_flags2
1321Board flags (2)
1322.It Fa board_flags3
1323Board flags (3)
1324.El
1325.Pp
1326On PCI devices, the
1327.Fa board_vendor
1328and
1329.Fa board_type
1330fields default to the PCI Subsystem Vendor ID and PCI Subsystem ID, unless
1331overridden in device NVRAM.
1332.Pp
1333Symbolic constants for common board flags are defined in
1334.In dev/bhnd/bhnd_ids.h .
1335.Pp
1336.Ss "Device Matching Functions"
1337The bhnd device matching functions are used to match against core, chip, and
1338board-level device attributes.
1339Match requirements are specified using the
1340.Vt "struct bhnd_board_match" ,
1341.Vt "struct bhnd_chip_match" ,
1342.Vt "struct bhnd_core_match" ,
1343.Vt "struct bhnd_device_match" ,
1344and
1345.Vt "struct bhnd_hwrev_match"
1346match descriptor structures.
1347.Pp
1348The
1349.Fn bhnd_board_matches
1350function returns
1351.Dv true
1352if
1353.Fa board
1354matches the board match descriptor
1355.Fa desc .
1356Otherwise, it returns
1357.Dv false .
1358.Pp
1359The
1360.Fn bhnd_chip_matches
1361function returns
1362.Dv true
1363if
1364.Fa chip
1365matches the chip match descriptor
1366.Fa desc .
1367Otherwise, it returns
1368.Dv false .
1369.Pp
1370The
1371.Fn bhnd_core_matches
1372function returns
1373.Dv true
1374if
1375.Fa core
1376matches the core match descriptor
1377.Fa desc .
1378Otherwise, it returns
1379.Dv false .
1380.Pp
1381The
1382.Fn bhnd_device_matches
1383function returns
1384.Dv true
1385if the device
1386.Fa dev
1387matches the device match descriptor
1388.Fa desc .
1389Otherwise, it returns
1390.Dv false .
1391.Pp
1392The
1393.Fn bhnd_hwrev_matches
1394function returns
1395.Dv true
1396if
1397.Fa hwrev
1398matches the hwrev match descriptor
1399.Fa desc .
1400Otherwise, it returns
1401.Dv false .
1402.Pp
1403The
1404.Fn bhnd_bus_match_child
1405function returns the first child device of
1406.Fa bus
1407that matches the device match descriptor
1408.Fa desc .
1409If no matching child is found,
1410.Dv NULL
1411is returned.
1412.Pp
1413The
1414.Fn bhnd_core_get_match_desc
1415function returns an equality match descriptor for the core info in
1416.Fa core .
1417The returned descriptor will match only on core attributes identical to those
1418defined by
1419.Fa core .
1420.Pp
1421The
1422.Fn bhnd_cores_equal
1423function is a convenience wrapper for
1424.Fn bhnd_core_matches
1425and
1426.Fn bhnd_core_get_match_desc .
1427This function returns
1428.Dv true
1429if the
1430.Vt bhnd_core_info
1431structures
1432.Fa lhs
1433and
1434.Fa rhs
1435are equal.
1436Otherwise, it returns
1437.Dv false .
1438.Pp
1439The
1440.Fn bhnd_match_core
1441function returns a pointer to the first entry in the array
1442.Fa cores
1443of length
1444.Fa num_cores
1445that matches
1446.Fa desc .
1447If no matching core is found,
1448.Dv NULL
1449is returned.
1450.Pp
1451A
1452.Vt bhnd_board_match
1453match descriptor may be initialized using one or more of the following macros:
1454.Pp
1455.Bl -tag -width "Fn BHND_MATCH_BOARD_VENDOR vendor" -offset indent
1456.It Fn BHND_MATCH_BOARD_VENDOR "vendor"
1457Match on boards with a vendor equal to
1458.Fa vendor .
1459.It Fn BHND_MATCH_BOARD_TYPE "type"
1460Match on boards with a type equal to
1461.Dv "BHND_BOARD_ ##"
1462.Fa type
1463.It Fn BHND_MATCH_SROMREV "sromrev"
1464Match on boards with a sromrev that matches
1465.Dv "BHND_HWREV_ ##"
1466.Fa sromrev .
1467.It Fn BHND_MATCH_BOARD_REV "hwrev"
1468Match on boards with hardware revisions that match
1469.Dv "BHND_ ##"
1470.Fa hwrev .
1471.It Fn BHND_MATCH_BOARD "vendor" "type"
1472A convenience wrapper for
1473.Fn BHND_MATCH_BOARD_VENDOR
1474and
1475.Fn BHND_MATCH_BOARD_TYPE .
1476.El
1477.Pp
1478For example:
1479.Bd -literal -offset indent
1480struct bhnd_board_match board_desc = {
1481	BHND_MATCH_BOARD_VENDOR(BHND_MFGID_BROADCOM),
1482	BHND_MATCH_BOARD_TYPE(BCM94360X52C),
1483	BHND_MATCH_BOARD_REV(HWREV_ANY),
1484	BHND_MATCH_SROMREV(RANGE(0, 10))
1485};
1486.Ed
1487.Pp
1488A
1489.Vt bhnd_chip_match
1490match descriptor may be initialized using one or more of the following macros:
1491.Pp
1492.Bl -tag -width "Fn BHND_MATCH_CHIP_IPR id pkg hwrev" -offset indent
1493.It Fn BHND_MATCH_CHIP_ID "id"
1494Match on chips with an ID equal to
1495.Dv "BHND_CHIPID_ ##"
1496.Fa id
1497.It Fn BHND_MATCH_CHIP_REV "hwrev"
1498Match on chips with hardware revisions that match
1499.Dv "BHND_ ##"
1500.Fa hwrev .
1501.It Fn BHND_MATCH_CHIP_PKG "pkg"
1502Match on chips with a package ID equal to
1503.Dv "BHND_PKGID_ ##"
1504.Fa pkg
1505.It Fn BHND_MATCH_CHIP_TYPE "type"
1506Match on chips with a chip type equal to
1507.Dv "BHND_CHIPTYPE_ ##"
1508.Fa type
1509.It Fn BHND_MATCH_CHIP_IP "id" "pkg"
1510A convenience wrapper for
1511.Fn BHND_MATCH_CHIP_ID
1512and
1513.Fn BHND_MATCH_CHIP_PKG .
1514.It Fn BHND_MATCH_CHIP_IPR "id" "pkg" "hwrev"
1515A convenience wrapper for
1516.Fn BHND_MATCH_CHIP_ID ,
1517.Fn BHND_MATCH_CHIP_PKG ,
1518and
1519.Fn BHND_MATCH_CHIP_REV .
1520.It Fn BHND_MATCH_CHIP_IR "id" "hwrev"
1521A convenience wrapper for
1522.Fn BHND_MATCH_CHIP_ID
1523and
1524.Fn BHND_MATCH_CHIP_REV .
1525.El
1526.Pp
1527For example:
1528.Bd -literal -offset indent
1529struct bhnd_chip_match chip_desc = {
1530	BHND_MATCH_CHIP_IP(BCM4329, BCM4329_289PIN),
1531	BHND_MATCH_CHIP_TYPE(SIBA)
1532};
1533.Ed
1534.Pp
1535A
1536.Vt bhnd_core_match
1537match descriptor may be initialized using one or more of the following macros:
1538.Pp
1539.Bl -tag -width "Fn BHND_MATCH_CORE_VENDOR vendor" -offset indent
1540.It Fn BHND_MATCH_CORE_VENDOR "vendor"
1541Match on cores with a vendor ID equal to
1542.Fa vendor
1543.It Fn BHND_MATCH_CORE_ID "id"
1544Match on cores with a device ID equal to
1545.Fa id
1546.It Fn BHND_MATCH_CORE_REV "hwrev"
1547Match on cores with hardware revisions that match
1548.Dv "BHND_ ##"
1549.Fa hwrev .
1550.It Fn BHND_MATCH_CORE_CLASS "class"
1551Match on cores with a core device class equal to
1552.Fa class
1553.It Fn BHND_MATCH_CORE_IDX "idx"
1554Match on cores with a core index equal to
1555.Fa idx
1556.It Fn BHND_MATCH_CORE_UNIT "unit"
1557Match on cores with a core unit equal to
1558.Fa unit
1559.It Fn BHND_MATCH_CORE "vendor" "id"
1560A convenience wrapper for
1561.Fn BHND_MATCH_CORE_VENDOR
1562and
1563.Fn BHND_MATCH_CORE_ID .
1564.El
1565.Pp
1566For example:
1567.Bd -literal -offset indent
1568struct bhnd_core_match core_desc = {
1569	BHND_MATCH_CORE(BHND_MFGID_BROADCOM, BHND_COREID_CC),
1570	BHND_MATCH_CORE_REV(HWREV_RANGE(0, 10))
1571};
1572.Ed
1573.Pp
1574The
1575.Vt bhnd_device_match
1576match descriptor supports matching on all board, chip, and core attributes,
1577and may be initialized using any of the
1578.Vt bhnd_board_match ,
1579.Vt bhnd_chip_match ,
1580or
1581.Vt bhnd_core_match
1582macros.
1583.Pp
1584For example:
1585.Bd -literal -offset indent
1586struct bhnd_device_match device_desc = {
1587	BHND_MATCH_CHIP_IP(BCM4329, BCM4329_289PIN),
1588	BHND_MATCH_BOARD_VENDOR(BHND_MFGID_BROADCOM),
1589	BHND_MATCH_BOARD_TYPE(BCM94329AGB),
1590	BHND_MATCH_CORE(BHND_MFGID_BROADCOM, BHND_COREID_CC),
1591};
1592.Ed
1593.Pp
1594A
1595.Vt bhnd_hwrev_match
1596match descriptor may be initialized using one of the following macros:
1597.Pp
1598.Bl -tag -width "Fn BHND_HWREV_RANGE start end" -offset indent -compact
1599.It Dv BHND_HWREV_ANY
1600Matches any hardware revision.
1601.It Fn BHND_HWREV_EQ "hwrev"
1602Matches any hardware revision equal to
1603.Fa hwrev
1604.It Fn BHND_HWREV_GTE "hwrev"
1605Matches any hardware revision greater than or equal to
1606.Fa hwrev
1607.It Fn BHND_HWREV_LTE "hwrev"
1608Matches any hardware revision less than or equal to
1609.Fa hwrev
1610.It Fn BHND_HWREV_RANGE "start" "end"
1611Matches any hardware revision within an inclusive range.
1612If
1613.Dv BHND_HWREV_INVALID
1614is specified as the
1615.Fa end
1616value, will match on any revision equal to or greater than
1617.Fa start
1618.El
1619.\"
1620.Ss "Device Table Functions"
1621The bhnd device table functions are used to query device and
1622quirk tables.
1623.Pp
1624The
1625.Fn bhnd_device_lookup
1626function returns a pointer to the first entry in device table
1627.Fa table
1628that matches the device
1629.Fa dev .
1630The table entry size is specified by
1631.Fa entry_size .
1632.Pp
1633The
1634.Fn bhnd_device_quirks
1635function scan the device table
1636.Fa table
1637for all quirk entries that match the device
1638.Fa dev ,
1639returning the bitwise OR of all matching quirk flags.
1640The table entry size is specified by
1641.Fa entry_size .
1642.Pp
1643The
1644.Vt bhnd_device
1645structure contains the following fields:
1646.Bl -tag -width "quirks_table" -offset indent -compact
1647.It Fa core
1648A
1649.Vt bhnd_device_match
1650descriptor.
1651.It Fa desc
1652A verbose device description suitable for use with
1653.Xr device_set_desc 9 ,
1654or
1655.Dv NULL .
1656.It Fa quirks_table
1657The quirks table for this device, or
1658.Dv NULL .
1659.It Fa device_flags
1660The device flags required when matching this entry.
1661.El
1662.Pp
1663The following device flags are supported:
1664.Bl -tag -width ".Dv BHND_DF_ADAPTER" -offset indent -compact
1665.It Dv BHND_DF_ANY
1666Match on any device.
1667.It Dv BHND_DF_HOSTB
1668Match only if the device is the
1669.Xr bhndb 4
1670host bridge.
1671Implies
1672.Dv BHND_DF_ADAPTER .
1673.It Dv BHND_DF_SOC
1674Match only if the device is attached to a native SoC backplane.
1675.It Dv BHND_DF_ADAPTER
1676Match only if the device is attached to a
1677.Xr bhndb 4
1678bridged backplane.
1679.El
1680.Pp
1681A
1682.Vt bhnd_device
1683table entry may be initialized using one of the following macros:
1684.Pp
1685.Bl -ohang -offset indent
1686.It Fn BHND_DEVICE "vendor" "device" "desc" "quirks" "flags"
1687Match on devices with a vendor ID equal to
1688.Dv BHND_MFGID_ ##
1689.Fa vendor
1690and a core device ID equal to
1691.Dv BHND_COREID_ ##
1692.Fa device .
1693.Pp
1694The device's verbose description is specified by the
1695.Fa desc
1696argument, a pointer to the device-specific quirks table is specified by the
1697.Fa quirks
1698argument, and any required device flags may be provided in
1699.Fa flags .
1700The optional
1701.Fa flags
1702argument defaults to
1703.Dv BHND_DF_ANY
1704if omitted.
1705.It Dv BHND_DEVICE_END
1706Terminate the
1707.Vt bhnd_device
1708table.
1709.El
1710.Pp
1711For example:
1712.Bd -literal -offset indent
1713struct bhnd_device bhnd_usb11_devices[] = {
1714	BHND_DEVICE(BCM, USB, "Broadcom USB1.1 Controller",
1715	    bhnd_usb11_quirks),
1716	BHND_DEVICE_END
1717};
1718.Ed
1719.Pp
1720The
1721.Vt bhnd_device_quirk
1722structure contains the following fields:
1723.Bl -tag -width "quirks_table" -offset indent -compact
1724.It Fa desc
1725A
1726.Vt bhnd_device_match
1727descriptor.
1728.It Fa quirks
1729Applicable quirk flags.
1730.El
1731.Pp
1732A bhnd_device_quirk table entry may be initialized using one of the following
1733convenience macros:
1734.Bl -tag -width "Fn BHND_CHIP_QUIRK chip hwrev flags" -offset indent
1735.It Fn BHND_BOARD_QUIRK "board" "flags"
1736Set quirk flags
1737.Fa flags
1738on devices with a board type equal to
1739.Dv BHND_BOARD_ ##
1740.Fa board .
1741.It Fn BHND_CHIP_QUIRK "chip" "hwrev" "flags"
1742Set quirk flags
1743.Fa flags
1744on devices with a chip ID equal to
1745.Dv BHND_CHIPID_BCM ##
1746.Fa chip
1747and chip hardware revision that matches
1748.Dv BHND_ ##
1749.Fa hwrev .
1750.It Fn BHND_PKG_QUIRK "chip" "pkg" flags"
1751Set quirk flags
1752.Fa flags
1753on devices with a chip ID equal to
1754.Dv BHND_CHIPID_BCM ##
1755.Fa chip
1756and chip package equal to
1757.Dv BHND_ ## chip ##
1758.Fa pkg .
1759.It Fn BHND_CORE_QUIRK "hwrev" flags"
1760Set quirk flags
1761.Fa flags
1762on devices with a core hardware revision that matches
1763.Dv BHND_ ##
1764.Fa hwrev .
1765.El
1766For example:
1767.Bd -literal -offset indent
1768struct bhnd_device_quirk bhnd_usb11_quirks[] = {
1769	BHND_DEVICE(BCM, USB, "Broadcom USB1.1 Controller",
1770	    bhnd_usb11_quirks),
1771	BHND_DEVICE_END
1772};
1773.Ed
1774.Ss "DMA Address Translation Functions"
1775The
1776.Fn bhnd_get_dma_translation
1777function is used to request a DMA address translation descriptor suitable
1778for use with a maximum DMA address width of
1779.Fa width ,
1780with support for the requested translation
1781.Fa flags .
1782.Pp
1783If a suitable DMA address translation descriptor is found, it will be stored in
1784.Fa translation ,
1785and a bus DMA tag specifying the DMA translation's address restrictions will
1786be stored in
1787.Fa dmat .
1788The
1789.Fa translation
1790and
1791.Fa dmat
1792arguments may be
1793.Dv NULL
1794if the translation descriptor or DMA tag are not desired.
1795.Pp
1796The following DMA translation flags are supported:
1797.Bl -ohang -width ".Dv BHND_DMA_TRANSLATION_BYTESWAPPED" -offset indent
1798.It Dv BHND_DMA_TRANSLATION_PHYSMAP
1799The translation remaps the device's physical address space.
1800.Pp
1801This is used in conjunction with
1802.Dv BHND_DMA_TRANSLATION_BYTESWAPPED
1803to define a DMA translation that provides byteswapped access to physical memory
1804on big-endian MIPS SoCs.
1805.It Dv BHND_DMA_TRANSLATION_BYTESWAPPED
1806The translation provides a byte-swapped mapping; write requests will be
1807byte-swapped before being written to memory, and read requests will be
1808byte-swapped before being returned.
1809.Pp
1810This is primarily used to perform efficient byte swapping of DMA data on
1811embedded MIPS SoCs executing in big-endian mode.
1812.El
1813.Pp
1814The following symbolic constants are defined for common DMA address widths:
1815.Pp
1816.Bl -tag -width ".Dv BHND_DMA_ADDR_64BIT" -offset indent -compact
1817.It Dv BHND_DMA_ADDR_30BIT
181830-bit DMA
1819.It Dv BHND_DMA_ADDR_32BIT
182032-bit DMA
1821.It Dv BHND_DMA_ADDR_64BIT
182264-bit DMA
1823.El
1824.Pp
1825The
1826.Vt bhnd_dma_translation
1827structure contains the following fields:
1828.Bl -tag -width "addrext_mask"
1829.It Fa base_addr
1830Host-to-device physical address translation.
1831This may be added to a host physical address to produce a device DMA address.
1832.It Fa addr_mask
1833Device-addressable address mask.
1834This defines the device DMA address range, and excludes any bits reserved for
1835mapping the address within the translation window at
1836.Fa base_addr .
1837.It Fa addrext_mask
1838Device-addressable extended address mask.
1839If a the per-core BHND DMA engine supports the 'addrext' control field, it can
1840be used to provide address bits excluded by
1841.Fa addr_mask .
1842.Pp
1843Support for DMA extended address changes \(em including coordination with the
1844core providing device-to-host DMA address translation \(em is handled
1845transparently by the DMA engine.
1846.Pp
1847For example, on PCI Wi-Fi devices, the Wi-Fi core's DMA engine will (in effect)
1848update the PCI host bridge core's DMA
1849.Dv sbtopcitranslation
1850base address to map the target address prior to performing a DMA transaction.
1851.It Fa flags
1852Translation flags.
1853.El
1854.\"
1855.Ss "Interrupt Functions"
1856The
1857.Fn bhnd_get_intr_count
1858function is used to determine the number of backplane interrupt lines assigned
1859to the device
1860.Fa dev .
1861Interrupt line identifiers are allocated in monotonically increasing order,
1862starting with 0.
1863.Pp
1864The
1865.Fn bhnd_get_intr_ivec
1866function is used to determine the backplane interrupt vector assigned to
1867interrupt line
1868.Fa intr
1869on the device
1870.Fa dev ,
1871writing the result to
1872.Fa ivec .
1873Interrupt vector assignments are backplane-specific: On BCMA devices, this
1874function returns the OOB bus line assigned to the interrupt.
1875On SIBA devices, it returns the target OCP slave flag number assigned to the
1876interrupt.
1877.Pp
1878The
1879.Fn bhnd_map_intr
1880function is used to map interrupt line
1881.Fa intr
1882assigned to device
1883.Fa dev
1884to an IRQ number, writing the result to
1885.Fa irq .
1886Until unmapped, this IRQ may be used when allocating a resource of type
1887SYS_RES_IRQ.
1888.Pp
1889Ownership of the interrupt mapping is assumed by the caller, and must be
1890explicitly released using
1891.Fa bhnd_unmap_intr .
1892.Pp
1893The
1894.Fn bhnd_unmap_intr
1895function is used to unmap bus IRQ
1896.Fa irq
1897previously mapped using
1898.Fn bhnd_map_intr
1899by the device
1900.Fa dev .
1901.\"
1902.Ss "NVRAM Functions"
1903The
1904.Fn bhnd_nvram_getvar
1905function is used to read the value of NVRAM variable
1906.Fa name
1907from the NVRAM provider(s) registered with the parent
1908.Xr bhnd 4
1909bus of device
1910.Fa dev ,
1911coerced to the desired data representation
1912.Fa type ,
1913written to the buffer specified by
1914.Fa buf .
1915.Pp
1916Before the call, the maximum capacity of
1917.Fa buf
1918is specified by
1919.Fa len .
1920After a successful call \(em or if
1921.Er ENOMEM
1922is returned \(em the size of the available data will be written to
1923.Fa len .
1924The size of the desired data representation can be determined by calling
1925.Fn bhnd_nvram_getvar
1926with a
1927.Dv NULL
1928argument for
1929.Fa buf .
1930.Pp
1931The following NVRAM data types are supported:
1932.Pp
1933.Bl -tag -width ".Dv BHND_NVRAM_TYPE_UINT64_ARRAY" -offset indent -compact
1934.It Dv BHND_NVRAM_TYPE_UINT8
1935unsigned 8-bit integer
1936.It Dv BHND_NVRAM_TYPE_UINT16
1937unsigned 16-bit integer
1938.It Dv BHND_NVRAM_TYPE_UINT32
1939unsigned 32-bit integer
1940.It Dv BHND_NVRAM_TYPE_UINT64
1941signed 64-bit integer
1942.It Dv BHND_NVRAM_TYPE_INT8
1943signed 8-bit integer
1944.It Dv BHND_NVRAM_TYPE_INT16
1945signed 16-bit integer
1946.It Dv BHND_NVRAM_TYPE_INT32
1947signed 32-bit integer
1948.It Dv BHND_NVRAM_TYPE_INT64
1949signed 64-bit integer
1950.It Dv BHND_NVRAM_TYPE_CHAR
1951UTF-8 character
1952.It Dv BHND_NVRAM_TYPE_STRING
1953UTF-8 NUL-terminated string
1954.It Dv BHND_NVRAM_TYPE_BOOL
1955uint8 boolean value
1956.It Dv BHND_NVRAM_TYPE_NULL
1957NULL (empty) value
1958.It Dv BHND_NVRAM_TYPE_DATA
1959opaque octet string
1960.It Dv BHND_NVRAM_TYPE_UINT8_ARRAY
1961array of uint8 integers
1962.It Dv BHND_NVRAM_TYPE_UINT16_ARRAY
1963array of uint16 integers
1964.It Dv BHND_NVRAM_TYPE_UINT32_ARRAY
1965array of uint32 integers
1966.It Dv BHND_NVRAM_TYPE_UINT64_ARRAY
1967array of uint64 integers
1968.It Dv BHND_NVRAM_TYPE_INT8_ARRAY
1969array of int8 integers
1970.It Dv BHND_NVRAM_TYPE_INT16_ARRAY
1971array of int16 integers
1972.It Dv BHND_NVRAM_TYPE_INT32_ARRAY
1973array of int32 integers
1974.It Dv BHND_NVRAM_TYPE_INT64_ARRAY
1975array of int64 integers
1976.It Dv BHND_NVRAM_TYPE_CHAR_ARRAY
1977array of UTF-8 characters
1978.It Dv BHND_NVRAM_TYPE_STRING_ARRAY
1979array of UTF-8 NUL-terminated strings
1980.It Dv BHND_NVRAM_TYPE_BOOL_ARRAY
1981array of uint8 boolean values
1982.El
1983.Pp
1984The
1985.Fn bhnd_nvram_getvar_array ,
1986.Fn bhnd_nvram_getvar_int ,
1987.Fn bhnd_nvram_getvar_int8 ,
1988.Fn bhnd_nvram_getvar_int16 ,
1989.Fn bhnd_nvram_getvar_int32 ,
1990.Fn bhnd_nvram_getvar_uint ,
1991.Fn bhnd_nvram_getvar_uint8 ,
1992.Fn bhnd_nvram_getvar_uint16 ,
1993.Fn bhnd_nvram_getvar_uint32 ,
1994and
1995.Fn bhnd_nvram_getvar_str
1996functions are convenience wrappers for
1997.Fn bhnd_nvram_getvar .
1998.Pp
1999The
2000.Fn bhnd_nvram_getvar_array
2001function returns either a value of exactly
2002.Fa size
2003in
2004.Fa buf ,
2005or returns an error code of
2006.Er ENXIO
2007if the data representation is not exactly
2008.Fa size
2009in length.
2010.Pp
2011The
2012.Fn bhnd_nvram_getvar_int
2013and
2014.Fn bhnd_nvram_getvar_uint
2015functions return the value of NVRAM variable
2016.Fa name ,
2017coerced to a signed or unsigned integer
2018type of
2019.Fa width
2020(1, 2, or 4 bytes).
2021.Pp
2022The
2023.Fn bhnd_nvram_getvar_int8 ,
2024.Fn bhnd_nvram_getvar_int16 ,
2025.Fn bhnd_nvram_getvar_int32 ,
2026.Fn bhnd_nvram_getvar_uint ,
2027.Fn bhnd_nvram_getvar_uint8 ,
2028.Fn bhnd_nvram_getvar_uint16 ,
2029and
2030.Fn bhnd_nvram_getvar_uint32
2031functions return the value of NVRAM variable
2032.Fa name ,
2033coerced to a signed or unsigned 8, 16, or 32-bit integer type.
2034.Pp
2035The
2036.Fn bhnd_nvram_getvar_str
2037functions return the value of NVRAM variable
2038.Fa name ,
2039coerced to a NUL-terminated string.
2040.Pp
2041The
2042.Fn bhnd_nvram_string_array_next
2043function iterates over all strings in the
2044.Fa inp
2045.Dv BHND_NVRAM_TYPE_STRING_ARRAY
2046value.
2047The size of
2048.Fa inp ,
2049including any terminating NUL character(s), is specified using the
2050.Fa ilen
2051argument.
2052The
2053.Fa prev
2054argument should be either a string pointer previously returned by
2055.Fn bhnd_nvram_string_array_next ,
2056or
2057.Dv NULL
2058to begin iteration.
2059If
2060.Fa prev is not
2061.Dv NULL ,
2062the
2063.Fa olen
2064argument must be a pointer to the length previously returned by
2065.Fn bhnd_nvram_string_array_next .
2066On success, the next string element's length will be written to this pointer.
2067.\"
2068.Ss "Port/Region Functions"
2069Per-device interconnect memory mappings are identified by a combination of
2070.Em port type ,
2071.Em port number ,
2072and
2073.Em region number .
2074Port and memory region identifiers are allocated in monotonically increasing
2075order for each
2076.Em port type ,
2077starting with 0.
2078.Pp
2079The following port types are supported:
2080.Bl -tag -width ".Dv BHND_PORT_DEVICE" -offset indent
2081.It Dv BHND_PORT_DEVICE
2082Device memory.
2083The device's control/status registers are always mapped by the first device port
2084and region, and will be assigned a
2085.Dv SYS_RES_MEMORY
2086resource ID of 0.
2087.It Dv BHND_PORT_BRIDGE
2088Bridge memory.
2089.It Dv BHND_PORT_AGENT
2090Interconnect agent/wrapper.
2091.El
2092.Pp
2093The
2094.Fn bhnd_decode_port_rid
2095function is used to decode the resource ID
2096.Fa rid
2097assigned to device
2098.Fa dev ,
2099of resource type
2100.Fa type ,
2101writing the port type to
2102.Fa port_type ,
2103port number to
2104.Fa port ,
2105and region number
2106to
2107.Fa region .
2108.Pp
2109The
2110.Fn bhnd_get_port_count
2111function returns the number of ports of type
2112.Fa type
2113assigned to device
2114.Fa dev .
2115.Pp
2116The
2117.Fn bhnd_get_port_rid
2118function returns the resource ID for the
2119.Dv SYS_RES_MEMORY
2120resource mapping the
2121.Fa port
2122of
2123.Fa type
2124and
2125.Fa region
2126on device
2127.Fa dev ,
2128or -1 if the port or region are invalid, or do not have an assigned resource ID.
2129.Pp
2130The
2131.Fn bhnd_get_region_addr
2132function is used to determine the base address and size of the memory
2133.Fa region
2134on
2135.Fa port
2136of
2137.Fa type
2138assigned to
2139.Fa dev .
2140The region's base device address will be written to
2141.Fa region_addr ,
2142and the region size to
2143.Fa region_size .
2144.Pp
2145The
2146.Fn bhnd_get_region_count
2147function returns the number of memory regions mapped to
2148.Fa port
2149of
2150.Fa type
2151on device
2152.Fa dev .
2153.Pp
2154The
2155.Fn bhnd_is_region_valid
2156function returns
2157.Dv true
2158if
2159.Fa region
2160is a valid region mapped by
2161.Fa port
2162of
2163.Fa type
2164on device
2165.Fa dev .
2166.\"
2167.Ss "Power Management Functions"
2168Drivers must ask the parent
2169.Xr bhnd 4
2170bus to allocate device PMU state using
2171.Fn bhnd_alloc_pmu
2172before calling any another bhnd PMU functions.
2173.Pp
2174The
2175.Fn bhnd_alloc_pmu
2176function is used to allocate per-device PMU state and enable PMU request
2177handling for device
2178.Fa dev .
2179The memory region containing the device's PMU register block must be allocated
2180using
2181.Xr bus_alloc_resource 9
2182or
2183.Fn bhnd_alloc_resource
2184before calling
2185.Fn bhnd_alloc_pmu ,
2186and must not be released until after calling
2187.Fn bhnd_release_pmu .
2188.Pp
2189On all supported BHND hardware, the PMU register block is mapped by the device's
2190control/status registers in the first device port and region.
2191.Pp
2192The
2193.Fn bhnd_release_pmu
2194function releases the per-device PMU state previously allocated for device
2195.Fa dev
2196using
2197.Fn bhnd_alloc_pmu .
2198Any outstanding clock and external resource requests will be discarded upon
2199release of the device PMU state.
2200.Pp
2201The
2202.Fn bhnd_enable_clocks
2203function is used to request that
2204.Fa clocks
2205be powered up and routed to the backplane on behalf of device
2206.Fa dev .
2207This will power any clock sources required (e.g., XTAL, PLL, etc) and wait until
2208the requested clocks are stable.
2209If the request succeeds, any previous clock requests issued by
2210.Fa dev
2211will be discarded.
2212.Pp
2213The following clocks are supported, and may be combined using bitwise OR to
2214request multiple clocks:
2215.Pp
2216.Bl -tag -width ".Dv BHND_CLOCK_DYN" -offset indent
2217.It BHND_CLOCK_DYN
2218Dynamically select an appropriate clock source based on all outstanding clock
2219requests by any device attached to the parent
2220.Xr bhnd 4
2221bus.
2222.It BHND_CLOCK_ILP
2223Idle Low-Power (ILP) Clock.
2224May be used if no register access is required, or long request latency is
2225acceptable.
2226.It BHND_CLOCK_ALP
2227Active Low-Power (ALP) Clock.
2228Supports low-latency register access and low-rate DMA.
2229.It BHND_CLOCK_HT
2230High Throughput (HT) Clock.
2231Supports high bus throughput and lowest-latency register access.
2232.El
2233.Pp
2234The
2235.Fn bhnd_request_clock
2236function is used to request that
2237.Fa clock
2238(or faster) be powered up and routed to device
2239.Fa dev .
2240.Pp
2241The
2242.Fn bhnd_get_clock_freq
2243function is used to request the current clock frequency of
2244.Fa clock ,
2245writing the frequency in Hz to
2246.Fa freq .
2247.Pp
2248The
2249.Fn bhnd_get_clock_latency
2250function is used to determine the transition latency required for
2251.Fa clock ,
2252writing the latency in microseconds to
2253.Fa latency .
2254The
2255.Dv BHND_CLOCK_HT
2256latency value is suitable for use as the D11 Wi-Fi core
2257.Em fastpwrup_dly
2258value.
2259.Pp
2260The
2261.Fn bhnd_request_ext_rsrc
2262function is used to request that the external PMU-managed resource assigned to
2263device
2264.Fa dev ,
2265identified by device-specific identifier
2266.Fa rsrc ,
2267be powered up.
2268.Pp
2269The
2270.Fn bhnd_release_ext_rsrc
2271function releases any outstanding requests by device
2272.Fa dev
2273for the PMU-managed resource identified by device-specific identifier
2274.Fa rsrc .
2275If an external resource is shared by multiple devices, it will not be powered
2276down until all device requests are released.
2277.\"
2278.Ss "Service Provider Functions"
2279The
2280.Fn bhnd_register_provider
2281function is used to register device
2282.Fa dev
2283as a provider for platform
2284.Fa service
2285with the parent
2286.Xr bhnd 4
2287bus.
2288.Pp
2289The following service types are supported:
2290.Bl -tag -width ".Dv BHND_SERVICE_INVALID" -offset indent
2291.It Dv BHND_SERVICE_CHIPC
2292ChipCommon service.
2293The providing device must implement the bhnd_chipc interface.
2294.It Dv BHND_SERVICE_PWRCTL
2295Legacy PWRCTL service.
2296The providing device must implement the bhnd_pwrctl interface.
2297.It Dv BHND_SERVICE_PMU
2298PMU service.
2299The providing device must implement the bhnd_pmu interface.
2300.It Dv BHND_SERVICE_NVRAM
2301NVRAM service.
2302The providing device must implement the bhnd_nvram interface.
2303.It Dv BHND_SERVICE_GPIO
2304GPIO service.
2305The providing device must implement the standard
2306.Xr gpio 4
2307interface.
2308.It Dv BHND_SERVICE_ANY
2309Matches on any service type.
2310May be used with
2311.Fn bhnd_deregister_provider
2312to remove all service provider registrations for a device.
2313.El
2314.Pp
2315The
2316.Fn bhnd_deregister_provider
2317function attempts to remove provider registration for the device
2318.Fa dev
2319and
2320.Fa service .
2321If a
2322.Fa service
2323argument of
2324.Dv BHND_SERVICE_ANY
2325is specified, this function will attempt to remove
2326.Em all service provider registrations for
2327.Fa dev .
2328.Pp
2329The
2330.Fn bhnd_retain_provider
2331function retains and returns a reference to the provider registered for
2332.Fa service
2333with the parent
2334.Xr bhnd 4
2335bus of devce
2336.Fa dev ,
2337if available.
2338On success, the caller is responsible for releasing this provider reference
2339using
2340.Fn bhnd_release_provider .
2341The service provider is guaranteed to remain available until the provider
2342reference is released.
2343.Pp
2344The
2345.Fn bhnd_release_provider
2346function releases a reference to a
2347.Fa provider
2348for
2349.Fa service ,
2350previously retained by device
2351.Fa dev
2352using
2353.Fn bhnd_retain_provider .
2354.\"
2355.Ss "Utility Functions"
2356The
2357.Fn bhnd_driver_get_erom_class
2358function returns the
2359.Xr bhnd_erom 9
2360class for the device enumeration table format used by
2361.Xr bhnd 4
2362bus driver instance
2363.Fa driver .
2364If the driver does not support
2365.Xr bhnd_erom 9
2366device enumeration,
2367.Dv NULL
2368is returned.
2369.Pp
2370The
2371.Fn bhnd_find_core_class
2372function looks up the BHND class, if known, for the BHND vendor ID
2373.Fa vendor
2374and device ID
2375.Fa device .
2376.Pp
2377The
2378.Fn bhnd_find_core_name
2379function is used to fetch the human-readable name, if known, for the BHND core
2380with a vendor ID of
2381.Fa vendor
2382and device ID of
2383.Fa device .
2384.Pp
2385The
2386.Fn bhnd_core_class
2387and
2388.Fn bhnd_core_name
2389functions are convenience wrappers for
2390.Fn bhnd_find_core_class
2391and
2392.Fn bhnd_find_core_name ,
2393that use the
2394.Fa vendor
2395and
2396.Fa device
2397fields of the core info structure
2398.Fa ci .
2399.Pp
2400The
2401.Fn bhnd_format_chip_id
2402function writes a NUL-terminated human-readable representation of the BHND
2403.Fa chip_id
2404value to the specified
2405.Fa buffer
2406with a capacity of
2407.Fa size .
2408No more than
2409.Fa size-1
2410characters will be written, with the
2411.Fa size'th
2412character set to '\\0'.
2413A buffer size of
2414.Dv BHND_CHIPID_MAX_NAMELEN
2415is sufficient for any string representation produced using
2416.Fn bhnd_format_chip_id .
2417.Pp
2418The
2419.Fn bhnd_set_custom_core_desc
2420function uses the
2421.Xr bhnd 4
2422device identification of
2423.Fa dev ,
2424overriding the core name with the specified
2425.Fa dev_name ,
2426to populate the device's verbose description using
2427.Xr device_set_desc .
2428.Pp
2429The
2430.Fn bhnd_set_default_core_desc
2431function uses the
2432.Xr bhnd 4
2433device identification of
2434.Fa dev
2435to populate the device's verbose description using
2436.Xr device_set_desc .
2437.Pp
2438The
2439.Fn bhnd_vendor_name
2440function returns the human-readable name for the JEP-106, ARM 4-bit
2441continuation encoded manufacturer ID
2442.Fa vendor ,
2443if known.
2444.\"
2445.Sh RETURN VALUES
2446.Ss Bus Resource Functions
2447The
2448.Fn bhnd_activate_resource ,
2449.Fn bhnd_alloc_resources ,
2450.Fn bhnd_deactivate_resource ,
2451and
2452.Fn bhnd_release_resource
2453functions return 0 on success, otherwise an appropriate error code is returned.
2454.Pp
2455The
2456.Fn bhnd_alloc_resource
2457and
2458.Fn bhnd_alloc_resource_any
2459functions return a pointer to
2460.Vt "struct resource"
2461on success, a null pointer otherwise.
2462.\"
2463.Ss "Device Configuration Functions"
2464.Pp
2465The
2466.Fn bhnd_read_config
2467and
2468.Fn bhnd_write_config
2469functions return 0 on success, or one of the following values on error:
2470.Bl -tag -width Er
2471.It Bq Er EINVAL
2472The device is not a direct child of the
2473.Xr bhnd 4
2474bus
2475.It Bq Er EINVAL
2476The requested width is not one of 1, 2, or 4 bytes.
2477.It Bq Er ENODEV
2478Accessing agent/config space for the device is unsupported.
2479.It Bq Er EFAULT
2480The requested offset or width exceeds the bounds of the mapped agent/config
2481space.
2482.El
2483.Pp
2484The
2485.Fn bhnd_read_ioctl ,
2486.Fn bhnd_write_ioctl ,
2487.Fn bhnd_read_iost ,
2488.Fn bhnd_reset_hw ,
2489and
2490.Fn bhnd_suspend_hw
2491functions return 0 on success, otherwise an appropriate error code is returned.
2492.\"
2493.Ss "Device Information Functions"
2494.Pp
2495The
2496.Fn bhnd_read_board_info
2497function returns 0 on success, otherwise an appropriate error code is returned.
2498.\"
2499.Ss "DMA Address Translation Functions"
2500The
2501.Fn bhnd_get_dma_translation
2502function returns 0 on success, or one of the following values on error:
2503.Bl -tag -width Er
2504.It Bq Er ENODEV
2505DMA is not supported.
2506.It Bq Er ENOENT
2507No DMA translation matching the requested address width and translation flags
2508is available.
2509.El
2510.Pp
2511If fetching the requested DMA address translation otherwise fails, an
2512appropriate error code will be returned.
2513.\"
2514.Ss "Interrupt Functions"
2515.Pp
2516The
2517.Fn bhnd_get_intr_ivec
2518function returns
25190 on success, or
2520.Er ENXIO
2521if the requested interrupt line exceeds the number of interrupt lines assigned
2522to the device.
2523.Pp
2524The
2525.Fn bhnd_map_intr
2526function returns 0 on success, otherwise an appropriate error code is returned.
2527.\"
2528.Ss "NVRAM Functions"
2529The
2530.Fn bhnd_nvram_getvar ,
2531.Fn bhnd_nvram_getvar_array ,
2532.Fn bhnd_nvram_getvar_int ,
2533.Fn bhnd_nvram_getvar_int8 ,
2534.Fn bhnd_nvram_getvar_int16 ,
2535.Fn bhnd_nvram_getvar_int32 ,
2536.Fn bhnd_nvram_getvar_uint ,
2537.Fn bhnd_nvram_getvar_uint8 ,
2538.Fn bhnd_nvram_getvar_uint16 ,
2539and
2540.Fn bhnd_nvram_getvar_uint32
2541functions return 0 on success, or one of the following values on error:
2542.Bl -tag -width Er
2543.It Bq Er ENODEV
2544If an NVRAM provider has not been registered with the bus.
2545.It Bq Er ENOENT
2546The requested variable was not found.
2547.It Bq Er ENOMEM
2548If the buffer of size is too small to hold the requested value.
2549.It Bq Er EOPNOTSUPP
2550If the value's native type is incompatible with and cannot be coerced to the
2551requested type.
2552.It Bq Er ERANGE
2553If value coercion would overflow (or underflow) the requested type
2554.El
2555.Pp
2556If reading the variable otherwise fails, an appropriate error code will be
2557returned.
2558.\"
2559.Ss "Port/Region Functions"
2560The
2561.Fn bhnd_decode_port_rid
2562function returns
25630 on success, or an appropriate error code if no matching port/region is found.
2564.Pp
2565The
2566.Fn bhnd_get_port_rid
2567function returns the resource ID for the requested port and region,
2568or -1 if the port or region are invalid, or do not have an assigned resource ID.
2569.Pp
2570The
2571.Fn bhnd_get_region_addr
2572function returns
25730 on success, or an appropriate error code if no matching port/region is found.
2574.\"
2575.Ss "PMU Functions"
2576The
2577.Fn bhnd_alloc_pmu
2578function returns 0 on success, otherwise an appropriate error code is returned.
2579.Pp
2580The
2581.Fn bhnd_release_pmu
2582function returns 0 on success, otherwise an appropriate error code is returned,
2583and the core state will be left unmodified.
2584.Pp
2585The
2586.Fn bhnd_enable_clocks
2587and
2588.Fn bhnd_request_clock
2589functions return 0 on success, or one of the following values on error:
2590.Bl -tag -width Er
2591.It Bq Er ENODEV
2592An unsupported clock was requested.
2593.It Bq Er ENXIO
2594No PMU or PWRCTL provider has been registered with the bus.
2595.El
2596.Pp
2597The
2598.Fn bhnd_get_clock_freq
2599function returns 0 on success, or
2600.Er ENODEV
2601if the frequency for the specified clock is not available.
2602.Pp
2603The
2604.Fn bhnd_get_clock_latency
2605function returns 0 on success, or
2606.Er ENODEV
2607if the transition latency for the specified clock is not available.
2608.Pp
2609The
2610.Fn bhnd_request_ext_rsrc
2611and
2612.Fn bhnd_release_ext_rsrc
2613functions return 0 on success, otherwise an appropriate error code is returned.
2614.Pp
2615.\"
2616.Ss "Service Provider Functions"
2617The
2618.Fn bhnd_register_provider
2619function returns 0 on success,
2620.Er EEXIST
2621if an entry for service already exists, or an appropriate error code if
2622service registration otherwise fails.
2623.Pp
2624The
2625.Fn bhnd_deregister_provider
2626function returns 0 on success, or
2627.Er EBUSY
2628if active references to the service provider exist.
2629.Pp
2630The
2631.Fn bhnd_retain_provider
2632function returns a pointer to
2633.Vt "device_t"
2634on success, a null pointer if the requested provider is not registered.
2635.\"
2636.Ss "Utility Functions"
2637.Pp
2638The
2639.Fn bhnd_format_chip_id
2640function returns the total number of bytes written on success, or a negative
2641integer on failure.
2642.\"
2643.Sh SEE ALSO
2644.Xr bhnd 4
2645.Xr bhnd_erom 9
2646.Sh AUTHORS
2647.An -nosplit
2648The
2649.Nm
2650driver programming interface and this manual page were written by
2651.An Landon Fuller Aq Mt landonf@FreeBSD.org .
2652