forked from openbmc/linux
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevice.c
More file actions
674 lines (590 loc) · 17.9 KB
/
device.c
File metadata and controls
674 lines (590 loc) · 17.9 KB
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2018 Cadence Design Systems Inc.
*
* Author: Boris Brezillon <boris.brezillon@bootlin.com>
*/
#include <linux/atomic.h>
#include <linux/bug.h>
#include <linux/completion.h>
#include <linux/device.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include "internals.h"
/**
* i3c_device_do_priv_xfers() - do I3C SDR private transfers directed to a
* specific device
*
* @dev: device with which the transfers should be done
* @xfers: array of transfers
* @nxfers: number of transfers
*
* Initiate one or several private SDR transfers with @dev.
*
* This function can sleep and thus cannot be called in atomic context.
*
* Return: 0 in case of success, a negative error core otherwise.
*/
int i3c_device_do_priv_xfers(struct i3c_device *dev,
struct i3c_priv_xfer *xfers,
int nxfers)
{
int ret, i;
if (nxfers < 1)
return 0;
for (i = 0; i < nxfers; i++) {
if (!xfers[i].len || !xfers[i].data.in)
return -EINVAL;
}
i3c_bus_normaluse_lock(dev->bus);
ret = i3c_dev_do_priv_xfers_locked(dev->desc, xfers, nxfers);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_do_priv_xfers);
/**
* i3c_device_send_hdr_cmds() - send HDR commands to a specific device
*
* @dev: device to which these commands should be sent
* @cmds: array of commands
* @ncmds: number of commands
*
* Send one or several HDR commands to @dev.
*
* This function can sleep and thus cannot be called in atomic context.
*
* Return: 0 in case of success, a negative error core otherwise.
*/
int i3c_device_send_hdr_cmds(struct i3c_device *dev, struct i3c_hdr_cmd *cmds,
int ncmds)
{
enum i3c_hdr_mode mode;
int ret, i;
if (ncmds < 1)
return 0;
mode = cmds[0].mode;
for (i = 1; i < ncmds; i++) {
if (mode != cmds[i].mode)
return -EINVAL;
}
i3c_bus_normaluse_lock(dev->bus);
ret = i3c_dev_send_hdr_cmds_locked(dev->desc, cmds, ncmds);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_send_hdr_cmds);
/**
* i3c_device_generate_ibi() - request In-Band Interrupt
*
* @dev: target device
* @data: IBI payload
* @len: payload length in bytes
*
* Request In-Band Interrupt with or without data payload.
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_generate_ibi(struct i3c_device *dev, const u8 *data, int len)
{
int ret;
i3c_bus_normaluse_lock(dev->bus);
ret = i3c_dev_generate_ibi_locked(dev->desc, data, len);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_generate_ibi);
/**
* i3c_device_pending_read_notify() - Notify the bus master about the
* pending read data through IBI
*
* @dev: device with which the transfers should be done
* @pending_read: the transfer that conveys the pending read data
* @ibi_notify: the transfer that conveys the IBI with data (MDB)
*
* Initiate a private SDR transfer with @dev, then issue an IBI with
* data to notify the bus master that there is a pending read transfer.
*
* This function can sleep and thus cannot be called in atomic context.
*
* Return: 0 in case of success, a negative error core otherwise.
*/
int i3c_device_pending_read_notify(struct i3c_device *dev,
struct i3c_priv_xfer *pending_read,
struct i3c_priv_xfer *ibi_notify)
{
int ret;
i3c_bus_normaluse_lock(dev->bus);
ret = i3c_dev_pending_read_notify_locked(dev->desc, pending_read,
ibi_notify);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_pending_read_notify);
/**
* i3c_device_is_ibi_enabled() - Query the In-Band Interrupt status
*
* @dev: target device
*
* Queries the device to check if In-Band Interrupt (IBI) is enabled by the bus
* controller.
*
* Return: 1 if enabled, 0 if disabled.
*/
bool i3c_device_is_ibi_enabled(struct i3c_device *dev)
{
bool ret;
i3c_bus_normaluse_lock(dev->bus);
ret = i3c_dev_is_ibi_enabled_locked(dev->desc);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_is_ibi_enabled);
/**
* i3c_device_do_setdasa() - do I3C dynamic address assignement with
* static address
*
* @dev: device with which the DAA should be done
*
* Return: 0 in case of success, a negative error core otherwise.
*/
int i3c_device_do_setdasa(struct i3c_device *dev)
{
int ret;
i3c_bus_normaluse_lock(dev->bus);
ret = i3c_dev_setdasa_locked(dev->desc);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_do_setdasa);
/**
* i3c_device_getstatus_ccc() - receive device status
*
* @dev: I3C device to get the status for
* @info: I3C device info to fill the status in
*
* Receive I3C device status from I3C master device via corresponding CCC
* command
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_getstatus_ccc(struct i3c_device *dev, struct i3c_device_info *info)
{
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc)
ret = i3c_dev_getstatus_locked(dev->desc, &dev->desc->info);
i3c_bus_normaluse_unlock(dev->bus);
i3c_device_get_info(dev, info);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_getstatus_ccc);
/**
* i3c_device_get_info() - get I3C device information
*
* @dev: device we want information on
* @info: the information object to fill in
*
* Retrieve I3C dev info.
*/
void i3c_device_get_info(const struct i3c_device *dev,
struct i3c_device_info *info)
{
if (!info)
return;
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc)
*info = dev->desc->info;
i3c_bus_normaluse_unlock(dev->bus);
}
EXPORT_SYMBOL_GPL(i3c_device_get_info);
/**
* i3c_device_disable_ibi() - Disable IBIs coming from a specific device
* @dev: device on which IBIs should be disabled
*
* This function disable IBIs coming from a specific device and wait for
* all pending IBIs to be processed.
*
* Return: 0 in case of success, a negative error core otherwise.
*/
int i3c_device_disable_ibi(struct i3c_device *dev)
{
int ret = -ENOENT;
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc) {
mutex_lock(&dev->desc->ibi_lock);
ret = i3c_dev_disable_ibi_locked(dev->desc);
mutex_unlock(&dev->desc->ibi_lock);
}
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_disable_ibi);
/**
* i3c_device_enable_ibi() - Enable IBIs coming from a specific device
* @dev: device on which IBIs should be enabled
*
* This function enable IBIs coming from a specific device and wait for
* all pending IBIs to be processed. This should be called on a device
* where i3c_device_request_ibi() has succeeded.
*
* Note that IBIs from this device might be received before this function
* returns to its caller.
*
* Return: 0 in case of success, a negative error core otherwise.
*/
int i3c_device_enable_ibi(struct i3c_device *dev)
{
int ret = -ENOENT;
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc) {
mutex_lock(&dev->desc->ibi_lock);
ret = i3c_dev_enable_ibi_locked(dev->desc);
mutex_unlock(&dev->desc->ibi_lock);
}
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_enable_ibi);
/**
* i3c_device_request_ibi() - Request an IBI
* @dev: device for which we should enable IBIs
* @req: setup requested for this IBI
*
* This function is responsible for pre-allocating all resources needed to
* process IBIs coming from @dev. When this function returns, the IBI is not
* enabled until i3c_device_enable_ibi() is called.
*
* Return: 0 in case of success, a negative error core otherwise.
*/
int i3c_device_request_ibi(struct i3c_device *dev,
const struct i3c_ibi_setup *req)
{
int ret = -ENOENT;
if (!req->handler || !req->num_slots)
return -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc) {
mutex_lock(&dev->desc->ibi_lock);
ret = i3c_dev_request_ibi_locked(dev->desc, req);
mutex_unlock(&dev->desc->ibi_lock);
}
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_request_ibi);
/**
* i3c_device_free_ibi() - Free all resources needed for IBI handling
* @dev: device on which you want to release IBI resources
*
* This function is responsible for de-allocating resources previously
* allocated by i3c_device_request_ibi(). It should be called after disabling
* IBIs with i3c_device_disable_ibi().
*/
void i3c_device_free_ibi(struct i3c_device *dev)
{
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc) {
mutex_lock(&dev->desc->ibi_lock);
i3c_dev_free_ibi_locked(dev->desc);
mutex_unlock(&dev->desc->ibi_lock);
}
i3c_bus_normaluse_unlock(dev->bus);
}
EXPORT_SYMBOL_GPL(i3c_device_free_ibi);
/**
* i3cdev_to_dev() - Returns the device embedded in @i3cdev
* @i3cdev: I3C device
*
* Return: a pointer to a device object.
*/
struct device *i3cdev_to_dev(struct i3c_device *i3cdev)
{
return &i3cdev->dev;
}
EXPORT_SYMBOL_GPL(i3cdev_to_dev);
/**
* i3c_device_match_id() - Returns the i3c_device_id entry matching @i3cdev
* @i3cdev: I3C device
* @id_table: I3C device match table
*
* Return: a pointer to an i3c_device_id object or NULL if there's no match.
*/
const struct i3c_device_id *
i3c_device_match_id(struct i3c_device *i3cdev,
const struct i3c_device_id *id_table)
{
struct i3c_device_info devinfo;
const struct i3c_device_id *id;
u16 manuf, part, ext_info, inst;
bool rndpid;
i3c_device_get_info(i3cdev, &devinfo);
manuf = I3C_PID_MANUF_ID(devinfo.pid);
part = I3C_PID_PART_ID(devinfo.pid);
ext_info = I3C_PID_EXTRA_INFO(devinfo.pid);
inst = I3C_PID_INSTANCE_ID(devinfo.pid);
rndpid = I3C_PID_RND_LOWER_32BITS(devinfo.pid);
printk(" i3c_device_match_id: manuf 0x%x, part 0x%x, inst 0x%x, ext_info 0x%x \n", manuf, part, inst, ext_info);
for (id = id_table; id->match_flags != 0; id++) {
if ((id->match_flags & I3C_MATCH_DCR) &&
id->dcr != devinfo.dcr)
continue;
if ((id->match_flags & I3C_MATCH_MANUF) &&
id->manuf_id != manuf)
continue;
if ((id->match_flags & I3C_MATCH_PART) &&
(rndpid || id->part_id != part))
continue;
if ((id->match_flags & I3C_MATCH_EXTRA_INFO) &&
(rndpid || id->extra_info != ext_info))
continue;
return id;
}
return NULL;
}
EXPORT_SYMBOL_GPL(i3c_device_match_id);
/**
* i3c_driver_register_with_owner() - register an I3C device driver
*
* @drv: driver to register
* @owner: module that owns this driver
*
* Register @drv to the core.
*
* Return: 0 in case of success, a negative error core otherwise.
*/
int i3c_driver_register_with_owner(struct i3c_driver *drv, struct module *owner)
{
drv->driver.owner = owner;
drv->driver.bus = &i3c_bus_type;
if (!drv->probe) {
pr_err("Trying to register an i3c driver without probe callback\n");
return -EINVAL;
}
return driver_register(&drv->driver);
}
EXPORT_SYMBOL_GPL(i3c_driver_register_with_owner);
/**
* i3c_driver_unregister() - unregister an I3C device driver
*
* @drv: driver to unregister
*
* Unregister @drv.
*/
void i3c_driver_unregister(struct i3c_driver *drv)
{
driver_unregister(&drv->driver);
}
EXPORT_SYMBOL_GPL(i3c_driver_unregister);
/**
* i3c_device_control_pec() - enable or disable PEC support in HW
*
* @dev: I3C device to get the status for
* @pec: flag telling whether PEC support shall be enabled or disabled
*
* Try to enable or disable HW support for PEC (Packet Error Check).
* In case no HW support for PEC, software implementation could be used.
*
* Return: 0 in case of success, -EOPNOTSUPP in case PEC is not supported by HW,
* other negative error codes when PEC enabling failed.
*/
int i3c_device_control_pec(struct i3c_device *dev, bool pec)
{
return i3c_dev_control_pec(dev->desc, pec);
}
EXPORT_SYMBOL_GPL(i3c_device_control_pec);
/**
* i3c_device_register_event_cb() - register callback for I3C framework event.
* @dev: the I3C device driver handle.
* @ev: I3C framework event callback
*
* This function allows I3C device driver to register for I3C framework events.
* Provided callback will be used by controller driver to publish events.
*/
void i3c_device_register_event_cb(struct i3c_device *dev, i3c_event_cb event_cb)
{
dev->desc->event_cb = event_cb;
}
EXPORT_SYMBOL_GPL(i3c_device_register_event_cb);
/**
* i3c_device_setmrl_ccc() - set maximum read length
*
* @dev: I3C device to set the length for
* @info: I3C device info to fill the length in
* @read_len: maximum read length value to be set
* @ibi_len: maximum ibi payload length to be set
*
* Set I3C device maximum read length from I3C master device via corresponding CCC command
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_setmrl_ccc(struct i3c_device *dev, struct i3c_device_info *info, u16 read_len,
u8 ibi_len)
{
struct i3c_master_controller *master = i3c_dev_get_master(dev->desc);
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (master)
ret = i3c_master_setmrl_locked(master, &dev->desc->info, read_len, ibi_len);
i3c_bus_normaluse_unlock(dev->bus);
i3c_device_get_info(dev, info);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_setmrl_ccc);
/**
* i3c_device_setmwl_ccc() - set maximum write length
*
* @dev: I3C device to set the length for
* @info: I3C device info to fill the length in
* @write_len: maximum write length value to be set
*
* Set I3C device maximum write length from I3C master device via corresponding CCC command
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_setmwl_ccc(struct i3c_device *dev, struct i3c_device_info *info, u16 write_len)
{
struct i3c_master_controller *master = i3c_dev_get_master(dev->desc);
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (master)
ret = i3c_master_setmwl_locked(master, &dev->desc->info, write_len);
i3c_bus_normaluse_unlock(dev->bus);
i3c_device_get_info(dev, info);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_setmwl_ccc);
/**
* i3c_device_getmrl_ccc() - get maximum read length
*
* @dev: I3C device to get the length for
* @info: I3C device info to fill the length in
*
* Receive I3C device maximum read length from I3C master device via corresponding CCC command
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_getmrl_ccc(struct i3c_device *dev, struct i3c_device_info *info)
{
struct i3c_master_controller *master = i3c_dev_get_master(dev->desc);
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (master)
ret = i3c_master_getmrl_locked(master, &dev->desc->info);
i3c_bus_normaluse_unlock(dev->bus);
i3c_device_get_info(dev, info);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_getmrl_ccc);
/**
* i3c_device_getmwl_ccc() - get maximum write length
*
* @dev: I3C device to get the length for
* @info: I3C device info to fill the length in
*
* Receive I3C device maximum write length from I3C master device via corresponding CCC command
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_getmwl_ccc(struct i3c_device *dev, struct i3c_device_info *info)
{
struct i3c_master_controller *master = i3c_dev_get_master(dev->desc);
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (master)
ret = i3c_master_getmwl_locked(master, &dev->desc->info);
i3c_bus_normaluse_unlock(dev->bus);
i3c_device_get_info(dev, info);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_getmwl_ccc);
int i3c_device_setaasa_ccc(struct i3c_device *dev)
{
struct i3c_master_controller *master = i3c_dev_get_master(dev->desc);
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (master)
ret = i3c_master_setaasa_locked(master);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_setaasa_ccc);
/**
* i3c_device_dbgaction_wr_ccc() - I3C for Debug action write CCC
*
* @dev: I3C device to initiate the Debug Action write
* @info: I3C device info to capture target system details
* @data: data bytes for the debug action
* @len: length of the data bytes
*
* Initiate a particular debug action within the target system
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_dbgaction_wr_ccc(struct i3c_device *dev, struct i3c_device_info *info,
u8 *data, u8 len)
{
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc)
ret = i3c_dev_dbgaction_wr_locked(dev->desc, info, data, len);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_dbgaction_wr_ccc);
int i3c_device_sethid_ccc(struct i3c_device *dev)
{
struct i3c_master_controller *master = i3c_dev_get_master(dev->desc);
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (master)
ret = i3c_master_sethid_locked(master);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_sethid_ccc);
/**
* i3c_device_dbgopcode_wr_ccc() - I3C for Debug opcode CCC
*
* @dev: I3C device to initiate the Debug Opcode write
* @info: I3C device info to capture target system details
* @data: data bytes for the debug opcode
* @len: length of the data bytes
*
* Request a particular operation of the network adaptor of the target system
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_dbgopcode_wr_ccc(struct i3c_device *dev, struct i3c_device_info *info,
u8 *data, u8 len)
{
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc)
ret = i3c_dev_dbgopcode_wr_locked(dev->desc, info, data, len);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_dbgopcode_wr_ccc);
/**
* i3c_device_dbgopcode_rd_ccc() - I3C for Debug opcode CCC
*
* @dev: I3C device to initiate the Debug Opcode read
* @info: I3C device info to capture target system details
* @data: data bytes for the debug opcode
* @len: length of the data bytes
*
* Request a particular operation of the network adaptor of the target system
*
* Return: 0 in case of success, a negative error code otherwise.
*/
int i3c_device_dbgopcode_rd_ccc(struct i3c_device *dev, struct i3c_device_info *info,
u8 *data, u8 len)
{
int ret = -EINVAL;
i3c_bus_normaluse_lock(dev->bus);
if (dev->desc)
ret = i3c_dev_dbgopcode_rd_locked(dev->desc, info, data, len);
i3c_bus_normaluse_unlock(dev->bus);
return ret;
}
EXPORT_SYMBOL_GPL(i3c_device_dbgopcode_rd_ccc);