diff options
author | Sudeep Dutt <sudeep.dutt@intel.com> | 2015-04-29 08:32:38 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-05-24 15:13:37 -0400 |
commit | 74321d4c99fc1d2582085cbb614d5a3ea9da962d (patch) | |
tree | 903b803d6a3ce4f7d49348b18b357dc69b4d4102 /drivers/misc/mic/host/mic_debugfs.c | |
parent | fdd9fd5c38afe732258a0af4c6be14f3fbd1585c (diff) |
misc: mic: MIC host driver specific changes to enable SCIF
MIC host driver specific changes to enable SCIF. This patch implements
the SCIF hardware bus operations and registers a SCIF device on the
SCIF hardware bus.
Reviewed-by: Nikhil Rao <nikhil.rao@intel.com>
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Signed-off-by: Sudeep Dutt <sudeep.dutt@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mic/host/mic_debugfs.c')
-rw-r--r-- | drivers/misc/mic/host/mic_debugfs.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/misc/mic/host/mic_debugfs.c b/drivers/misc/mic/host/mic_debugfs.c index 687e9aacf3bb..3c9ea4896f3c 100644 --- a/drivers/misc/mic/host/mic_debugfs.c +++ b/drivers/misc/mic/host/mic_debugfs.c | |||
@@ -214,6 +214,19 @@ static int mic_dp_show(struct seq_file *s, void *pos) | |||
214 | bootparam->shutdown_status); | 214 | bootparam->shutdown_status); |
215 | seq_printf(s, "Bootparam: shutdown_card %d\n", | 215 | seq_printf(s, "Bootparam: shutdown_card %d\n", |
216 | bootparam->shutdown_card); | 216 | bootparam->shutdown_card); |
217 | seq_printf(s, "Bootparam: tot_nodes %d\n", | ||
218 | bootparam->tot_nodes); | ||
219 | seq_printf(s, "Bootparam: node_id %d\n", | ||
220 | bootparam->node_id); | ||
221 | seq_printf(s, "Bootparam: c2h_scif_db %d\n", | ||
222 | bootparam->c2h_scif_db); | ||
223 | seq_printf(s, "Bootparam: h2c_scif_db %d\n", | ||
224 | bootparam->h2c_scif_db); | ||
225 | seq_printf(s, "Bootparam: scif_host_dma_addr 0x%llx\n", | ||
226 | bootparam->scif_host_dma_addr); | ||
227 | seq_printf(s, "Bootparam: scif_card_dma_addr 0x%llx\n", | ||
228 | bootparam->scif_card_dma_addr); | ||
229 | |||
217 | 230 | ||
218 | for (i = sizeof(*bootparam); i < MIC_DP_SIZE; | 231 | for (i = sizeof(*bootparam); i < MIC_DP_SIZE; |
219 | i += mic_total_desc_size(d)) { | 232 | i += mic_total_desc_size(d)) { |