/linux-4.4.14/drivers/mfd/ |
D | ipaq-micro.c | 34 static void ipaq_micro_trigger_tx(struct ipaq_micro *micro) in ipaq_micro_trigger_tx() argument 36 struct ipaq_micro_txdev *tx = µ->tx; in ipaq_micro_trigger_tx() 37 struct ipaq_micro_msg *msg = micro->msg; in ipaq_micro_trigger_tx() 60 val = readl(micro->base + UTCR3); in ipaq_micro_trigger_tx() 62 writel(val, micro->base + UTCR3); in ipaq_micro_trigger_tx() 65 int ipaq_micro_tx_msg(struct ipaq_micro *micro, struct ipaq_micro_msg *msg) in ipaq_micro_tx_msg() argument 69 dev_dbg(micro->dev, "TX msg: %02x, %d bytes\n", msg->id, msg->tx_len); in ipaq_micro_tx_msg() 71 spin_lock_irqsave(µ->lock, flags); in ipaq_micro_tx_msg() 72 if (micro->msg) { in ipaq_micro_tx_msg() 73 list_add_tail(&msg->node, µ->queue); in ipaq_micro_tx_msg() [all …]
|
D | Makefile | 186 obj-$(CONFIG_MFD_IPAQ_MICRO) += ipaq-micro.o
|
/linux-4.4.14/drivers/input/touchscreen/ |
D | ipaq-micro-ts.c | 27 struct ipaq_micro *micro; member 51 struct ipaq_micro *micro = ts->micro; in micro_ts_toggle_receive() local 53 spin_lock_irq(µ->lock); in micro_ts_toggle_receive() 56 micro->ts = micro_ts_receive; in micro_ts_toggle_receive() 57 micro->ts_data = ts; in micro_ts_toggle_receive() 59 micro->ts = NULL; in micro_ts_toggle_receive() 60 micro->ts_data = NULL; in micro_ts_toggle_receive() 63 spin_unlock_irq(&ts->micro->lock); in micro_ts_toggle_receive() 84 struct ipaq_micro *micro = dev_get_drvdata(pdev->dev.parent); in micro_ts_probe() local 92 ts->micro = micro; in micro_ts_probe()
|
D | Makefile | 56 obj-$(CONFIG_TOUCHSCREEN_IPAQ_MICRO) += ipaq-micro-ts.o
|
D | Kconfig | 572 module will be called ipaq-micro-ts.
|
/linux-4.4.14/drivers/input/keyboard/ |
D | ipaq-micro-keys.c | 27 struct ipaq_micro *micro; member 60 spin_lock(&keys->micro->lock); in micro_key_start() 61 keys->micro->key = micro_key_receive; in micro_key_start() 62 keys->micro->key_data = keys; in micro_key_start() 63 spin_unlock(&keys->micro->lock); in micro_key_start() 68 spin_lock(&keys->micro->lock); in micro_key_stop() 69 keys->micro->key = NULL; in micro_key_stop() 70 keys->micro->key_data = NULL; in micro_key_stop() 71 spin_unlock(&keys->micro->lock); in micro_key_stop() 100 keys->micro = dev_get_drvdata(pdev->dev.parent); in micro_key_probe()
|
D | Makefile | 27 obj-$(CONFIG_KEYBOARD_IPAQ_MICRO) += ipaq-micro-keys.o
|
D | Kconfig | 611 module will be called ipaq-micro-keys.
|
/linux-4.4.14/include/linux/mfd/ |
D | ipaq-micro.h | 125 ipaq_micro_tx_msg(struct ipaq_micro *micro, struct ipaq_micro_msg *msg); 128 ipaq_micro_tx_msg_sync(struct ipaq_micro *micro, in ipaq_micro_tx_msg_sync() argument 134 ret = ipaq_micro_tx_msg(micro, msg); in ipaq_micro_tx_msg_sync() 141 ipaq_micro_tx_msg_async(struct ipaq_micro *micro, in ipaq_micro_tx_msg_async() argument 145 return ipaq_micro_tx_msg(micro, msg); in ipaq_micro_tx_msg_async()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-c2port | 30 of the connected micro. 37 access to the on-board flash of the connected micro. 45 the on-board flash block size of the connected micro. 52 the on-board flash blocks number of the connected micro. 59 the content of the on-board flash of the connected micro. 67 micro. 74 on-board flash size of the connected micro. 81 command on the connected micro. 88 of the connected micro.
|
D | sysfs-class-powercap | 60 Current energy counter in micro-joules. Write "0" to reset. 69 Range of the above energy counter in micro-joules. 77 Current power in micro-watts. 84 Range of the above power value in micro-watts. 100 Power limit in micro-watts should be applicable for 109 Time window in micro seconds. This is used along with 119 Maximum allowed power in micro watts for this constraint. 127 Minimum allowed power in micro watts for this constraint. 135 Maximum allowed time window in micro seconds for this 143 Minimum allowed time window in micro seconds for this
|
D | sysfs-class-rtc-rtc0-device-rtc_calibration | 10 30.5 micro-seconds (half-parts-per-million of the 32KHz clock)
|
D | sysfs-class-power-twl4030 | 8 Value is in micro-Amps.
|
/linux-4.4.14/drivers/video/backlight/ |
D | ipaq_micro_bl.c | 20 struct ipaq_micro *micro = dev_get_drvdata(&bd->dev); in micro_bl_update_status() local 41 return ipaq_micro_tx_msg_sync(micro, &msg); in micro_bl_update_status() 59 struct ipaq_micro *micro = dev_get_drvdata(pdev->dev.parent); in micro_backlight_probe() local 62 &pdev->dev, micro, µ_bl_ops, in micro_backlight_probe()
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/adc/ |
D | qcom,spmi-iadc.txt | 7 qcom,external-resistor-micro-ohms property. 26 - qcom,external-resistor-micro-ohms: 29 Definition: Sense resister value in micro Ohm. 30 If not defined value of 10000 micro Ohms will be used. 38 qcom,external-resistor-micro-ohms = <10000>;
|
/linux-4.4.14/drivers/leds/ |
D | leds-ipaq-micro.c | 26 struct ipaq_micro *micro = dev_get_drvdata(led_cdev->dev->parent->parent); in micro_leds_brightness_set() local 53 ipaq_micro_tx_msg_sync(micro, &msg); in micro_leds_brightness_set() 63 struct ipaq_micro *micro = dev_get_drvdata(led_cdev->dev->parent->parent); in micro_leds_blink_set() local 100 return ipaq_micro_tx_msg_sync(micro, &msg); in micro_leds_blink_set()
|
D | Makefile | 39 obj-$(CONFIG_LEDS_IPAQ_MICRO) += leds-ipaq-micro.o
|
/linux-4.4.14/Documentation/power/powercap/ |
D | powercap.txt | 185 energy_uj (rw): Current energy counter in micro joules. Write "0" to reset. 188 max_energy_range_uj (ro): Range of the above energy counter in micro-joules. 190 power_uw (ro): Current power in micro watts. 192 max_power_range_uw (ro): Range of the above power value in micro-watts. 201 constraint_X_power_limit_uw (rw): Power limit in micro watts, which should be 204 constraint_X_time_window_us (rw): Time window in micro seconds. 208 constraint_X_max_power_uw(ro): Maximum allowed power in micro watts. 210 constraint_X_min_power_uw(ro): Minimum allowed power in micro watts. 212 constraint_X_max_time_window_us(ro): Maximum allowed time window in micro seconds. 214 constraint_X_min_time_window_us(ro): Minimum allowed time window in micro seconds.
|
/linux-4.4.14/drivers/misc/c2port/ |
D | Kconfig | 10 program Silicon micro controller chips (and other 8051 compatible). 12 If your board have no such micro controllers you don't need this 29 on board micro controller.
|
/linux-4.4.14/Documentation/usb/ |
D | chipidea.txt | 20 2) Connect 2 boards with usb cable with one end is micro A plug, the other end 21 is micro B plug. 23 The A-device(with micro A plug inserted) should enumrate B-device. 41 5) Remove B-device(unplug micro B plug) and insert again in 10 seconds, 44 6) Remove B-device(unplug micro B plug) and insert again after 10 seconds,
|
/linux-4.4.14/Documentation/devicetree/bindings/input/ |
D | regulator-haptic.txt | 9 [The unit of the voltage is a micro] 12 [The unit of the voltage is a micro]
|
/linux-4.4.14/drivers/power/ |
D | ipaq_micro_battery.c | 42 struct ipaq_micro *micro; member 64 ipaq_micro_tx_msg_sync(mb->micro, &msg_battery); in micro_battery_work() 88 ipaq_micro_tx_msg_sync(mb->micro, &msg_sensor); in micro_battery_work() 237 mb->micro = dev_get_drvdata(pdev->dev.parent); in micro_batt_probe()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | base.c | 133 bios->version.micro = nvbios_rd08(bios, bit_i.offset + 0); in nvkm_bios_new() 140 bios->version.micro = nvbios_rd08(bios, bios->bmp_offset + 10); in nvkm_bios_new() 145 bios->version.minor, bios->version.micro, bios->version.patch); in nvkm_bios_new()
|
/linux-4.4.14/Documentation/devicetree/bindings/iommu/ |
D | renesas,ipmmu-vmsa.txt | 5 connected to the IPMMU through a port called micro-TLB. 23 to the IPMMU and the second cell the number of the micro-TLB that the
|
/linux-4.4.14/Documentation/misc-devices/ |
D | c2port.txt | 22 C2 Interface used for in-system programming of micro controllers. 26 where the micro controller is connected via special GPIOs pins. 64 connected micro controller:
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | stmmac.txt | 17 The 1st cell is reset pre-delay in micro seconds. 18 The 2nd cell is reset pulse in micro seconds. 19 The 3rd cell is reset post-delay in micro seconds.
|
/linux-4.4.14/arch/arc/include/asm/ |
D | entry-arcv2.h | 12 ; Before jumping to Interrupt Vector, hardware micro-ops did following: 118 ; Although H/w exception micro-ops do set Z flag for U mode (just like
|
/linux-4.4.14/Documentation/devicetree/bindings/hwmon/ |
D | ina2xx.txt | 15 Shunt resistor value in micro-Ohm
|
D | ntc_thermistor.txt | 21 - "pullup-uv" Pull up voltage in micro volts
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
D | bios.h | 17 u8 micro; member
|
/linux-4.4.14/drivers/iio/accel/ |
D | kxsd9.c | 68 static int kxsd9_write_scale(struct iio_dev *indio_dev, int micro) in kxsd9_write_scale() argument 75 if (micro == kxsd9_micro_scales[i]) { in kxsd9_write_scale()
|
/linux-4.4.14/Documentation/devicetree/bindings/regulator/ |
D | max8997-regulator.txt | 13 - max8997,pmic-buck1-dvs-voltage: A set of 8 voltage values in micro-volt (uV) 17 - max8997,pmic-buck2-dvs-voltage: A set of 8 voltage values in micro-volt (uV) 21 - max8997,pmic-buck5-dvs-voltage: A set of 8 voltage values in micro-volt (uV)
|
D | s5m8767-regulator.txt | 13 - s5m8767,pmic-buck2-dvs-voltage: A set of 8 voltage values in micro-volt (uV) 17 - s5m8767,pmic-buck3-dvs-voltage: A set of 8 voltage values in micro-volt (uV) 21 - s5m8767,pmic-buck4-dvs-voltage: A set of 8 voltage values in micro-volt (uV)
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | qcom-msm8660-surf.dts | 32 /* External micro SD card */
|
D | sun5i-a13-olinuxino-micro.dts | 53 compatible = "olimex,a13-olinuxino-micro", "allwinner,sun5i-a13"; 69 label = "a13-olinuxino-micro:green:power";
|
D | sun7i-a20-olinuxino-micro.dts | 56 compatible = "olimex,a20-olinuxino-micro", "allwinner,sun7i-a20"; 76 label = "a20-olinuxino-micro:green:usr";
|
D | sun5i-a10s-olinuxino-micro.dts | 55 compatible = "olimex,a10s-olinuxino-micro", "allwinner,sun5i-a10s"; 73 label = "a10s-olinuxino-micro:green:usr";
|
D | qcom-pm8941.dtsi | 146 qcom,external-resistor-micro-ohms = <10000>;
|
D | qcom-apq8064-cm-qs600.dts | 206 /* External micro SD card */
|
D | qcom-apq8064-ifc6410.dts | 266 /* External micro SD card */
|
D | qcom-msm8960-cdp.dts | 32 /* External micro SD card */
|
D | Makefile | 612 sun5i-a10s-olinuxino-micro.dtb \ 618 sun5i-a13-olinuxino-micro.dtb \ 646 sun7i-a20-olinuxino-micro.dtb \
|
D | armada-388-gp.dts | 120 * Exported on the micro USB connector CON16
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-list.txt | 50 clocks not halted) and 0xC1 (micro-ops retired). Both events map to 58 perf record -a -e r0C1:p ... # use ibs op counting micro-ops 82 A8H 01H LSD.UOPS Counts the number of micro-ops Use cmask=1 and
|
D | intel-pt.txt | 14 processors that are based on the Intel micro-architecture code name Broadwell.
|
/linux-4.4.14/Documentation/devicetree/bindings/power_supply/ |
D | max17042_battery.txt | 8 - maxim,rsns-microohm : Resistance of rsns resistor in micro Ohms
|
/linux-4.4.14/Documentation/devicetree/bindings/media/i2c/ |
D | adv7343.txt | 14 micro ampere level. All DACs and the internal PLL
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | fsl-upm-nand.txt | 56 chip-delay = <25>; // in micro-seconds
|
/linux-4.4.14/Documentation/hwmon/ |
D | ina2xx | 54 The shunt value in micro-ohms can be set via platform data or device tree at
|
/linux-4.4.14/Documentation/leds/ |
D | leds-lp5521.txt | 17 All three channels can be also controlled using the engine micro programs.
|
D | leds-lp5562.txt | 13 All four channels can be also controlled using the engine micro programs.
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | adder875-redboot.dts | 16 compatible = "analogue-and-micro,adder875";
|
D | adder875-uboot.dts | 16 compatible = "analogue-and-micro,adder875";
|
D | asp834x-redboot.dts | 16 compatible = "analogue-and-micro,asp8347e";
|
D | mpc8349emitx.dts | 95 compatible = "st-micro,24c256";
|
D | tqm8548-bigflash.dts | 425 chip-delay = <25>; // in micro-seconds
|
D | tqm8548.dts | 425 chip-delay = <25>; // in micro-seconds
|
/linux-4.4.14/drivers/isdn/hisax/ |
D | Kconfig | 10 S0-16.3, Teles S0-8, Teles/Creatix PnP, ITK micro ix1 and many 158 bool "ITK ix1-micro Revision 2" 161 This enables HiSax support for the ITK ix1-micro Revision 2 card.
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | ci-hdrc-usb2.txt | 73 gadget-itc-setting = <0x4>; /* 4 micro-frames */
|
/linux-4.4.14/Documentation/acpi/apei/ |
D | output_format.txt | 52 [cache error][, TLB error][, bus error][, micro-architectural error]
|
/linux-4.4.14/drivers/i2c/ |
D | Kconfig | 12 many micro controller applications and developed by Philips. SMBus,
|
/linux-4.4.14/Documentation/networking/ |
D | ray_cs.txt | 8 See http://www.raytheon.com/micro/raylink/ for more information on the Raylink
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | trivial-devices.txt | 94 st-micro,24c256 i2c serial eeprom (24cxx)
|
/linux-4.4.14/arch/mips/include/asm/ |
D | uasm.h | 49 #error Unsupported micro-assembler ISA!!!
|
/linux-4.4.14/Documentation/video4linux/ |
D | gspca.txt | 388 sq905c 2770:9050 Disney pix micro (CIF) 390 sq905c 2770:9052 Disney pix micro 2 (VGA)
|
/linux-4.4.14/Documentation/isdn/ |
D | README.HiSax | 43 ITK ix1-micro Rev.2 167 9 ITK ix1-micro Rev.2 irq, io 282 9 ITK ix1-micro Rev.2 pa=irq pb=iobase
|
/linux-4.4.14/drivers/net/wireless/ |
D | Kconfig | 147 micro support for ethtool.
|
/linux-4.4.14/Documentation/devicetree/bindings/opp/ |
D | opp.txt | 94 - opp-microvolt: voltage in micro Volts.
|
/linux-4.4.14/Documentation/timers/ |
D | hrtimers.txt | 21 32-bitness assumptions, and has been honed and micro-optimized for a
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | fpsp.h | 127 .set CU_SAVEPC,LV-92 | micro-pc for CU (1 byte)
|
/linux-4.4.14/drivers/usb/misc/ |
D | Kconfig | 95 micro controller to your computer's USB port. Currently this
|
/linux-4.4.14/drivers/input/joystick/ |
D | Kconfig | 202 supplied with a ready to fly micro electric indoor helicopters
|
/linux-4.4.14/drivers/input/mouse/ |
D | Kconfig | 294 Say Y if you have the IBM PC-110 micro-notebook and want its
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/ |
D | t4_hw.c | 2984 int i, ret, major, minor, micro; in t4_check_fw_version() local 2998 micro = FW_HDR_FW_VER_MICRO_G(adap->params.fw_vers); in t4_check_fw_version() 3023 (major == exp_major && minor == exp_minor && micro < exp_micro)) { in t4_check_fw_version() 3027 micro, exp_major, exp_minor, exp_micro); in t4_check_fw_version()
|
/linux-4.4.14/drivers/media/pci/bt8xx/ |
D | bttv-cards.c | 3872 static int pvr_altera_load(struct bttv *btv, const u8 *micro, u32 microlen) in pvr_altera_load() argument 3886 bits = micro[n]; in pvr_altera_load()
|
/linux-4.4.14/Documentation/scsi/ |
D | ncr53c8xx.txt | 996 logic state, 100 micro-seconds after having asserted the SCSI RESET line. 1029 b) Overlap at least 4 micro-seconds of arbitration time with the execution 1035 SCSI BUS bandwidth if the SCRIPTS execution lasts more than 4 micro-seconds.
|
D | sym53c8xx_2.txt | 563 logic state, 100 micro-seconds after having asserted the SCSI RESET line.
|
/linux-4.4.14/kernel/trace/ |
D | Kconfig | 148 small and not measurable even in micro-benchmarks.
|
/linux-4.4.14/arch/arm/ |
D | Kconfig | 1113 Cortex-A9 MPCore micro-architecture, two CPUs working in SMP mode, 1176 can populate the micro-TLB with a stale entry which may be hit with
|