Home
last modified time | relevance | path

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

/linux/drivers/edac/
A Dhighbank_l2_edac.c31 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
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()
91 dci->dev_name = dev_name(&pdev->dev); in highbank_l2_err_probe()
93 if (edac_device_add_device(dci)) in highbank_l2_err_probe()
116 edac_device_free_ctl_info(dci); in highbank_l2_err_probe()
[all …]
A 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()
57 if (!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()
65 if (edac_device_add_device(p->dci)) { in ecc_register()
75 edac_device_free_ctl_info(p->dci); in ecc_register()
[all …]
A Darmada_xp_edac.c500 aurora_l2_check(dci); in aurora_l2_poll()
515 struct edac_device_ctl_info *dci; in aurora_l2_probe() local
541 if (!dci) in aurora_l2_probe()
544 drvdata = dci->pvt_info; in aurora_l2_probe()
546 dci->dev = &pdev->dev; in aurora_l2_probe()
547 platform_set_drvdata(pdev, dci); in aurora_l2_probe()
550 dci->edac_check = aurora_l2_poll; in aurora_l2_probe()
553 dci->dev_name = dev_name(&pdev->dev); in aurora_l2_probe()
559 if (edac_device_add_device(dci)) { in aurora_l2_probe()
560 edac_device_free_ctl_info(dci); in aurora_l2_probe()
[all …]
A Daltera_edac.c750 if (!dci) { in altr_edac_device_probe()
758 dci->dev = &pdev->dev; in altr_edac_device_probe()
868 edac_device_handle_ce(dci->edac_dev, 0, 0, dci->edac_dev_name); in altr_edac_a10_ecc_irq()
874 edac_device_handle_ue(dci->edac_dev, 0, 0, dci->edac_dev_name); in altr_edac_a10_ecc_irq()
875 if (dci->data->panic) in altr_edac_a10_ecc_irq()
1261 edac_device_handle_ce(dci->edac_dev, 0, 0, dci->edac_dev_name); in altr_edac_a10_l2_irq()
1268 edac_device_handle_ue(dci->edac_dev, 0, 0, dci->edac_dev_name); in altr_edac_a10_l2_irq()
1489 if (!dci) { in altr_portb_setup()
1497 altdev = dci->pvt_info; in altr_portb_setup()
1898 if (!dci) { in altr_edac_a10_device_add()
[all …]
/linux/Documentation/ABI/testing/
A Dsysfs-bus-most19 What: /sys/bus/most/devices/<dev>/dci
29 What: /sys/bus/most/devices/<dev>/dci/arb_address
38 What: /sys/bus/most/devices/<dev>/dci/arb_value
47 What: /sys/bus/most/devices/<dev>/dci/mep_eui48_hi
71 What: /sys/bus/most/devices/<dev>/dci/mep_filter
79 What: /sys/bus/most/devices/<dev>/dci/mep_hash0
87 What: /sys/bus/most/devices/<dev>/dci/mep_hash1
95 What: /sys/bus/most/devices/<dev>/dci/mep_hash2
103 What: /sys/bus/most/devices/<dev>/dci/mep_hash3
111 What: /sys/bus/most/devices/<dev>/dci/ni_state
[all …]
/linux/drivers/staging/most/Documentation/ABI/
A 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
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
131 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_hash2
139 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_hash3
147 What: /sys/class/most/mostcore/devices/<mdev>/dci/ni_state
[all …]
/linux/drivers/most/
A Dmost_usb.c108 struct most_dci_obj *dci; member
918 ATTRIBUTE_GROUPS(dci);
925 kfree(dci); in release_dci()
1063 mdev->dci = kzalloc(sizeof(*mdev->dci), GFP_KERNEL); in hdm_probe()
1064 if (!mdev->dci) { in hdm_probe()
1071 mdev->dci->dev.init_name = "dci"; in hdm_probe()
1073 mdev->dci->dev.groups = dci_groups; in hdm_probe()
1086 put_device(&mdev->dci->dev); in hdm_probe()
1121 if (mdev->dci) in hdm_disconnect()
1122 device_unregister(&mdev->dci->dev); in hdm_disconnect()
[all …]
/linux/net/6lowpan/
A 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/Documentation/devicetree/bindings/clock/
A Dzynq-7000.txt50 9: dci
98 "dci", "lqspi", "smc", "pcap", "gem0", "gem1",
/linux/drivers/clk/zynq/
A Dclkc.c52 ddr2x, ddr3x, dci, enumerator
344 clks[dci] = clk_register_gate(NULL, clk_output_name[dci], "dci_div1", in zynq_clk_setup()
347 clk_prepare_enable(clks[dci]); in zynq_clk_setup()
/linux/fs/ceph/
A Ddir.c1923 struct ceph_inode_info *dci = ceph_inode(dir); in ceph_dentry_hash() local
1926 switch (dci->i_dir_layout.dl_dir_hash) { in ceph_dentry_hash()
1933 hash = ceph_str_hash(dci->i_dir_layout.dl_dir_hash, in ceph_dentry_hash()
/linux/arch/arm/boot/dts/
A Dzynq-7000.dtsi308 "dci", "lqspi", "smc", "pcap", "gem0", "gem1",

Completed in 32 milliseconds