Merge tag 'char-misc-5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Pull char/misc and other driver updates from Greg KH: "Here is the big set of char/misc and other small driver subsystem updates for 5.18-rc1. Included in here are merges from driver subsystems which contain: - iio driver updates and new drivers - fsi driver updates - fpga driver updates - habanalabs driver updates and support for new hardware - soundwire driver updates and new drivers - phy driver updates and new drivers - coresight driver updates - icc driver updates Individual changes include: - mei driver updates - interconnect driver updates - new PECI driver subsystem added - vmci driver updates - lots of tiny misc/char driver updates All of these have been in linux-next for a while with no reported problems" * tag 'char-misc-5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (556 commits) firmware: google: Properly state IOMEM dependency kgdbts: fix return value of __setup handler firmware: sysfb: fix platform-device leak in error path firmware: stratix10-svc: add missing callback parameter on RSU arm64: dts: qcom: add non-secure domain property to fastrpc nodes misc: fastrpc: Add dma handle implementation misc: fastrpc: Add fdlist implementation misc: fastrpc: Add helper function to get list and page misc: fastrpc: Add support to secure memory map dt-bindings: misc: add fastrpc domain vmid property misc: fastrpc: check before loading process to the DSP misc: fastrpc: add secure domain support dt-bindings: misc: add property to support non-secure DSP misc: fastrpc: Add support to get DSP capabilities misc: fastrpc: add support for FASTRPC_IOCTL_MEM_MAP/UNMAP misc: fastrpc: separate fastrpc device from channel context dt-bindings: nvmem: brcm,nvram: add basic NVMEM cells dt-bindings: nvmem: make "reg" property optional nvmem: brcm_nvram: parse NVRAM content into NVMEM cells nvmem: dt-bindings: Fix the error of dt-bindings check ...
This commit is contained in:
@@ -122,6 +122,92 @@ TRACE_EVENT(fsi_master_break,
|
||||
)
|
||||
);
|
||||
|
||||
TRACE_EVENT(fsi_slave_init,
|
||||
TP_PROTO(const struct fsi_slave *slave),
|
||||
TP_ARGS(slave),
|
||||
TP_STRUCT__entry(
|
||||
__field(int, master_idx)
|
||||
__field(int, master_n_links)
|
||||
__field(int, idx)
|
||||
__field(int, link)
|
||||
__field(int, chip_id)
|
||||
__field(__u32, cfam_id)
|
||||
__field(__u32, size)
|
||||
),
|
||||
TP_fast_assign(
|
||||
__entry->master_idx = slave->master->idx;
|
||||
__entry->master_n_links = slave->master->n_links;
|
||||
__entry->idx = slave->cdev_idx;
|
||||
__entry->link = slave->link;
|
||||
__entry->chip_id = slave->chip_id;
|
||||
__entry->cfam_id = slave->cfam_id;
|
||||
__entry->size = slave->size;
|
||||
),
|
||||
TP_printk("fsi%d: idx:%d link:%d/%d cid:%d cfam:%08x %08x",
|
||||
__entry->master_idx,
|
||||
__entry->idx,
|
||||
__entry->link,
|
||||
__entry->master_n_links,
|
||||
__entry->chip_id,
|
||||
__entry->cfam_id,
|
||||
__entry->size
|
||||
)
|
||||
);
|
||||
|
||||
TRACE_EVENT(fsi_slave_invalid_cfam,
|
||||
TP_PROTO(const struct fsi_master *master, int link, uint32_t cfam_id),
|
||||
TP_ARGS(master, link, cfam_id),
|
||||
TP_STRUCT__entry(
|
||||
__field(int, master_idx)
|
||||
__field(int, master_n_links)
|
||||
__field(int, link)
|
||||
__field(__u32, cfam_id)
|
||||
),
|
||||
TP_fast_assign(
|
||||
__entry->master_idx = master->idx;
|
||||
__entry->master_n_links = master->n_links;
|
||||
__entry->link = link;
|
||||
__entry->cfam_id = cfam_id;
|
||||
),
|
||||
TP_printk("fsi%d: cfam:%08x link:%d/%d",
|
||||
__entry->master_idx,
|
||||
__entry->cfam_id,
|
||||
__entry->link,
|
||||
__entry->master_n_links
|
||||
)
|
||||
);
|
||||
|
||||
TRACE_EVENT(fsi_dev_init,
|
||||
TP_PROTO(const struct fsi_device *dev),
|
||||
TP_ARGS(dev),
|
||||
TP_STRUCT__entry(
|
||||
__field(int, master_idx)
|
||||
__field(int, link)
|
||||
__field(int, type)
|
||||
__field(int, unit)
|
||||
__field(int, version)
|
||||
__field(__u32, addr)
|
||||
__field(__u32, size)
|
||||
),
|
||||
TP_fast_assign(
|
||||
__entry->master_idx = dev->slave->master->idx;
|
||||
__entry->link = dev->slave->link;
|
||||
__entry->type = dev->engine_type;
|
||||
__entry->unit = dev->unit;
|
||||
__entry->version = dev->version;
|
||||
__entry->addr = dev->addr;
|
||||
__entry->size = dev->size;
|
||||
),
|
||||
TP_printk("fsi%d: slv%d: t:%02x u:%02x v:%02x %08x@%08x",
|
||||
__entry->master_idx,
|
||||
__entry->link,
|
||||
__entry->type,
|
||||
__entry->unit,
|
||||
__entry->version,
|
||||
__entry->size,
|
||||
__entry->addr
|
||||
)
|
||||
);
|
||||
|
||||
#endif /* _TRACE_FSI_H */
|
||||
|
||||
|
||||
@@ -72,6 +72,18 @@ TRACE_EVENT(fsi_master_aspeed_opb_error,
|
||||
)
|
||||
);
|
||||
|
||||
TRACE_EVENT(fsi_master_aspeed_cfam_reset,
|
||||
TP_PROTO(bool start),
|
||||
TP_ARGS(start),
|
||||
TP_STRUCT__entry(
|
||||
__field(bool, start)
|
||||
),
|
||||
TP_fast_assign(
|
||||
__entry->start = start;
|
||||
),
|
||||
TP_printk("%s", __entry->start ? "start" : "end")
|
||||
);
|
||||
|
||||
#endif
|
||||
|
||||
#include <trace/define_trace.h>
|
||||
|
||||
Reference in New Issue
Block a user