首页 > 其他分享 >use iproc to config tdr during bscan

use iproc to config tdr during bscan

时间:2023-08-03 18:22:24浏览次数:25  
标签:use set iproc static bscan tdr config

1. case description

  when running bscan, a serials of pins need to be controlled to 1 by tdr;

  a static dft signal with default value1 was registered by register_static_dft_signal_names, added as control point of those pins;

  however, values are not loaded in tdr through jtag network;

2. invoke iproc

  define command below before process_patterns_specification:

   iProcsForModule $block

  iProc set_tdr {} {

    iWrite <tdr_sri_inst>.tdr 0b1  #depend on the tdr number within the inst

    iApply

  }

  read_config_data -in <pattern_spec>/Patterns(JtagBscanPatterns) -from_string {

    ProcdureStep(set_tdr_0) {

      iCall(set_tdr) { }

    }

  }

3. ps

  may need to reset proc after the icall because that will reset those tdr to 0 again.

标签:use,set,iproc,static,bscan,tdr,config
From: https://www.cnblogs.com/6y4z/p/17604123.html

相关文章

  • 生成随机User-Agent的第三方库
     安装pipinstallr-useragent使用fromrandom_useragentimportUserAgent​u=UserAgent()​#generateandroiduser-agentprint(u.android()) #randomprint(u.android(app="app"))print(u.android(app="webview"))print(u.android(app="uc&......
  • Vhost-user协议 — QEMU 8.0.0 文档 翻译版
    Vhost-user协议—QEMU8.0.0文档翻译版(先机翻,然后自己人工翻译一整天)PDF版免费送! 联系qq:2426149954,备注:“QEMU+PDF版 ”;Word版RM5!联系qq:2426149954,备注:“QEMU+Woed版 ”。  欢迎联系~       ......
  • 如何在 React 18 中使用 useSyncExternalStore
    原文useSyncExternalStore是React18中提供的自定义挂钩,可让您订阅外部存储并在外部存储更新时更新您的React组件。它对于订阅不是建立在React状态管理之上的外部存储特别有用。useSyncExternalStoreAPI您应该在组件的顶层调用useSyncExternalStore方法import{useSyncExte......
  • Linux:user is not in the sudoers file. This incident will be reported 解决方法
    学习自:userisnotinthesudoersfile.Thisincidentwillbereported解决方法_一路奔跑94的博客-CSDN博客1、原因没有在权限文件中说明该用户具有sudo权限2、解决步骤1)以root身份去/etc/sudoers文件中,编辑vi/etc/sudoers2)在rootALL=(ALL)ALL之下添加一行xxxALL......
  • clickhouse的安装流程
    使用yum命令安装yuminstallclickhouse-serverclickhouse-client启动/etc/init.d/clickhouse-serverstart日志文件将输出在/var/log/clickhouse-server/文件夹sudoserviceclickhouse-serverstatus连接客户端clickhouse-clientshowdatabase;默认情况下,使用de......
  • 报错:This generated password is for development use only. Your security configura
    项目报错:Thisgeneratedpasswordisfordevelopmentuseonly.Yoursecurityconfigurationmustbeupdatedbeforerunningyourapplicationinproduction.导致postman测试接口时报错:401UnauthorizedSimilarto403Forbidden,butspecificallyforusewhenauthenticat......
  • 火山引擎ByteHouse:云原生数据库如何提升MySQL兼容性?
    更多技术交流、求职机会,欢迎关注字节跳动数据平台微信公众号,回复【1】进入官方交流群当前各类软件层出不穷,单独某一款软件往往难以满足企业应用需求,一般都需要与各类软件组合使用,这时软件生态兼容性就显得格外重要。作为关系数据库管理系统的代表之一,MySQL支持大多数操作系统、编程......
  • 火山引擎ByteHouse:云原生数据库如何提升MySQL兼容性?
    更多技术交流、求职机会,欢迎关注字节跳动数据平台微信公众号,回复【1】进入官方交流群当前各类软件层出不穷,单独某一款软件往往难以满足企业应用需求,一般都需要与各类软件组合使用,这时软件生态兼容性就显得格外重要。作为关系数据库管理系统的代表之一,MySQL支持大多数操作......
  • 若依--自定义loadUserByUsername参数入参
    若依--自定义loadUserByUsername参数入参前言在使用若依的Security的登录认证时,默认只能使用用户名去查询sysUser,当我需要额外的参数去查询用户数据时,只能将用户名和额外参数组成json或者特定字符拼接,然后在UserDetailsServiceImpl的loadUserByUsername方法自定义查询数据。但是......
  • vue3路由的两种引入方式useRouter和router进行页面跳转
    1.在vue3中有两种路由的引入方式第一种import{useRouter}from'vue-router'constuse_router=useRouter()use_router.push('/pathName')第二种importrouterfrom'@/router'router.push('/pathName') 2.两种方式的区别2.1.第一种方式的使用位置在vue......