/linux-4.1.27/drivers/video/fbdev/core/ |
D | fbmon.c | 292 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 …]
|
D | modedb.c | 1176 const struct fb_videomode *fb_find_best_display(const struct fb_monspecs *specs, in fb_find_best_display() argument 1204 if (specs->misc & FB_MISC_1ST_DETAIL) { in fb_find_best_display() 1210 if (specs->max_x && specs->max_y) { in fb_find_best_display() 1214 var.xres = (specs->max_x * 7200)/254; in fb_find_best_display() 1215 var.yres = (specs->max_y * 7200)/254; in fb_find_best_display()
|
/linux-4.1.27/drivers/video/fbdev/ |
D | tdfxfb.c | 1364 struct fb_monspecs *specs) in tdfxfb_probe_i2c_connector() argument 1373 fb_edid_to_monspecs(edid, specs); in tdfxfb_probe_i2c_connector() 1395 struct fb_monspecs *specs; in tdfxfb_probe() local 1499 specs = &info->monspecs; in tdfxfb_probe() 1504 err = tdfxfb_probe_i2c_connector(default_par, specs); in tdfxfb_probe() 1507 if (specs->modedb == NULL) in tdfxfb_probe() 1512 fb_videomode_to_modelist(specs->modedb, in tdfxfb_probe() 1513 specs->modedb_len, in tdfxfb_probe() 1515 m = fb_find_best_display(specs, &info->modelist); in tdfxfb_probe() 1532 specs->modedb, specs->modedb_len, in tdfxfb_probe() [all …]
|
D | fsl-diu-fb.c | 1528 struct fb_monspecs *specs = &info->monspecs; in install_fb() local 1529 struct fb_videomode *modedb = &specs->modedb[0]; in install_fb() 1535 if (specs->misc & FB_MISC_1ST_DETAIL) { in install_fb() 1538 for (i = 0; i < specs->modedb_len; i++) { in install_fb() 1539 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) { in install_fb() 1540 modedb = &specs->modedb[i]; in install_fb()
|
D | Kconfig | 987 working with S1D13806). Product specs at
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | mmci.txt | 13 as the VCC/VDD supply in the eMMC/SD specs. 19 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
|
D | sdhci-fujitsu.txt | 17 as the VCCQ/VDD_IO supply in the eMMC/SD specs.
|
D | sdhci-st.txt | 49 supply in eMMC/SD specs.
|
/linux-4.1.27/Documentation/devicetree/bindings/w1/ |
D | w1-gpio.txt | 6 - gpios: one or two GPIO specs:
|
/linux-4.1.27/drivers/video/fbdev/aty/ |
D | radeon_monitor.c | 907 struct fb_monspecs *specs = &info->monspecs; in radeon_check_modes() local 911 if (specs->misc & FB_MISC_1ST_DETAIL) { in radeon_check_modes() 914 for (i = 0; i < specs->modedb_len; i++) { in radeon_check_modes() 915 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) { in radeon_check_modes() 916 modedb = &specs->modedb[i]; in radeon_check_modes() 922 modedb = &specs->modedb[0]; in radeon_check_modes()
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | adi,adau1701.txt | 14 - adi,pll-mode-gpios: An array of two GPIO specs to describe the GPIOs
|
/linux-4.1.27/drivers/video/fbdev/nvidia/ |
D | nvidia.c | 1106 struct fb_monspecs *specs = &info->monspecs; in nvidia_set_fbinfo() local 1134 if (specs->modedb != NULL) { in nvidia_set_fbinfo() 1137 mode = fb_find_best_display(specs, &info->modelist); in nvidia_set_fbinfo() 1145 fb_find_mode(&nvidiafb_default_var, info, buf, specs->modedb, in nvidia_set_fbinfo() 1146 specs->modedb_len, &modedb, bpp); in nvidia_set_fbinfo() 1151 specs->modedb, specs->modedb_len, &modedb, bpp); in nvidia_set_fbinfo()
|
/linux-4.1.27/arch/mn10300/ |
D | Makefile | 18 CCDIR := $(strip $(patsubst %/specs,%,$(CCSPECS)))
|
/linux-4.1.27/Documentation/virtual/kvm/devices/ |
D | arm-vgic.txt | 52 GICv2 specs. Getting or setting such a register has the same effect as 73 defined in the GICv2 specs. Getting or setting such a register has the
|
/linux-4.1.27/drivers/video/fbdev/i810/ |
D | i810_main.c | 1897 struct fb_monspecs *specs = &info->monspecs; in i810fb_find_init_mode() local 1920 fb_edid_to_monspecs(par->edid, specs); in i810fb_find_init_mode() 1922 if (specs->modedb == NULL) in i810fb_find_init_mode() 1925 fb_videomode_to_modelist(specs->modedb, specs->modedb_len, in i810fb_find_init_mode() 1927 if (specs->modedb != NULL) { in i810fb_find_init_mode() 1947 fb_find_mode(&var, info, mode_option, specs->modedb, in i810fb_find_init_mode() 1948 specs->modedb_len, (found) ? &mode : NULL, in i810fb_find_init_mode() 1952 fb_destroy_modedb(specs->modedb); in i810fb_find_init_mode() 1953 specs->modedb = NULL; in i810fb_find_init_mode()
|
/linux-4.1.27/drivers/video/fbdev/omap2/omapfb/ |
D | omapfb-main.c | 2250 struct fb_monspecs *specs; in omapfb_find_best_mode() local 2266 specs = kzalloc(sizeof(*specs), GFP_KERNEL); in omapfb_find_best_mode() 2267 if (specs == NULL) { in omapfb_find_best_mode() 2272 fb_edid_to_monspecs(edid, specs); in omapfb_find_best_mode() 2276 for (i = 0; i < specs->modedb_len; ++i) { in omapfb_find_best_mode() 2280 m = &specs->modedb[i]; in omapfb_find_best_mode() 2307 fb_videomode_to_omap_timings(&specs->modedb[best_idx], display, in omapfb_find_best_mode() 2313 fb_destroy_modedb(specs->modedb); in omapfb_find_best_mode() 2314 kfree(specs); in omapfb_find_best_mode()
|
/linux-4.1.27/drivers/video/fbdev/riva/ |
D | fbdev.c | 1792 struct fb_monspecs *specs = &info->monspecs; in riva_update_default_var() local 1799 specs->modedb, specs->modedb_len, in riva_update_default_var() 1801 } else if (specs->modedb != NULL) { in riva_update_default_var() 1803 modedb = specs->modedb[0]; in riva_update_default_var() 1808 for (i = 0; i < specs->modedb_len; i++) { in riva_update_default_var() 1809 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) { in riva_update_default_var() 1810 modedb = specs->modedb[i]; in riva_update_default_var()
|
/linux-4.1.27/include/linux/ |
D | fb.h | 715 struct fb_monspecs *specs); 717 struct fb_monspecs *specs); 751 extern const struct fb_videomode *fb_find_best_display(const struct fb_monspecs *specs,
|
/linux-4.1.27/Documentation/video4linux/ |
D | README.saa7134 | 74 saa7134 hardware specs and sample board.
|
D | README.cx88 | 15 - The chip specs for the on-chip TV sound decoder are next
|
D | meye.txt | 30 (C1M* models), is not supported. The manufacturer has given the specs
|
/linux-4.1.27/Documentation/dvb/ |
D | README.dvb-usb | 6 In March 2005 I got the new Twinhan USB2.0 DVB-T device. They provided specs and a firmware. 9 After reading some specs and doing some USB snooping, it realized, that the 194 providing specs, code and help, on which the dvb-dibusb, dib3000mb and
|
D | cards.txt | 6 changing the product name, revision number or specs. Some cards
|
/linux-4.1.27/Documentation/ |
D | DMA-ISA-LPC.txt | 81 specs or test different channels.
|
D | dynamic-debug-howto.txt | 125 match-specs will select all debug statement callsites.
|
/linux-4.1.27/Documentation/laptops/ |
D | sonypi.txt | 42 specs for its laptops. If someone convinces them to do so, drop me a note.
|
D | disk-shock-protection.txt | 75 reality. In fact, the ATA specs clearly state that the time for an
|
/linux-4.1.27/Documentation/fb/ |
D | vesafb.txt | 103 support nor the specs, so I have not checked this yet.
|
D | uvesafb.txt | 132 EDID-provided values and BIOS defaults. Refer to your monitor's specs to get
|
D | matroxfb.txt | 130 not comply to PCI 2.1 specs (it will not guarantee that every
|
/linux-4.1.27/Documentation/hid/ |
D | hid-transport.txt | 153 on devices that follow the HID specs except during device initialization to 273 report following the HID specs and send it via the ->raw_request() callback.
|
D | uhid.txt | 168 on the control channeld as described in the HID specs. The report-type and
|
/linux-4.1.27/Documentation/scsi/ |
D | scsi-changer.txt | 154 You likely need the SCSI specs for the device in question to
|
D | ChangeLog.ncr53c8xx | 277 SCSI specs, this is a device firmware bug. This has been worked
|
/linux-4.1.27/drivers/net/ethernet/8390/ |
D | Kconfig | 157 is a 10Mbit/sec Ethernet controller. Product overview and specs at
|
/linux-4.1.27/Documentation/usb/ |
D | CREDITS | 118 evaluation boards, specs and valuable advices during
|
/linux-4.1.27/Documentation/hwmon/ |
D | asc7621 | 48 that follows Intel's specs.
|
D | abituguru-datasheet | 23 Note: because of the lack of specs only the sensors part of the uGuru is
|
/linux-4.1.27/lib/ |
D | Kconfig | 479 Data from JEDEC specs for DDR SDRAM memories,
|
/linux-4.1.27/Documentation/watchdog/ |
D | watchdog-parameters.txt | 2 the Linux watchdog drivers. Watchdog driver parameter specs should
|
/linux-4.1.27/Documentation/PCI/ |
D | pcieaer-howto.txt | 81 the error message to root port. Pls. refer to pci express specs for
|
/linux-4.1.27/Documentation/block/ |
D | data-integrity.txt | 56 Also, the 16-bit CRC checksum mandated by both the SCSI and SATA specs
|
/linux-4.1.27/drivers/acpi/ |
D | Kconfig | 41 <http://www.uefi.org/acpi/specs>
|
/linux-4.1.27/firmware/ |
D | WHENCE | 49 specs on the dsp."
|
/linux-4.1.27/Documentation/filesystems/ |
D | relay.txt | 484 The ideas and specs for the relay interface came about as a result of
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | dra7.dtsi | 1420 * the data manual delay time/skew specs.
|
/linux-4.1.27/drivers/hid/ |
D | Kconfig | 22 For docs and specs, see http://www.usb.org/developers/hidpage/
|
/linux-4.1.27/Documentation/spi/ |
D | spi-summary | 111 Chip specs won't always say "uses SPI mode X" in as many words,
|
/linux-4.1.27/Documentation/sound/oss/ |
D | README.OSS | 1428 maintaining and supporting a driver without any specs will be a pain.
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | api.txt | 669 (The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
|