Lines Matching refs:fpga_features
56 u16 fpga_features; in ioep_fpga_has_osd() local
59 FPGA_GET_REG(0, fpga_features, &fpga_features); in ioep_fpga_has_osd()
60 feature_osd = fpga_features & (1<<11); in ioep_fpga_has_osd()
69 u16 fpga_features; in ioep_fpga_print_info() local
83 FPGA_GET_REG(fpga, fpga_features, &fpga_features); in ioep_fpga_print_info()
87 feature_compression = (fpga_features & 0xe000) >> 13; in ioep_fpga_print_info()
88 feature_osd = fpga_features & (1<<11); in ioep_fpga_print_info()
89 feature_audio = (fpga_features & 0x0600) >> 9; in ioep_fpga_print_info()
90 feature_sysclock = (fpga_features & 0x0180) >> 7; in ioep_fpga_print_info()
91 feature_ramconfig = (fpga_features & 0x0060) >> 5; in ioep_fpga_print_info()
92 feature_carrier_speed = fpga_features & (1<<4); in ioep_fpga_print_info()
93 feature_carriers = (fpga_features & 0x000c) >> 2; in ioep_fpga_print_info()
94 feature_video_channels = fpga_features & 0x0003; in ioep_fpga_print_info()