Home
last modified time | relevance | path

Searched refs:specs (Results 1 – 25 of 65) sorted by relevance

123

/Linux-v5.10/drivers/video/fbdev/core/
Dfbmon.c292 static void parse_vendor_block(unsigned char *block, struct fb_monspecs *specs) in parse_vendor_block() argument
294 specs->manufacturer[0] = ((block[0] & 0x7c) >> 2) + '@'; in parse_vendor_block()
295 specs->manufacturer[1] = ((block[0] & 0x03) << 3) + in parse_vendor_block()
297 specs->manufacturer[2] = (block[1] & 0x1f) + '@'; in parse_vendor_block()
298 specs->manufacturer[3] = 0; in parse_vendor_block()
299 specs->model = block[2] + (block[3] << 8); in parse_vendor_block()
300 specs->serial = block[4] + (block[5] << 8) + in parse_vendor_block()
302 specs->year = block[9] + 1990; in parse_vendor_block()
303 specs->week = block[8]; in parse_vendor_block()
304 DPRINTK(" Manufacturer: %s\n", specs->manufacturer); in parse_vendor_block()
[all …]
Dmodedb.c1143 const struct fb_videomode *fb_find_best_display(const struct fb_monspecs *specs, in fb_find_best_display() argument
1171 if (specs->misc & FB_MISC_1ST_DETAIL) { in fb_find_best_display()
1177 if (specs->max_x && specs->max_y) { in fb_find_best_display()
1181 var.xres = (specs->max_x * 7200)/254; in fb_find_best_display()
1182 var.yres = (specs->max_y * 7200)/254; in fb_find_best_display()
/Linux-v5.10/drivers/gpu/drm/etnaviv/
Detnaviv_gpu.c178 u32 specs[4]; in etnaviv_hw_specs() local
181 specs[0] = gpu_read(gpu, VIVS_HI_CHIP_SPECS); in etnaviv_hw_specs()
182 specs[1] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_2); in etnaviv_hw_specs()
183 specs[2] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_3); in etnaviv_hw_specs()
184 specs[3] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_4); in etnaviv_hw_specs()
186 gpu->identity.stream_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
188 gpu->identity.register_max = etnaviv_field(specs[0], in etnaviv_hw_specs()
190 gpu->identity.thread_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
192 gpu->identity.vertex_cache_size = etnaviv_field(specs[0], in etnaviv_hw_specs()
194 gpu->identity.shader_core_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
[all …]
/Linux-v5.10/drivers/video/fbdev/
Dtdfxfb.c1347 struct fb_monspecs *specs) in tdfxfb_probe_i2c_connector() argument
1356 fb_edid_to_monspecs(edid, specs); in tdfxfb_probe_i2c_connector()
1378 struct fb_monspecs *specs; in tdfxfb_probe() local
1480 specs = &info->monspecs; in tdfxfb_probe()
1485 err = tdfxfb_probe_i2c_connector(default_par, specs); in tdfxfb_probe()
1488 if (specs->modedb == NULL) in tdfxfb_probe()
1493 fb_videomode_to_modelist(specs->modedb, in tdfxfb_probe()
1494 specs->modedb_len, in tdfxfb_probe()
1496 m = fb_find_best_display(specs, &info->modelist); in tdfxfb_probe()
1513 specs->modedb, specs->modedb_len, in tdfxfb_probe()
[all …]
Dfsl-diu-fb.c1524 struct fb_monspecs *specs = &info->monspecs; in install_fb() local
1525 struct fb_videomode *modedb = &specs->modedb[0]; in install_fb()
1531 if (specs->misc & FB_MISC_1ST_DETAIL) { in install_fb()
1534 for (i = 0; i < specs->modedb_len; i++) { in install_fb()
1535 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) { in install_fb()
1536 modedb = &specs->modedb[i]; in install_fb()
/Linux-v5.10/Documentation/devicetree/bindings/w1/
Dw1-gpio.txt6 - gpios: one or two GPIO specs:
/Linux-v5.10/Documentation/devicetree/bindings/mmc/
Dmmci.txt13 as the VCC/VDD supply in the eMMC/SD specs.
21 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
Dsdhci-fujitsu.txt17 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
/Linux-v5.10/drivers/video/fbdev/aty/
Dradeon_monitor.c908 struct fb_monspecs *specs = &info->monspecs; in radeon_check_modes() local
912 if (specs->misc & FB_MISC_1ST_DETAIL) { in radeon_check_modes()
915 for (i = 0; i < specs->modedb_len; i++) { in radeon_check_modes()
916 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) { in radeon_check_modes()
917 modedb = &specs->modedb[i]; in radeon_check_modes()
923 modedb = &specs->modedb[0]; in radeon_check_modes()
/Linux-v5.10/drivers/i2c/busses/
Di2c-stm32f7.c429 struct stm32f7_i2c_spec *specs; in stm32f7_i2c_compute_timing() local
447 specs = stm32f7_get_specs(setup->speed_freq); in stm32f7_i2c_compute_timing()
448 if (specs == ERR_PTR(-EINVAL)) { in stm32f7_i2c_compute_timing()
454 if ((setup->rise_time > specs->rise_max) || in stm32f7_i2c_compute_timing()
455 (setup->fall_time > specs->fall_max)) { in stm32f7_i2c_compute_timing()
458 setup->rise_time, specs->rise_max, in stm32f7_i2c_compute_timing()
459 setup->fall_time, specs->fall_max); in stm32f7_i2c_compute_timing()
479 sdadel_min = specs->hddat_min + setup->fall_time - in stm32f7_i2c_compute_timing()
482 sdadel_max = specs->vddat_max - setup->rise_time - in stm32f7_i2c_compute_timing()
485 scldel_min = setup->rise_time + specs->sudat_min; in stm32f7_i2c_compute_timing()
[all …]
/Linux-v5.10/sound/soc/uniphier/
Daio-ld11.c356 .specs = uniphier_aio_ld11,
366 .specs = uniphier_aio_ld11,
Daio.h218 const struct uniphier_aio_spec *specs; member
Daio-pxs2.c276 .specs = uniphier_aio_pxs2,
/Linux-v5.10/Documentation/devicetree/bindings/arm/
Dfw-cfg.txt15 device can be found in "docs/specs/fw_cfg.txt" in the QEMU source tree.
/Linux-v5.10/Documentation/devicetree/bindings/sound/
Dadi,adau1701.txt14 - adi,pll-mode-gpios: An array of two GPIO specs to describe the GPIOs
/Linux-v5.10/drivers/video/fbdev/nvidia/
Dnvidia.c1105 struct fb_monspecs *specs = &info->monspecs; in nvidia_set_fbinfo() local
1133 if (specs->modedb != NULL) { in nvidia_set_fbinfo()
1136 mode = fb_find_best_display(specs, &info->modelist); in nvidia_set_fbinfo()
1144 fb_find_mode(&nvidiafb_default_var, info, buf, specs->modedb, in nvidia_set_fbinfo()
1145 specs->modedb_len, &modedb, bpp); in nvidia_set_fbinfo()
1150 specs->modedb, specs->modedb_len, &modedb, bpp); in nvidia_set_fbinfo()
/Linux-v5.10/drivers/video/fbdev/i810/
Di810_main.c1900 struct fb_monspecs *specs = &info->monspecs; in i810fb_find_init_mode() local
1923 fb_edid_to_monspecs(par->edid, specs); in i810fb_find_init_mode()
1925 if (specs->modedb == NULL) in i810fb_find_init_mode()
1928 fb_videomode_to_modelist(specs->modedb, specs->modedb_len, in i810fb_find_init_mode()
1930 if (specs->modedb != NULL) { in i810fb_find_init_mode()
1950 fb_find_mode(&var, info, mode_option, specs->modedb, in i810fb_find_init_mode()
1951 specs->modedb_len, (found) ? &mode : NULL, in i810fb_find_init_mode()
1955 fb_destroy_modedb(specs->modedb); in i810fb_find_init_mode()
1956 specs->modedb = NULL; in i810fb_find_init_mode()
/Linux-v5.10/Documentation/driver-api/media/drivers/
Dsaa7134-devel.rst67 saa7134 hardware specs and sample board.
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-v5.10/drivers/video/fbdev/omap2/omapfb/
Domapfb-main.c2232 struct fb_monspecs *specs; in omapfb_find_best_mode() local
2248 specs = kzalloc(sizeof(*specs), GFP_KERNEL); in omapfb_find_best_mode()
2249 if (specs == NULL) { in omapfb_find_best_mode()
2254 fb_edid_to_monspecs(edid, specs); in omapfb_find_best_mode()
2258 for (i = 0; i < specs->modedb_len; ++i) { in omapfb_find_best_mode()
2262 m = &specs->modedb[i]; in omapfb_find_best_mode()
2289 fb_videomode_to_omap_timings(&specs->modedb[best_idx], display, in omapfb_find_best_mode()
2295 fb_destroy_modedb(specs->modedb); in omapfb_find_best_mode()
2296 kfree(specs); in omapfb_find_best_mode()
/Linux-v5.10/drivers/video/fbdev/riva/
Dfbdev.c1784 struct fb_monspecs *specs = &info->monspecs; in riva_update_default_var() local
1791 specs->modedb, specs->modedb_len, in riva_update_default_var()
1793 } else if (specs->modedb != NULL) { in riva_update_default_var()
1795 modedb = specs->modedb[0]; in riva_update_default_var()
1800 for (i = 0; i < specs->modedb_len; i++) { in riva_update_default_var()
1801 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) { in riva_update_default_var()
1802 modedb = specs->modedb[i]; in riva_update_default_var()
/Linux-v5.10/Documentation/virt/kvm/devices/
Darm-vgic.rst58 GICv2 specs. Getting or setting such a register has the same effect as
92 defined in the GICv2 specs. Getting or setting such a register has the
/Linux-v5.10/Documentation/userspace-api/media/dvb/
Ddvbapi.rst96 the specs.
/Linux-v5.10/Documentation/admin-guide/media/
Dsaa7134.rst88 saa7134 hardware specs and sample board.
/Linux-v5.10/drivers/staging/mt7621-pci/
Dmediatek,mt7621-pci.txt26 - reset-gpios: GPIO specs for the reset pins.

123