mirror of
https://github.com/wfjm/w11.git
synced 2026-02-04 07:53:38 +00:00
- hook_ibmon_*.tcl: check ibmon availability - hook_dmscnt.tcl: check dmscnt availability - *: add SPDX
15 lines
474 B
Tcl
15 lines
474 B
Tcl
# $Id: hook_ibmon_pca.tcl 1169 2019-06-21 07:00:59Z mueller $
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# Copyright 2019- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
#
|
|
if {[cpu0 imap -testname im.lolim]} {
|
|
puts "hook: start ibmon for pca"
|
|
package require ibd_ibmon
|
|
ibd_ibmon::stop
|
|
cpu0 cp -wibr im.lolim [cpu0 imap pca.rcsr] \
|
|
-wibr im.hilim [cpu0 imap pca.pbuf]
|
|
ibd_ibmon::start
|
|
} else {
|
|
puts "hook: ibmon not available, hook_ibmon_pca ignored"
|
|
}
|