/linux-6.3-rc2/drivers/iio/light/ |
A D | lm3533-als.c | 412 if (als->irq) { in show_thresh_either_en() 434 if (!als->irq) in store_thresh_either_en() 792 als->irq); in lm3533_als_setup_irq() 833 struct lm3533_als *als; in lm3533_als_probe() local 859 als->lm3533 = lm3533; in lm3533_als_probe() 860 als->pdev = pdev; in lm3533_als_probe() 861 als->irq = lm3533->irq; in lm3533_als_probe() 867 if (als->irq) { in lm3533_als_probe() 890 lm3533_als_disable(als); in lm3533_als_probe() 892 if (als->irq) in lm3533_als_probe() [all …]
|
A D | acpi-als.c | 106 struct acpi_als *als = iio_priv(indio_dev); in acpi_als_notify() local 111 iio_trigger_poll_chained(als->trig); in acpi_als_notify() 126 struct acpi_als *als = iio_priv(indio_dev); in acpi_als_read_raw() local 155 s32 *buffer = als->evt_buffer; in acpi_als_trigger_handler() 159 mutex_lock(&als->lock); in acpi_als_trigger_handler() 179 mutex_unlock(&als->lock); in acpi_als_trigger_handler() 189 struct acpi_als *als; in acpi_als_add() local 196 als = iio_priv(indio_dev); in acpi_als_add() 199 als->device = device; in acpi_als_add() 200 mutex_init(&als->lock); in acpi_als_add() [all …]
|
A D | Makefile | 7 obj-$(CONFIG_ACPI_ALS) += acpi-als.o 25 obj-$(CONFIG_HID_SENSOR_ALS) += hid-sensor-als.o 27 obj-$(CONFIG_IQS621_ALS) += iqs621-als.o 32 obj-$(CONFIG_SENSORS_LM3533) += lm3533-als.o
|
A D | Kconfig | 21 be called acpi-als. 219 will be called iqs621-als. 266 module will be called hid-sensor-als.
|
/linux-6.3-rc2/drivers/leds/ |
A D | leds-lm3532.c | 455 als_vmin = als->als_vmin; in lm3532_als_configure() 456 als_vmax = als->als_vmax; in lm3532_als_configure() 477 als->config = (als->als_avrg_time | (LM3532_ENABLE_ALS) | in lm3532_als_configure() 490 als = devm_kzalloc(priv->dev, sizeof(*als), GFP_KERNEL); in lm3532_parse_als() 491 if (als == NULL) in lm3532_parse_als() 497 als->als_vmin = 0; in lm3532_parse_als() 512 als->als1_imp_sel = 0; in lm3532_parse_als() 519 als->als2_imp_sel = 0; in lm3532_parse_als() 526 als->als_avrg_time = 0; in lm3532_parse_als() 533 als->als_input_mode = 0; in lm3532_parse_als() [all …]
|
A D | leds-lm3530.c | 156 struct lm3530_als_data *als) in lm3530_als_configure() argument 179 als->config = in lm3530_als_configure() 184 als->imp_sel = in lm3530_als_configure() 234 struct lm3530_als_data als; in lm3530_init_registers() local 236 memset(&als, 0, sizeof(struct lm3530_als_data)); in lm3530_init_registers() 247 lm3530_als_configure(pdata, &als); in lm3530_init_registers() 267 reg_val[1] = als.config; /* LM3530_ALS_CONFIG */ in lm3530_init_registers() 271 reg_val[5] = als.zones[0]; /* LM3530_ALS_ZB0_REG */ in lm3530_init_registers() 272 reg_val[6] = als.zones[1]; /* LM3530_ALS_ZB1_REG */ in lm3530_init_registers() 273 reg_val[7] = als.zones[2]; /* LM3530_ALS_ZB2_REG */ in lm3530_init_registers() [all …]
|
/linux-6.3-rc2/arch/s390/boot/ |
A D | als.c | 20 static unsigned long als[] = { FACILITIES_ALS }; variable 70 for (i = 0; i < ARRAY_SIZE(als); i++) { in print_missing_facilities() 71 val = ~stfle_fac_list[i] & als[i]; in print_missing_facilities() 110 for (i = 0; i < ARRAY_SIZE(als); i++) { in verify_facilities() 111 if ((stfle_fac_list[i] & als[i]) != als[i]) in verify_facilities()
|
A D | ipl_parm.c | 211 unsigned long als[] = { FACILITIES_ALS }; in check_cleared_facilities() local 214 for (i = 0; i < ARRAY_SIZE(als); i++) { in check_cleared_facilities() 215 if ((stfle_fac_list[i] & als[i]) != als[i]) { in check_cleared_facilities()
|
A D | Makefile | 38 obj-y := head.o als.o startup.o mem_detect.o ipl_parm.o ipl_report.o vmem.o
|
/linux-6.3-rc2/Documentation/devicetree/bindings/leds/ |
A D | leds-lm3532.txt | 32 - ti,als-vmin - Minimum ALS voltage defined in Volts 33 - ti,als-vmax - Maximum ALS voltage defined in Volts 41 - ti,als-avrg-time-us - Determines the length of time the device needs to 45 - ti,als-input-mode - Determines how the device uses the attached ALS 80 ti,als-vmin = <0>; 81 ti,als-vmax = <2000>; 84 ti,als-avrg-time-us = <17920>; 85 ti,als-input-mode = <0x00>;
|
/linux-6.3-rc2/Documentation/ABI/testing/ |
A D | sysfs-bus-iio-light-tsl2772 | 5 Causes an internal calibration of the als gain trim
|
A D | sysfs-bus-iio-light-tsl2583 | 5 This property causes an internal calibration of the als gain trim
|
/linux-6.3-rc2/include/linux/mfd/ |
A D | lm3533.h | 77 struct lm3533_als_platform_data *als; member
|
/linux-6.3-rc2/drivers/mfd/ |
A D | lm3533-core.c | 386 if (!pdata->als) in lm3533_device_als_init() 389 lm3533_als_devs[0].platform_data = pdata->als; in lm3533_device_als_init() 390 lm3533_als_devs[0].pdata_size = sizeof(*pdata->als); in lm3533_device_als_init()
|
/linux-6.3-rc2/tools/power/cpupower/po/ |
A D | de.po | 511 "Sofern kein anderer Parameter als '-c, --cpu' angegeben wird, liefert " 537 "Sie können nicht mehr als einen Parameter --cpu und/oder\n" 538 "mehr als ein ausgabespezifisches Argument angeben\n" 628 "2. Der Parameter -f bzw. --freq kann mit keinem anderen als dem Parameter\n" 962 msgstr "Sie können nicht mehr als ein ausgabenspezifisches Argument angeben\n"
|
/linux-6.3-rc2/drivers/gpu/drm/i915/display/ |
A D | intel_vbt_defs.h | 945 struct als_data_entry als[5]; member
|
/linux-6.3-rc2/Documentation/filesystems/ |
A D | afs.rst | 211 111416553 --als--v 0 0 \_ rxrpc: afs@CAMBRIDGE.REDHAT.COM
|
/linux-6.3-rc2/arch/arm/boot/dts/ |
A D | am335x-sl50.dts | 505 als: isl29023@44 { label
|
/linux-6.3-rc2/drivers/platform/x86/hp/ |
A D | hp-wmi.c | 744 static DEVICE_ATTR_RW(als);
|
/linux-6.3-rc2/drivers/misc/ |
A D | Kconfig | 363 tristate "APDS990X combined als and proximity sensors"
|
/linux-6.3-rc2/Documentation/admin-guide/media/ |
A D | bttv.rst | 623 - LR50 rev. Q ("PARTS: 7031505116), Tuner wurde als Nr. 5 erkannt, Eingänge
|