/openbmc/u-boot/fs/yaffs2/ |
H A D | yaffs_packedtags2.c | 41 const struct yaffs_packed_tags2_tags_only *ptt) in yaffs_dump_packed_tags2_tags_only() argument 45 ptt->obj_id, ptt->chunk_id, ptt->n_bytes, ptt->seq_number); in yaffs_dump_packed_tags2_tags_only() 75 void yaffs_pack_tags2_tags_only(struct yaffs_packed_tags2_tags_only *ptt, in yaffs_pack_tags2_tags_only() argument 78 ptt->chunk_id = t->chunk_id; in yaffs_pack_tags2_tags_only() 79 ptt->seq_number = t->seq_number; in yaffs_pack_tags2_tags_only() 80 ptt->n_bytes = t->n_bytes; in yaffs_pack_tags2_tags_only() 81 ptt->obj_id = t->obj_id; in yaffs_pack_tags2_tags_only() 90 ptt->chunk_id = EXTRA_HEADER_INFO_FLAG | t->extra_parent_id; in yaffs_pack_tags2_tags_only() 92 ptt->chunk_id |= EXTRA_SHRINK_FLAG; in yaffs_pack_tags2_tags_only() 94 ptt->chunk_id |= EXTRA_SHADOWS_FLAG; in yaffs_pack_tags2_tags_only() [all …]
|
/openbmc/linux/tools/perf/util/ |
H A D | hisi-ptt.c | 39 struct hisi_ptt *ptt; member 53 static void hisi_ptt_dump(struct hisi_ptt *ptt __maybe_unused, in hisi_ptt_dump() 76 static void hisi_ptt_dump_event(struct hisi_ptt *ptt, unsigned char *buf, in hisi_ptt_dump_event() argument 81 hisi_ptt_dump(ptt, buf, len); in hisi_ptt_dump_event() 96 struct hisi_ptt *ptt = container_of(session->auxtrace, struct hisi_ptt, in hisi_ptt_process_auxtrace_event() local 122 hisi_ptt_dump_event(ptt, data, size); in hisi_ptt_process_auxtrace_event() 140 struct hisi_ptt *ptt = container_of(session->auxtrace, struct hisi_ptt, in hisi_ptt_free() local 144 free(ptt); in hisi_ptt_free() 150 struct hisi_ptt *ptt = container_of(session->auxtrace, struct hisi_ptt, auxtrace); in hisi_ptt_evsel_is_auxtrace() local 152 return evsel->core.attr.type == ptt->pmu_type; in hisi_ptt_evsel_is_auxtrace() [all …]
|
H A D | Build | 122 perf-$(CONFIG_AUXTRACE) += hisi-ptt.o 123 perf-$(CONFIG_AUXTRACE) += hisi-ptt-decoder/
|
/openbmc/linux/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_main.c | 382 struct qed_ptt *ptt; in qed_fill_dev_info() local 432 ptt = qed_ptt_acquire(QED_LEADING_HWFN(cdev)); in qed_fill_dev_info() 433 if (ptt) { in qed_fill_dev_info() 434 qed_mcp_get_mfw_ver(QED_LEADING_HWFN(cdev), ptt, in qed_fill_dev_info() 437 qed_mcp_get_mbi_ver(QED_LEADING_HWFN(cdev), ptt, in qed_fill_dev_info() 440 qed_mcp_get_flash_size(QED_LEADING_HWFN(cdev), ptt, in qed_fill_dev_info() 443 qed_ptt_release(QED_LEADING_HWFN(cdev), ptt); in qed_fill_dev_info() 1175 struct qed_ptt *ptt = qed_ptt_acquire(hwfn); in qed_slowpath_task() local 1177 if (!ptt) { in qed_slowpath_task() 1187 qed_mfw_process_tlv_req(hwfn, ptt); in qed_slowpath_task() [all …]
|
H A D | qed_dcbx.c | 1326 struct qed_ptt *ptt; in qed_dcbnl_setstate() local 1338 ptt = qed_ptt_acquire(hwfn); in qed_dcbnl_setstate() 1339 if (!ptt) in qed_dcbnl_setstate() 1342 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0); in qed_dcbnl_setstate() 1344 qed_ptt_release(hwfn, ptt); in qed_dcbnl_setstate() 1430 struct qed_ptt *ptt; in qed_dcbnl_setpfccfg() local 1448 ptt = qed_ptt_acquire(hwfn); in qed_dcbnl_setpfccfg() 1449 if (!ptt) in qed_dcbnl_setpfccfg() 1452 rc = qed_dcbx_config_params(hwfn, ptt, &dcbx_set, 0); in qed_dcbnl_setpfccfg() 1454 qed_ptt_release(hwfn, ptt); in qed_dcbnl_setpfccfg() [all …]
|
H A D | qed_sriov.c | 4109 static int qed_iov_copy_vf_msg(struct qed_hwfn *p_hwfn, struct qed_ptt *ptt, in qed_iov_copy_vf_msg() argument 4124 if (qed_dmae_host2host(p_hwfn, ptt, in qed_iov_copy_vf_msg() 4480 struct qed_ptt *ptt = qed_ptt_acquire(hwfn); in qed_sriov_disable() local 4485 if (!ptt) { in qed_sriov_disable() 4491 qed_clean_wfq_db(hwfn, ptt); in qed_sriov_disable() 4509 ptt, j); in qed_sriov_disable() 4515 qed_ptt_release(hwfn, ptt); in qed_sriov_disable() 4546 struct qed_ptt *ptt; in qed_sriov_enable() local 4560 ptt = qed_ptt_acquire(hwfn); in qed_sriov_enable() 4567 if (!ptt) { in qed_sriov_enable() [all …]
|
H A D | qed.h | 976 void qed_link_update(struct qed_hwfn *hwfn, struct qed_ptt *ptt); 977 void qed_bw_update(struct qed_hwfn *hwfn, struct qed_ptt *ptt);
|
H A D | qed_init_fw_funcs.c | 1189 #define ARR_REG_WR(dev, ptt, addr, arr, arr_size) \ argument 1194 qed_wr(dev, ptt, \
|
H A D | qed_debug.c | 409 #define ARR_REG_WR(dev, ptt, addr, arr, arr_size) \ argument 412 qed_wr(dev, ptt, addr, (arr)[i]); \
|
/openbmc/linux/drivers/usb/host/ |
H A D | xhci-mtk-sch.c | 159 struct mu3h_sch_tt *tt, **tt_index, **ptt; in find_tt() local 181 ptt = &tt_index[udev->ttport - 1]; in find_tt() 183 ptt = (struct mu3h_sch_tt **) &utt->hcpriv; in find_tt() 186 tt = *ptt; in find_tt() 197 *ptt = tt; in find_tt() 207 struct mu3h_sch_tt *tt, **tt_index, **ptt; in drop_tt() local 216 ptt = &tt_index[udev->ttport - 1]; in drop_tt() 222 ptt = (struct mu3h_sch_tt **)&utt->hcpriv; in drop_tt() 225 tt = *ptt; in drop_tt() 229 *ptt = NULL; in drop_tt()
|
H A D | ehci-sched.c | 104 struct ehci_tt *tt, **tt_index, **ptt; in find_tt() local 129 ptt = &tt_index[port]; in find_tt() 132 ptt = (struct ehci_tt **) &utt->hcpriv; in find_tt() 135 tt = *ptt; in find_tt() 152 *ptt = tt; in find_tt() 162 struct ehci_tt *tt, **tt_index, **ptt; in drop_tt() local 171 ptt = &tt_index[udev->ttport - 1]; in drop_tt() 178 ptt = (struct ehci_tt **) &utt->hcpriv; in drop_tt() 181 tt = *ptt; in drop_tt() 186 *ptt = NULL; in drop_tt()
|
/openbmc/linux/include/uapi/linux/ |
H A D | hdlcdrv.h | 36 int ptt; member 42 int ptt; member
|
/openbmc/linux/include/linux/ |
H A D | hdlcdrv.h | 132 unsigned char ptt; member 234 s->hdlctx.ptt = 0; in hdlcdrv_getbits() 258 return s->hdlctx.ptt || (s->hdlctx.calibrate > 0); in hdlcdrv_ptt()
|
/openbmc/linux/drivers/net/hamradio/ |
H A D | baycom_ser_fdx.c | 120 unsigned char ptt; member 289 if (bc->modem.ptt) in ser12_interrupt() 305 if (bc->modem.ptt && txcount) { in ser12_interrupt() 310 bc->modem.ptt = 0; in ser12_interrupt() 319 if (!bc->modem.ptt && txcount) { in ser12_interrupt() 324 bc->modem.ptt = 1; in ser12_interrupt()
|
H A D | hdlcdrv.c | 359 s->hdlctx.ptt = 1; in start_tx() 367 if (!s || s->magic != HDLCDRV_MAGIC || s->hdlctx.ptt || !s->skb) in hdlcdrv_arbitrate() 454 s->hdlctx.ptt = 0; in hdlcdrv_open() 550 bi.data.cs.ptt = hdlcdrv_ptt(s); in hdlcdrv_siocdevprivate() 560 bi.data.ocs.ptt = hdlcdrv_ptt(s); in hdlcdrv_siocdevprivate() 654 s->hdlctx.ptt = 0; in hdlcdrv_setup()
|
H A D | baycom_epp.c | 1055 hi.data.cs.ptt = !!(bc->stat & EPP_PTTBIT); in baycom_siocdevprivate() 1065 hi.data.ocs.ptt = !!(bc->stat & EPP_PTTBIT); in baycom_siocdevprivate()
|
/openbmc/linux/tools/perf/util/hisi-ptt-decoder/ |
H A D | Build | 1 perf-$(CONFIG_AUXTRACE) += hisi-ptt-pkt-decoder.o
|
/openbmc/linux/drivers/hwtracing/ |
H A D | Kconfig | 8 source "drivers/hwtracing/ptt/Kconfig"
|
/openbmc/linux/Documentation/trace/ |
H A D | index.rst | 37 hisi-ptt
|
/openbmc/linux/tools/perf/arch/arm64/util/ |
H A D | Build | 14 arm-spe.o mem-events.o hisi-ptt.o
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-devices-hisi_ptt | 9 See Documentation/trace/hisi-ptt.rst for more information. 71 See the description of the "filter" in Documentation/trace/hisi-ptt.rst 97 See the description of the "filter" in Documentation/trace/hisi-ptt.rst
|
/openbmc/linux/drivers/ |
H A D | Makefile | 184 obj-$(CONFIG_HISI_PTT) += hwtracing/ptt/
|
/openbmc/linux/ |
H A D | MAINTAINERS | 9479 F: Documentation/trace/hisi-ptt.rst 9480 F: drivers/hwtracing/ptt/ 9481 F: tools/perf/arch/arm64/util/hisi-ptt.c 9482 F: tools/perf/util/hisi-ptt* 9483 F: tools/perf/util/hisi-ptt-decoder/*
|
H A D | opengrok1.0.log | [all...] |
/openbmc/ |
D | opengrok1.0.log | [all...] |