Home
last modified time | relevance | path

Searched +full:native +full:- +full:mode (Results 1 – 25 of 601) sorted by relevance

12345678910>>...25

/Linux-v6.1/Documentation/devicetree/bindings/display/panel/
Ddisplay-timings.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/display/panel/display-timings.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Thierry Reding <thierry.reding@gmail.com>
11 - Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12 - Sam Ravnborg <sam@ravnborg.org>
17 The display-timings node makes it possible to specify the timings
18 and to specify the timing that is native for the display.
22 const: display-timings
[all …]
/Linux-v6.1/drivers/misc/cxl/
Dnative.c1 // SPDX-License-Identifier: GPL-2.0-or-later
17 #include <misc/cxl-base.h>
29 spin_lock(&afu->afu_cntl_lock); in afu_control()
40 dev_warn(&afu->dev, "WARNING: AFU control timed out!\n"); in afu_control()
41 rc = -EBUSY; in afu_control()
45 if (!cxl_ops->link_ok(afu->adapter, afu)) { in afu_control()
46 afu->enabled = enabled; in afu_control()
47 rc = -EIO; in afu_control()
67 afu->enabled = enabled; in afu_control()
70 spin_unlock(&afu->afu_cntl_lock); in afu_control()
[all …]
Dpci.c1 // SPDX-License-Identifier: GPL-2.0-or-later
18 #include <asm/pnv-pci.h>
89 #define AFUD_READ(afu, off) in_be64(afu->native->afu_desc_mmio + off)
90 #define AFUD_READ_LE(afu, off) in_le64(afu->native->afu_desc_mmio + off)
170 dev_info(&dev->dev, "dump_cxl_config_space\n"); in dump_cxl_config_space()
173 dev_info(&dev->dev, "BAR0: %#.8x\n", val); in dump_cxl_config_space()
175 dev_info(&dev->dev, "BAR1: %#.8x\n", val); in dump_cxl_config_space()
177 dev_info(&dev->dev, "BAR2: %#.8x\n", val); in dump_cxl_config_space()
179 dev_info(&dev->dev, "BAR3: %#.8x\n", val); in dump_cxl_config_space()
181 dev_info(&dev->dev, "BAR4: %#.8x\n", val); in dump_cxl_config_space()
[all …]
Ddebugfs.c1 // SPDX-License-Identifier: GPL-2.0-or-later
29 static void debugfs_create_io_x64(const char *name, umode_t mode, in debugfs_create_io_x64() argument
32 debugfs_create_file_unsafe(name, mode, parent, (void __force *)value, in debugfs_create_io_x64()
45 debugfs_create_io_x64("xsl-debug", 0600, dir, in cxl_debugfs_add_adapter_regs_psl9()
65 snprintf(buf, 32, "card%i", adapter->adapter_num); in cxl_debugfs_adapter_add()
67 adapter->debugfs = dir; in cxl_debugfs_adapter_add()
71 if (adapter->native->sl_ops->debugfs_add_adapter_regs) in cxl_debugfs_adapter_add()
72 adapter->native->sl_ops->debugfs_add_adapter_regs(adapter, dir); in cxl_debugfs_adapter_add()
77 debugfs_remove_recursive(adapter->debugfs); in cxl_debugfs_adapter_remove()
101 if (!afu->adapter->debugfs) in cxl_debugfs_afu_add()
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/
Dcommon-properties.txt5 ----------
13 - big-endian: Boolean; force big endian register accesses
15 know the peripheral always needs to be accessed in big endian (BE) mode.
16 - little-endian: Boolean; force little endian register accesses
18 peripheral always needs to be accessed in little endian (LE) mode.
19 - native-endian: Boolean; always use register accesses matched to the
20 endianness of the kernel binary (e.g. LE vmlinux -> readl/writel,
21 BE vmlinux -> ioread32be/iowrite32be). In this case no byte swaps
22 will ever be performed. Use this if the hardware "self-adjusts"
27 In such cases, little-endian is the preferred default, but it is not
[all …]
/Linux-v6.1/Documentation/input/devices/
Delantech.rst4 Copyright (C) 2007-2008 Arjan Opmeer <arjan@opmeer.net>
20 4.2 Native relative mode 4 byte packet format
21 4.3 Native absolute mode 4 byte packet format
24 5.2 Native absolute mode 6 byte packet format
25 5.2.1 Parity checking and packet re-synchronization
30 6.2 Native absolute mode 6 byte packet format
35 7.2 Native absolute mode 6 byte packet format
41 8.2 Native relative mode 6 byte packet format
82 in relative mode and not in absolute mode. As the Linux Elantech touchpad
83 driver always puts the hardware into absolute mode not all information
[all …]
/Linux-v6.1/drivers/gpu/drm/i915/gt/uc/abi/
Dguc_klvs_abi.h1 /* SPDX-License-Identifier: MIT */
14 * +---+-------+--------------------------------------------------------------+
17 * | 0 | 31:16 | **KEY** - KLV key identifier |
18 * | | | - `GuC Self Config KLVs`_ |
20 * | +-------+--------------------------------------------------------------+
21 * | | 15:0 | **LEN** - length of VALUE (in 32bit dwords) |
22 * +---+-------+--------------------------------------------------------------+
23 * | 1 | 31:0 | **VALUE** - actual value of the KLV (format depends on KEY) |
24 * +---+-------+ |
26 * +---+-------+ |
[all …]
/Linux-v6.1/drivers/gpu/drm/nouveau/
Dnouveau_connector.c56 const struct drm_connector_helper_funcs *helper = connector->helper_private; in nouveau_conn_native_mode()
57 struct nouveau_drm *drm = nouveau_drm(connector->dev); in nouveau_conn_native_mode()
58 struct drm_device *dev = connector->dev; in nouveau_conn_native_mode()
59 struct drm_display_mode *mode, *largest = NULL; in nouveau_conn_native_mode() local
62 list_for_each_entry(mode, &connector->probed_modes, head) { in nouveau_conn_native_mode()
63 if (helper->mode_valid(connector, mode) != MODE_OK || in nouveau_conn_native_mode()
64 (mode->flags & DRM_MODE_FLAG_INTERLACE)) in nouveau_conn_native_mode()
67 /* Use preferred mode if there is one.. */ in nouveau_conn_native_mode()
68 if (mode->type & DRM_MODE_TYPE_PREFERRED) { in nouveau_conn_native_mode()
69 NV_DEBUG(drm, "native mode from preferred\n"); in nouveau_conn_native_mode()
[all …]
/Linux-v6.1/include/drm/display/
Ddrm_dsc.h1 /* SPDX-License-Identifier: MIT
48 * struct drm_dsc_rc_range_parameters - DSC Rate Control range parameters
70 * struct drm_dsc_config - Parameters required to configure DSC
87 * Flag to indicate if RGB - YCoCg conversion is needed
104 * @simple_422: True if simple 4_2_2 mode is enabled else False
176 u16 rc_buf_thresh[DSC_NUM_BUF_RANGES - 1];
224 * @vbr_enable: True if VBR mode is enabled, false if disabled
228 * @mux_word_size: Mux word size (in bits) for SSM mode
250 * @native_422: True if Native 4:2:2 supported, else false
254 * @native_420: True if Native 4:2:0 supported else false.
[all …]
/Linux-v6.1/drivers/spi/
Dspi-bcm2835aux.c1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * the driver does not rely on the native chipselects at all
8 * Based on: spi-bcm2835.c
34 "time in us to run a transfer in polling mode - if zero no polling is used\n");
114 snprintf(name, sizeof(name), "spi-bcm2835aux-%s", dname); in bcm2835aux_debugfs_create()
118 bs->debugfs_dir = dir; in bcm2835aux_debugfs_create()
122 &bs->count_transfer_polling); in bcm2835aux_debugfs_create()
124 &bs->count_transfer_irq); in bcm2835aux_debugfs_create()
126 &bs->count_transfer_irq_after_poll); in bcm2835aux_debugfs_create()
131 debugfs_remove_recursive(bs->debugfs_dir); in bcm2835aux_debugfs_remove()
[all …]
/Linux-v6.1/tools/testing/selftests/powerpc/tm/
Dtm-trap.c1 // SPDX-License-Identifier: GPL-2.0-only
21 * to zero which determines a BE endianness that is the native
27 * endianness "flipped back" to the native endianness (BE).
67 thread_endianness = MSR_LE & ucp->uc_mcontext.gp_regs[PT_MSR]; in trap_signal_handler()
70 * Little-Endian Machine in trap_signal_handler()
94 * not in transacional mode). On te other hand, if after in trap_signal_handler()
95 * the return from the signal handler the endianness in- in trap_signal_handler()
98 * and (4) are executed (tbegin.; trap;) and we get sim- in trap_signal_handler()
99 * ilaly on the trap signal handler, but now in TM mode. in trap_signal_handler()
104 * Finally, getting a trap in TM mode or not is just in trap_signal_handler()
[all …]
/Linux-v6.1/drivers/ps3/
Dps3av.c1 // SPDX-License-Identifier: GPL-2.0-only
155 if (hdr->cid & PS3AV_EVENT_CMD_MASK) { in ps3av_parse_event_packet()
156 table = ps3av_search_cmd_table(hdr->cid, PS3AV_EVENT_CMD_MASK); in ps3av_parse_event_packet()
158 dev_dbg(&ps3av->dev->core, in ps3av_parse_event_packet()
160 hdr->cid, ps3av_event_get_port_id(hdr->cid), in ps3av_parse_event_packet()
161 hdr->size); in ps3av_parse_event_packet()
165 __func__, hdr->cid, hdr->size); in ps3av_parse_event_packet()
178 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__); in ps3av_vuart_write()
180 dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__); in ps3av_vuart_write()
190 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__); in ps3av_vuart_read()
[all …]
/Linux-v6.1/Documentation/ABI/testing/
Dsysfs-driver-hid-logitech-lg4ff4 Contact: Michal Malý <madcatxster@devoid-pointer.net>
12 Contact: Michal Malý <madcatxster@devoid-pointer.net>
14 mode is listed as follows:
16 Tag: Mode Name
18 Currently active mode is marked with an asterisk. List also
19 contains an abstract item "native" which always denotes the
20 native mode of the wheel. Echoing the mode tag switches the
21 wheel into the corresponding mode. Depending on the exact model
23 If a wheel cannot be switched into the desired mode, -EINVAL
26 This entry is not created for devices that have only one mode.
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/spi/
Drenesas,sh-msiof.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
4 $id: http://devicetree.org/schemas/spi/renesas,sh-msiof.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Geert Uytterhoeven <geert+renesas@glider.be>
13 - $ref: spi-controller.yaml#
18 - items:
19 - const: renesas,msiof-sh73a0 # SH-Mobile AG5
20 - const: renesas,sh-mobile-msiof # generic SH-Mobile compatible
22 - items:
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/regmap/
Dregmap.txt5 little-endian,
6 big-endian,
7 native-endian: See common-properties.txt for a definition
10 Regmap defaults to little-endian register access on MMIO based
12 architectures that typically run big-endian operating systems
13 (e.g. PowerPC), registers can be defined as big-endian and must
16 On SoCs that can be operated in both big-endian and little-endian
19 chips), "native-endian" is used to allow using the same device tree
23 Scenario 1 : a register set in big-endian mode.
27 big-endian;
/Linux-v6.1/Documentation/devicetree/bindings/display/tilcdc/
Dpanel.txt1 Device-Tree bindings for tilcdc DRM generic panel output driver
4 - compatible: value should be "ti,tilcdc,panel".
5 - panel-info: configuration info to configure LCDC correctly for the panel
6 - ac-bias: AC Bias Pin Frequency
7 - ac-bias-intrpt: AC Bias Pin Transitions per Interrupt
8 - dma-burst-sz: DMA burst size
9 - bpp: Bits per pixel
10 - fdd: FIFO DMA Request Delay
11 - sync-edge: Horizontal and Vertical Sync Edge: 0=rising 1=falling
12 - sync-ctrl: Horizontal and Vertical Sync: Control: 0=ignore
[all …]
/Linux-v6.1/arch/powerpc/platforms/chrp/
Dpci.c1 // SPDX-License-Identifier: GPL-2.0
19 #include <asm/pci-bridge.h>
40 if (bus->number > 7) in gg2_read_config()
46 cfg_data = hose->cfg_data + ((bus->number<<16) | (devfn<<8) | off); in gg2_read_config()
67 if (bus->number > 7) in gg2_write_config()
73 cfg_data = hose->cfg_data + ((bus->number<<16) | (devfn<<8) | off); in gg2_write_config()
102 | (((bus->number - hose->first_busno) & 0xff) << 16) in rtas_read_config()
103 | (hose->global_number << 24); in rtas_read_config()
104 int ret = -1; in rtas_read_config()
107 rval = rtas_call(rtas_token("read-pci-config"), 2, 2, &ret, addr, len); in rtas_read_config()
[all …]
/Linux-v6.1/drivers/acpi/
Dvideo_detect.c17 * Otherwise vendor specific drivers like thinkpad_acpi, asus-laptop,
21 * driver should handle the backlight. RAW/GPU-driver backlight drivers must
31 #include <linux/apple-gmux.h>
36 #include <linux/platform_data/x86/nvidia-wmi-ec-backlight.h>
50 if (!strcmp("native", acpi_video_backlight_string)) in acpi_video_parse_cmdline()
83 .mode = WMI_BRIGHTNESS_MODE_GET, in nvidia_wmi_ec_supported()
96 * If brightness is handled by the EC then nvidia-wmi-ec-backlight in nvidia_wmi_ec_supported()
202 /* GIGABYTE GB-BXBT-2807 */
205 DMI_MATCH(DMI_PRODUCT_NAME, "GB-BXBT-2807"),
273 * native backlight causes a regression where backlight does not work
[all …]
/Linux-v6.1/drivers/thunderbolt/
Dacpi.c1 // SPDX-License-Identifier: GPL-2.0
29 ret = fwnode_property_get_reference_args(fwnode, "usb4-host-interface", in tb_acpi_add_link()
35 if (dev_fwnode(&nhi->pdev->dev) != args.fwnode) in tb_acpi_add_link()
61 dev = dev->parent; in tb_acpi_add_link()
72 if (pdev->class == PCI_CLASS_SERIAL_USB_XHCI || in tb_acpi_add_link()
85 pm_runtime_get_sync(&pdev->dev); in tb_acpi_add_link()
87 link = device_link_add(&pdev->dev, &nhi->pdev->dev, in tb_acpi_add_link()
92 dev_dbg(&nhi->pdev->dev, "created link from %s\n", in tb_acpi_add_link()
93 dev_name(&pdev->dev)); in tb_acpi_add_link()
95 dev_warn(&nhi->pdev->dev, "device link creation from %s failed\n", in tb_acpi_add_link()
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/powerpc/4xx/
Dcpm.txt4 - compatible : compatible list, currently only "ibm,cpm"
5 - dcr-access-method : "native"
6 - dcr-reg : < DCR register range >
9 - er-offset : All 4xx SoCs with a CPM controller have
15 er-offset = <1>.
16 - unused-units : specifier consist of one cell. For each
20 - idle-doze : specifier consist of one cell. For each
24 - standby : specifier consist of one cell. For each
28 - suspend : specifier consist of one cell. For each
39 refresh mode and any additional power
[all …]
/Linux-v6.1/arch/arm/include/asm/
Dbitops.h1 /* SPDX-License-Identifier: GPL-2.0 */
14 * instructions (which are not available from user mode) to ensure
34 * First, the atomic bitops. These use native endian.
123 #include <asm-generic/bitops/non-atomic.h>
126 * A note about Endian-ness.
127 * -------------------------
129 * When the ARM is put into big endian mode via CR15, the processor
132 * ------------ physical data bus bits -----------
137 * This means that reading a 32-bit word at address 0 returns the same
138 * value irrespective of the endian mode bit.
[all …]
/Linux-v6.1/net/dsa/
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
22 tristate "Tag driver for Atheros AR9331 SoC with built-in switch"
25 the Atheros AR9331 SoC with built-in switch.
32 tristate "Tag driver for Broadcom switches using in-frame headers"
39 tristate "Tag driver for Broadcom legacy switches using in-frame headers"
100 (VSC7511, VSC7512, VSC7513, VSC7514, VSC9953, VSC9959). In this mode,
102 hardware-defined injection/extraction frame header. Flow control
104 this mode.
110 custom VLAN-based header. Frames that require timestamping, such as
111 PTP, are not delivered over Ethernet but over register-based MMIO.
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/bus/
Dintel,ixp4xx-expansion-bus-controller.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/bus/intel,ixp4xx-expansion-bus-controller.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 memory-mapped expansion bus on the Intel IXP4xx family of system on chips,
15 - Linus Walleij <linus.walleij@linaro.org>
19 pattern: '^bus@[0-9a-f]+$'
23 - enum:
24 - intel,ixp42x-expansion-bus-controller
25 - intel,ixp43x-expansion-bus-controller
[all …]
/Linux-v6.1/arch/mips/boot/dts/brcm/
Dbcm7346.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <163125000>;
30 cpu_intc: interrupt-controller {
31 #address-cells = <0>;
32 compatible = "mti,cpu-interrupt-controller";
34 interrupt-controller;
[all …]
Dbcm7358.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #address-cells = <1>;
4 #size-cells = <1>;
8 #address-cells = <1>;
9 #size-cells = <0>;
11 mips-hpt-frequency = <375000000>;
24 cpu_intc: interrupt-controller {
25 #address-cells = <0>;
26 compatible = "mti,cpu-interrupt-controller";
28 interrupt-controller;
[all …]

12345678910>>...25