Lines Matching +full:hw +full:- +full:revision
1 // SPDX-License-Identifier: GPL-2.0
11 struct nitrox_device *ndev = s->private; in firmware_show()
13 seq_printf(s, "Version: %s\n", ndev->hw.fw_name[0]); in firmware_show()
14 seq_printf(s, "Version: %s\n", ndev->hw.fw_name[1]); in firmware_show()
22 struct nitrox_device *ndev = s->private; in device_show()
24 seq_printf(s, "NITROX [%d]\n", ndev->idx); in device_show()
25 seq_printf(s, " Part Name: %s\n", ndev->hw.partname); in device_show()
26 seq_printf(s, " Frequency: %d MHz\n", ndev->hw.freq); in device_show()
27 seq_printf(s, " Device ID: 0x%0x\n", ndev->hw.device_id); in device_show()
28 seq_printf(s, " Revision ID: 0x%0x\n", ndev->hw.revision_id); in device_show()
30 ndev->hw.ae_cores, ndev->hw.se_cores, ndev->hw.zip_cores); in device_show()
39 struct nitrox_device *ndev = s->private; in stats_show()
41 seq_printf(s, "NITROX [%d] Request Statistics\n", ndev->idx); in stats_show()
43 (u64)atomic64_read(&ndev->stats.posted)); in stats_show()
45 (u64)atomic64_read(&ndev->stats.completed)); in stats_show()
47 (u64)atomic64_read(&ndev->stats.dropped)); in stats_show()
56 debugfs_remove_recursive(ndev->debugfs_dir); in nitrox_debugfs_exit()
57 ndev->debugfs_dir = NULL; in nitrox_debugfs_exit()
66 ndev->debugfs_dir = dir; in nitrox_debugfs_init()