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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
/* $OpenBSD: iosf.c,v 1.2 2024/06/26 01:40:49 jsg Exp $ */
/*
* Copyright (c) 2023 David Gwynne <dlg@openbsd.org>
*
* 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.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/mutex.h>
#include <sys/rwlock.h>
#include <machine/bus.h>
#include <dev/ic/iosfvar.h>
#define IOSF_MBI_MASK_HI 0xffffff00
#define IOSF_MBI_MASK_LO 0x000000ff
#define IOSF_MBI_ENABLE 0x000000f0
#define IOSF_MBI_MCR_OP_SHIFT 24
#define IOSF_MBI_MCR_PORT_SHIFT 16
#define IOSF_MBI_MCR_OFFSET_SHIFT 8
/* IOSF sideband read/write opcodes */
#define IOSF_MBI_OP_MMIO_READ 0x00
#define IOSF_MBI_OP_MMIO_WRITE 0x01
#define IOSF_MBI_OP_CFG_READ 0x04
#define IOSF_MBI_OP_CFG_WRITE 0x05
#define IOSF_MBI_OP_CR_READ 0x06
#define IOSF_MBI_OP_CR_WRITE 0x07
#define IOSF_MBI_OP_REG_READ 0x10
#define IOSF_MBI_OP_REG_WRITE 0x11
#define IOSF_MBI_OP_ESRAM_READ 0x12
#define IOSF_MBI_OP_ESRAM_WRITE 0x13
/* Baytrail */
#define IOSF_BT_MBI_UNIT_AUNIT 0x00
#define IOSF_BT_MBI_UNIT_SMC 0x01
#define IOSF_BT_MBI_UNIT_CPU 0x02
#define IOSF_BT_MBI_UNIT_BUNIT 0x03
#define IOSF_BT_MBI_UNIT_PMC 0x04
#define IOSF_BT_MBI_UNIT_GFX 0x06
#define IOSF_BT_MBI_UNIT_SMI 0x0C
#define IOSF_BT_MBI_UNIT_CCK 0x14
#define IOSF_BT_MBI_UNIT_USB 0x43
#define IOSF_BT_MBI_UNIT_SATA 0xA3
#define IOSF_BT_MBI_UNIT_PCIE 0xA6
/* semaphore bits */
#define IOSF_PUNIT_SEM_BIT (1 << 0)
#define IOSF_PUNIT_SEM_ACQUIRE (1 << 1)
struct cfdriver iosf_cd = {
NULL, "iosf", DV_DULL
};
/*
* serialise register ops
*/
static struct mutex iosf_mbi_mtx = MUTEX_INITIALIZER(IPL_HIGH);
/*
* rwlock for kernel to coordinate access to the mbi with
*/
static struct rwlock iosf_lock = RWLOCK_INITIALIZER("iosf");
/*
* drivers provide an iosf_mbi that acts as a backend for the code below.
*/
static struct iosf_mbi *iosf_mbi;
void
iosf_mbi_attach(struct iosf_mbi *mbi)
{
/*
* assume this is serialised by autoconf being run sequentially
* during boot.
*/
if (iosf_mbi == NULL || iosf_mbi->mbi_prio < mbi->mbi_prio)
iosf_mbi = mbi;
}
static inline uint32_t
iosf_mbi_mcr(uint8_t op, uint8_t port, uint32_t offset)
{
uint32_t rv = IOSF_MBI_ENABLE;
rv |= op << IOSF_MBI_MCR_OP_SHIFT;
rv |= port << IOSF_MBI_MCR_PORT_SHIFT;
rv |= (offset & IOSF_MBI_MASK_LO) << IOSF_MBI_MCR_OFFSET_SHIFT;
return (rv);
}
static inline uint32_t
iosf_mbi_mcrx(uint32_t offset)
{
return (offset & IOSF_MBI_MASK_HI);
}
/*
* serialised mbi mdr operations
*/
static uint32_t
iosf_mbi_mdr_read(struct iosf_mbi *mbi, uint8_t port, uint8_t op,
uint32_t offset)
{
uint32_t mcr, mcrx, mdr;
mcr = iosf_mbi_mcr(op, port, offset);
mcrx = iosf_mbi_mcrx(offset);
mtx_enter(&iosf_mbi_mtx);
mdr = (*mbi->mbi_mdr_rd)(mbi, mcr, mcrx);
mtx_leave(&iosf_mbi_mtx);
return (mdr);
}
static void
iosf_mbi_mdr_write(struct iosf_mbi *mbi, uint8_t port, uint8_t op,
uint32_t offset, uint32_t mdr)
{
uint32_t mcr, mcrx;
mcr = iosf_mbi_mcr(op, port, offset);
mcrx = iosf_mbi_mcrx(offset);
mtx_enter(&iosf_mbi_mtx);
(*mbi->mbi_mdr_wr)(mbi, mcr, mcrx, mdr);
mtx_leave(&iosf_mbi_mtx);
}
static void
iosf_mbi_mdr_modify(struct iosf_mbi *mbi, uint8_t port, uint8_t op,
uint32_t offset, uint32_t bits, uint32_t mask)
{
uint32_t mcr, mcrx, mdr;
mcr = iosf_mbi_mcr(op, port, offset);
mcrx = iosf_mbi_mcrx(offset);
mtx_enter(&iosf_mbi_mtx);
mdr = (*mbi->mbi_mdr_rd)(mbi, mcr, mcrx);
CLR(mdr, mask);
SET(mdr, bits & mask);
(*mbi->mbi_mdr_wr)(mbi, mcr, mcrx, mdr);
mtx_leave(&iosf_mbi_mtx);
}
/*
* linux compat api
*/
int
iosf_mbi_read(uint8_t port, uint8_t opcode, uint32_t offset, uint32_t *mdrp)
{
struct iosf_mbi *mbi;
mbi = iosf_mbi;
if (mbi == NULL)
return (ENODEV);
/* check port != BT_MBI_UNIT_GFX? */
*mdrp = iosf_mbi_mdr_read(mbi, port, opcode, offset);
return (0);
}
int
iosf_mbi_write(uint8_t port, uint8_t opcode, uint32_t offset, uint32_t mdr)
{
struct iosf_mbi *mbi;
mbi = iosf_mbi;
if (mbi == NULL)
return (ENODEV);
/* check port != BT_MBI_UNIT_GFX? */
iosf_mbi_mdr_write(mbi, port, opcode, offset, mdr);
return (0);
}
int
iosf_mbi_modify(uint8_t port, uint8_t opcode, uint32_t offset,
uint32_t bits, uint32_t mask)
{
struct iosf_mbi *mbi;
mbi = iosf_mbi;
if (mbi == NULL)
return (ENODEV);
/* check port != BT_MBI_UNIT_GFX? */
iosf_mbi_mdr_modify(mbi, port, opcode, offset, bits, mask);
return (0);
}
int
iosf_mbi_available(void)
{
return (iosf_mbi != NULL);
}
static uint32_t
iosf_mbi_sem_get(struct iosf_mbi *mbi)
{
uint32_t sem;
sem = iosf_mbi_mdr_read(mbi,
IOSF_BT_MBI_UNIT_PMC, IOSF_MBI_OP_REG_READ, mbi->mbi_semaddr);
return (ISSET(sem, IOSF_PUNIT_SEM_BIT));
}
static void
iosf_mbi_sem_reset(struct iosf_mbi *mbi)
{
iosf_mbi_mdr_modify(mbi,
IOSF_BT_MBI_UNIT_PMC, IOSF_MBI_OP_REG_READ, mbi->mbi_semaddr,
0, IOSF_PUNIT_SEM_BIT);
}
void
iosf_mbi_punit_acquire(void)
{
rw_enter_write(&iosf_lock);
}
void
iosf_mbi_punit_release(void)
{
rw_exit_write(&iosf_lock);
}
void
iosf_mbi_assert_punit_acquired(void)
{
int s;
if (splassert_ctl == 0)
return;
s = rw_status(&iosf_lock);
if (s != RW_WRITE)
splassert_fail(RW_WRITE, s, __func__);
}
static void
iosf_sem_wait(uint64_t usec, int waitok)
{
if (waitok)
tsleep_nsec(&nowake, PRIBIO, "iosfsem", USEC_TO_NSEC(usec));
else
delay(usec);
}
#include <dev/i2c/i2cvar.h>
int
iosf_i2c_acquire(int flags)
{
struct iosf_mbi *mbi;
int waitok = !cold && !ISSET(flags, I2C_F_POLL);
unsigned int i;
mbi = iosf_mbi;
if (mbi == NULL)
return (0);
if (waitok)
rw_enter_write(&iosf_lock);
else if (iosf_lock.rwl_owner != 0)
panic("%s", __func__);
/* XXX disable C6 and C7 states */
iosf_mbi_mdr_write(mbi, IOSF_BT_MBI_UNIT_PMC, IOSF_MBI_OP_REG_WRITE,
mbi->mbi_semaddr, IOSF_PUNIT_SEM_ACQUIRE);
for (i = 0; i < 50; i++) {
if (iosf_mbi_sem_get(mbi)) {
/* success! */
return (0);
}
iosf_sem_wait(10000, waitok);
}
iosf_mbi_sem_reset(mbi);
if (waitok)
rw_exit_write(&iosf_lock);
else if (iosf_lock.rwl_owner != 0)
panic("%s", __func__);
return (EWOULDBLOCK);
}
void
iosf_i2c_release(int flags)
{
struct iosf_mbi *mbi;
int waitok = !cold && !ISSET(flags, I2C_F_POLL);
mbi = iosf_mbi;
if (mbi == NULL)
return;
iosf_mbi_sem_reset(mbi);
if (waitok)
rw_exit_write(&iosf_lock);
else if (iosf_lock.rwl_owner != 0)
panic("%s", __func__);
}
|