]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/bhnd/bhnd_types.h
bhnd(4): extend the PMU APIs to support bwn(4)
[FreeBSD/FreeBSD.git] / sys / dev / bhnd / bhnd_types.h
1 /*-
2  * Copyright (c) 2015-2016 Landon Fuller <landon@landonf.org>
3  * Copyright (c) 2017 The FreeBSD Foundation
4  * All rights reserved.
5  *
6  * Portions of this software were developed by Landon Fuller
7  * under sponsorship from the FreeBSD Foundation.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer,
14  *    without modification.
15  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
16  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
17  *    redistribution must be conditioned upon including a substantially
18  *    similar Disclaimer requirement for further binary redistribution.
19  *
20  * NO WARRANTY
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
24  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
25  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
26  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
29  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31  * THE POSSIBILITY OF SUCH DAMAGES.
32  * 
33  * $FreeBSD$
34  */
35
36 #ifndef _BHND_BHND_TYPES_H_
37 #define _BHND_BHND_TYPES_H_
38
39 #include <sys/types.h>
40
41 #include "nvram/bhnd_nvram.h"
42
43 /** bhnd(4) device classes. */
44 typedef enum {
45         BHND_DEVCLASS_CC,               /**< chipcommon i/o controller */
46         BHND_DEVCLASS_CC_B,             /**< chipcommon auxiliary controller */
47         BHND_DEVCLASS_PMU,              /**< pmu controller */
48         BHND_DEVCLASS_PCI,              /**< pci host/device bridge */
49         BHND_DEVCLASS_PCIE,             /**< pcie host/device bridge */
50         BHND_DEVCLASS_PCCARD,           /**< pcmcia host/device bridge */
51         BHND_DEVCLASS_RAM,              /**< internal RAM/SRAM */
52         BHND_DEVCLASS_MEMC,             /**< memory controller */
53         BHND_DEVCLASS_ENET,             /**< 802.3 MAC/PHY */
54         BHND_DEVCLASS_ENET_MAC,         /**< 802.3 MAC */
55         BHND_DEVCLASS_ENET_PHY,         /**< 802.3 PHY */
56         BHND_DEVCLASS_WLAN,             /**< 802.11 MAC/PHY/Radio */
57         BHND_DEVCLASS_WLAN_MAC,         /**< 802.11 MAC */
58         BHND_DEVCLASS_WLAN_PHY,         /**< 802.11 PHY */
59         BHND_DEVCLASS_CPU,              /**< cpu core */
60         BHND_DEVCLASS_SOC_ROUTER,       /**< interconnect router */
61         BHND_DEVCLASS_SOC_BRIDGE,       /**< interconnect host bridge */
62         BHND_DEVCLASS_EROM,             /**< bus device enumeration ROM */
63         BHND_DEVCLASS_NVRAM,            /**< nvram/flash controller */
64         BHND_DEVCLASS_USB_HOST,         /**< USB host controller */
65         BHND_DEVCLASS_USB_DEV,          /**< USB device controller */
66         BHND_DEVCLASS_USB_DUAL,         /**< USB host/device controller */
67
68         BHND_DEVCLASS_OTHER     = 1000, /**< other / unknown */
69         BHND_DEVCLASS_INVALID           /**< no/invalid class */
70 } bhnd_devclass_t;
71
72 /** bhnd(4) platform services. */
73 typedef enum {
74         BHND_SERVICE_CHIPC,             /**< chipcommon service; implements the bhnd_chipc interface */
75         BHND_SERVICE_PWRCTL,            /**< legacy pwrctl service; implements the bhnd_pwrctl interface */
76         BHND_SERVICE_PMU,               /**< pmu service; implements the bhnd_pmu interface */
77         BHND_SERVICE_NVRAM,             /**< nvram service; implements the bhnd_nvram interface */
78
79         BHND_SERVICE_ANY = 1000,        /**< match on any service type */
80 } bhnd_service_t;
81
82 /**
83  * bhnd(4) port types.
84  * 
85  * Only BHND_PORT_DEVICE is guaranteed to be supported by all bhnd(4) bus
86  * implementations.
87  */
88 typedef enum {
89         BHND_PORT_DEVICE        = 0,    /**< device memory */
90         BHND_PORT_BRIDGE        = 1,    /**< bridge memory */
91         BHND_PORT_AGENT         = 2,    /**< interconnect agent/wrapper */
92 } bhnd_port_type;
93
94 /**
95  * bhnd(4) attachment types.
96  */
97 typedef enum {
98         BHND_ATTACH_ADAPTER     = 0,    /**< A bridged card, such as a PCI WiFi chipset  */
99         BHND_ATTACH_NATIVE      = 1     /**< A bus resident on the native host, such as
100                                           *  the primary or secondary bus of an embedded
101                                           *  SoC */
102 } bhnd_attach_type;
103
104 /**
105  * bhnd(4) clock types.
106  */
107 typedef enum {
108         /**
109          * Dynamically select an appropriate clock source based on all
110          * outstanding clock requests.
111          */
112         BHND_CLOCK_DYN          = (1 << 0),
113
114         /**
115          * Idle Low-Power (ILP).
116          * 
117          * No register access is required, or long request latency is
118          * acceptable.
119          */
120         BHND_CLOCK_ILP          = (1 << 1),
121         
122         /**
123          * Active Low-Power (ALP).
124          * 
125          * Low-latency register access and low-rate DMA.
126          */
127         BHND_CLOCK_ALP          = (1 << 2),
128         
129         /**
130          * High Throughput (HT).
131          * 
132          * High bus throughput and lowest-latency register access.
133          */
134         BHND_CLOCK_HT           = (1 << 3)
135 } bhnd_clock;
136
137 /**
138  * Given two clock types, return the type with the highest precedence. 
139  */
140 static inline bhnd_clock
141 bhnd_clock_max(bhnd_clock a, bhnd_clock b) {
142         return (a > b ? a : b);
143 }
144
145 /**
146  * bhnd(4) clock sources.
147  */
148 typedef enum {
149         /**
150          * Clock is provided by the PCI bus clock
151          */
152         BHND_CLKSRC_PCI         = 0,
153
154         /** Clock is provided by a crystal. */
155         BHND_CLKSRC_XTAL        = 1,
156
157         /** Clock is provided by a low power oscillator. */
158         BHND_CLKSRC_LPO         = 2,
159
160         /** Clock source is unknown */
161         BHND_CLKSRC_UNKNOWN     = 3
162 } bhnd_clksrc;
163
164 /** Evaluates to true if @p cls is a device class that can be configured
165  *  as a host bridge device. */
166 #define BHND_DEVCLASS_SUPPORTS_HOSTB(cls)                                       \
167         ((cls) == BHND_DEVCLASS_PCI || (cls) == BHND_DEVCLASS_PCIE ||   \
168          (cls) == BHND_DEVCLASS_PCCARD)
169
170 /**
171  * BHND bus address.
172  * 
173  * @note While the interconnect may support 64-bit addressing, not
174  * all bridges and SoC CPUs will.
175  */
176 typedef uint64_t        bhnd_addr_t;
177 #define BHND_ADDR_MAX   UINT64_MAX      /**< Maximum bhnd_addr_t value */
178
179 /** BHND bus size. */
180 typedef uint64_t        bhnd_size_t;
181 #define BHND_SIZE_MAX   UINT64_MAX      /**< Maximum bhnd_size_t value */
182
183
184 #endif /* _BHND_BHND_TYPES_H_ */