Home
last modified time | relevance | path

Searched full:instance (Results 1 – 25 of 408) sorted by relevance

12345678910>>...17

/Documentation/devicetree/bindings/usb/
Ddwc2.txt6 - brcm,bcm2835-usb: The DWC2 USB controller instance in the BCM2835 SoC.
7 - hisilicon,hi6220-usb: The DWC2 USB controller instance in the hi6220 SoC.
8 - rockchip,rk3066-usb: The DWC2 USB controller instance in the rk3066 Soc;
12 - "lantiq,arx100-usb": The DWC2 USB controller instance in Lantiq ARX SoCs;
13 - "lantiq,xrx200-usb": The DWC2 USB controller instance in Lantiq XRX SoCs;
14 - "amlogic,meson8-usb": The DWC2 USB controller instance in Amlogic Meson8 SoCs;
15 - "amlogic,meson8b-usb": The DWC2 USB controller instance in Amlogic Meson8b SoCs;
16 - "amlogic,meson-gxbb-usb": The DWC2 USB controller instance in Amlogic S905 SoCs;
17 - "amlogic,meson-g12a-usb": The DWC2 USB controller instance in Amlogic G12A SoCs;
18 - "amcc,dwc-otg": The DWC2 USB controller instance in AMCC Canyonlands 460EX SoCs;
[all …]
/Documentation/admin-guide/
Dbinderfs.rst8 located in a new binderfs instance are independent of binder devices located in
9 other binderfs instances. Mounting a new binderfs instance makes it possible
20 at which point a new instance of binderfs will show up at ``/dev/binderfs``.
21 In a fresh instance of binderfs no binder devices will be present. There will
23 binderfs. Mounting another binderfs instance at a different location will
24 create a new and separate instance from all other binderfs mounts. This is
33 a per-instance limit. If ``max=<count>`` is set then only ``<count>`` number
34 of binder devices can be allocated in this binderfs instance.
41 To allocate a new binder device in a binderfs instance a request needs to be
67 instance unuseable. The ``binder-control`` device will be deleted when the
[all …]
/Documentation/media/kapi/
Dv4l2-device.rst3 V4L2 device instance
6 Each device instance is represented by a struct :c:type:`v4l2_device`.
10 You must register the device instance by calling:
21 that embed the struct :c:type:`v4l2_device` instance. This is achieved by a
22 ``dev_set_drvdata()`` call before registering the V4L2 device instance.
24 properly initialized and registered :c:type:`media_device` instance.
34 name and a driver-global atomic_t instance. This will generate names like
36 a dash: ``cx18-0``, ``cx18-1``, etc. This function returns the instance number.
104 Sometimes you need to keep a running counter of the device instance. This is
105 commonly used to map a device instance to an index of a module option array.
[all …]
/Documentation/
Dpadata.txt23 'name' simply identifies the instance.
26 submitted to this instance in parallel. The cbcpumask defines which
31 To allocate a padata instance with the cpu_possible_mask for both
44 There are functions for enabling and disabling the instance::
53 padata_stop clears the flag and blocks until the padata instance
69 It's possible to change both cpumasks of a padata instance with
102 Actually submitting work to the padata instance requires the creation of a
125 done; it must be in the current instance's CPU mask. The return value from
128 instance's CPU mask, while -EINVAL is a complaint about cb_cpu not being
129 in that CPU mask or about a not running instance.
[all …]
/Documentation/devicetree/bindings/iommu/
Dti,omap-iommu.txt9 - ti,hwmods : Name of the hwmod associated with the IOMMU instance
11 - interrupts : Interrupt specifier for the IOMMU instance
21 - ti,iommu-bus-err-back : Indicates the IOMMU instance supports throwing
25 register for enabling the MMU, and the MMU instance
28 instance number should be 0 for DSP MDMA MMUs and 1 for
/Documentation/devicetree/bindings/phy/
Dphy-tegra194-p2u.txt5 A P2U instance is a glue logic between Synopsys DesignWare Core PCIe IP's PIPE
6 interface and PHY of HSIO/NVHS bricks. Each P2U instance represents one PCIe
12 instance.
/Documentation/devicetree/bindings/soc/ti/
Dkeystone-navigator-dma.txt8 CRYPTO Engines etc has its own instance of dma hardware. QMSS has also
17 |-> DMA instance #0
19 |-> DMA instance #1
23 |-> DMA instance #n
40 DMA instance properties:
97 - A phandle pointing to DMA instance node
/Documentation/filesystems/
Dtmpfs.txt5 created on your hard drive. If you unmount a tmpfs instance,
59 size: The limit of allocated bytes for this tmpfs instance. The
64 nr_inodes: The maximum number of inodes for this instance. The default
71 to limit this tmpfs instance to that percentage of your physical RAM:
74 If nr_blocks=0 (or size=0), blocks will not be limited in that instance;
78 that instance in a system with many cpus making intensive use of it.
82 all files in that instance (if CONFIG_NUMA is enabled) - which can be
140 will give you tmpfs instance on /mytmpfs which can allocate 10GB
Ddevpts.txt9 created with "mknod name c 5 2") when opened will look for an instance
24 Per-instance limit could be set by adding mount option "max=<count>".
26 In kernels older than 3.4 sysctl kernel.pty.max works as per-instance limit.
/Documentation/devicetree/bindings/mailbox/
Dsti-mailbox.txt14 <&phandle instance channel direction>
16 instance : Instance number
/Documentation/scsi/
Dscsi_mid_low_api.txt100 "struct scsi_host_template", an instance of which is passed to
103 struct scsi_host_template. Defining an instance of struct
240 - scsi_host_alloc(): returns a pointer to new instance of struct
242 - scsi_host_get(): adds 1 to the reference count of the given instance
244 instance. If the reference count reaches 0 then the given instance
252 a copy of a pointer to a scsi_device instance it should use scsi_device_get()
294 scsi_add_device - creates new scsi device (lu) instance
299 scsi_host_alloc - return a new scsi_host instance whose refcount==1
300 scsi_host_get - increments Scsi_Host instance's refcount
301 scsi_host_put - decrements Scsi_Host instance's refcount (free if 0)
[all …]
/Documentation/driver-api/driver-model/
Ddesign-patterns.rst40 This will create an instance of struct foo in memory every time probe() is
41 called. This is our state container for this instance of the device driver.
42 Of course it is then necessary to always pass this instance of the
62 This way you always get a pointer back to the correct instance of foo in
115 instance this way, while still keeping the number of parameters passed to the
/Documentation/devicetree/bindings/crypto/
Dst,stm32-cryp.txt6 - clocks: The input clock of the CRYP instance
10 - resets: The input reset of the CRYP instance
/Documentation/driver-api/soundwire/
Dlocking.rst17 (sdw_bus) which is used for every Bus instance. This lock is used to
18 serialize each of the following operations(s) within SoundWire Bus instance.
31 transfers (read/write) within a SoundWire Bus instance.
72 1. Acquire lock for Bus instance associated with Master 1.
83 3. Release lock for Bus instance associated with Master 1 ::
/Documentation/devicetree/bindings/slimbus/
Dbus.txt13 Manufacturer ID, Product code, Device index, and Instance value for
24 - reg - Should be ('Device index', 'Instance ID') from SLIMbus
28 Instance ID Is for the cases where multiple Devices of the
Dslim-ngd-qcom-ctrl.txt41 Definition: Should be 1, reflecting the instance id of ngd.
49 Each subnode represents an instance of NGD, must contain the following
55 Definition: Should be instance id of ngd.
/Documentation/devicetree/bindings/
Dxilinx.txt7 implemented within the fpga fabric every instance of the device can be
39 (name): is derived from the "PARAMETER INSTANCE" value.
57 PARAMETER INSTANCE = opb_uartlite_0
104 PARAMETER INSTANCE = opb_ps2_dual_ref_0
151 PARAMETER INSTANCE = ppc405_0
158 PARAMETER INSTANCE = opb_intc_0
166 PARAMETER INSTANCE = opb_uart16550_0
174 PARAMETER INSTANCE = plb_v34_0
179 PARAMETER INSTANCE = plb_bram_if_cntlr_0
187 PARAMETER INSTANCE = plb2opb_bridge_0
/Documentation/networking/
Dppp_generic.txt59 system call on an instance of /dev/ppp which is bound to the
87 will need it to attach an instance of /dev/ppp to this channel.
123 The channel must provide an instance of a ppp_channel struct to
251 channels. Although there is only one /dev/ppp, each open instance of
254 to point to a separate object for each open instance of /dev/ppp. In
259 When /dev/ppp is opened, a new instance is created which is initially
262 existing channel. An instance attached to a unit can be used to send
264 calls, along with poll() if necessary. Similarly, an instance
270 write to the unit (i.e., to an instance of /dev/ppp attached to the
281 The ioctl calls which are available on an instance of /dev/ppp depend
[all …]
/Documentation/devicetree/bindings/memory-controllers/ti/
Demif.txt5 DDR2/DDR3/LPDDR2 protocols. This binding describes a given instance
12 is the IP revision of the specific EMIF instance. For newer controllers,
28 instance with base 1.
40 instance has a memory part attached to it. If there is a memory
/Documentation/devicetree/bindings/interrupt-controller/
Drenesas,intc-irqpin.txt20 provided by this irqpin controller instance, there must be one entry,
33 the irqpin controller instance.
35 mandatory if the irqpin controller instance is part of a controllable power
/Documentation/devicetree/bindings/serial/
Dst,stm32-usart.txt11 - The interrupt line for the USART instance,
13 - clocks: The input clock of the USART instance
25 - "event": the name for the interrupt line of the USART instance
/Documentation/devicetree/bindings/soc/fsl/
Dbman.txt42 Definition: Phandle to this BMan instance's portals
56 Devices connected to a BMan instance via Direct Connect Portals (DCP) must link
57 to the respective BMan instance
62 Description: List of phandle and DCP index pairs, to the BMan instance
/Documentation/ABI/testing/
Dsysfs-firmware-dmi-entries29 assigned by the operating system an 'instance', which is
44 Instance numbers are used in lieu of the firmware
72 instance: The instance ordinal of the entry for the
/Documentation/devicetree/bindings/thermal/
Dexynos-thermal.txt19 belongs to register set of TMU instance and second set belongs to
20 registers shared with the TMU instance.
97 Note: For multi-instance tmu each instance should have an alias correctly
/Documentation/devicetree/bindings/power/
Dti-smartreflex.txt15 reg: Shall contain the device instance IO range
17 interrupts: Shall contain the device instance interrupt

12345678910>>...17