/linux-4.4.14/drivers/gpio/ |
D | gpio-davinci.c | 182 struct davinci_gpio_controller *chips = dev_get_drvdata(gc->dev); in davinci_gpio_of_xlate() local 188 if (gc != &chips[gpiospec->args[0] / 32].chip) in davinci_gpio_of_xlate() 202 struct davinci_gpio_controller *chips; in davinci_gpio_probe() local 230 chips = devm_kzalloc(dev, in davinci_gpio_probe() 233 if (!chips) in davinci_gpio_probe() 242 chips[i].chip.label = "DaVinci"; in davinci_gpio_probe() 244 chips[i].chip.direction_input = davinci_direction_in; in davinci_gpio_probe() 245 chips[i].chip.get = davinci_gpio_get; in davinci_gpio_probe() 246 chips[i].chip.direction_output = davinci_direction_out; in davinci_gpio_probe() 247 chips[i].chip.set = davinci_gpio_set; in davinci_gpio_probe() [all …]
|
D | gpio-pxa.c | 306 struct pxa_gpio_chip *chips; in pxa_init_gpio_chip() local 308 chips = kzalloc(nbanks * sizeof(struct pxa_gpio_chip), GFP_KERNEL); in pxa_init_gpio_chip() 309 if (chips == NULL) { in pxa_init_gpio_chip() 315 struct gpio_chip *c = &chips[i].chip; in pxa_init_gpio_chip() 317 sprintf(chips[i].label, "gpio-%d", i); in pxa_init_gpio_chip() 318 chips[i].regbase = gpio_reg_base + BANK_OFF(i); in pxa_init_gpio_chip() 319 chips[i].set_wake = set_wake; in pxa_init_gpio_chip() 322 c->label = chips[i].label; in pxa_init_gpio_chip() 339 pxa_gpio_chips = chips; in pxa_init_gpio_chip()
|
D | gpio-etraxfs.c | 371 struct etraxfs_gpio_chip *chips; in etraxfs_gpio_probe() local 389 chips = devm_kzalloc(dev, sizeof(*chips) * info->num_ports, GFP_KERNEL); in etraxfs_gpio_probe() 390 if (!chips) in etraxfs_gpio_probe() 421 struct etraxfs_gpio_chip *chip = &chips[i]; in etraxfs_gpio_probe()
|
D | gpio-mcp23s08.c | 883 int chips = 0; in mcp23s08_probe() local 914 chips++; in mcp23s08_probe() 934 chips++; in mcp23s08_probe() 944 if (!chips) in mcp23s08_probe() 948 sizeof(*data) + chips * sizeof(struct mcp23s08), in mcp23s08_probe() 960 chips--; in mcp23s08_probe() 961 data->mcp[addr] = &data->chip[chips]; in mcp23s08_probe()
|
/linux-4.4.14/drivers/cpufreq/ |
D | powernv-cpufreq.c | 52 } *chips; variable 321 if (chips[i].id == cpu_to_chip_id(cpu)) in powernv_cpufreq_throttle_check() 327 if (chips[i].throttled) in powernv_cpufreq_throttle_check() 329 chips[i].throttled = true; in powernv_cpufreq_throttle_check() 332 cpu, chips[i].id, pmsr_pmax, in powernv_cpufreq_throttle_check() 336 cpu, chips[i].id, pmsr_pmax, in powernv_cpufreq_throttle_check() 338 } else if (chips[i].throttled) { in powernv_cpufreq_throttle_check() 339 chips[i].throttled = false; in powernv_cpufreq_throttle_check() 341 chips[i].id, pmsr_pmax); in powernv_cpufreq_throttle_check() 501 chips[i].restore = true; in powernv_cpufreq_occ_msg() [all …]
|
/linux-4.4.14/drivers/mtd/chips/ |
D | Kconfig | 5 tristate "Detect flash chips by Common Flash Interface (CFI) probe" 17 tristate "Detect non-CFI AMD/JEDEC-compatible flash chips" 21 This option enables JEDEC-style probing of flash chips which are not 23 CFI-targeted flash drivers for any chips which are identified which 25 covers most AMD/Fujitsu-compatible chips and also non-CFI 26 Intel chips. 36 chips, or if you wish to reduce the size of the kernel by including 37 support for only specific arrangements of flash chips, say 'Y'. This 49 data bits when writing the 'magic' commands to the chips. Saying 51 enabled, means that the CPU will not do any swapping; the chips [all …]
|
D | cfi_cmdset_0002.c | 645 cfi->chips[i].word_write_time = 1<<cfi->cfiq->WordWriteTimeoutTyp; in cfi_cmdset_0002() 646 cfi->chips[i].buffer_write_time = 1<<cfi->cfiq->BufWriteTimeoutTyp; in cfi_cmdset_0002() 647 cfi->chips[i].erase_time = 1<<cfi->cfiq->BlockEraseTimeoutTyp; in cfi_cmdset_0002() 656 cfi->chips[i].buffer_write_time_max = in cfi_cmdset_0002() 660 cfi->chips[i].buffer_write_time_max = 0; in cfi_cmdset_0002() 662 cfi->chips[i].buffer_write_time_max = in cfi_cmdset_0002() 663 max(cfi->chips[i].buffer_write_time_max, 2000); in cfi_cmdset_0002() 665 cfi->chips[i].ref_point_counter = 0; in cfi_cmdset_0002() 666 init_waitqueue_head(&(cfi->chips[i].wq)); in cfi_cmdset_0002() 1160 ret = do_read_onechip(map, &cfi->chips[chipnum], ofs, thislen, buf); in cfi_amdstd_read() [all …]
|
D | cfi_cmdset_0001.c | 534 cfi->chips[i].word_write_time = in cfi_cmdset_0001() 537 cfi->chips[i].word_write_time = 50000; in cfi_cmdset_0001() 540 cfi->chips[i].buffer_write_time = in cfi_cmdset_0001() 545 cfi->chips[i].erase_time = in cfi_cmdset_0001() 548 cfi->chips[i].erase_time = 2000000; in cfi_cmdset_0001() 552 cfi->chips[i].word_write_time_max = in cfi_cmdset_0001() 556 cfi->chips[i].word_write_time_max = 50000 * 8; in cfi_cmdset_0001() 560 cfi->chips[i].buffer_write_time_max = in cfi_cmdset_0001() 566 cfi->chips[i].erase_time_max = in cfi_cmdset_0001() 570 cfi->chips[i].erase_time_max = 2000000 * 8; in cfi_cmdset_0001() [all …]
|
D | cfi_cmdset_0020.c | 155 cfi->chips[i].word_write_time = 128; in cfi_cmdset_0020() 156 cfi->chips[i].buffer_write_time = 128; in cfi_cmdset_0020() 157 cfi->chips[i].erase_time = 1024; in cfi_cmdset_0020() 158 cfi->chips[i].ref_point_counter = 0; in cfi_cmdset_0020() 159 init_waitqueue_head(&(cfi->chips[i].wq)); in cfi_cmdset_0020() 405 ret = do_read_onechip(map, &cfi->chips[chipnum], ofs, thislen, buf); in cfi_staa_read() 632 ret = do_write_buffer(map, &cfi->chips[chipnum], in cfi_staa_write_buffers() 948 ret = do_erase_oneblock(map, &cfi->chips[chipnum], adr); in cfi_staa_erase_varsize() 984 chip = &cfi->chips[i]; in cfi_staa_sync() 1020 chip = &cfi->chips[i]; in cfi_staa_sync() [all …]
|
D | gen_probe.c | 147 memset(&retcfi->chips[0], 0, sizeof(struct flchip) * cfi.numchips); in genprobe_ident_chips() 151 struct flchip *pchip = &retcfi->chips[j++]; in genprobe_ident_chips()
|
/linux-4.4.14/drivers/mtd/lpddr/ |
D | Kconfig | 5 tristate "Support for LPDDR flash chips" 9 flash chips. Synonymous with Mobile-DDR. It is a new standard for 14 tristate "Detect flash chips by QINFO probe" 16 Device Information for LPDDR chips is offered through the Overlay 24 tristate "Support for LPDDR2-NVM flash chips"
|
D | lpddr_cmds.c | 89 chip = &lpddr->chips[0]; in lpddr_cmdset() 95 *chip = lpddr->chips[i]; in lpddr_cmdset() 475 struct flchip *chip = &lpddr->chips[chipnum]; in do_erase_oneblock() 503 struct flchip *chip = &lpddr->chips[chipnum]; in lpddr_read() 528 struct flchip *chip = &lpddr->chips[chipnum]; in lpddr_point() 569 chip = &lpddr->chips[chipnum]; in lpddr_point() 588 chip = &lpddr->chips[chipnum]; in lpddr_unpoint() 660 ret = do_write_buffer(map, &lpddr->chips[chipnum], in lpddr_writev() 710 struct flchip *chip = &lpddr->chips[chipnum]; in do_xxlock()
|
/linux-4.4.14/drivers/net/wireless/rt2x00/ |
D | Kconfig | 28 Supported chips: RT2460. 40 Supported chips: RT2560. 55 Supported chips: RT2561, RT2561S & RT2661. 72 Supported chips: RT2760, RT2790, RT2860, RT2880, RT2890, RT3052, 85 Supported chips: RT3390 93 Supported chips: RT3060, RT3062, RT3562, RT3592 102 Supported chips: RT5390 110 Supported chips: RT3290 120 Supported chips: RT2571 & RT2572. 133 Supported chips: RT2571W, RT2573 & RT2671. [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/bus/ |
D | brcm,gisb-arb.txt | 6 "brcm,gisb-arb" or "brcm,bcm7445-gisb-arb" for 28nm chips 7 "brcm,bcm7435-gisb-arb" for newer 40nm chips 8 "brcm,bcm7400-gisb-arb" for older 40nm chips and all 65nm chips 9 "brcm,bcm7038-gisb-arb" for 130nm chips
|
/linux-4.4.14/drivers/net/dsa/ |
D | Kconfig | 28 ethernet switch chips. 37 ethernet switch chips. 46 ethernet switches chips. 55 88E6321 and 88E6352 ethernet switch chips. 66 switch chips.
|
/linux-4.4.14/sound/usb/6fire/ |
D | chip.c | 38 static struct sfire_chip *chips[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; variable 99 if (chips[i]) in usb6fire_chip_probe() 100 chips[i]->intf_count++; in usb6fire_chip_probe() 101 usb_set_intfdata(intf, chips[i]); in usb6fire_chip_probe() 139 chips[regidx] = chip; in usb6fire_chip_probe() 191 chips[chip->regidx] = NULL; in usb6fire_chip_disconnect()
|
/linux-4.4.14/Documentation/hwmon/ |
D | tmp421 | 4 Supported chips: 33 TMP423, TMP441, and TMP442 temperature sensor chips. These chips 36 in degrees Celsius. The chips are wired over I2C/SMBus and specified 40 The chips support only temperature measurement. The driver exports
|
D | thmc50 | 4 Supported chips: 27 List of adapter,address pairs to force chips into ADM1022 mode with 28 second remote temperature. This does not work for original THMC50 chips. 46 The THMC50 is usually used in combination with LM78-like chips, to measure 72 The driver was tested on Compaq AP550 with two ADM1022 chips (one works
|
D | tmp401 | 4 Supported chips: 34 TMP431, TMP432 and TMP435 chips. These chips implement one or two remote 44 The TMP411 and TMP431 chips are compatible with TMP401. TMP411 provides
|
D | emc1403 | 4 Supported chips: 35 The Standard Microsystems Corporation (SMSC) / Microchip EMC14xx chips 41 The chips implement three limits for each sensor: low (tempX_min), high 42 (tempX_max) and critical (tempX_crit.) The chips also implement an
|
D | smsc47m1 | 4 Supported chips: 33 The Standard Microsystems Corporation (SMSC) 47M1xx Super I/O chips 36 The LPC47M15x, LPC47M192 and LPC47M292 chips contain a full 'hardware 42 ID as the 47M15x and 47M192 chips and seems to be compatible.
|
D | lm75 | 4 Supported chips: 78 slowest chips and 125 ms for the fastest chips; reading it more often 81 The original LM75 was typically used in combination with LM78-like chips 93 Both chips are simply not compatible, value encoding differs.
|
D | userspace-tools | 4 Most mainboards have sensor chips to monitor system health (like temperatures, 8 The kernel drivers make the data from the sensor chips available in the /sys 10 values or configure the chips in a more friendly manner.
|
D | adm1021 | 4 Supported chips: 61 The chips supported by this driver are very similar. The Maxim MAX1617 is 64 Ditto for the THMC10. From here on, we will refer to all these chips as 95 2003) microarchitecture had real MAX1617, ADM1021, or compatible chips 97 era (with 400 MHz FSB) had chips with only one temperature sensor. 104 will have to explicitly instantiate the sensor chips from user-space. See
|
D | it87 | 4 Supported chips: 98 Force PWM polarity to active high (DANGEROUS). Some chips are 106 All the chips supported by this driver are LPC Super-I/O chips, accessed 120 SiS950 chips. 122 These chips are 'Super I/O chips', supporting floppy disks, infrared ports, 147 not compatible with the older chips and revisions. The 16-bit tachometer mode 148 is enabled by the driver when one of the above chips is detected. 183 zero'; this is important for negative voltage measurements. On most chips, all 227 "Smart Guardian" mode control handling is only implemented for older chips 242 which is implemented by IT8705F chips up to revision F and IT8712F [all …]
|
D | jc42 | 4 Supported chips: 45 * JEDEC JC 42.4 compliant temperature sensor chips 49 Common for all chips: 65 The driver auto-detects the chips listed above, but can be manually instantiated 66 to support other JC 42.4 compliant chips.
|
D | max6697 | 4 Supported chips: 43 chips. The chips support one local temperature sensor plus four, six, or seven
|
D | w83627hf | 4 Supported chips: 42 the Winbond W83627HF, W83627THF, W83697HF and W83637HF Super I/O chips. 43 We will refer to them collectively as Winbond chips. 51 If you really want i2c accesses for these Super I/O chips, 57 VID reading. However the two chips have the identical 128 pin package. So,
|
D | sch5627 | 4 Supported chips: 16 SMSC SCH5627 Super I/O chips include complete hardware monitoring
|
D | adt7411 | 4 Supported chips: 16 be other chips that implement this interface.
|
D | lm83 | 4 Supported chips: 54 sensors. This means that temperature-only chips are usually used as 55 secondary chips coupled with another chip such as an IT8705F or similar 58 chips provide some temperature sensors, the secondary chip, if needed,
|
D | emc2103 | 4 Supported chips: 16 The Standard Microsystems Corporation (SMSC) EMC2103 chips
|
D | sch5636 | 4 Supported chips: 15 SMSC SCH5636 Super I/O chips include an embedded microcontroller for
|
D | w83781d | 4 Supported chips: 50 chips, and the Asus AS99127F chips. We will refer to them collectively as 51 W8378* chips. 53 There is quite some difference between these chips, but they are similar 55 The Asus chips are similar to an I2C-only W83782D. 64 Detection of these chips can sometimes be foiled because they can be in 119 chips which triggers if your computer case is open. 151 The chips only update values each 1.5 seconds; reading them more often 163 Note that the individual beep bits are inverted from the other chips. 251 Kaam about how to detect these chips, and how to read their values. He [all …]
|
D | w83l786ng | 4 Supported chips: 25 This driver implements support for Winbond W83L786NG/W83L786NR chips.
|
D | sysfs-interface | 12 Note that motherboards vary widely in the connections to sensor chips. 15 the CPU. Also, some values reported by the chips need some computation 16 before they make full sense. For example, most chips can only measure 34 find all sensor chips, it is easier to follow the device symlinks from 40 (e.g. drivers for multifunction chips) may want to use this possibility to 48 types for sensor chips are "in" (voltage), "temp" (temperature) and 57 Alarms are direct indications read from the chips. The drivers do NOT 76 Read/write values may be read-only for some chips, depending on the 209 Some chips only support values 1, 2, 4 and 8. 278 chip-dependent. Use this for chips which associate trip points [all …]
|
D | lm95245 | 4 Supported chips: 23 The chips can be used to very accurately monitor the temperature of
|
D | gl518sm | 4 Supported chips: 29 0x80 chips support the reading of all voltages and revision 0x00 only 57 a resolution of 0.019 volt. Note that revision 0x00 chips do not support
|
D | nct6683 | 4 Supported chips: 18 The chips implement up to shared 32 temperature and voltage sensors.
|
D | max1668 | 4 Supported chips: 17 chips.
|
D | tc74 | 4 Supported chips:
|
D | smsc47m192 | 4 Supported chips: 22 of the SMSC LPC47M192 and compatible Super-I/O chips. 24 These chips support 3 temperature channels and 8 voltage inputs
|
D | f71882fg | 4 Supported chips: 67 Fintek F718xx/F8000 Super I/O chips include complete hardware monitoring 71 These chips also have fan controlling features, using either DC or PWM, in 118 chips, and some modes may only be available in RPM / PWM mode.
|
D | nct6775 | 10 Supported chips: 47 and compatible super I/O chips. 49 The chips support up to 25 temperature monitoring sources. Up to 6 of those are 58 The temperature sensor sources on all chips are configurable. The configured 70 16, 32, 64 or 128) to give the readings more range or accuracy; the other chips
|
D | ina2xx | 4 Supported chips: 51 with an I2C interface. The chips monitor both a shunt voltage drop and
|
D | sis5595 | 4 Supported chips: 23 Note: these chips contain a 0008 device which is incompatible with the 104 Some chips refuse to be enabled. We don't know why.
|
D | pmbus-core | 54 chips. 116 necessary for chips which react badly if non-supported commands are executed, 176 if a chip driver supports multiple chips, and the chip functionality is not 274 Some PMBus chips respond with valid data when trying to read an unsupported 275 register. For such chips, checking the status register is mandatory when 277 Other PMBus chips don't support the STATUS_CML register, or report 278 communication errors for no explicable reason. For such chips, checking the
|
D | ab8500 | 4 Supported chips:
|
D | ad7314 | 4 Supported chips:
|
D | max6642 | 4 Supported chips:
|
D | nct7802 | 4 Supported chips:
|
D | adt7470 | 4 Supported chips: 16 be other chips that implement this interface.
|
D | zl6100 | 4 Supported chips: 80 configuration data (0x11, 0x12, 0x15, 0x16, and 0xf4). The chips supported by 102 is known to affect all currently supported chips. For manual override, the
|
D | wm8350 | 4 Supported chips:
|
D | tmp103 | 4 Supported chips:
|
D | tmp102 | 4 Supported chips:
|
D | max1619 | 4 Supported chips:
|
D | hih6130 | 4 Supported chips:
|
D | mcp3021 | 4 Supported chips:
|
D | scpi-hwmon | 4 Supported chips:
|
D | submitting-patches | 87 chips. If your chip lives at an address which can't be probed then the 116 new chips are often variants of previously released chips. In some cases,
|
D | pmbus | 4 Supported chips: 61 supported by all chips), and since there is no well defined address range for 73 Support for additional PMBus chips can be added by defining chip parameters in
|
D | wm831x | 4 Supported chips:
|
D | abx500 | 4 Supported chips:
|
D | max16065 | 4 Supported chips: 66 any of the i2ctools commands on a command register (0xa5 to 0xac). The chips
|
D | lm78 | 4 Supported chips: 25 There is almost no difference between the three supported chips. Functionally,
|
D | w83627ehf | 4 Supported chips: 50 (NCT6775F), and NCT6776F super I/O chips. We will refer to them collectively 51 as Winbond chips. 53 The chips implement 3 to 4 temperature sensors (9 for NCT6775F and NCT6776F),
|
D | ltc4215 | 4 Supported chips:
|
D | adm1031 | 4 Supported chips:
|
D | ltc4151 | 4 Supported chips:
|
D | twl4030-madc-hwmon | 4 Supported chips:
|
D | lm63 | 4 Supported chips: 48 The fan speed is measured using a tachometer. Contrary to most chips which
|
D | lm85 | 4 Supported chips: 49 compatible chips including the Analog Devices ADM1027, ADT7463, ADT7468 and 50 SMSC EMC6D10x chips family. 148 these two chips. The LM85B is recommended for new designs. 150 The ADM1027, ADT7463 and ADT7468 chips have an optional SMBALERT output
|
D | max31790 | 4 Supported chips:
|
D | powr1220 | 4 Supported chips:
|
D | lm92 | 4 Supported chips:
|
D | fam15h_power | 4 Supported chips:
|
D | menf21bmc | 4 Supported chips:
|
D | ucd9000 | 4 Supported chips: 106 Fan attributes are only available on chips supporting
|
D | via686a | 4 Supported chips: 32 The driver does not distinguish between the chips and reports
|
D | ltc2978 | 4 Supported chips: 69 in a single die. The chip is instantiated and reported as two separate chips 76 as two separate chips on two different I2C bus addresses.
|
D | w83792d | 4 Supported chips: 99 In addition to the alarms described above, there is a CHAS alarm on the chips 103 The chips only update values each 3 seconds; reading them more often will
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | gpio-mcp23s08.txt | 24 multiple chips on the same chipselect. Have a look at 27 Required device specific properties (only for SPI chips): 30 chips - as the name suggests. Multiple SPI chips can share the same 36 least one bit to 1 for SPI chips. 47 chips. The spi chips can also do the interrupts, but this is not supported by 54 IO 8-15 are bank 2. These chips have two different interrupt outputs:
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | ccf.txt | 12 Example chips: T4240, B4860 15 Example chips: P5040, P5020, P4080, P3041, P2041 20 used for both CCF version 1 chips and CCF version 2 21 chips. It should be specified after either
|
D | dma.txt | 5 series chips such as mpc8315, mpc8349, mpc8379 etc. 72 mainly used in Freescale mpc85xx/86xx, Pxxx and BSC series chips, such as 134 series chips, such as t1040, t4240, b4860.
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | jedec,spi-nor.txt | 1 * MTD SPI driver for ST M25Pxx (and similar) serial flash chips 10 chips. 19 all chips and support for it can not be detected at runtime. 20 Refer to your chips' datasheet to check if this is supported
|
D | mtd-physmap.txt | 3 Flash chips (Memory Technology Devices) are often used for solid state 11 non-identical chips can be described in one node. 13 device width times the number of interleaved chips.
|
D | atmel-nand.txt | 66 /* for PMECC supported chips */ 93 /* for NFC supported chips */
|
D | sunxi-nand.txt | 15 Children nodes represent the available nand chips.
|
/linux-4.4.14/Documentation/sound/oss/ |
D | ESS | 1 Documentation for the ESS AudioDrive chips 9 All ESS chips now have a recording level setting. This is a need-to-have for 19 For ESS chips an additional parameter "esstype" can be specified. This controls 20 the (auto) detection of the ESS chips. It can have 3 kinds of values:
|
/linux-4.4.14/drivers/mtd/maps/ |
D | Kconfig | 6 bool "Support non-linear mappings of flash chips" 9 paged mappings of flash chips. 16 ROM driver code to communicate with chips which are mapped 18 the physical address and size of the flash chips on your 41 This is the physical memory location at which the flash chips 51 This is the total length of the mapping of the flash chips on 53 physical memory map between the chips, this could be larger 73 and RAM driver code to communicate with chips which are mapped 82 in which user-programmable flash chips are connected on the 105 which user-programmable flash chips are connected on various [all …]
|
/linux-4.4.14/drivers/i2c/muxes/ |
D | i2c-mux-pca954x.c | 78 static const struct chip_desc chips[] = { variable 153 const struct chip_desc *chip = &chips[data->type]; in pca954x_select_chan() 227 for (num = 0; num < chips[data->type].nchans; num++) { in pca954x_probe() 260 num, chips[data->type].muxtype == pca954x_ismux in pca954x_probe() 274 const struct chip_desc *chip = &chips[data->type]; in pca954x_remove()
|
/linux-4.4.14/drivers/nfc/st-nci/ |
D | Kconfig | 6 STMicroelectronics NFC NCI chips core driver. It implements the chipset 19 STMicroelectronics NFC NCI chips familly. 30 STMicroelectronics NFC NCI chips familly.
|
/linux-4.4.14/drivers/hwmon/ |
D | Kconfig | 109 AD7416, AD7417 and AD7418 temperature monitoring chips. 119 and ADM1023 sensor chips and clones: Maxim MAX1617 and MAX1617A, 131 and Philips NE1619 sensor chips. 163 and ADM1030 sensor chips. 174 Dallas DS1780, National Semiconductor LM81 sensor chips. 193 ADT7310 and ADT7320 temperature monitoring chips. 204 ADT7410 and ADT7420 temperature monitoring chips. 224 ADT7462 temperature monitoring chips. 234 ADT7470 temperature monitoring chips. 246 chips. [all …]
|
D | ad7418.c | 29 enum chips { ad7416, ad7417, ad7418 }; enum 48 enum chips type;
|
D | max1111.c | 25 enum chips { max1110, max1111, max1112, max1113 }; enum 187 enum chips chip = spi_get_device_id(spi)->driver_data; in max1111_probe()
|
D | tmp421.c | 38 enum chips { tmp421, tmp422, tmp423, tmp441, tmp442 }; enum 236 enum chips kind; in tmp421_detect()
|
D | ds1621.c | 50 enum chips { ds1621, ds1625, ds1631, ds1721, ds1731 }; enum 127 enum chips kind; /* device type */
|
D | smsc47m1.c | 52 enum chips { smsc47m1, smsc47m2 }; enum 127 enum chips type; 141 enum chips type; 632 enum chips type, int action, in smsc47m1_handle_resources()
|
/linux-4.4.14/net/switchdev/ |
D | Kconfig | 10 drivers in order to support hardware switch chips in very generic 12 also various flow offloading chips, including switches embedded into
|
/linux-4.4.14/drivers/gpu/drm/mgag200/ |
D | Kconfig | 11 This is a KMS driver for the MGA G200 server chips, it 13 chips. It requires 0.3.0 of the modesetting userspace driver,
|
/linux-4.4.14/drivers/net/can/cc770/ |
D | Kconfig | 10 This driver adds legacy support for CC770 and AN82527 chips 17 This driver adds support for the CC770 and AN82527 chips
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/tegra/ |
D | nvidia,tegra20-ahb.txt | 9 Tegra20, Tegra30, and Tegra114 chips, the value must be <0x6000c004 10 0x10c>. For Tegra124, Tegra132 and Tegra210 chips, the value should
|
/linux-4.4.14/Documentation/fb/ |
D | 00-INDEX | 11 - info on the fbdev driver for ARK Logic chips. 49 - info on the fbdev driver for S3 Trio/Virge chips. 55 - info on the framebuffer device driver for various SiS chips. 65 - Driver for DisplayLink USB 2.0 chips.
|
D | udlfb.txt | 5 This is a driver for DisplayLink USB 2.0 era graphics chips. 7 DisplayLink chips provide simple hline/blit operations with some compression, 32 Advantages of supporting DisplayLink chips with kernel framebuffer interface: 34 * The actual hardware functionality of DisplayLink chips matches nearly 59 DisplayLink chips (Alex and Ollie family). It will then attempt to read the EDID
|
D | tridentfb.txt | 3 The following list of chips is thought to be supported although not all are 24 older chips.
|
/linux-4.4.14/sound/isa/ |
D | Kconfig | 49 AD1816A or compatible sound chips. 59 CS4248 (Cirrus Logic - Crystal Semiconductors) chips. 61 For newer chips from Cirrus Logic, use the CS4231 or CS4232+ 76 Diamond Technologies DT-019X or Avance Logic chips: ALS007, 77 ALS100, ALS110, ALS120 and ALS200 chips. 152 Say Y here to include support for CS4231 chips from Cirrus 165 CS4238B,CS4239 chips from Cirrus Logic - Crystal 178 ES1688 chips. Also, this module support cards with ES968 PnP chip. 189 Say Y here to include support for ESS AudioDrive ES18xx chips. 205 These cards are based on CompuMedia ASC-9308 or ASC-9408 chips. [all …]
|
/linux-4.4.14/sound/aoa/codecs/ |
D | Kconfig | 11 tristate "support TAS chips" 15 This option enables support for the tas chips
|
/linux-4.4.14/drivers/mtd/devices/ |
D | Kconfig | 57 This enables access to AT45xxx DataFlash chips, using SPI. 58 Sometimes DataFlash chips are packaged inside MMC-format 75 Newer DataFlash chips (revisions C and D) support 128 bytes of 82 tristate "Support most SPI Flash chips (AT26DF, M25P, W25X, ...)" 85 This enables access to most modern SPI flash chips, used for 87 Spansion S25SL, SST 25VF, ST M25P, and Winbond W25X. Other chips 89 or to add other chips. 91 Note that the original DataFlash chips (AT45 series, not AT26DF), 106 tristate "Support SST25L (non JEDEC) SPI Flash chips" 109 This enables access to the non JEDEC SST25L SPI flash chips, used
|
/linux-4.4.14/drivers/net/can/c_can/ |
D | Kconfig | 10 This driver adds support for the C_CAN/D_CAN chips connected 21 This driver adds support for the C_CAN/D_CAN chips connected
|
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_dump.h | 49 u32 chips; member 58 u32 chips; member
|
D | bnx2x_ethtool.c | 716 #define IS_E1_REG(chips) ((chips & DUMP_CHIP_E1) == DUMP_CHIP_E1) argument 717 #define IS_E1H_REG(chips) ((chips & DUMP_CHIP_E1H) == DUMP_CHIP_E1H) argument 718 #define IS_E2_REG(chips) ((chips & DUMP_CHIP_E2) == DUMP_CHIP_E2) argument 719 #define IS_E3A0_REG(chips) ((chips & DUMP_CHIP_E3A0) == DUMP_CHIP_E3A0) argument 720 #define IS_E3B0_REG(chips) ((chips & DUMP_CHIP_E3B0) == DUMP_CHIP_E3B0) argument 790 return IS_E1_REG(reg_info->chips); in bnx2x_is_reg_in_chip() 792 return IS_E1H_REG(reg_info->chips); in bnx2x_is_reg_in_chip() 794 return IS_E2_REG(reg_info->chips); in bnx2x_is_reg_in_chip() 796 return IS_E3A0_REG(reg_info->chips); in bnx2x_is_reg_in_chip() 798 return IS_E3B0_REG(reg_info->chips); in bnx2x_is_reg_in_chip() [all …]
|
/linux-4.4.14/drivers/regulator/ |
D | Kconfig | 61 This driver supports Marvell 88PM800 voltage regulator chips. 64 It's suitable to support PXA988 chips to control VCC_MAIN and 71 This driver supports 88PM8607 voltage regulator chips. 85 This driver supports AD5398 and AD5821 current regulator chips. 335 for PXA27x chips to control VCC_CORE and VCC_USIM voltages. 390 S5PV210, and Exynos-4 chips to control VCC_CORE and 399 and S5PC1XX chips to control VCC_CORE and VCC_USIM voltages. 407 Exynos-4 chips to control VARM and VINT voltages. 416 Exynos-4x12 (MAX77693) or Exynos5433 (MAX77843) SoC chips. 470 chips say Y here. This will enable support for all the software [all …]
|
/linux-4.4.14/drivers/nfc/nxp-nci/ |
D | Kconfig | 6 Generic core driver for NXP NCI chips such as the NPC100 20 chips.
|
/linux-4.4.14/Documentation/devicetree/bindings/media/ |
D | si4713.txt | 13 - interrupts-extended: Interrupt specifier for the chips interrupt 14 - reset-gpios: GPIO specifier for the chips reset line
|
/linux-4.4.14/Documentation/i2c/busses/ |
D | i2c-i801 | 63 ICH3 (82801CA/CAM) and later devices (PCH) are Intel chips that are a part of 67 The ICH chips contain at least SEVEN separate PCI functions in TWO logical 80 The ICH chips are quite similar to Intel's PIIX4 chip, at least in the 93 I2C block read is supported on the 82801EB (ICH5) and later chips. 99 The 82801DB (ICH4) and later chips support several SMBus 2.0 features. 105 PCI interrupt support is supported on the 82801EB (ICH5) and later chips. 152 If it works, proves useful (i.e. there are usable chips on the SMBus)
|
D | i2c-sis5595 | 17 Note: these chips contain a 0008 device which is incompatible with the 58 drivers to access chips on the bus.
|
D | i2c-ali1563 | 16 For an overview of these chips see http://www.acerlabs.com
|
/linux-4.4.14/drivers/rtc/ |
D | Kconfig | 152 88PM860x chips. 162 88PM80x chips. 182 clock chips. 192 chips. 201 chips (often with battery backup) connected with I2C. This driver 203 EPSON RX-8025 and probably other chips. In some cases the RTC 207 The first seven registers on these chips hold an RTC, and other 219 DS1374 real-time clock chips. If an interrupt is associated 231 real-time clock chips. 246 DS3232 real-time clock chips. If an interrupt is associated [all …]
|
/linux-4.4.14/drivers/mtd/nand/ |
D | nand_bbt.c | 527 int i, chips; in search_bbt() local 544 chips = this->numchips; in search_bbt() 548 chips = 1; in search_bbt() 552 for (i = 0; i < chips; i++) { in search_bbt() 576 for (i = 0; i < chips; i++) { in search_bbt() 840 int i, chips, writeops, create, chipsel, res, res2; in check_create() local 848 chips = this->numchips; in check_create() 850 chips = 1; in check_create() 852 for (i = 0; i < chips; i++) { in check_create() 966 int i, j, chips, block, nrblocks, update; in mark_bbt_region() local [all …]
|
D | Kconfig | 70 determine the size of certain chips. Set the address of the 186 using NAND. Early versions of the chips have had problems with 314 The CS553x companion chips for the AMD Geode processor 342 chips) NAND controller. This is the default for the PHYTEC 3250 352 Uses the LPC32XX MLC (i.e. for Multi Level Cell chips) NAND 380 The simulator may simulate various NAND flash chips for the 432 Various Freescale chips, including the 8313, include a NAND Flash 443 Various Freescale chips e.g P1010, include a NAND Flash machine 453 Enables support for NAND Flash chips wired onto Freescale PowerPC 494 Enable the driver for NAND flash chips on Texas Instruments [all …]
|
/linux-4.4.14/Documentation/w1/slaves/ |
D | w1_ds2406 | 4 Supported chips: 13 These chips also provide 128 bytes of OTP EPROM, but reading/writing it is
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | Insmod-options | 86 driver for all simple i2c audio control chips (tda/tea*). 90 tda9840 = 1 various chips. 95 tea6300 = 0 The two tda985x chips use the same i2c 117 Note 1: tda9874a supports both tda9874h (old) and tda9874a (new) chips. 133 The driver for the msp34xx sound processor chips. If you have a 168 The driver for the tda9850/55 audio chips.
|
D | ICs | 37 Look at the board! What chips are on it?
|
D | Sound-FAQ | 27 and other nice features. The msp34xx chips are used by Hauppauge for 44 The bt8xx chips have 32 general purpose pins, and registers to control 54 receiver chips. Some boards use the i2c bus instead of the gpio pins
|
/linux-4.4.14/drivers/usb/host/ |
D | Kconfig | 9 The Cypress C67x00 (EZ-Host/EZ-OTG) chips are dual-role 87 Some EHCI chips have vendor-specific extensions to integrate 152 Variation of ARC USB block used in some Freescale chips. 159 Variation of ARC USB block used in some Freescale chips. 162 tristate "EHCI support for OMAP3 and later chips" 168 OMAP3 and later chips. 187 ST SPEAr chips. 204 Atmel chips. 313 USB 2.0 device support. All CN6XXX based chips with USB are 333 The ISP1160 and ISP1161 chips are USB host controllers. Enable this [all …]
|
/linux-4.4.14/Documentation/spi/ |
D | spi-sc18is602 | 4 Supported chips: 18 The driver does not probe for supported chips, since the SI18IS602/603 does not
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | tas571x.txt | 19 - AVDD-supply: regulator phandle for the AVDD supply (all chips) 20 - DVDD-supply: regulator phandle for the DVDD supply (all chips)
|
/linux-4.4.14/sound/pci/ |
D | Kconfig | 44 ALS4000 chips. 177 Brooktree Bt878/Bt879 chips, say Y here and read 212 CMI8768 or CMI8770 chips, say Y here and read 252 Say Y here to include support for Cirrus Logic CS4281 chips. 264 CS4614/CS4615/CS4622/CS4624/CS4630/CS4280 chips. 283 Say Y here to include support for audio on Cyrix/NatSemi CS5530 chips. 294 Say Y here to include support for audio on CS5535 chips. It is 297 device. However, for both chips, on certain boards, you may 311 boards with 20k1 or 20k2 chips, say Y here. 497 Say Y here to include support for Ensoniq AudioPCI ES1370 chips. [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/ |
D | edt-ft5x06.txt | 10 The software interface is identical for all those chips, so that 12 different chips. Nevertheless distinct compatible strings are used so
|
/linux-4.4.14/arch/cris/arch-v10/ |
D | Kconfig | 282 Enable this if you use SDRAM chips and configure 291 chips in the system are connected to the ETRAX CPU. This is 293 chips. So this value often needs to be different for each Axis 301 Different DRAM chips have different speeds. Current Axis products 302 use 50ns DRAM chips which can use the timing: 5611. 310 chips in the system are connected to the ETRAX CPU. This is 312 chips. So this value often needs to be different for each Axis 320 Different SDRAM chips have different timing.
|
/linux-4.4.14/Documentation/gpio/ |
D | gpio.txt | 33 non-dedicated pin can be configured as a GPIO; and most chips have at least 35 provide GPIOs; multifunction chips like power managers, and audio codecs 37 also "GPIO Expander" chips that connect using the I2C or SPI serial buses. 43 - Output values are writable (high=1, low=0). Some chips also have 48 - Input values are likewise readable (1, 0). Some chips support readback
|
/linux-4.4.14/Documentation/w1/ |
D | 00-INDEX | 6 - Individual chips providing 1-wire busses.
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | ste,nomadik.txt | 6 - nomadik-gpio-chips: array of phandles to the corresponding GPIO chips 79 nomadik-gpio-chips = <&gpio0>, <&gpio1>, <&gpio2>, <&gpio3>;
|
/linux-4.4.14/drivers/mfd/ |
D | Kconfig | 300 chips labeled "AIC2" and "AIC3", found on HTC Blueangel and 311 interface to one or more sub-chips. 789 Power Management chips. 861 bool "SMSC ECE1099 series chips" 867 ece1099 chips from SMSC. 877 chips. This core driver expose register access functions. 1019 of Touch Screen /ADC chips. 1062 bool "TI Palmas series chips" 1069 series of PMIC chips from Texas Instruments. 1085 tristate "TI TPS6501x Power Management chips" [all …]
|
/linux-4.4.14/drivers/thermal/ti-soc-thermal/ |
D | Kconfig | 28 OMAP3 SoC family. The current chips supported are: 31 OMAP3 chips normally don't need thermal management, and sensors in
|
/linux-4.4.14/drivers/net/wireless/realtek/rtl818x/ |
D | Kconfig | 10 These are PCI based chips found in cards such as: 66 These are USB based chips found in devices such as:
|
/linux-4.4.14/drivers/media/usb/em28xx/ |
D | Kconfig | 31 implementing the USB Audio Class. For those chips, this module 64 Empiatech em28xx chips.
|
/linux-4.4.14/drivers/soc/brcmstb/ |
D | Kconfig | 5 Enables drivers for the Broadcom Set-Top Box (STB) series of chips.
|
/linux-4.4.14/drivers/net/ethernet/octeon/ |
D | Kconfig | 14 CN54XX, CN52XX, and CN6XXX chips.
|
/linux-4.4.14/drivers/net/ethernet/realtek/ |
D | Kconfig | 40 the RTL8139C+ chips. If you have one of those, say Y here. 52 the RTL 8129/8130/8139 chips. If you have one of those, say Y here. 83 RTL-8130 chips, which support MII via an external transceiver,
|
/linux-4.4.14/drivers/net/ethernet/dec/tulip/ |
D | Kconfig | 20 21040 (Tulip series) chips. Some LinkSys PCI cards are 48 21140 (Tulip series) chips. Some LinkSys PCI cards are 161 It should work with most DEC 21*4*-based chips/ethercards, as well 162 as with work-alike chips from Lite-On (PNIC) and Macronix (MXIC) and
|
/linux-4.4.14/Documentation/devicetree/bindings/crypto/ |
D | fsl-imx-sahara.txt | 1 Freescale SAHARA Cryptographic Accelerator included in some i.MX chips.
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | pxa-clock.txt | 1 * Clock bindings for Marvell PXA chips
|
/linux-4.4.14/Documentation/devicetree/bindings/rtc/ |
D | imxdi-rtc.txt | 3 This binding supports the following chips: i.MX25, i.MX53
|
/linux-4.4.14/arch/x86/ |
D | Kconfig.cpu | 85 Select this for Intel Pentium Pro chips. This enables the use of 93 Select this for Intel chips based on the Pentium-II and 103 Select this for Intel chips based on the Pentium-III and 113 notebook chips. 119 Select this for Intel Pentium 4 chips. This includes the 121 Pentium-4 M (not Pentium M) chips. This option enables compile 356 # 6 processor, except that it is broken on certain VIA chips. 357 # Furthermore, AMD chips prefer a totally different sequence of NOPs 362 # NOPs do work on all x86-64 capable chips); the list of processors in
|
/linux-4.4.14/drivers/staging/xgifb/ |
D | Kconfig | 8 This driver supports notebooks with XGI Z7,Z9,Z11 PCI chips.
|
/linux-4.4.14/sound/soc/sirf/ |
D | Kconfig | 2 tristate "SoC Audio for the SiRF SoC chips"
|
/linux-4.4.14/Documentation/isdn/ |
D | README.hfc-pci | 1 The driver for the HFC-PCI and HFC-PCI-A chips from CCD may be used 2 for many OEM cards using this chips.
|
/linux-4.4.14/drivers/net/ethernet/wiznet/ |
D | Kconfig | 23 Support for WIZnet W5100 chips. 36 Support for WIZnet W5300 chips.
|
/linux-4.4.14/Documentation/w1/masters/ |
D | mxc-w1 | 4 Supported chips:
|
D | ds2482 | 4 Supported chips:
|
/linux-4.4.14/include/linux/mtd/ |
D | qinfo.h | 26 struct flchip chips[0]; member
|
/linux-4.4.14/drivers/iio/potentiometer/ |
D | Kconfig | 15 digital potentiomenter chips.
|
/linux-4.4.14/drivers/gpu/drm/ast/ |
D | Kconfig | 2 tristate "AST server chips"
|
/linux-4.4.14/drivers/video/fbdev/mmp/hw/ |
D | Kconfig | 10 MMP2 chips
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | intel,ce4100-ioapic.txt | 1 Interrupt chips
|
/linux-4.4.14/drivers/mtd/onenand/ |
D | Kconfig | 64 Now the following chips support it. (KFXXX16Q2M) 68 And more recent chips
|
/linux-4.4.14/drivers/misc/ti-st/ |
D | Kconfig | 12 BT / FM and GPS combo chips. This enables protocol drivers
|
/linux-4.4.14/drivers/memory/tegra/ |
D | Kconfig | 15 Tegra124 chips. The EMC controls the external DRAM on the board.
|
/linux-4.4.14/drivers/net/wireless/ |
D | Kconfig | 83 chips. This driver supports standard Linux wireless extensions. 107 Atmel at76c502 and at76c504 chips. 115 at76c505 or at76c505a chips. 224 These are PCI/mini-PCI/Cardbus 802.11b chips found in cards such as: 238 However, some of these cards have been replaced with other chips
|
/linux-4.4.14/sound/soc/kirkwood/ |
D | Kconfig | 2 tristate "SoC Audio for the Marvell Kirkwood and Dove chips"
|
/linux-4.4.14/drivers/dma/dw/ |
D | Kconfig | 19 can be integrated in chips such as the Atmel AT32ap7000.
|
/linux-4.4.14/drivers/net/wireless/ti/ |
D | Kconfig | 5 for Texas Instruments WLAN chips, such as wl1251 and the wl12xx
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/msm/ |
D | ssbi.txt | 5 chips).
|
/linux-4.4.14/drivers/mailbox/ |
D | Kconfig | 32 Mailbox implementation for OMAP family chips with hardware for 78 Mailbox implementation for STMicroelectonics family chips with
|
/linux-4.4.14/drivers/pinctrl/qcom/ |
D | Kconfig | 83 Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips, 95 Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips,
|
/linux-4.4.14/Documentation/devicetree/bindings/serial/ |
D | vt8500-uart.txt | 4 - compatible: should be "via,vt8500-uart" (for VIA/WonderMedia chips up to and
|
/linux-4.4.14/drivers/staging/rtl8723au/ |
D | TODO | 4 - find and remove any code for other chips that is left over
|
/linux-4.4.14/drivers/net/can/mscan/ |
D | Kconfig | 3 tristate "Support for Freescale MSCAN based chips"
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | mpc5121ads.dts | 20 * ADS has two Hynix 512MB Nand flash chips in a single 23 chips = <2>;
|
/linux-4.4.14/Documentation/thermal/ |
D | nouveau_thermal | 4 Supported chips: 16 cannot access any of the i2c external monitoring chips it may find. If you
|
/linux-4.4.14/Documentation/misc-devices/ |
D | max6875 | 4 Supported chips: 60 Use the i2c-dev interface to access and program the chips.
|
D | bh1770glc.txt | 4 Supported chips: 39 Calibscale factor is used to hide differences between the chips. By default
|
D | ics932s401 | 4 Supported chips:
|
/linux-4.4.14/drivers/mtd/ |
D | Makefile | 33 obj-y += chips/ lpddr/ maps/ devices/ nand/ onenand/ tests/
|
D | Kconfig | 5 Memory Technology Devices are flash, RAM and similar chips, often 171 Although most flash chips have an erase size too large to be useful 173 on RAM chips in this manner. This block device is a user of MTD 182 on flash chips to emulate a smaller block size. Needless to say, 325 source "drivers/mtd/chips/Kconfig"
|
/linux-4.4.14/drivers/net/ethernet/pasemi/ |
D | Kconfig | 26 PA Semi's PWRficient line of chips.
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | mxs-mmc.txt | 10 - compatible: Should be "fsl,<chip>-mmc". The supported chips include
|
/linux-4.4.14/Documentation/devicetree/bindings/input/ |
D | da9062-onkey.txt | 4 chips see Documentation/devicetree/bindings/mfd/da9062.txt and
|
/linux-4.4.14/drivers/gpu/drm/i2c/ |
D | Kconfig | 1 menu "I2C encoder or helper chips"
|
/linux-4.4.14/arch/sh/tools/ |
D | mach-types | 15 # List of companion chips / MFDs.
|
/linux-4.4.14/Documentation/devicetree/bindings/display/ |
D | mxsfb.txt | 4 - compatible: Should be "fsl,<chip>-lcdif". Supported chips include
|
/linux-4.4.14/drivers/watchdog/ |
D | w83627hf_wdt.c | 51 enum chips { w83627hf, w83627s, w83697hf, w83697ug, w83637hf, w83627thf, enum 141 static int w83627hf_init(struct watchdog_device *wdog, enum chips chip) in w83627hf_init()
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | CMIPCI.txt | 61 The recent CM8738 chips support for the 4/6 multi-channel playback 165 [FIXME: this doesn't work on all chips..] 212 With CMI8338 chips, the MPU401-UART interface is disabled as default. 217 With CMI8738 and newer chips, the MIDI interface is enabled by default 236 CMI8768 and newer chips do not have the FM synth.
|
D | ALSA-Configuration.txt | 157 Module for sound cards based on Analog Devices AD1816A/AD1815 ISA chips. 166 Module for sound cards based on AD1848/AD1847/CS4248 ISA chips. 180 Module for Analog Devices AD1889 chips. 203 Module for sound cards based on Avance Logic ALS100/ALS120 ISA chips. 399 Module for video cards based on Bt87x chips. 420 Module for sound cards based on C-Media CMI8330 ISA chips. 464 Module for sound cards based on CS4231 ISA chips. 483 CS4238B/CS4239 ISA chips. 522 CS4624/CS4630/CS4280 PCI chips. 550 Module for Creative Sound Blaster X-Fi boards (20k1 / 20k2 chips) [all …]
|
/linux-4.4.14/arch/powerpc/platforms/ |
D | Kconfig | 165 This option enables a MPIC driver workaround for some chips 167 to not read back properly. It is safe to use on other chips as 282 coprocessors on Freescale embedded CPUs (akin to CPM in older chips). 333 platform devices for direct mapped RTC chips like the DS1742 or DS1743. 351 boards with the MPC8349E-mITX-compatible MCU chips. This driver will
|
/linux-4.4.14/drivers/misc/c2port/ |
D | Kconfig | 10 program Silicon micro controller chips (and other 8051 compatible).
|
/linux-4.4.14/drivers/net/ethernet/rdc/ |
D | Kconfig | 27 the RDC R-321x System-on-chips.
|
/linux-4.4.14/arch/arm/mach-clps711x/ |
D | Kconfig | 21 Boards based on the Cirrus Logic 7212/7312 chips.
|
/linux-4.4.14/drivers/staging/rtl8188eu/ |
D | TODO | 4 - find and remove any code for other chips that is left over
|
/linux-4.4.14/drivers/spi/ |
D | spi-sc18is602.c | 27 enum chips { sc18is602, sc18is602b, sc18is603 }; enum 49 enum chips id;
|
/linux-4.4.14/Documentation/devicetree/bindings/thermal/ |
D | qcom-spmi-temp-alarm.txt | 3 QPNP temperature alarm peripherals are found inside of Qualcomm PMIC chips
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | vexpress-scc.txt | 4 Test chips for ARM Versatile Express platform implement SCC (Serial
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/ |
D | pca963x.txt | 8 to open-drain, newer chips to totem pole)
|
/linux-4.4.14/drivers/net/can/sja1000/ |
D | Kconfig | 10 This driver adds legacy support for SJA1000 chips connected to 16 This driver adds support for the SJA1000 chips connected to
|
/linux-4.4.14/arch/powerpc/ |
D | Kconfig.debug | 208 Select this to enable early debugging for IBM 44x chips via the 216 Select this to enable early debugging for IBM 40x chips via the 217 inbuilt serial port. This works on chips with a 16550 compatible 218 UART. Xilinx chips with uartlite cannot use this option. 225 Select this to enable early debugging for Freescale chips
|
/linux-4.4.14/drivers/net/wireless/ti/wlcore/ |
D | Kconfig | 6 This module contains the main code for TI WLAN chips. It abstracts
|
/linux-4.4.14/Documentation/scsi/ |
D | qlogicfas.txt | 2 This driver supports the Qlogic FASXXX family of chips. This driver 73 termination (the ACK can be reflected), or by noise when the chips
|
D | sym53c8xx_2.txt | 13 2. Supported chips and SCSI features 14 3. Advantages of this driver for newer chips. 99 Information about new chips is available at LSILOGIC web server: 112 2. Supported chips and SCSI features 114 The following features are supported for all chips: 164 3. Advantages of this driver for newer chips. 168 All chips except the 810, 815 and 825, support new SCSI SCRIPTS instructions 177 Due to the lack of LOAD/STORE SCRIPTS instructions by earlier chips, this 179 order to provide support for the entire SYM53C8XX chips family. 183 Newer chips (see above) allows handling of the phase mismatch context from [all …]
|