Home
last modified time | relevance | path

Searched full:specs (Results 1 – 25 of 269) sorted by relevance

1234567891011

/linux/drivers/video/fbdev/core/
H A Dfbmon.c297 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 Dhbg_hw.c64 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 Dsysfs-bus-usb329 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 Dsysfs-firmware-qemu_fw_cfg15 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 Dsysfs-bus-pci-devices-pvpanic13 https://git.qemu.org/?p=qemu.git;a=blob_plain;f=docs/specs/pvpanic.txt
/linux/Documentation/userspace-api/netlink/
H A Dintro-specs.rst8 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 Dynl.py13 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 Dvnic_enet.h45 #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 Dtest_loader.c1306 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 Dveristat.c69 * 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 Detnaviv_gpu.c215 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 Dvx222.c68 /* hw specs */
80 /* hw specs */
92 /* hw specs */
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dusdt.c361 * 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 Ddc_dsc.h111 /* 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 Ddfs_pattern_detector.h59 * 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 Dni_mio_cs.c74 /* specs incorrect! */
88 /* specs incorrect! */
/linux/tools/net/ynl/pyynl/
H A Dcli.py69 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 Ddvb-usb.rst13 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 DMakefile10 ../../../../../Documentation/netlink/specs \
/linux/kernel/power/
H A Dem_netlink_autogen.h3 /* Documentation/netlink/specs/dev-energymodel.yaml */
/linux/net/handshake/
H A Dgenl.h3 /* Documentation/netlink/specs/handshake.yaml */
/linux/net/ipv4/
H A Dfou_nl.h3 /* Documentation/netlink/specs/fou.yaml */
/linux/drivers/i2c/busses/
H A Di2c-stm32f7.c465 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 Ddc_dsc.c1445 /* 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 Dindex.rst57 ../netlink/specs/index

1234567891011