| /linux/scripts/kconfig/ |
| H A D | gconf.ui | 6 <property name="visible">True</property> 7 <property name="title" translatable="yes">Gtk Kernel Configurator</property> 8 <property name="type">GTK_WINDOW_TOPLEVEL</property> 9 <property name="window_position">GTK_WIN_POS_NONE</property> 10 <property name="modal">False</property> 11 <property name="default_width">640</property> 12 <property name="default_height">480</property> 13 <property name="resizable">True</property> 14 <property name="destroy_with_parent">False</property> 15 <property name="decorated">True</property> [all …]
|
| /linux/drivers/thunderbolt/ |
| H A D | property.c | 3 * Thunderbolt XDomain property support 82 struct tb_property *property; in tb_property_alloc() local 84 property = kzalloc_obj(*property); in tb_property_alloc() 85 if (!property) in tb_property_alloc() 88 strcpy(property->key, key); in tb_property_alloc() 89 property->type = type; in tb_property_alloc() 90 INIT_LIST_HEAD(&property->list); in tb_property_alloc() 92 return property; in tb_property_alloc() 99 struct tb_property *property; in tb_property_parse() local 108 property = tb_property_alloc(key, entry->type); in tb_property_parse() [all …]
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_property.c | 44 * property types and ranges. 50 * Property values are only 64bit. To support bigger piles of data (like gamma 51 * tables, color correction matrices or large structures) a property can instead 55 * per-object mapping from those names to the property ID used in the atomic 56 * IOCTL and in the get/set property IOCTL. 83 * drm_property_create - create a new property type 85 * @flags: flags specifying the property type 86 * @name: name of the property 89 * This creates a new generic drm property which can then be attached to a drm 90 * object with drm_object_attach_property(). The returned property object must [all …]
|
| H A D | drm_atomic_uapi.c | 64 * the enable property. 113 * @blob: pointer to blob property to use for mode 115 * Set a mode (originating from a blob property) on the desired CRTC state. 116 * This function will take a reference on the blob property for the CRTC state, 117 * and release the reference held on the state's existing mode property, if any 397 struct drm_crtc_state *state, struct drm_property *property, in drm_atomic_crtc_set_property() argument 405 if (property == config->prop_active) in drm_atomic_crtc_set_property() 407 else if (property == config->prop_mode_id) { in drm_atomic_crtc_set_property() 413 } else if (property == config->prop_vrr_enabled) { in drm_atomic_crtc_set_property() 415 } else if (property == config->degamma_lut_property) { in drm_atomic_crtc_set_property() [all …]
|
| H A D | drm_blend.c | 110 * Without this property the rectangle is only scaled, but not rotated or 138 * planes. Without this property the primary plane is always below the cursor 145 * any plane has a zpos property (either mutable or immutable), then all 146 * planes shall have a zpos property. 185 * 1.0. In these cases, this property has no effect, as all three 190 * Plane alpha value set by the plane "alpha" property. If the 191 * plane does not expose the "alpha" property, then this is 194 * Note that all the property extensions described here apply either to the 201 * The value of this property can be one of the following: 208 * Drivers can set up this property for a plane by calling [all …]
|
| /linux/drivers/base/ |
| H A D | property.c | 3 * property.c - Unified device property interface. 15 #include <linux/property.h> 36 * device_property_present - check if a property of a device is present 37 * @dev: Device whose property is being checked 38 * @propname: Name of the property 40 * Check if property @propname is present in the device firmware description. 42 * Return: true if property @propname is present. Otherwise, returns false. 51 * fwnode_property_present - check if a property of a firmware node is present 52 * @fwnode: Firmware node whose property to check 53 * @propname: Name of the property [all …]
|
| /linux/arch/arm/boot/dts/broadcom/ |
| H A D | bcm-nsp-ax.dtsi | 13 /delete-property/ dma-coherent; 17 /delete-property/ dma-coherent; 21 /delete-property/ dma-coherent; 25 /delete-property/ dma-coherent; 29 /delete-property/ dma-coherent; 33 /delete-property/ dma-coherent; 37 /delete-property/ dma-coherent; 41 /delete-property/ dma-coherent; 45 /delete-property/ dma-coherent; 49 /delete-property/ dma-coherent; [all …]
|
| /linux/drivers/of/ |
| H A D | of_private.h | 15 * struct alias_prop - Alias property in 'aliases' node 17 * @alias: Alias property name 22 * The structure represents one alias property of 'aliases' node as 51 struct property *prop, struct property *old_prop); 61 struct property *prop, struct property *old_prop) in of_property_notify() 75 int __of_add_property_sysfs(struct device_node *np, struct property *pp); 76 void __of_remove_property_sysfs(struct device_node *np, const struct property *prop); 77 void __of_update_property_sysfs(struct device_node *np, struct property *newprop, 78 const struct property *oldprop); 82 static inline int __of_add_property_sysfs(struct device_node *np, struct property *pp) in __of_add_property_sysfs() [all …]
|
| H A D | dynamic.c | 109 struct property *prop, *old_prop = NULL; in of_reconfig_get_state_change() 158 /* no status property -> enabled (legacy) */ in of_reconfig_get_state_change() 166 /* no status property -> enabled (legacy) */ in of_reconfig_get_state_change() 186 struct property *prop, struct property *oldprop) in of_property_notify() 310 void __of_prop_free(struct property *prop) in __of_prop_free() 317 static void property_list_free(struct property *prop_list) in property_list_free() 319 struct property *prop, *next; in property_list_free() 399 * __of_prop_dup - Copy a property dynamically. 400 * @prop: Property to copy 403 * Copy a property by dynamically allocating the memory of both the [all …]
|
| H A D | base.c | 210 static struct property *__of_find_property(const struct device_node *np, in __of_find_property() 213 struct property *pp; in __of_find_property() 229 struct property *of_find_property(const struct device_node *np, in of_find_property() 233 struct property *pp; in of_find_property() 284 * Find a property with a given name for a given node 290 const struct property *pp = __of_find_property(np, name, lenp); in __of_get_property() 296 * Find a property with a given name for a given node 302 const struct property *pp = of_find_property(np, name, lenp); in of_get_property() 341 const struct property *prop; in __of_device_is_compatible() 377 * the device's "compatible" property [all …]
|
| /linux/drivers/mfd/ |
| H A D | si476x-prop.c | 46 u16 property) in si476x_core_is_valid_property_a10() argument 80 return si476x_core_element_is_in_range(property, valid_ranges, in si476x_core_is_valid_property_a10() 82 si476x_core_element_is_in_array(property, valid_properties, in si476x_core_is_valid_property_a10() 87 u16 property) in si476x_core_is_valid_property_a20() argument 100 return si476x_core_is_valid_property_a10(core, property) || in si476x_core_is_valid_property_a20() 101 si476x_core_element_is_in_range(property, valid_ranges, in si476x_core_is_valid_property_a20() 103 si476x_core_element_is_in_array(property, valid_properties, in si476x_core_is_valid_property_a20() 108 u16 property) in si476x_core_is_valid_property_a30() argument 126 return si476x_core_is_valid_property_a20(core, property) || in si476x_core_is_valid_property_a30() 127 si476x_core_element_is_in_range(property, valid_ranges, in si476x_core_is_valid_property_a30() [all …]
|
| /linux/include/drm/ |
| H A D | drm_mode_config.h | 539 * List of property type objects linked with &drm_property.head. This is 567 * Mutex for blob property allocation and management, protects 575 * List of all the blob property objects linked with 583 * @edid_property: Default connector property to hold the EDID of the 588 * @dpms_property: Default connector property to control the 593 * @path_property: Default connector property to hold the DP MST path 598 * @tile_property: Default connector property to store the tile 604 * @link_status_property: Default connector property for link status 609 * @plane_type_property: Default plane property to differentiate 614 * @prop_src_x: Default atomic plane property for the plane source [all …]
|
| /linux/Documentation/devicetree/bindings/powerpc/ |
| H A D | ibm,powerpc-cpu-features.txt | 43 revision of the compatible property. 104 This property describes the privilege levels and/or software components 107 If bit 0 is set, then the hwcap-bit-nr property will exist. 118 This property describes the HV privilege support required to enable the 119 feature to lesser privilege levels. If the property does not exist then no 125 If the HFSCR bit is set, then the hfscr-bit-nr property will exist and 137 This property describes the OS privilege support required to enable the 138 feature to lesser privilege levels. If the property does not exist then no 144 If the FSCR bit is set, then the fscr-bit-nr property will exist and 153 This property exists when the hv-support property HFSCR bit is set. This [all …]
|
| /linux/Documentation/devicetree/bindings/mux/ |
| H A D | mux-consumer.yaml | 14 want to use with a property containing a 'mux-ctrl-list': 23 each mux controller property must be documented in the device tree binding for 24 each consumer. An optional property "mux-control-names" may contain a list of 26 property. 29 be set to, the property "mux-states" must be used. An optional property 31 each of the multiplixer states listed in the "mux-states" property. 35 needs to set multiple states in a mux controller, then property 37 controller to a given state then property "mux-states" can be used. 55 "mux-control-names" property to map the name of the requested mux 56 controller to an index into the list given by the "mux-controls" property. [all …]
|
| /linux/drivers/gpu/drm/logicvc/ |
| H A D | logicvc_of.c | 129 struct logicvc_of_property *property; in logicvc_of_property_parse_u32() local 137 property = &logicvc_of_properties[index]; in logicvc_of_property_parse_u32() 139 if (!property->optional && in logicvc_of_property_parse_u32() 140 !of_property_read_bool(of_node, property->name)) in logicvc_of_property_parse_u32() 143 if (property->sv) { in logicvc_of_property_parse_u32() 144 ret = of_property_read_string(of_node, property->name, &string); in logicvc_of_property_parse_u32() 148 ret = logicvc_of_property_sv_value(property->sv, string, in logicvc_of_property_parse_u32() 153 ret = of_property_read_u32(of_node, property->name, &value); in logicvc_of_property_parse_u32() 158 if (property->range[0] || property->range[1]) in logicvc_of_property_parse_u32() 159 if (value < property->range[0] || value > property->range[1]) in logicvc_of_property_parse_u32() [all …]
|
| /linux/arch/arm/boot/dts/nxp/imx/ |
| H A D | imx6ulz.dtsi | 9 /delete-property/ ethernet0; 10 /delete-property/ ethernet1; 11 /delete-property/ i2c2; 12 /delete-property/ i2c3; 13 /delete-property/ serial4; 14 /delete-property/ serial5; 15 /delete-property/ serial6; 16 /delete-property/ serial7; 17 /delete-property/ spi2; 18 /delete-property/ spi3;
|
| /linux/drivers/gpu/drm/i915/display/ |
| H A D | intel_atomic.c | 51 * @connector: Connector to get the property for. 52 * @state: Connector state to retrieve the property from. 53 * @property: Property to retrieve. 54 * @val: Return value for the property. 56 * Returns the atomic property value for a digital connector. 60 struct drm_property *property, in intel_digital_connector_atomic_get_property() argument 67 if (property == display->properties.force_audio) in intel_digital_connector_atomic_get_property() 69 else if (property == display->properties.broadcast_rgb) in intel_digital_connector_atomic_get_property() 73 "Unknown property [PROP:%d:%s]\n", in intel_digital_connector_atomic_get_property() 74 property->base.id, property->name); in intel_digital_connector_atomic_get_property() [all …]
|
| /linux/include/linux/ |
| H A D | extcon.h | 92 * When adding the new extcon property, they *must* have 98 * The naming style of property 99 * : EXTCON_PROP_[type]_[property name] 101 * EXTCON_PROP_USB_[property name] : USB property 102 * EXTCON_PROP_CHG_[property name] : Charger property 103 * EXTCON_PROP_JACK_[property name] : Jack property 104 * EXTCON_PROP_DISP_[property name] : Display property 159 * Define the type of property's value. 161 * Define the property's value as union type. Because each property 178 * Following APIs get the property of each external connector. [all …]
|
| /linux/Documentation/devicetree/bindings/interrupt-controller/ |
| H A D | interrupts.txt | 8 "interrupts" property, an "interrupts-extended" property, or both. If both are 19 The "interrupt-parent" property is used to specify the controller to which 21 controller node. This property is inherited, so it may be specified in an 23 "interrupts" property are always in reference to the node's interrupt parent. 25 The "interrupts-extended" property is a special form; useful when a node needs 27 the inherited one. Each entry in this property contains both the parent phandle 37 property. This is a empty, boolean property. An additional "#interrupt-cells" 38 property defines the number of cells needed to specify a single interrupt. 46 The #interrupt-cells property is set to 1 and the single cell defines the 69 The #interrupt-cells property is set to 2 and the first cell defines the [all …]
|
| /linux/security/ipe/ |
| H A D | eval.c | 112 * evaluate_boot_verified() - Evaluate @ctx for the boot verified property. 126 * evaluate_dmv_roothash() - Evaluate @ctx against a dmv roothash property. 128 * @p: Supplies a pointer to the property being evaluated. 152 * evaluate_dmv_sig_false() - Evaluate @ctx against a dmv sig false property. 156 * * %true - The current @ctx match the property 157 * * %false - The current @ctx doesn't match the property 165 * evaluate_dmv_sig_true() - Evaluate @ctx against a dmv sig true property. 169 * * %true - The current @ctx match the property 170 * * %false - The current @ctx doesn't match the property 190 * evaluate_fsv_digest() - Evaluate @ctx against a fsv digest property. [all …]
|
| /linux/Documentation/devicetree/bindings/phy/ |
| H A D | nvidia,tegra194-xusb-padctl.yaml | 84 The "status" property is used to enable or disable the use of a pad. 86 order to use the pad and any of its lanes, this property must be set 217 The "status" property is used to enable or disable the use of a port. 219 order to use the port, this property must be set to "okay". 240 description: A boolean property whose presence determines 241 that a port is internal. In the absence of this property 247 A boolean property whole presence indicates that the port 278 description: A boolean property whose presence determines 279 that a port is internal. In the absence of this property 285 A boolean property whole presence indicates that the port [all …]
|
| /linux/Documentation/devicetree/bindings/opp/ |
| H A D | opp-v2-base.yaml | 31 Missing property means devices have independent clock/voltage/current 43 property. 49 required property for all device nodes, unless another "required" 50 property to uniquely identify the OPP nodes exists. Devices like power 51 domains must have another (implementation dependent) property. 138 should match the number of interconnect paths. This property is only 164 This property allows a platform to enable only a subset of the OPPs 168 Each block present in the array of blocks in this property, represents 199 OPP of the device(s), whose OPP's phandle is present in this property, 201 this property is present). [all …]
|
| /linux/Documentation/devicetree/bindings/memory-controllers/ |
| H A D | st,stm32-fmc2-ebi-props.yaml | 85 description: This property configures the byte lane setup timing 89 description: This property defines the duration of the address setup 93 description: This property defines the duration of the address hold 98 description: This property defines the duration of the data setup phase 102 description: This property defines the delay in nanoseconds between the 106 description: This property defines the duration of the data hold phase 110 description: This property defines the FMC_CLK output signal period in 114 description: This property defines the data latency before reading or 118 description: This property defines the duration of the address setup 122 description: This property defines the duration of the address hold [all …]
|
| /linux/Documentation/devicetree/bindings/usb/ |
| H A D | chipidea,usb2-common.yaml | 57 AHBBRST at SBUSCFG, the range is from 0x0 to 0x7. This property is 59 meaning of each value. If this property is not existed, it will use 70 of this property will only take effect if property "ahb-burst-config" 71 is set to 0, if this property is missing the reset default of the 82 this property will only take effect if property "ahb-burst-config" 83 is set to 0, if this property is missing the reset default of the 109 After setting this property, the value of register ttctrl.ttha 111 value. It needs to be very carefully for setting this property, it 114 at RTL is 0, so this property only affects siTD. 116 If this property is not set, the max packet size is 1023 bytes, and [all …]
|
| /linux/arch/powerpc/platforms/pseries/ |
| H A D | reconfig.c | 23 static int pSeries_reconfig_add_node(const char *path, struct property *proplist) in pSeries_reconfig_add_node() 90 static void release_prop_list(const struct property *prop) in release_prop_list() 92 struct property *next; in release_prop_list() 103 * parse_next_property - process the next property from raw input buffer 106 * @name: return value; set to property name in buf 108 * @value: return value; set to the property value in buf 123 printk(KERN_ERR "property parse failed in %s at line %d\n", in parse_next_property() 130 printk(KERN_ERR "property parse failed in %s at line %d\n", in parse_next_property() 139 printk(KERN_ERR "property parse failed in %s at line %d\n", in parse_next_property() 144 printk(KERN_ERR "property parse failed in %s at line %d\n", in parse_next_property() [all …]
|