I am trying to implement the Picoblaze microprocessor on xc7k160tfbg676-2 FPGA (7 Series) using Vivado 14.2 on 64 bit Windows 7. I was going through the provided "Picoblaze Design in Vivado" which is for the Kintex 7 KC705 Evaluation board. I modified the constraints file and substituted:
set_property PACKAGE_PIN AD12 [get_ports clk200_p]
set_property IOSTANDARD DIFF_SSTL15 [get_ports clk200_p]
#
set_property PACKAGE_PIN AD11 [get_ports clk200_n]
set_property IOSTANDARD DIFF_SSTL15 [get_ports clk200_n]
for
set_property PACKAGE_PIN MGTREFCLK0/1P [get_ports clk200_p]
set_property IOSTANDARD LVDS [get_ports clk200_p]
#
set_property PACKAGE_PIN MGTREFCLK0/1N [get_ports clk200_n]
set_property IOSTANDARD LVDS [get_ports clk200_n]
#
But it is showing crtical warning: "[Common 17-69] Command failed: 'MGTREFCLK0/1P' is not a valid site or package pin name. ["D:/vivado_projs_14p2/uart6_kc705/uart6_kc705.srcs/constrs_1/new/uart6_kc705.xdc":112]"
I tried changing the IOSTANDARD to LVDS_25 but same result. Please assist.

