Home
last modified time | relevance | path

Searched refs:dci (Results 1 – 13 of 13) sorted by relevance

/Linux-v5.4/drivers/edac/
Dhighbank_l2_edac.c26 struct edac_device_ctl_info *dci = dev_id; in highbank_l2_err_handler() local
27 struct hb_l2_drvdata *drvdata = dci->pvt_info; in highbank_l2_err_handler()
31 edac_device_handle_ce(dci, 0, 0, dci->ctl_name); in highbank_l2_err_handler()
35 edac_device_handle_ue(dci, 0, 0, dci->ctl_name); in highbank_l2_err_handler()
50 struct edac_device_ctl_info *dci; in highbank_l2_err_probe() local
55 dci = edac_device_alloc_ctl_info(sizeof(*drvdata), "cpu", in highbank_l2_err_probe()
57 if (!dci) in highbank_l2_err_probe()
60 drvdata = dci->pvt_info; in highbank_l2_err_probe()
61 dci->dev = &pdev->dev; in highbank_l2_err_probe()
62 platform_set_drvdata(pdev, dci); in highbank_l2_err_probe()
[all …]
Dsifive_edac.c19 struct edac_device_ctl_info *dci; member
36 edac_device_handle_ue(p->dci, 0, 0, msg); in ecc_err_event()
38 edac_device_handle_ce(p->dci, 0, 0, msg); in ecc_err_event()
54 p->dci = edac_device_alloc_ctl_info(0, "sifive_ecc", 1, "sifive_ecc", in ecc_register()
57 if (IS_ERR(p->dci)) in ecc_register()
58 return PTR_ERR(p->dci); in ecc_register()
60 p->dci->dev = &pdev->dev; in ecc_register()
61 p->dci->mod_name = "Sifive ECC Manager"; in ecc_register()
62 p->dci->ctl_name = dev_name(&pdev->dev); in ecc_register()
63 p->dci->dev_name = dev_name(&pdev->dev); in ecc_register()
[all …]
Darmada_xp_edac.c407 static void aurora_l2_check(struct edac_device_ctl_info *dci) in aurora_l2_check() argument
409 struct aurora_l2_drvdata *drvdata = dci->pvt_info; in aurora_l2_check()
479 edac_device_handle_ue(dci, 0, 0, drvdata->msg); in aurora_l2_check()
483 edac_device_handle_ce(dci, 0, 0, drvdata->msg); in aurora_l2_check()
489 edac_device_handle_ue(dci, 0, 0, "details unavailable (multiple errors)"); in aurora_l2_check()
491 edac_device_handle_ue(dci, 0, 0, "details unavailable (multiple errors)"); in aurora_l2_check()
494 static void aurora_l2_poll(struct edac_device_ctl_info *dci) in aurora_l2_poll() argument
497 struct aurora_l2_drvdata *drvdata = dci->pvt_info; in aurora_l2_poll()
500 aurora_l2_check(dci); in aurora_l2_poll()
515 struct edac_device_ctl_info *dci; in aurora_l2_probe() local
[all …]
Daltera_edac.c611 struct edac_device_ctl_info *dci = dev_id; in altr_edac_device_handler() local
612 struct altr_edac_device_dev *drvdata = dci->pvt_info; in altr_edac_device_handler()
618 edac_device_handle_ce(dci, 0, 0, drvdata->edac_dev_name); in altr_edac_device_handler()
623 edac_device_handle_ue(dci, 0, 0, drvdata->edac_dev_name); in altr_edac_device_handler()
769 struct edac_device_ctl_info *dci; in altr_edac_device_probe() local
799 dci = edac_device_alloc_ctl_info(sizeof(*drvdata), ecc_name, in altr_edac_device_probe()
803 if (!dci) { in altr_edac_device_probe()
810 drvdata = dci->pvt_info; in altr_edac_device_probe()
811 dci->dev = &pdev->dev; in altr_edac_device_probe()
812 platform_set_drvdata(pdev, dci); in altr_edac_device_probe()
[all …]
/Linux-v5.4/drivers/staging/most/Documentation/ABI/
Dsysfs-bus-most.txt19 What: /sys/bus/most/devices/.../dci
24 If the network interface controller is attached via USB, a dci
29 What: /sys/bus/most/devices/.../dci/arb_address
38 What: /sys/bus/most/devices/.../dci/arb_value
47 What: /sys/bus/most/devices/.../dci/mep_eui48_hi
55 What: /sys/bus/most/devices/.../dci/mep_eui48_lo
63 What: /sys/bus/most/devices/.../dci/mep_eui48_mi
71 What: /sys/bus/most/devices/.../dci/mep_filter
79 What: /sys/bus/most/devices/.../dci/mep_hash0
87 What: /sys/bus/most/devices/.../dci/mep_hash1
[all …]
Dsysfs-class-most.txt54 What: /sys/class/most/mostcore/devices/<mdev>/dci
59 If the network interface controller is attached via USB, a dci
65 What: /sys/class/most/mostcore/devices/<mdev>/dci/arb_address
74 What: /sys/class/most/mostcore/devices/<mdev>/dci/arb_value
83 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_eui48_hi
91 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_eui48_lo
99 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_eui48_mi
107 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_filter
115 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_hash0
123 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_hash1
[all …]
/Linux-v5.4/drivers/staging/most/usb/
Dusb.c108 struct most_dci_obj *dci; member
1020 struct most_dci_obj *dci = to_dci_obj(dev); in release_dci() local
1022 kfree(dci); in release_dci()
1145 mdev->dci = kzalloc(sizeof(*mdev->dci), GFP_KERNEL); in hdm_probe()
1146 if (!mdev->dci) { in hdm_probe()
1153 mdev->dci->dev.init_name = "dci"; in hdm_probe()
1154 mdev->dci->dev.parent = &mdev->iface.dev; in hdm_probe()
1155 mdev->dci->dev.groups = dci_attr_groups; in hdm_probe()
1156 mdev->dci->dev.release = release_dci; in hdm_probe()
1157 if (device_register(&mdev->dci->dev)) { in hdm_probe()
[all …]
/Linux-v5.4/drivers/usb/host/
Dxhci-debugfs.c276 int dci; in xhci_endpoint_context_show() local
285 for (dci = 1; dci < 32; dci++) { in xhci_endpoint_context_show()
286 ep_ctx = xhci_get_ep_ctx(xhci, dev->out_ctx, dci); in xhci_endpoint_context_show()
287 dma = dev->out_ctx->dma + dci * CTX_SIZE(xhci->hcc_params); in xhci_endpoint_context_show()
/Linux-v5.4/net/6lowpan/
Diphc.c1137 struct lowpan_iphc_ctx *dci, *sci, dci_entry, sci_entry; in lowpan_header_compress() local
1168 dci = lowpan_iphc_ctx_get_by_mcast_addr(dev, &hdr->daddr); in lowpan_header_compress()
1170 dci = lowpan_iphc_ctx_get_by_addr(dev, &hdr->daddr); in lowpan_header_compress()
1171 if (dci) { in lowpan_header_compress()
1172 memcpy(&dci_entry, dci, sizeof(*dci)); in lowpan_header_compress()
1173 cid |= dci->id; in lowpan_header_compress()
1259 if (dci) { in lowpan_header_compress()
1269 if (dci) { in lowpan_header_compress()
/Linux-v5.4/Documentation/devicetree/bindings/clock/
Dzynq-7000.txt50 9: dci
98 "dci", "lqspi", "smc", "pcap", "gem0", "gem1",
/Linux-v5.4/drivers/clk/zynq/
Dclkc.c52 ddr2x, ddr3x, dci, enumerator
347 clks[dci] = clk_register_gate(NULL, clk_output_name[dci], "dci_div1", in zynq_clk_setup()
350 clk_prepare_enable(clks[dci]); in zynq_clk_setup()
/Linux-v5.4/arch/arm/boot/dts/
Dzynq-7000.dtsi254 "dci", "lqspi", "smc", "pcap", "gem0", "gem1",
/Linux-v5.4/fs/ceph/
Ddir.c1788 struct ceph_inode_info *dci = ceph_inode(dir); in ceph_dentry_hash() local
1791 switch (dci->i_dir_layout.dl_dir_hash) { in ceph_dentry_hash()
1798 hash = ceph_str_hash(dci->i_dir_layout.dl_dir_hash, in ceph_dentry_hash()