Home
last modified time | relevance | path

Searched full:hx (Results 1 – 25 of 62) sorted by relevance

123

/linux/drivers/input/touchscreen/
H A Dhimax_hx852x.c82 static int hx852x_i2c_read(struct hx852x *hx, u8 cmd, void *data, u16 len) in hx852x_i2c_read() argument
84 struct i2c_client *client = hx->client; in hx852x_i2c_read()
113 static int hx852x_power_on(struct hx852x *hx) in hx852x_power_on() argument
115 struct device *dev = &hx->client->dev; in hx852x_power_on()
118 error = regulator_bulk_enable(ARRAY_SIZE(hx->supplies), hx->supplies); in hx852x_power_on()
124 gpiod_set_value_cansleep(hx->reset_gpiod, 1); in hx852x_power_on()
126 gpiod_set_value_cansleep(hx->reset_gpiod, 0); in hx852x_power_on()
132 static int hx852x_start(struct hx852x *hx) in hx852x_start() argument
134 struct device *dev = &hx->client->dev; in hx852x_start()
137 error = i2c_smbus_write_byte(hx->client, HX852X_TS_SLEEP_OUT); in hx852x_start()
[all …]
/linux/tools/arch/x86/lib/
H A Dx86-opcode-map.txt361 10: vmovups Vps,Wps | vmovupd Vpd,Wpd (66) | vmovss Vx,Hx,Wss (F3),(v1) | vmovsd Vx,Hx,Wsd (F2),(v1)
362 11: vmovups Wps,Vps | vmovupd Wpd,Vpd (66) | vmovss Wss,Hx,Vss (F3),(v1) | vmovsd Wsd,Hx,Vsd (F2),(…
365 14: vunpcklps Vx,Hx,Wx | vunpcklpd Vx,Hx,Wx (66)
366 15: vunpckhps Vx,Hx,Wx | vunpckhpd Vx,Hx,Wx (66)
443 5a: vcvtps2pd Vpd,Wps | vcvtpd2ps Vps,Wpd (66) | vcvtss2sd Vsd,Hx,Wss (F3),(v1) | vcvtsd2ss Vss,Hx,…
450 60: punpcklbw Pq,Qd | vpunpcklbw Vx,Hx,Wx (66),(v1)
451 61: punpcklwd Pq,Qd | vpunpcklwd Vx,Hx,Wx (66),(v1)
452 62: punpckldq Pq,Qd | vpunpckldq Vx,Hx,Wx (66),(v1)
453 63: packsswb Pq,Qq | vpacksswb Vx,Hx,Wx (66),(v1)
454 64: pcmpgtb Pq,Qq | vpcmpgtb Vx,Hx,Wx (66),(v1)
[all …]
/linux/arch/x86/lib/
H A Dx86-opcode-map.txt361 10: vmovups Vps,Wps | vmovupd Vpd,Wpd (66) | vmovss Vx,Hx,Wss (F3),(v1) | vmovsd Vx,Hx,Wsd (F2),(v1)
362 11: vmovups Wps,Vps | vmovupd Wpd,Vpd (66) | vmovss Wss,Hx,Vss (F3),(v1) | vmovsd Wsd,Hx,Vsd (F2),(…
365 14: vunpcklps Vx,Hx,Wx | vunpcklpd Vx,Hx,Wx (66)
366 15: vunpckhps Vx,Hx,Wx | vunpckhpd Vx,Hx,Wx (66)
443 5a: vcvtps2pd Vpd,Wps | vcvtpd2ps Vps,Wpd (66) | vcvtss2sd Vsd,Hx,Wss (F3),(v1) | vcvtsd2ss Vss,Hx,…
450 60: punpcklbw Pq,Qd | vpunpcklbw Vx,Hx,Wx (66),(v1)
451 61: punpcklwd Pq,Qd | vpunpcklwd Vx,Hx,Wx (66),(v1)
452 62: punpckldq Pq,Qd | vpunpckldq Vx,Hx,Wx (66),(v1)
453 63: packsswb Pq,Qq | vpacksswb Vx,Hx,Wx (66),(v1)
454 64: pcmpgtb Pq,Qq | vpcmpgtb Vx,Hx,Wx (66),(v1)
[all …]
/linux/drivers/media/common/
H A Dcypress_firmware.c42 struct hexline *hx, int *pos) in cypress_get_hexline() argument
50 memset(hx, 0, sizeof(struct hexline)); in cypress_get_hexline()
51 hx->len = b[0]; in cypress_get_hexline()
53 if ((*pos + hx->len + 4) >= fw->size) in cypress_get_hexline()
56 hx->addr = b[1] | (b[2] << 8); in cypress_get_hexline()
57 hx->type = b[3]; in cypress_get_hexline()
59 if (hx->type == 0x04) { in cypress_get_hexline()
62 hx->addr |= (b[4] << 24) | (b[5] << 16); in cypress_get_hexline()
65 memcpy(hx->data, &b[data_offs], hx->len); in cypress_get_hexline()
66 hx->chk = b[hx->len + data_offs]; in cypress_get_hexline()
[all …]
/linux/drivers/media/usb/dvb-usb/
H A Ddvb-usb-firmware.c39 struct hexline *hx; in usb_cypress_load_firmware() local
44 buf = kmalloc(sizeof(*hx), GFP_KERNEL); in usb_cypress_load_firmware()
47 hx = (struct hexline *)buf; in usb_cypress_load_firmware()
54 while ((ret = dvb_usb_get_hexline(fw, hx, &pos)) > 0) { in usb_cypress_load_firmware()
55 deb_fw("writing to address 0x%04x (buffer: 0x%02x %02x)\n", hx->addr, hx->len, hx->chk); in usb_cypress_load_firmware()
56 ret = usb_cypress_writemem(udev, hx->addr, hx->data, hx->len); in usb_cypress_load_firmware()
58 if (ret != hx->len) { in usb_cypress_load_firmware()
60 ret, hx->len); in usb_cypress_load_firmware()
124 int dvb_usb_get_hexline(const struct firmware *fw, struct hexline *hx, in dvb_usb_get_hexline() argument
132 memset(hx,0,sizeof(struct hexline)); in dvb_usb_get_hexline()
[all …]
H A Ddib0700_core.c509 struct hexline hx; in dib0700_download_firmware() local
518 while ((ret = dvb_usb_get_hexline(fw, &hx, &pos)) > 0) { in dib0700_download_firmware()
520 hx.addr, hx.len, hx.chk); in dib0700_download_firmware()
522 buf[0] = hx.len; in dib0700_download_firmware()
523 buf[1] = (hx.addr >> 8) & 0xff; in dib0700_download_firmware()
524 buf[2] = hx.addr & 0xff; in dib0700_download_firmware()
525 buf[3] = hx.type; in dib0700_download_firmware()
526 memcpy(&buf[4],hx.data,hx.len); in dib0700_download_firmware()
527 buf[4+hx.len] = hx.chk; in dib0700_download_firmware()
532 hx.len + 5, in dib0700_download_firmware()
/linux/arch/sh/kernel/cpu/sh2a/
H A Dfpu.c94 static int denormal_mulf(int hx, int hy) in denormal_mulf() argument
100 ix = hx & 0x7fffffff; in denormal_mulf()
103 return ((hx ^ hy) & 0x80000000); in denormal_mulf()
122 ix |= (hx ^ hy) & 0x80000000; in denormal_mulf()
161 static long long denormal_muld(long long hx, long long hy) in denormal_muld() argument
167 ix = hx & 0x7fffffffffffffffLL; in denormal_muld()
170 return ((hx ^ hy) & 0x8000000000000000LL); in denormal_muld()
195 ix |= (hx ^ hy) & 0x8000000000000000LL; in denormal_muld()
252 static int denormal_addf(int hx, int hy) in denormal_addf() argument
257 if ((hx ^ hy) & 0x80000000) { in denormal_addf()
[all …]
/linux/arch/sh/kernel/cpu/sh4/
H A Dfpu.c244 unsigned int hx, hy; in ieee_fpe_handler() local
248 hx = tsk->thread.xstate->hardfpu.fp_regs[n]; in ieee_fpe_handler()
254 && (prec && ((hx & 0x7fffffff) < 0x00100000 in ieee_fpe_handler()
259 llx = ((long long)hx << 32) in ieee_fpe_handler()
267 && (!prec && ((hx & 0x7fffffff) < 0x00800000 in ieee_fpe_handler()
270 hx = float32_mul(hx, hy); in ieee_fpe_handler()
271 tsk->thread.xstate->hardfpu.fp_regs[n] = hx; in ieee_fpe_handler()
282 unsigned int hx, hy; in ieee_fpe_handler() local
286 hx = tsk->thread.xstate->hardfpu.fp_regs[n]; in ieee_fpe_handler()
292 && (prec && ((hx & 0x7fffffff) < 0x00100000 in ieee_fpe_handler()
[all …]
/linux/drivers/net/wireless/mediatek/mt7601u/
H A Dtrace.h120 "%d p:%08x req:%02hhx %02hhx val:%04hx %04hx buf:%d %d",
260 TP_printk(DEV_PR_FMT "rxi:%08x ctl:%08x frag_sn:%04hx rate:%04hx "
293 TP_printk(DEV_PR_FMT "skb:%p sta:%p flg:%04hx rate_ctl:%04hx "
294 "ack:%02hhx wcid:%02hhx len_ctl:%05hx", DEV_PR_ARG,
H A Dphy.c701 "TSSI_init:%hhx db:%hx hvga:%hhx hvga_db:%hx off_db:%hx\n", in mt7601u_tssi_dc_gain_cal()
901 dev_dbg(dev->dev, "tssi dc:%04hx db:%04hx hvga:%d\n", in mt7601u_tssi_cal()
/linux/drivers/net/ethernet/mellanox/mlx5/core/esw/diag/
H A Dbridge_tracepoint.h32 TP_printk("net_device=%s addr=%pM vid=%hu flags=%hx used=%u",
67 TP_printk("vid=%hu flags=%hx",
96 TP_printk("vport_num=%hu esw_owner_vhca_id=%hu flags=%hx",
/linux/samples/hidraw/
H A Dhid-example.c109 printf("\tvendor: 0x%04hx\n", info.vendor); in main()
110 printf("\tproduct: 0x%04hx\n", info.product); in main()
/linux/arch/sh/mm/
H A Dalignment.c101 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", in unaligned_fixups_notify()
106 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", in unaligned_fixups_notify()
/linux/sound/soc/amd/yc/
H A Dacp6x-mach.c528 DMI_MATCH(DMI_PRODUCT_NAME, "Vector A16 HX A8WHG"),
535 DMI_MATCH(DMI_PRODUCT_NAME, "Crosshair A16 HX D7WFKG"),
542 DMI_MATCH(DMI_PRODUCT_NAME, "Raider A18 HX A7VHG"),
549 DMI_MATCH(DMI_PRODUCT_NAME, "Vector A16 HX A8WIG"),
556 DMI_MATCH(DMI_PRODUCT_NAME, "Raider A18 HX A9WJG"),
/linux/drivers/net/mdio/
H A DKconfig151 tristate "PIC64-HPSC/HX MDIO interface support"
155 This driver supports the MDIO interface found on the PIC64-HPSC/HX
/linux/include/trace/events/
H A Dmdio.h35 TP_printk("%s %-5s phy:0x%02hhx reg:0x%02x val:0x%04hx",
/linux/drivers/hwmon/
H A Dsch56xx-common.c154 pr_err("Max retries exceeded reading virtual register 0x%04hx (%d)\n", in sch56xx_send_cmd()
171 pr_warn("EC reports: 0x%02x reading virtual register 0x%04hx\n", in sch56xx_send_cmd()
175 pr_err("Max retries exceeded reading virtual register 0x%04hx (%d)\n", in sch56xx_send_cmd()
/linux/drivers/platform/x86/
H A Dmsi-ec.c1135 "1824EMS1.108", // Raider 18 HX AI A2XWJG (MS-1824)
1136 "182LIMS1.108", // Vector A18 HX A9WHG
1137 "182LIMS1.111", // MSI Raider A18 HX A9WJG / Vector A18 HX A9WHG
1138 "182KIMS1.113", // Raider A18 HX A7VIG
/linux/drivers/net/wireless/zydas/zd1211rw/
H A Dzd_chip.c1004 dev_dbg_f(zd_chip_dev(chip), "FW_FIRMWARE_VER %#06hx\n", values[0]); in dump_fw_registers()
1005 dev_dbg_f(zd_chip_dev(chip), "FW_USB_SPEED %#06hx\n", values[1]); in dump_fw_registers()
1006 dev_dbg_f(zd_chip_dev(chip), "FW_FIX_TX_RATE %#06hx\n", values[2]); in dump_fw_registers()
1007 dev_dbg_f(zd_chip_dev(chip), "FW_LINK_STATUS %#06hx\n", values[3]); in dump_fw_registers()
1022 dev_info(zd_chip_dev(chip),"firmware version %04hx\n", version); in print_fw_version()
1025 "%04hx", version); in print_fw_version()
1099 dev_dbg_f(zd_chip_dev(chip), "fw_regs_base: %#06hx\n", in read_fw_regs_offset()
H A Dzd_usb.c1236 return scnprintf(buffer, size, "%04hx:%04hx v%04hx %s", in scnprint_id()
1659 "rd[%d] addr %#06hx expected %#06hx\n", i, in check_read_regs()
/linux/arch/riscv/kernel/
H A Dtraps.c65 p += sprintf(p, i == 0 ? "(%04hx) " : "%04hx ", val); in dump_instr()
/linux/tools/debugging/
H A Dkernel-chktaint22 if [ "$1"x == "--helpx" ] || [ "$1"x == "-hx" ] ; then
/linux/drivers/video/backlight/
H A Dhx8357.c3 * Driver for the Himax HX-8357 LCD Controller
648 MODULE_DESCRIPTION("Himax HX-8357 LCD Driver");
/linux/drivers/net/phy/
H A Ddp83640.c684 phydev_info(master, "master PTP_STS 0x%04hx\n", val); in recalibrate()
686 phydev_info(master, "master PTP_ESTS 0x%04hx\n", val); in recalibrate()
695 phydev_info(tmp->phydev, "slave PTP_STS 0x%04hx\n", val); in recalibrate()
697 phydev_info(tmp->phydev, "slave PTP_ESTS 0x%04hx\n", val); in recalibrate()
/linux/tools/testing/selftests/net/lib/
H A Dcsum.c596 fprintf(stderr, "rx: pkt: sport=%hu len=%u csum=0x%hx verify=0x%hx\n", in recv_verify_csum()
609 fprintf(stderr, "pkt: zero csum: field should be 0xFFFF, is 0x%hx\n", csum_field); in recv_verify_csum()

123