Home
last modified time | relevance | path

Searched refs:tpg (Results 1 – 25 of 54) sorted by relevance

123

/Linux-v5.4/include/media/tpg/
Dv4l2-tpg.h235 void tpg_init(struct tpg_data *tpg, unsigned w, unsigned h);
236 int tpg_alloc(struct tpg_data *tpg, unsigned max_w);
237 void tpg_free(struct tpg_data *tpg);
238 void tpg_reset_source(struct tpg_data *tpg, unsigned width, unsigned height,
240 void tpg_log_status(struct tpg_data *tpg);
243 void tpg_gen_text(const struct tpg_data *tpg,
245 void tpg_calc_text_basep(struct tpg_data *tpg,
247 unsigned tpg_g_interleaved_plane(const struct tpg_data *tpg, unsigned buf_line);
248 void tpg_fill_plane_buffer(struct tpg_data *tpg, v4l2_std_id std,
250 void tpg_fillbuffer(struct tpg_data *tpg, v4l2_std_id std,
[all …]
/Linux-v5.4/drivers/target/iscsi/
Discsi_target_tpg.c27 struct iscsi_portal_group *tpg; in iscsit_alloc_portal_group() local
29 tpg = kzalloc(sizeof(struct iscsi_portal_group), GFP_KERNEL); in iscsit_alloc_portal_group()
30 if (!tpg) { in iscsit_alloc_portal_group()
35 tpg->tpgt = tpgt; in iscsit_alloc_portal_group()
36 tpg->tpg_state = TPG_STATE_FREE; in iscsit_alloc_portal_group()
37 tpg->tpg_tiqn = tiqn; in iscsit_alloc_portal_group()
38 INIT_LIST_HEAD(&tpg->tpg_gnp_list); in iscsit_alloc_portal_group()
39 INIT_LIST_HEAD(&tpg->tpg_list); in iscsit_alloc_portal_group()
40 mutex_init(&tpg->tpg_access_lock); in iscsit_alloc_portal_group()
41 sema_init(&tpg->np_login_sem, 1); in iscsit_alloc_portal_group()
[all …]
Discsi_target_configfs.c61 struct iscsi_portal_group *tpg; in lio_target_np_driver_store() local
80 tpg = tpg_np->tpg; in lio_target_np_driver_store()
81 if (iscsit_get_tpg(tpg) < 0) in lio_target_np_driver_store()
94 tpg_np_new = iscsit_tpg_add_network_portal(tpg, in lio_target_np_driver_store()
103 rc = iscsit_tpg_del_network_portal(tpg, tpg_np_new); in lio_target_np_driver_store()
109 iscsit_put_tpg(tpg); in lio_target_np_driver_store()
112 iscsit_put_tpg(tpg); in lio_target_np_driver_store()
159 struct iscsi_portal_group *tpg; in lio_target_call_addnptotpg() local
214 tpg = container_of(se_tpg, struct iscsi_portal_group, tpg_se_tpg); in lio_target_call_addnptotpg()
215 ret = iscsit_get_tpg(tpg); in lio_target_call_addnptotpg()
[all …]
Discsi_target_login.c134 struct iscsi_portal_group *tpg = conn->tpg; in iscsi_check_for_session_reinstatement() local
136 struct se_portal_group *se_tpg = &tpg->tpg_se_tpg; in iscsi_check_for_session_reinstatement()
345 sess->tpg = conn->tpg; in iscsi_login_zero_tsih_s2()
351 sess->tsih = ++sess->tpg->ntsih; in iscsi_login_zero_tsih_s2()
353 sess->tsih = ++sess->tpg->ntsih; in iscsi_login_zero_tsih_s2()
359 conn->tpg->param_list, 1) < 0) { in iscsi_login_zero_tsih_s2()
383 if (iscsi_change_param_sprintf(conn, "TargetPortalGroupTag=%hu", sess->tpg->tpgt)) in iscsi_login_zero_tsih_s2()
475 struct iscsi_portal_group *tpg = conn->tpg; in iscsi_login_non_zero_tsih_s2() local
477 struct se_portal_group *se_tpg = &tpg->tpg_se_tpg; in iscsi_login_non_zero_tsih_s2()
523 conn->tpg->param_list, 0) < 0) { in iscsi_login_non_zero_tsih_s2()
[all …]
Discsi_target_nego.c571 struct iscsi_portal_group *tpg = conn->tpg; in iscsi_target_do_login_rx() local
594 spin_lock(&tpg->tpg_state_lock); in iscsi_target_do_login_rx()
595 state = (tpg->tpg_state == TPG_STATE_ACTIVE); in iscsi_target_do_login_rx()
596 spin_unlock(&tpg->tpg_state_lock); in iscsi_target_do_login_rx()
637 iscsit_deaccess_np(np, tpg, tpg_np); in iscsi_target_do_login_rx()
644 iscsit_deaccess_np(np, tpg, tpg_np); in iscsi_target_do_login_rx()
857 conn->tpg->tpg_attrib.login_keys_workaround); in iscsi_target_handle_csg_zero()
862 if (conn->tpg->tpg_attrib.authentication && in iscsi_target_handle_csg_zero()
872 if (conn->tpg->tpg_attrib.authentication && in iscsi_target_handle_csg_zero()
928 conn->tpg->tpg_attrib.login_keys_workaround); in iscsi_target_handle_csg_one()
[all …]
/Linux-v5.4/drivers/media/common/v4l2-tpg/
Dv4l2-tpg-core.c89 void tpg_init(struct tpg_data *tpg, unsigned w, unsigned h) in tpg_init() argument
91 memset(tpg, 0, sizeof(*tpg)); in tpg_init()
92 tpg->scaled_width = tpg->src_width = w; in tpg_init()
93 tpg->src_height = tpg->buf_height = h; in tpg_init()
94 tpg->crop.width = tpg->compose.width = w; in tpg_init()
95 tpg->crop.height = tpg->compose.height = h; in tpg_init()
96 tpg->recalc_colors = true; in tpg_init()
97 tpg->recalc_square_border = true; in tpg_init()
98 tpg->brightness = 128; in tpg_init()
99 tpg->contrast = 128; in tpg_init()
[all …]
DMakefile2 v4l2-tpg-objs := v4l2-tpg-core.o v4l2-tpg-colors.o
4 obj-$(CONFIG_VIDEO_V4L2_TPG) += v4l2-tpg.o
/Linux-v5.4/drivers/gpu/drm/panel/
Dpanel-tpo-tpg110.c199 static u8 tpg110_readwrite_reg(struct tpg110 *tpg, bool write, in tpg110_readwrite_reg() argument
248 ret = spi_sync(tpg->spi, &m); in tpg110_readwrite_reg()
250 DRM_DEV_ERROR(tpg->dev, "SPI message error %d\n", ret); in tpg110_readwrite_reg()
259 static u8 tpg110_read_reg(struct tpg110 *tpg, u8 address) in tpg110_read_reg() argument
261 return tpg110_readwrite_reg(tpg, false, address, 0); in tpg110_read_reg()
264 static void tpg110_write_reg(struct tpg110 *tpg, u8 address, u8 outval) in tpg110_write_reg() argument
266 tpg110_readwrite_reg(tpg, true, address, outval); in tpg110_write_reg()
269 static int tpg110_startup(struct tpg110 *tpg) in tpg110_startup() argument
275 gpiod_set_value_cansleep(tpg->grestb, 0); in tpg110_startup()
277 DRM_DEV_DEBUG(tpg->dev, "de-asserted GRESTB\n"); in tpg110_startup()
[all …]
/Linux-v5.4/drivers/target/
Dtarget_core_tpg.c43 struct se_portal_group *tpg, in __core_tpg_get_initiator_node_acl() argument
48 list_for_each_entry(acl, &tpg->acl_node_list, acl_list) { in __core_tpg_get_initiator_node_acl()
61 struct se_portal_group *tpg, in core_tpg_get_initiator_node_acl() argument
74 mutex_lock(&tpg->acl_node_mutex); in core_tpg_get_initiator_node_acl()
75 acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname); in core_tpg_get_initiator_node_acl()
80 mutex_unlock(&tpg->acl_node_mutex); in core_tpg_get_initiator_node_acl()
108 struct se_portal_group *tpg, in core_tpg_add_node_to_devs() argument
115 mutex_lock(&tpg->tpg_lun_mutex); in core_tpg_add_node_to_devs()
116 hlist_for_each_entry_rcu(lun, &tpg->tpg_lun_hlist, link) { in core_tpg_add_node_to_devs()
121 lockdep_is_held(&tpg->tpg_lun_mutex)); in core_tpg_add_node_to_devs()
[all …]
Dtarget_core_device.c219 struct se_portal_group *tpg = nacl->se_tpg; in core_get_se_deve_from_rtpi() local
227 tpg->se_tpg_tfo->fabric_name); in core_get_se_deve_from_rtpi()
245 struct se_portal_group *tpg) in core_free_device_list_for_node() argument
253 core_disable_device_list_for_node(lun, deve, nacl, tpg); in core_free_device_list_for_node()
316 struct se_portal_group *tpg) in core_enable_device_list_for_node() argument
398 struct se_portal_group *tpg) in core_disable_device_list_for_node() argument
454 void core_clear_lun_from_tpg(struct se_lun *lun, struct se_portal_group *tpg) in core_clear_lun_from_tpg() argument
459 mutex_lock(&tpg->acl_node_mutex); in core_clear_lun_from_tpg()
460 list_for_each_entry(nacl, &tpg->acl_node_list, acl_list) { in core_clear_lun_from_tpg()
470 core_disable_device_list_for_node(lun, deve, nacl, tpg); in core_clear_lun_from_tpg()
[all …]
Dtarget_core_stat.c576 struct se_portal_group *tpg = lun->lun_tpg; in target_stat_tgt_port_name_show() local
584 tpg->se_tpg_tfo->fabric_name, in target_stat_tgt_port_name_show()
594 struct se_portal_group *tpg = lun->lun_tpg; in target_stat_tgt_port_port_index_show() local
602 tpg->se_tpg_tfo->tpg_get_wwn(tpg), "+t+", in target_stat_tgt_port_port_index_show()
603 tpg->se_tpg_tfo->tpg_get_tag(tpg)); in target_stat_tgt_port_port_index_show()
731 struct se_portal_group *tpg = lun->lun_tpg; in target_stat_transport_device_show() local
739 tpg->se_tpg_tfo->fabric_name); in target_stat_transport_device_show()
750 struct se_portal_group *tpg = lun->lun_tpg; in target_stat_transport_indx_show() local
757 tpg->se_tpg_tfo->tpg_get_inst_index(tpg)); in target_stat_transport_indx_show()
767 struct se_portal_group *tpg = lun->lun_tpg; in target_stat_transport_dev_name_show() local
[all …]
Dtarget_core_pr.c205 struct se_portal_group *tpg; in target_scsi2_reservation_release() local
227 tpg = sess->se_tpg; in target_scsi2_reservation_release()
230 tpg->se_tpg_tfo->fabric_name, in target_scsi2_reservation_release()
246 struct se_portal_group *tpg; in target_scsi2_reservation_reserve() local
268 tpg = sess->se_tpg; in target_scsi2_reservation_reserve()
273 tpg->se_tpg_tfo->fabric_name); in target_scsi2_reservation_reserve()
292 " for %s\n", tpg->se_tpg_tfo->fabric_name, in target_scsi2_reservation_reserve()
894 struct se_portal_group *tpg, in core_scsi3_aptpl_reserve() argument
909 tpg->se_tpg_tfo->fabric_name, in core_scsi3_aptpl_reserve()
913 tpg->se_tpg_tfo->fabric_name, node_acl->initiatorname, in core_scsi3_aptpl_reserve()
[all …]
Dtarget_core_spc.c172 struct se_portal_group *tpg = NULL; in spc_emulate_evpd_83() local
267 tpg = lun->lun_tpg; in spc_emulate_evpd_83()
275 buf[off] = tpg->proto_id << 4; in spc_emulate_evpd_83()
306 buf[off] = tpg->proto_id << 4; in spc_emulate_evpd_83()
354 buf[off] = tpg->proto_id << 4; in spc_emulate_evpd_83()
368 tpgt = tpg->se_tpg_tfo->tpg_get_tag(tpg); in spc_emulate_evpd_83()
370 tpg->se_tpg_tfo->tpg_get_wwn(tpg), tpgt); in spc_emulate_evpd_83()
394 buf[off] = tpg->proto_id << 4; in spc_emulate_evpd_83()
409 tpg->se_tpg_tfo->tpg_get_wwn(tpg)); in spc_emulate_evpd_83()
704 struct se_portal_group *tpg = cmd->se_lun->lun_tpg; in spc_emulate_inquiry() local
[all …]
/Linux-v5.4/drivers/vhost/
Dscsi.c296 struct vhost_scsi_tpg *tpg = container_of(se_tpg, in vhost_scsi_get_fabric_wwn() local
298 struct vhost_scsi_tport *tport = tpg->tport; in vhost_scsi_get_fabric_wwn()
305 struct vhost_scsi_tpg *tpg = container_of(se_tpg, in vhost_scsi_get_tpgt() local
307 return tpg->tport_tpgt; in vhost_scsi_get_tpgt()
312 struct vhost_scsi_tpg *tpg = container_of(se_tpg, in vhost_scsi_check_prot_fabric_only() local
315 return tpg->tv_fabric_prot_type; in vhost_scsi_check_prot_fabric_only()
569 vhost_scsi_get_tag(struct vhost_virtqueue *vq, struct vhost_scsi_tpg *tpg, in vhost_scsi_get_tag() argument
580 tv_nexus = tpg->tpg_nexus; in vhost_scsi_get_tag()
893 struct vhost_scsi_tpg **vs_tpg, *tpg; in vhost_scsi_get_req() local
897 tpg = READ_ONCE(vs_tpg[*vc->target]); in vhost_scsi_get_req()
[all …]
/Linux-v5.4/drivers/xen/
Dxen-scsiback.c81 struct scsiback_tpg *tpg; /* translate to */ member
261 struct scsiback_tpg *tpg = pending_req->v2p->tpg; in scsiback_print_status() local
264 tpg->tport->tport_name, pending_req->v2p->lun, in scsiback_print_status()
313 struct scsiback_tpg *tpg = entry->tpg; in scsiback_free_translation_entry() local
315 mutex_lock(&tpg->tv_tpg_mutex); in scsiback_free_translation_entry()
316 tpg->tv_tpg_fe_count--; in scsiback_free_translation_entry()
317 mutex_unlock(&tpg->tv_tpg_mutex); in scsiback_free_translation_entry()
399 struct se_session *sess = pending_req->v2p->tpg->tpg_nexus->tvn_se_sess; in scsiback_cmd_exec()
596 struct scsiback_tpg *tpg = pending_req->v2p->tpg; in scsiback_device_action() local
597 struct scsiback_nexus *nexus = tpg->tpg_nexus; in scsiback_device_action()
[all …]
/Linux-v5.4/drivers/target/tcm_fc/
Dtfc_conf.c221 struct ft_tpg *tpg; in ft_add_tpg() local
246 tpg = kzalloc(sizeof(*tpg), GFP_KERNEL); in ft_add_tpg()
247 if (!tpg) in ft_add_tpg()
249 tpg->index = index; in ft_add_tpg()
250 tpg->lport_wwn = ft_wwn; in ft_add_tpg()
251 INIT_LIST_HEAD(&tpg->lun_list); in ft_add_tpg()
255 kfree(tpg); in ft_add_tpg()
259 ret = core_tpg_register(wwn, &tpg->se_tpg, SCSI_PROTOCOL_FCP); in ft_add_tpg()
262 kfree(tpg); in ft_add_tpg()
265 tpg->workqueue = wq; in ft_add_tpg()
[all …]
Dtfc_sess.c43 struct ft_tpg *tpg; in ft_tport_get() local
49 if (tport && tport->tpg) in ft_tport_get()
52 tpg = ft_lport_find_tpg(lport); in ft_tport_get()
53 if (!tpg) in ft_tport_get()
57 tport->tpg = tpg; in ft_tport_get()
58 tpg->tport = tport; in ft_tport_get()
67 tport->tpg = tpg; in ft_tport_get()
68 tpg->tport = tport; in ft_tport_get()
83 struct ft_tpg *tpg; in ft_tport_delete() local
91 tpg = tport->tpg; in ft_tport_delete()
[all …]
/Linux-v5.4/drivers/scsi/qla2xxx/
Dtcm_qla2xxx.c164 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, in tcm_qla2xxx_get_fabric_wwn() local
166 struct tcm_qla2xxx_lport *lport = tpg->lport; in tcm_qla2xxx_get_fabric_wwn()
173 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, in tcm_qla2xxx_get_tag() local
175 return tpg->lport_tpgt; in tcm_qla2xxx_get_tag()
180 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, in tcm_qla2xxx_check_demo_mode() local
183 return tpg->tpg_attrib.generate_node_acls; in tcm_qla2xxx_check_demo_mode()
188 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, in tcm_qla2xxx_check_demo_mode_cache() local
191 return tpg->tpg_attrib.cache_dynamic_acls; in tcm_qla2xxx_check_demo_mode_cache()
196 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, in tcm_qla2xxx_check_demo_write_protect() local
199 return tpg->tpg_attrib.demo_mode_write_protect; in tcm_qla2xxx_check_demo_write_protect()
[all …]
/Linux-v5.4/drivers/media/platform/vivid/
Dvivid-kthread-cap.c221 static void *plane_vaddr(struct tpg_data *tpg, struct vivid_buffer *buf, in plane_vaddr() argument
227 if (p == 0 || tpg_g_buffers(tpg) > 1) in plane_vaddr()
231 vbuf += bpl[i] * h / tpg->vdownsampling[i]; in plane_vaddr()
239 struct tpg_data *tpg = &dev->tpg; in vivid_copy_buffer() local
242 unsigned twopixsize = tpg_g_twopixelsize(tpg, p); in vivid_copy_buffer()
243 unsigned img_width = tpg_hdiv(tpg, p, dev->compose_cap.width); in vivid_copy_buffer()
245 unsigned stride_cap = tpg->bytesperline[p]; in vivid_copy_buffer()
248 unsigned hmax = (img_height * tpg->perc_fill) / 100; in vivid_copy_buffer()
262 unsigned vid_cap_left = tpg_hdiv(tpg, p, dev->loop_vid_cap.left); in vivid_copy_buffer()
277 voutbuf = plane_vaddr(tpg, vid_out_buf, p, in vivid_copy_buffer()
[all …]
Dvivid-vid-cap.c87 unsigned buffers = tpg_g_buffers(&dev->tpg); in vid_cap_queue_setup()
116 if (sizes[p] < tpg_g_line_width(&dev->tpg, p) * h + in vid_cap_queue_setup()
122 sizes[p] = (tpg_g_line_width(&dev->tpg, p) * h) / in vid_cap_queue_setup()
143 unsigned buffers = tpg_g_buffers(&dev->tpg); in vid_cap_buf_prepare()
160 size = (tpg_g_line_width(&dev->tpg, p) * in vid_cap_buf_prepare()
232 dev->must_blank[i] = tpg_g_perc_fill(&dev->tpg) < 100; in vid_cap_start_streaming()
294 tpg_s_quality(&dev->tpg, TPG_QUAL_NOISE, 0); in vivid_update_quality()
299 tpg_s_quality(&dev->tpg, TPG_QUAL_NOISE, 0); in vivid_update_quality()
304 tpg_s_quality(&dev->tpg, TPG_QUAL_NOISE, 0); in vivid_update_quality()
308 tpg_s_quality(&dev->tpg, TPG_QUAL_COLOR, 0); in vivid_update_quality()
[all …]
Dvivid-ctrls.c314 tpg_s_brightness(&dev->tpg, dev->input_brightness[dev->input]); in vivid_user_vid_s_ctrl()
317 tpg_s_contrast(&dev->tpg, ctrl->val); in vivid_user_vid_s_ctrl()
320 tpg_s_saturation(&dev->tpg, ctrl->val); in vivid_user_vid_s_ctrl()
323 tpg_s_hue(&dev->tpg, ctrl->val); in vivid_user_vid_s_ctrl()
327 tpg_s_hflip(&dev->tpg, dev->sensor_hflip ^ dev->hflip); in vivid_user_vid_s_ctrl()
331 tpg_s_vflip(&dev->tpg, dev->sensor_vflip ^ dev->vflip); in vivid_user_vid_s_ctrl()
334 tpg_s_alpha_component(&dev->tpg, ctrl->val); in vivid_user_vid_s_ctrl()
367 tpg_s_pattern(&dev->tpg, ctrl->val); in vivid_vid_cap_s_ctrl()
370 tpg_s_colorspace(&dev->tpg, colorspaces[ctrl->val]); in vivid_vid_cap_s_ctrl()
377 tpg_s_xfer_func(&dev->tpg, ctrl->val); in vivid_vid_cap_s_ctrl()
[all …]
/Linux-v5.4/drivers/media/platform/vimc/
Dvimc-sensor.c27 struct tpg_data tpg; member
113 tpg_reset_source(&vsen->tpg, vsen->mbus_format.width, in vimc_sen_tpg_s_format()
115 tpg_s_bytesperline(&vsen->tpg, 0, vsen->mbus_format.width * vpix->bpp); in vimc_sen_tpg_s_format()
116 tpg_s_buf_height(&vsen->tpg, vsen->mbus_format.height); in vimc_sen_tpg_s_format()
117 tpg_s_fourcc(&vsen->tpg, vpix->pixelformat); in vimc_sen_tpg_s_format()
119 tpg_s_field(&vsen->tpg, vsen->mbus_format.field, false); in vimc_sen_tpg_s_format()
120 tpg_s_colorspace(&vsen->tpg, vsen->mbus_format.colorspace); in vimc_sen_tpg_s_format()
121 tpg_s_ycbcr_enc(&vsen->tpg, vsen->mbus_format.ycbcr_enc); in vimc_sen_tpg_s_format()
122 tpg_s_quantization(&vsen->tpg, vsen->mbus_format.quantization); in vimc_sen_tpg_s_format()
123 tpg_s_xfer_func(&vsen->tpg, vsen->mbus_format.xfer_func); in vimc_sen_tpg_s_format()
[all …]
/Linux-v5.4/drivers/target/sbp/
Dsbp_target.c78 struct sbp_tpg *tpg, u64 guid) in sbp_session_find_by_guid() argument
83 spin_lock_bh(&tpg->se_tpg.session_lock); in sbp_session_find_by_guid()
84 list_for_each_entry(se_sess, &tpg->se_tpg.tpg_sess_list, sess_list) { in sbp_session_find_by_guid()
89 spin_unlock_bh(&tpg->se_tpg.session_lock); in sbp_session_find_by_guid()
110 struct sbp_tpg *tpg, in sbp_login_count_all_by_lun() argument
119 spin_lock_bh(&tpg->se_tpg.session_lock); in sbp_login_count_all_by_lun()
120 list_for_each_entry(se_sess, &tpg->se_tpg.tpg_sess_list, sess_list) { in sbp_login_count_all_by_lun()
133 spin_unlock_bh(&tpg->se_tpg.session_lock); in sbp_login_count_all_by_lun()
139 struct sbp_tpg *tpg, int login_id) in sbp_login_find_by_id() argument
145 spin_lock_bh(&tpg->se_tpg.session_lock); in sbp_login_find_by_id()
[all …]
/Linux-v5.4/drivers/usb/gadget/function/
Df_tcm.c32 struct usbg_tpg *tpg; member
439 luns = atomic_read(&fu->tpg->tpg_port_count); in usbg_bot_setup()
1041 struct usbg_tpg *tpg; in usbg_cmd_work() local
1045 tpg = cmd->fu->tpg; in usbg_cmd_work()
1046 tv_nexus = tpg->tpg_nexus; in usbg_cmd_work()
1097 struct usbg_tpg *tpg = fu->tpg; in usbg_submit_command() local
1107 tv_nexus = tpg->tpg_nexus; in usbg_submit_command()
1158 queue_work(tpg->workqueue, &cmd->work); in usbg_submit_command()
1171 struct usbg_tpg *tpg; in bot_cmd_work() local
1175 tpg = cmd->fu->tpg; in bot_cmd_work()
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/media/xilinx/
Dxlnx,v-tpg.txt8 "xlnx,v-tpg-5.0" (TPG version 5.0)
9 "xlnx,v-tpg-6.0" (TPG version 6.0)
38 tpg_0: tpg@40050000 {
39 compatible = "xlnx,v-tpg-6.0", "xlnx,v-tpg-5.0";

123