1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
/* $OpenBSD: ofw_misc.h,v 1.14 2020/06/25 12:35:21 patrick Exp $ */
/*
* Copyright (c) 2017 Mark Kettenis
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _DEV_OFW_MISC_H_
#define _DEV_OFW_MISC_H_
/* Register maps */
void regmap_register(int, bus_space_tag_t, bus_space_handle_t, bus_size_t);
struct regmap;
struct regmap *regmap_bycompatible(char *);
struct regmap *regmap_bynode(int);
struct regmap *regmap_byphandle(uint32_t);
uint32_t regmap_read_4(struct regmap *, bus_size_t);
void regmap_write_4(struct regmap *, bus_size_t, uint32_t);
/* PHY support */
#define PHY_NONE 0
#define PHY_TYPE_SATA 1
#define PHY_TYPE_PCIE 2
#define PHY_TYPE_USB2 3
#define PHY_TYPE_USB3 4
#define PHY_TYPE_UFS 5
struct phy_device {
int pd_node;
void *pd_cookie;
int (*pd_enable)(void *, uint32_t *);
LIST_ENTRY(phy_device) pd_list;
uint32_t pd_phandle;
uint32_t pd_cells;
};
void phy_register(struct phy_device *);
int phy_enable_idx(int, int);
int phy_enable(int, const char *);
/* I2C support */
struct i2c_controller;
struct i2c_bus {
int ib_node;
struct i2c_controller *ib_ic;
LIST_ENTRY(i2c_bus) ib_list;
uint32_t ib_phandle;
};
void i2c_register(struct i2c_bus *);
struct i2c_controller *i2c_bynode(int);
struct i2c_controller *i2c_byphandle(uint32_t);
/* SFP support */
struct if_sffpage;
struct sfp_device {
int sd_node;
void *sd_cookie;
int (*sd_get_sffpage)(void *, struct if_sffpage *);
LIST_ENTRY(sfp_device) sd_list;
uint32_t sd_phandle;
};
void sfp_register(struct sfp_device *);
int sfp_get_sffpage(uint32_t, struct if_sffpage *);
/* PWM support */
#define PWM_POLARITY_INVERTED 0x00000001
struct pwm_state {
uint32_t ps_period;
uint32_t ps_pulse_width;
uint32_t ps_flags;
int ps_enabled;
};
struct pwm_device {
int pd_node;
void *pd_cookie;
int (*pd_get_state)(void *, uint32_t *, struct pwm_state *);
int (*pd_set_state)(void *, uint32_t *, struct pwm_state *);
LIST_ENTRY(pwm_device) pd_list;
uint32_t pd_phandle;
uint32_t pd_cells;
};
void pwm_register(struct pwm_device *);
int pwm_init_state(uint32_t *cells, struct pwm_state *ps);
int pwm_get_state(uint32_t *cells, struct pwm_state *ps);
int pwm_set_state(uint32_t *cells, struct pwm_state *ps);
/* Non-volatile memory support */
struct nvmem_device {
int nd_node;
void *nd_cookie;
int (*nd_read)(void *, bus_addr_t, void *, bus_size_t);
LIST_ENTRY(nvmem_device) nd_list;
uint32_t nd_phandle;
};
void nvmem_register(struct nvmem_device *);
int nvmem_read(uint32_t, bus_addr_t, void *, bus_size_t);
int nvmem_read_cell(int, const char *name, void *, bus_size_t);
/* Port/endpoint interface support */
struct endpoint;
struct device_ports {
int dp_node;
void *dp_cookie;
int (*dp_ep_activate)(void *, struct endpoint *, void *);
void *(*dp_ep_get_cookie)(void *, struct endpoint *);
LIST_HEAD(, device_port) dp_ports;
};
struct device_port {
int dp_node;
uint32_t dp_phandle;
uint32_t dp_reg;
struct device_ports *dp_ports;
LIST_ENTRY(device_port) dp_list;
LIST_HEAD(, endpoint) dp_endpoints;
};
enum endpoint_type {
EP_DRM_BRIDGE = 1, /* struct drm_bridge */
EP_DRM_CONNECTOR, /* struct drm_connector */
EP_DRM_CRTC, /* struct drm_crtc */
EP_DRM_ENCODER, /* struct drm_encoder */
EP_DRM_PANEL, /* struct drm_panel */
};
struct endpoint {
int ep_node;
uint32_t ep_phandle;
uint32_t ep_reg;
enum endpoint_type ep_type;
struct device_port *ep_port;
LIST_ENTRY(endpoint) ep_list;
LIST_ENTRY(endpoint) ep_plist;
};
void device_ports_register(struct device_ports *, enum endpoint_type);
int device_port_activate(uint32_t, void *);
struct endpoint *endpoint_byreg(struct device_ports *, uint32_t, uint32_t);
struct endpoint *endpoint_remote(struct endpoint *);
int endpoint_activate(struct endpoint *, void *);
void *endpoint_get_cookie(struct endpoint *);
/* Digital audio interface support */
struct dai_device {
int dd_node;
void *dd_cookie;
void *dd_hw_if;
int (*dd_set_format)(void *, uint32_t, uint32_t, uint32_t);
int (*dd_set_sysclk)(void *, uint32_t);
LIST_ENTRY(dai_device) dd_list;
uint32_t dd_phandle;
};
void dai_register(struct dai_device *);
struct dai_device *dai_byphandle(uint32_t);
#define DAI_FORMAT_I2S 0
#define DAI_FORMAT_RJ 1
#define DAI_FORMAT_LJ 2
#define DAI_FORMAT_DSPA 3
#define DAI_FORMAT_DSPB 4
#define DAI_FORMAT_AC97 5
#define DAI_FORMAT_PDM 6
#define DAI_FORMAT_MSB 7
#define DAI_FORMAT_LSB 8
#define DAI_POLARITY_NB (0 << 0)
#define DAI_POLARITY_IB (1 << 0)
#define DAI_POLARITY_NF (0 << 1)
#define DAI_POLARITY_IF (1 << 1)
#define DAI_CLOCK_CBS (0 << 0)
#define DAI_CLOCK_CBM (1 << 0)
#define DAI_CLOCK_CFS (0 << 1)
#define DAI_CLOCK_CFM (1 << 1)
/* MII support */
struct mii_bus {
int md_node;
void *md_cookie;
int (*md_readreg)(struct device *, int, int);
void (*md_writereg)(struct device *, int, int, int);
LIST_ENTRY(mii_bus) md_list;
};
void mii_register(struct mii_bus *);
struct mii_bus *mii_byphandle(uint32_t);
#endif /* _DEV_OFW_MISC_H_ */
|