Home
last modified time | relevance | path

Searched +full:integer +full:- +full:n (Results 1 – 25 of 1119) sorted by relevance

12345678910>>...45

/Linux-v6.6/drivers/char/tpm/
Dtpm_ppi.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012-2014 Intel Corporation
10 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
55 return scnprintf(buf, PAGE_SIZE, "%s\n", chip->ppi_version); in tpm_show_ppi_version()
61 ssize_t size = -EINVAL; in tpm_show_ppi_request()
67 if (strcmp(chip->ppi_version, "1.2") < 0) in tpm_show_ppi_request()
70 obj = tpm_eval_dsm(chip->acpi_dev_handle, TPM_PPI_FN_GETREQ, in tpm_show_ppi_request()
73 return -ENXIO; in tpm_show_ppi_request()
81 if (obj->package.count == 3 && in tpm_show_ppi_request()
82 obj->package.elements[0].type == ACPI_TYPE_INTEGER && in tpm_show_ppi_request()
[all …]
/Linux-v6.6/drivers/i2c/busses/
Di2c-scmi.c1 // SPDX-License-Identifier: GPL-2.0-only
79 struct acpi_smbus_cmi *smbus_cmi = adap->algo_data; in acpi_smbus_cmi_access()
90 dev_dbg(&adap->dev, "access size: %d %s\n", size, in acpi_smbus_cmi_access()
98 mt_params[3].integer.value = 0; in acpi_smbus_cmi_access()
100 mt_params[4].integer.value = 0; in acpi_smbus_cmi_access()
108 mt_params[3].integer.value = 0; in acpi_smbus_cmi_access()
110 mt_params[4].integer.value = 0; in acpi_smbus_cmi_access()
120 mt_params[3].integer.value = 1; in acpi_smbus_cmi_access()
122 mt_params[4].integer.value = data->byte; in acpi_smbus_cmi_access()
130 mt_params[3].integer.value = 2; in acpi_smbus_cmi_access()
[all …]
/Linux-v6.6/drivers/platform/x86/hp/hp-bioscfg/
Dint-attributes.c1 // SPDX-License-Identifier: GPL-2.0
3 * Functions corresponding to integer type attributes under
4 * BIOS Enumeration GUID for use with hp-bioscfg driver.
6 * Copyright (c) 2022 Hewlett-Packard Inc.
11 GET_INSTANCE_ID(integer);
18 return -EIO; in current_value_show()
20 return sysfs_emit(buf, "%d\n", in current_value_show()
25 * validate_integer_input() -
38 if (integer_data->common.is_readonly) in validate_integer_input()
39 return -EIO; in validate_integer_input()
[all …]
/Linux-v6.6/drivers/iio/health/
Dafe4404.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * AFE4404 Heart Rate Monitors and Low-Cost Pulse Oximeters
5 * Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
79 * struct afe4404_data - AFE4404 device instance data
144 { .integer = 500000, .fract = 0 },
145 { .integer = 250000, .fract = 0 },
146 { .integer = 100000, .fract = 0 },
147 { .integer = 50000, .fract = 0 },
148 { .integer = 25000, .fract = 0 },
149 { .integer = 10000, .fract = 0 },
[all …]
/Linux-v6.6/Documentation/userspace-api/media/v4l/
Dcontrol.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
9 Devices typically have a number of user-settable controls such as
21 pre-defined control IDs have the prefix ``V4L2_CID_``, and are listed in
22 :ref:`control-id`. The ID is used when querying the attributes of a
27 the user is supposed to understand. When the purpose is non-intuitive
28 the driver writer should provide a user manual, a user interface plug-in
57 .. _control-id:
68 ``V4L2_CID_BRIGHTNESS`` ``(integer)``
71 ``V4L2_CID_CONTRAST`` ``(integer)``
74 ``V4L2_CID_SATURATION`` ``(integer)``
[all …]
Dext-ctrls-fm-tx.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
3 .. _fm-tx-controls:
15 .. _fm-tx-control-id:
25 ``V4L2_CID_RDS_TX_DEVIATION (integer)``
27 step are driver-specific.
29 ``V4L2_CID_RDS_TX_PI (integer)``
32 ``V4L2_CID_RDS_TX_PTY (integer)``
34 to 31 pre-defined programme types.
44 which can scroll strings sized as 8 x N characters. So, this control
52 programme-related information or any other text. In these cases,
[all …]
/Linux-v6.6/drivers/acpi/
Dpfr_telemetry.c1 // SPDX-License-Identifier: GPL-2.0
76 return container_of(file->private_data, struct pfrt_log_device, miscdev); in to_pfrt_log_dev()
82 acpi_handle handle = ACPI_HANDLE(pfrt_log_dev->parent_dev); in get_pfrt_log_data_info()
84 int ret = -EBUSY; in get_pfrt_log_data_info()
93 in_buf.integer.value = pfrt_log_dev->info.log_type; in get_pfrt_log_data_info()
96 pfrt_log_dev->info.log_revid, PFRT_FUNC_GET_DATA, in get_pfrt_log_data_info()
99 return -EINVAL; in get_pfrt_log_data_info()
101 if (out_obj->package.count < LOG_NR_IDX || in get_pfrt_log_data_info()
102 out_obj->package.elements[LOG_STATUS_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info()
103 out_obj->package.elements[LOG_EXT_STATUS_IDX].type != ACPI_TYPE_INTEGER || in get_pfrt_log_data_info()
[all …]
Dpfr_update.c1 // SPDX-License-Identifier: GPL-2.0
116 return container_of(file->private_data, struct pfru_device, miscdev); in to_pfru_dev()
122 acpi_handle handle = ACPI_HANDLE(pfru_dev->parent_dev); in query_capability()
124 int ret = -EINVAL; in query_capability()
127 pfru_dev->rev_id, in query_capability()
133 if (out_obj->package.count < CAP_NR_IDX || in query_capability()
134 out_obj->package.elements[CAP_STATUS_IDX].type != ACPI_TYPE_INTEGER || in query_capability()
135 out_obj->package.elements[CAP_UPDATE_IDX].type != ACPI_TYPE_INTEGER || in query_capability()
136 out_obj->package.elements[CAP_CODE_TYPE_IDX].type != ACPI_TYPE_BUFFER || in query_capability()
137 out_obj->package.elements[CAP_FW_VER_IDX].type != ACPI_TYPE_INTEGER || in query_capability()
[all …]
Dutils.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * acpi_utils.c - ACPI Utility Functions ($Revision: 10 $)
23 /* --------------------------------------------------------------------------
25 -------------------------------------------------------------------------- */
28 acpi_handle_debug(h, "Evaluate [%s]: %s\n", p, acpi_format_exception(s)); in acpi_util_eval_error()
44 if (!package || (package->type != ACPI_TYPE_PACKAGE) in acpi_extract_package()
45 || (package->package.count < 1)) { in acpi_extract_package()
46 pr_debug("Invalid package argument\n"); in acpi_extract_package()
50 if (!format || !format->pointer || (format->length < 1)) { in acpi_extract_package()
51 pr_debug("Invalid format argument\n"); in acpi_extract_package()
[all …]
/Linux-v6.6/drivers/net/ethernet/hisilicon/hns/
Dhns_dsaf_misc.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2014-2015 Hisilicon Limited.
35 if (dsaf_dev->sub_ctrl) in dsaf_write_sub()
36 dsaf_write_syscon(dsaf_dev->sub_ctrl, reg, val); in dsaf_write_sub()
38 dsaf_write_reg(dsaf_dev->sc_base, reg, val); in dsaf_write_sub()
46 if (dsaf_dev->sub_ctrl) { in dsaf_read_sub()
47 err = dsaf_read_syscon(dsaf_dev->sub_ctrl, reg, &ret); in dsaf_read_sub()
49 dev_err(dsaf_dev->dev, "dsaf_read_syscon error %d!\n", in dsaf_read_sub()
52 ret = dsaf_read_reg(dsaf_dev->sc_base, reg); in dsaf_read_sub()
64 obj_args[0].integer.type = ACPI_TYPE_INTEGER; in hns_dsaf_acpi_ledctrl_by_port()
[all …]
/Linux-v6.6/drivers/platform/x86/dell/dell-wmi-sysman/
Dint-attributes.c1 // SPDX-License-Identifier: GPL-2.0
3 * Functions corresponding to integer type attributes under BIOS Integer GUID for use with
4 * dell-wmi-sysman
9 #include "dell-wmi-sysman.h"
13 get_instance_id(integer);
27 return -EIO; in current_value_show()
28 if (obj->package.elements[CURRENT_VAL].type != ACPI_TYPE_INTEGER) { in current_value_show()
30 return -EINVAL; in current_value_show()
32 ret = snprintf(buf, PAGE_SIZE, "%lld\n", obj->package.elements[CURRENT_VAL].integer.value); in current_value_show()
38 * validate_integer_input() - Validate input of current_value against lower and upper bound
[all …]
/Linux-v6.6/sound/soc/codecs/
Dwm8958-dsp2.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * wm8958-dsp2.c -- WM8958 DSP2 support
53 if (wm8994->cur_fw == fw) in wm8958_dsp2_fw()
56 if (fw->size < 32) { in wm8958_dsp2_fw()
57 dev_err(component->dev, "%s: firmware too short (%zd bytes)\n", in wm8958_dsp2_fw()
58 name, fw->size); in wm8958_dsp2_fw()
62 if (memcmp(fw->data, "WMFW", 4) != 0) { in wm8958_dsp2_fw()
63 data32 = get_unaligned_be32(fw->data); in wm8958_dsp2_fw()
64 dev_err(component->dev, "%s: firmware has bad file magic %08x\n", in wm8958_dsp2_fw()
69 len = get_unaligned_be32(fw->data + 4); in wm8958_dsp2_fw()
[all …]
Dtas2781-i2c.c1 // SPDX-License-Identifier: GPL-2.0
5 // Copyright (C) 2022 - 2023 Texas Instruments Incorporated
12 // Author: Shenghao Ding <shenghao-ding@ti.com>
13 // Author: Kevin Lu <kevin-lu@ti.com>
32 #include <sound/tas2781-tlv.h>
49 * tas2781_digital_getvol - get the volum control
54 * tas2781 contains book and page two-level register map, especially
65 (struct soc_mixer_control *)kcontrol->private_value; in tas2781_digital_getvol()
76 (struct soc_mixer_control *)kcontrol->private_value; in tas2781_digital_putvol()
87 (struct soc_mixer_control *)kcontrol->private_value; in tas2781_amp_getvol()
[all …]
/Linux-v6.6/drivers/pci/
Dpci-acpi.c1 // SPDX-License-Identifier: GPL-2.0
17 #include <linux/pci-acpi.h>
25 * here to PCI-SIG members:
26 * https://members.pcisig.com/wg/PCI-SIG/document/15350
35 struct device *dev = &adev->dev; in acpi_get_rc_addr()
47 dev_err(dev, "failed to parse _CRS method, error code %d\n", in acpi_get_rc_addr()
53 dev_err(dev, "no IO and memory resources present in _CRS\n"); in acpi_get_rc_addr()
54 return -EINVAL; in acpi_get_rc_addr()
58 *res = *entry->res; in acpi_get_rc_addr()
88 dev_err(dev, "can't find _HID %s device to locate resources\n", in acpi_get_rc_resources()
[all …]
/Linux-v6.6/drivers/net/wireless/intel/iwlwifi/fw/
Dacpi.c1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
4 * Copyright (C) 2019-2023 Intel Corporation
8 #include "iwl-drv.h"
9 #include "iwl-debug.h"
44 { .ident = "GOOGLE-HP",
50 { .ident = "GOOGLE-ASUS",
56 { .ident = "GOOGLE-SAMSUNG",
89 "ACPI: Could not retrieve root port handle\n"); in iwl_acpi_get_handle()
90 return -ENOENT; in iwl_acpi_get_handle()
96 "ACPI: %s method not found\n", method); in iwl_acpi_get_handle()
[all …]
/Linux-v6.6/sound/aoa/codecs/
Dtas.c1 // SPDX-License-Identifier: GPL-2.0-only
8 * - How to distinguish between 3004 and versions?
11 * - This codec driver doesn't honour the 'connected'
15 * - Driver assumes that the microphone is always
17 * the input. This should also be a codec-dependent
23 * - As Apple notes in their code, the tas3004 seems
36 * - this should actually register *two* aoa_codec
71 MODULE_DESCRIPTION("tas codec driver for snd-aoa");
74 #include "tas-gain-table.h"
75 #include "tas-basstreble.h"
[all …]
Donyx.c1 // SPDX-License-Identifier: GPL-2.0-only
24 * But snd-aoa assumes that there's at most one card, so
36 MODULE_DESCRIPTION("pcm3052 (onyx) codec driver for snd-aoa");
43 #define PFX "snd-aoa-codec-onyx: "
46 /* cache registers 65 to 80, they are write-only! */
70 *value = onyx->cache[reg-FIRSTREGISTER]; in onyx_read_register()
73 v = i2c_smbus_read_byte_data(onyx->i2c, reg); in onyx_read_register()
76 return -1; in onyx_read_register()
79 onyx->cache[ONYX_REG_CONTROL-FIRSTREGISTER] = *value; in onyx_read_register()
87 result = i2c_smbus_write_byte_data(onyx->i2c, reg, value); in onyx_write_register()
[all …]
/Linux-v6.6/Documentation/firmware-guide/acpi/apei/
Doutput_format.rst1 .. SPDX-License-Identifier: GPL-2.0
12 severity: <integer>, <severity string>
13 section: <integer>, severity: <integer>, <severity string>
14 flags: <integer>
35 [processor_type: <integer>, <proc type string>]
36 [processor_isa: <integer>, <proc isa string>]
37 [error_type: <integer>
39 [operation: <integer>, <proc operation string>]
40 [flags: <integer>
42 [level: <integer>]
[all …]
/Linux-v6.6/sound/pci/cs5535audio/
Dcs5535audio_olpc.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * OLPC XO-1 additional sound features
6 * Copyright © 2007-2008 Andres Salomon <dilinger@debian.org>
17 #define DRV_NAME "cs5535audio-olpc"
35 dev_err(ac97->bus->card->dev, in olpc_analog_input()
36 "setting High Pass Filter - %d\n", err); in olpc_analog_input()
45 * OLPC XO-1's V_REFOUT is a mic bias enable.
58 dev_err(ac97->bus->card->dev, "setting MIC Bias - %d\n", err); in olpc_mic_bias()
64 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; in olpc_dc_info()
65 uinfo->count = 1; in olpc_dc_info()
[all …]
/Linux-v6.6/fs/9p/
Dv9fs.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
36 /* Options that take integer arguments */
72 int version = -EINVAL; in get_cache_mode()
76 p9_debug(P9_DEBUG_9P, "Cache mode: loose\n"); in get_cache_mode()
79 p9_debug(P9_DEBUG_9P, "Cache mode: fscache\n"); in get_cache_mode()
82 p9_debug(P9_DEBUG_9P, "Cache mode: mmap\n"); in get_cache_mode()
85 p9_debug(P9_DEBUG_9P, "Cache mode: readahead\n"); in get_cache_mode()
88 p9_debug(P9_DEBUG_9P, "Cache mode: none\n"); in get_cache_mode()
90 version = -EINVAL; in get_cache_mode()
[all …]
/Linux-v6.6/lib/
Dpolynomial.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic polynomial calculation using integer coefficients.
18 * Originally this was part of drivers/hwmon/bt1-pvt.c.
22 * to PVT data and vice-versa are following:
24 * N = 1.8322e-8*(T^4) + 2.343e-5*(T^3) + 8.7018e-3*(T^2) + 3.9269*(T^1) +
26 * T = -1.6743e-11*(N^4) + 8.1542e-8*(N^3) + -1.8201e-4*(N^2) +
27 * 3.1020e-1*(N^1) - 4.838e1
29 * where T = [-48.380, 147.438]C and N = [0, 1023].
31 * They must be accordingly altered to be suitable for the integer arithmetics.
34 * within the integer numbers limit. In addition we need to translate the
[all …]
/Linux-v6.6/sound/ppc/
Dtumbler.c1 // SPDX-License-Identifier: GPL-2.0-or-later
114 err = i2c_smbus_write_byte_data(i2c->client, in send_init_client()
118 DBG("(W) i2c error %d\n", err); in send_init_client()
120 } while (count--); in send_init_client()
122 return -ENXIO; in send_init_client()
136 DBG("(I) tumbler init client\n"); in tumbler_init_client()
145 /* normal operation, all-pass mode */ in snapper_init_client()
147 /* normal output, no deemphasis, A input, power-up, line-in */ in snapper_init_client()
151 DBG("(I) snapper init client\n"); in snapper_init_client()
159 pmac_call_feature(PMAC_FTR_WRITE_GPIO, NULL, (gp)->addr, val)
[all …]
/Linux-v6.6/sound/usb/6fire/
Dcontrol.c1 // SPDX-License-Identifier: GPL-2.0-or-later
12 * - Holger Ruckdeschel: he found out how to control individual channel
29 * values dumped from windows driver and filtered by trial'n'error.
53 static DECLARE_TLV_DB_MINMAX(tlv_output, -9000, 0);
54 static DECLARE_TLV_DB_MINMAX(tlv_input, -1500, 1500);
62 struct comm_runtime *comm_rt = rt->chip->comm; in usb6fire_control_output_vol_update()
67 if (!(rt->ovol_updated & (1 << i))) { in usb6fire_control_output_vol_update()
68 comm_rt->write8(comm_rt, 0x12, 0x0f + i, in usb6fire_control_output_vol_update()
69 180 - rt->output_vol[i]); in usb6fire_control_output_vol_update()
70 rt->ovol_updated |= 1 << i; in usb6fire_control_output_vol_update()
[all …]
/Linux-v6.6/drivers/hwtracing/coresight/
Dcoresight-platform.c1 // SPDX-License-Identifier: GPL-2.0
19 #include "coresight-priv.h"
24 * If the output port is already assigned on this device, return -EINVAL
37 for (i = 0; i < pdata->nr_outconns; ++i) { in coresight_add_out_conn()
38 conn = pdata->out_conns[i]; in coresight_add_out_conn()
39 /* Output == -1 means ignore the port for example for helpers */ in coresight_add_out_conn()
40 if (conn->src_port != -1 && in coresight_add_out_conn()
41 conn->src_port == new_conn->src_port) { in coresight_add_out_conn()
42 dev_warn(dev, "Duplicate output port %d\n", in coresight_add_out_conn()
43 conn->src_port); in coresight_add_out_conn()
[all …]
/Linux-v6.6/drivers/platform/x86/
Dlg-laptop.c1 // SPDX-License-Identifier: GPL-2.0+
3 * lg-laptop.c - LG Gram ACPI features and hotkeys Driver
5 * Copyright (C) 2018 Matan Ziv-Av <matan@svgalib.org>
13 #include <linux/input/sparse-keymap.h>
30 MODULE_AUTHOR("Matan Ziv-Av");
34 #define WMI_EVENT_GUID0 "E4FB94F9-7F2B-4173-AD1A-CD1D95086248"
35 #define WMI_EVENT_GUID1 "023B133E-49D1-4E10-B313-698220140DC2"
36 #define WMI_EVENT_GUID2 "37BE1AC0-C3F2-4B1F-BFBE-8FDEAF2814D6"
37 #define WMI_EVENT_GUID3 "911BAD44-7DF8-4FBB-9319-BABA1C4B293B"
38 #define WMI_METHOD_WMAB "C3A72B38-D3EF-42D3-8CBB-D5A57049F66D"
[all …]

12345678910>>...45