| /linux/drivers/video/fbdev/core/ |
| H A D | fbmon.c | 297 static void parse_vendor_block(unsigned char *block, struct fb_monspecs *specs) in parse_vendor_block() argument 299 specs->manufacturer[0] = ((block[0] & 0x7c) >> 2) + '@'; in parse_vendor_block() 300 specs->manufacturer[1] = ((block[0] & 0x03) << 3) + in parse_vendor_block() 302 specs->manufacturer[2] = (block[1] & 0x1f) + '@'; in parse_vendor_block() 303 specs->manufacturer[3] = 0; in parse_vendor_block() 304 specs->model = block[2] + (block[3] << 8); in parse_vendor_block() 305 specs->serial = block[4] + (block[5] << 8) + in parse_vendor_block() 307 specs->year = block[9] + 1990; in parse_vendor_block() 308 specs->week = block[8]; in parse_vendor_block() 309 DPRINTK(" Manufacturer: %s\n", specs->manufacturer); in parse_vendor_block() [all …]
|
| /linux/drivers/net/ethernet/hisilicon/hibmcge/ |
| H A D | hbg_hw.c | 64 struct hbg_dev_specs *specs = &priv->dev_specs; in hbg_hw_dev_specs_init() local 72 specs->mac_id = hbg_reg_read(priv, HBG_REG_MAC_ID_ADDR); in hbg_hw_dev_specs_init() 73 specs->phy_addr = hbg_reg_read(priv, HBG_REG_PHY_ID_ADDR); in hbg_hw_dev_specs_init() 74 specs->mdio_frequency = hbg_reg_read(priv, HBG_REG_MDIO_FREQ_ADDR); in hbg_hw_dev_specs_init() 75 specs->max_mtu = hbg_reg_read(priv, HBG_REG_MAX_MTU_ADDR); in hbg_hw_dev_specs_init() 76 specs->min_mtu = hbg_reg_read(priv, HBG_REG_MIN_MTU_ADDR); in hbg_hw_dev_specs_init() 77 specs->vlan_layers = hbg_reg_read(priv, HBG_REG_VLAN_LAYERS_ADDR); in hbg_hw_dev_specs_init() 78 specs->rx_fifo_num = hbg_reg_read(priv, HBG_REG_RX_FIFO_NUM_ADDR); in hbg_hw_dev_specs_init() 79 specs->tx_fifo_num = hbg_reg_read(priv, HBG_REG_TX_FIFO_NUM_ADDR); in hbg_hw_dev_specs_init() 80 specs->uc_mac_num = hbg_reg_read(priv, HBG_REG_UC_MAC_NUM_ADDR); in hbg_hw_dev_specs_init() [all …]
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-bus-usb | 329 See USB specs for its meaning. 335 See USB specs for its meaning. 351 See USB specs for its meaning. 357 See USB specs for its meaning. 363 See USB specs for its meaning. 369 See USB specs for its meaning. 375 See USB specs for its meaning. 381 See USB specs for its meaning. 387 See USB specs for its meaning. 393 See USB specs for its meaning. [all …]
|
| H A D | sysfs-firmware-qemu_fw_cfg | 15 to the fw_cfg device can be found in "docs/specs/fw_cfg.rst" 17 https://qemu-project.gitlab.io/qemu/specs/fw_cfg.html
|
| H A D | sysfs-bus-pci-devices-pvpanic | 13 https://git.qemu.org/?p=qemu.git;a=blob_plain;f=docs/specs/pvpanic.txt
|
| /linux/Documentation/userspace-api/netlink/ |
| H A D | intro-specs.rst | 8 specifications. For more detailed description of the specs see :doc:`specs`. 26 YAML specs can be found under ``Documentation/netlink/specs/``. 30 $ ./tools/net/ynl/pyynl/cli.py --spec Documentation/netlink/specs/ethtool.yaml \ 67 /* Documentation/netlink/specs/fou.yaml */
|
| /linux/tools/testing/selftests/net/lib/py/ |
| H A D | ynl.py | 13 SPEC_PATH = KSFT_DIR / "net/lib/specs" 20 SPEC_PATH = KSRC / "Documentation/netlink/specs" 38 # Wrapper classes, loading the right specs
|
| /linux/drivers/net/ethernet/cisco/enic/ |
| H A D | vnic_enet.h | 45 #define VENET_INTR_TYPE_MIN 0 /* Timer specs min interrupt spacing */ 46 #define VENET_INTR_TYPE_IDLE 1 /* Timer specs idle time before irq */
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | test_loader.c | 1306 struct test_spec *specs, 1377 spec_iter = &specs[i++]; 1521 struct test_spec *specs = NULL; 1540 specs = calloc(nr_progs, sizeof(struct test_spec)); 1541 if (!ASSERT_OK_PTR(specs, "specs_alloc")) 1547 err = parse_test_spec(tester, obj, prog, &specs[i++]); 1555 struct test_spec *spec = &specs[i++]; 1562 specs, spec, false); 1565 specs, spec, true); 1570 free_test_spec(&specs[ 940 run_subtest(struct test_loader * tester,struct bpf_object_open_opts * open_opts,const void * obj_bytes,size_t obj_byte_cnt,struct test_spec * specs,struct test_spec * spec,bool unpriv) run_subtest() argument 1125 struct test_spec *specs = NULL; process_subtest() local [all...] |
| H A D | veristat.c | 69 * When specifying stat specs in comparison mode, user can use one of the 311 static int parse_stats(const char *stats_str, struct stat_specs *specs); 927 static int parse_stat(const char *stat_name, struct stat_specs *specs) in parse_stat() 934 if (specs->spec_cnt >= ARRAY_SIZE(specs->ids)) { in parse_stat() 935 fprintf(stderr, "Can't specify more than %zd stats\n", ARRAY_SIZE(specs->ids)); in parse_stat() 950 specs->ids[specs->spec_cnt] = id; in parse_stat() 951 specs->variants[specs in parse_stat() 925 parse_stat(const char * stat_name,struct stat_specs * specs) parse_stat() argument 957 parse_stats(const char * stats_str,struct stat_specs * specs) parse_stats() argument 2661 parse_stats_csv(const char * filename,struct stat_specs * specs,struct verif_stats ** statsp,int * stat_cntp) parse_stats_csv() argument 3267 struct stat_specs specs = {}; handle_replay_mode() local [all...] |
| /linux/drivers/gpu/drm/etnaviv/ |
| H A D | etnaviv_gpu.c | 215 u32 specs[4]; in etnaviv_hw_specs() local 218 specs[0] = gpu_read(gpu, VIVS_HI_CHIP_SPECS); in etnaviv_hw_specs() 219 specs[1] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_2); in etnaviv_hw_specs() 220 specs[2] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_3); in etnaviv_hw_specs() 221 specs[3] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_4); in etnaviv_hw_specs() 223 gpu->identity.stream_count = etnaviv_field(specs[0], in etnaviv_hw_specs() 225 gpu->identity.register_max = etnaviv_field(specs[0], in etnaviv_hw_specs() 227 gpu->identity.thread_count = etnaviv_field(specs[0], in etnaviv_hw_specs() 229 gpu->identity.vertex_cache_size = etnaviv_field(specs[0], in etnaviv_hw_specs() 231 gpu->identity.shader_core_count = etnaviv_field(specs[ in etnaviv_hw_specs() [all...] |
| /linux/sound/pci/vx222/ |
| H A D | vx222.c | 68 /* hw specs */ 80 /* hw specs */ 92 /* hw specs */
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | usdt.c | 361 * many slots for specs. It's important that each STAP_PROBE2() invocation in subtest_urandom_usdt() 423 * 256 specs to be used, so if we don't return free spec IDs back in subtest_urandom_usdt() 444 * 256 attach points with different specs for each. in test_usdt() 455 /* If built with arm64/clang, there will be much less number of specs 476 /* This time we have USDT with 400 inlined invocations, but arg specs
|
| /linux/drivers/gpu/drm/amd/display/dc/ |
| H A D | dc_dsc.h | 111 /* TODO - Hardware/specs limitation should be owned by dc dsc and returned to DM, 113 * Hardware/specs limitation should not be writable by DM.
|
| /linux/drivers/net/wireless/ath/ |
| H A D | dfs_pattern_detector.h | 59 * struct radar_detector_specs - detector specs for a radar pattern type 92 * @radar_detector_specs: array of radar detection specs
|
| /linux/drivers/comedi/drivers/ |
| H A D | ni_mio_cs.c | 74 /* specs incorrect! */ 88 /* specs incorrect! */
|
| /linux/tools/net/ynl/pyynl/ |
| H A D | cli.py | 69 spec_dir_ = schema_dir() + '/specs' 184 specs to drive protocol encoding and decoding. 302 if args.family: # set behaviour when using installed specs
|
| /linux/Documentation/driver-api/media/drivers/ |
| H A D | dvb-usb.rst | 13 In March 2005 I got the new Twinhan USB2.0 DVB-T device. They provided specs 17 After reading some specs and doing some USB snooping, it realized, that the 319 providing specs, code and help, on which the dvb-dibusb, dib3000mb and
|
| /linux/tools/testing/selftests/net/lib/ |
| H A D | Makefile | 10 ../../../../../Documentation/netlink/specs \
|
| /linux/kernel/power/ |
| H A D | em_netlink_autogen.h | 3 /* Documentation/netlink/specs/dev-energymodel.yaml */
|
| /linux/net/handshake/ |
| H A D | genl.h | 3 /* Documentation/netlink/specs/handshake.yaml */
|
| /linux/net/ipv4/ |
| H A D | fou_nl.h | 3 /* Documentation/netlink/specs/fou.yaml */
|
| /linux/drivers/i2c/busses/ |
| H A D | i2c-stm32f7.c | 465 struct stm32f7_i2c_spec *specs; in stm32f7_i2c_compute_timing() local 488 specs = stm32f7_get_specs(setup->speed_freq); in stm32f7_i2c_compute_timing() 489 if (specs == ERR_PTR(-EINVAL)) in stm32f7_i2c_compute_timing() 493 if ((setup->rise_time > specs->rise_max) || in stm32f7_i2c_compute_timing() 494 (setup->fall_time > specs->fall_max)) in stm32f7_i2c_compute_timing() 497 setup->rise_time, specs->rise_max, in stm32f7_i2c_compute_timing() 498 setup->fall_time, specs->fall_max); in stm32f7_i2c_compute_timing() 515 sdadel_min = specs->hddat_min + setup->fall_time - in stm32f7_i2c_compute_timing() 518 sdadel_max = specs->vddat_max - setup->rise_time - in stm32f7_i2c_compute_timing() 521 scldel_min = setup->rise_time + specs in stm32f7_i2c_compute_timing() [all...] |
| /linux/drivers/gpu/drm/amd/display/dc/dsc/ |
| H A D | dc_dsc.c | 1445 /* Decide DSC bandwidth range based on signal, timing, specs specific and input min and max 1463 /* apply signal, timing, specs and explicitly specified DSC range requirements */ 2084 /* DSC Policy: follow DP specs with an internal upper limit to 16 bpp 2104 /* DP specs limits to 8 */ 2106 /* DP specs limits to 3 x bpc */ 2117 /* DP specs limits to 6 */ 2119 /* DP specs limits to 1.5 x bpc assume bpc is an even number */
|
| /linux/Documentation/networking/ |
| H A D | index.rst | 57 ../netlink/specs/index
|