Searched refs:accel (Results 1 - 25 of 166) sorted by path

1234567

/linux-master/drivers/video/fbdev/matrox/
H A Dmatroxfb_Ti3026.c341 if (minfo->accel.ramdac_rev > 0x20) {
718 minfo->accel.ramdac_rev = inTi3026(minfo, TVP3026_XSILICONREV);
/linux-master/drivers/video/fbdev/via/
H A DMakefile8 viafb-y :=viafbdev.o hw.o via_i2c.o dvi.o lcd.o ioctl.o accel.o \
/linux-master/arch/s390/include/asm/
H A Dap.h103 unsigned int accel : 1; /* A */ member in struct:ap_tapq_hwinfo::__anon27::__anon29
/linux-master/drivers/
H A DMakefile196 obj-$(CONFIG_DRM_ACCEL) += accel/
/linux-master/drivers/accel/
H A Ddrm_accel.c32 return kasprintf(GFP_KERNEL, "accel/%s", dev_name(dev));
36 .name = "accel",
96 struct drm_minor *minor = dev->accel;
105 * accel_set_device_instance_params() - Set some device parameters for accel device
109 * This function creates the dev_t of the device using the accel major and
111 * device instance to the accel sysfs class and device type, respectively.
121 * accel_minor_alloc() - Allocates a new accel minor
123 * This function access the accel minors idr and allocates from it
124 * a new id to represent a new accel minor
141 * accel_minor_remove() - Remove an accel mino
[all...]
/linux-master/drivers/accel/habanalabs/common/
H A Ddebugfs.c1789 dev_entry->root = hdev->drm.accel->debugfs_root;
H A Ddevice.c726 const struct class *accel_class = hdev->drm.accel->kdev->class;
730 hdev->cdev_idx = hdev->drm.accel->index;
742 "failed to add an accel control char device to the system\n");
2410 pr_err("Failed to initialize accel%d. Device %s is NOT usable!\n",
/linux-master/drivers/accel/qaic/
H A Dqaic.h32 #define to_accel_kdev(qddev) (to_drm(qddev)->accel->kdev) /* Return Linux device of accel node */
/linux-master/drivers/auxdisplay/
H A Dcfag12864bfb.c31 .accel = FB_ACCEL_NONE,
H A Dht16k33.c119 .accel = FB_ACCEL_NONE,
/linux-master/drivers/crypto/intel/qat/qat_c3xxx/
H A Dadf_c3xxx_hw_data.c31 u32 accel; local
33 accel = ~(fuses | straps) >> ADF_C3XXX_ACCELERATORS_REG_OFFSET;
34 accel &= ADF_C3XXX_ACCELERATORS_MASK;
36 return accel;
45 int accel; local
47 /* If an accel is disabled, then disable the corresponding two AEs */
50 for_each_set_bit(accel, &disabled, ADF_C3XXX_MAX_ACCELERATORS)
51 straps |= ae_disable << (accel << 1);
/linux-master/drivers/crypto/intel/qat/qat_c62x/
H A Dadf_c62x_hw_data.c31 u32 accel; local
33 accel = ~(fuses | straps) >> ADF_C62X_ACCELERATORS_REG_OFFSET;
34 accel &= ADF_C62X_ACCELERATORS_MASK;
36 return accel;
45 int accel; local
47 /* If an accel is disabled, then disable the corresponding two AEs */
50 for_each_set_bit(accel, &disabled, ADF_C62X_MAX_ACCELERATORS)
51 straps |= ae_disable << (accel << 1);
/linux-master/drivers/gpu/drm/
H A DMakefile62 drm-$(CONFIG_DRM_ACCEL) += ../../accel/drm_accel.o
H A Ddrm_debugfs.c163 struct drm_minor *minor = entry->dev->primary ?: entry->dev->accel;
H A Ddrm_drv.c94 return &dev->accel;
951 dev->primary ? dev->primary->index : dev->accel->index);
H A Ddrm_fb_helper.c1693 info->fix.accel = FB_ACCEL_NONE;
/linux-master/drivers/hid/
H A Dhid-picolcd_fb.c55 .accel = FB_ACCEL_NONE,
H A Dhid-playstation.c212 __le16 accel[3]; /* x, y, z */ member in struct:dualsense_input_report
428 __le16 accel[3]; /* x, y, z */ member in struct:dualshock4_input_report_common
1400 for (i = 0; i < ARRAY_SIZE(ds_report->accel); i++) {
1401 int raw_data = (short)le16_to_cpu(ds_report->accel[i]);
2255 for (i = 0; i < ARRAY_SIZE(ds4_report->accel); i++) {
2256 int raw_data = (short)le16_to_cpu(ds4_report->accel[i]);
H A Dhid-wiimote-core.c269 void wiiproto_req_accel(struct wiimote_data *wdata, __u8 accel) argument
271 accel = !!accel;
272 if (accel == !!(wdata->state.flags & WIIPROTO_FLAG_ACCEL))
275 if (accel)
1856 input_free_device(wdata->accel);
H A Dhid-wiimote-modules.c426 const __u8 *accel)
439 * X accel value. Bit 5 of the second buttons byte is the 2nd bit of Y
440 * accel value and bit 6 is the second bit of the Z value.
445 x = accel[2] << 2;
446 y = accel[3] << 2;
447 z = accel[4] << 2;
449 x |= (accel[0] >> 5) & 0x3;
450 y |= (accel[1] >> 4) & 0x2;
451 z |= (accel[1] >> 5) & 0x2;
453 input_report_abs(wdata->accel, ABS_R
425 wiimod_accel_in_accel(struct wiimote_data *wdata, const __u8 *accel) argument
[all...]
H A Dhid-wiimote.h149 struct input_dev *accel; member in struct:wiimote_data
199 void (*in_accel) (struct wiimote_data *wdata, const __u8 *accel);
270 extern void wiiproto_req_accel(struct wiimote_data *wdata, __u8 accel);
/linux-master/drivers/iio/
H A DMakefile18 obj-y += accel/
/linux-master/drivers/iio/accel/
H A DMakefile29 obj-$(CONFIG_BMC150_ACCEL) += bmc150-accel-core.o
30 obj-$(CONFIG_BMC150_ACCEL_I2C) += bmc150-accel-i2c.o
31 obj-$(CONFIG_BMC150_ACCEL_SPI) += bmc150-accel-spi.o
32 obj-$(CONFIG_BMI088_ACCEL) += bmi088-accel-core.o
33 obj-$(CONFIG_BMI088_ACCEL_I2C) += bmi088-accel-i2c.o
34 obj-$(CONFIG_BMI088_ACCEL_SPI) += bmi088-accel-spi.o
43 obj-$(CONFIG_HID_SENSOR_ACCEL_3D) += hid-sensor-accel-3d.o
H A Dadxl345_core.c76 __le16 accel; local
90 &accel, sizeof(accel));
94 *val = sign_extend32(le16_to_cpu(accel), 12);
106 * 8-bit resolution at +/- 2g, that is 4x accel data scale
137 * 8-bit resolution at +/- 2g, that is 4x accel data scale
H A Ddmard09.c56 s16 accel; local
73 accel = get_unaligned_le16(&buf[chan->address]);
76 accel <<= 4;
77 accel >>= 7;
79 *val = accel;

Completed in 250 milliseconds

1234567