Searched refs:property (Results 1 - 25 of 1004) sorted by relevance

1234567891011>>

/linux-master/drivers/thunderbolt/
H A Dproperty.c3 * Thunderbolt XDomain property support
82 struct tb_property *property; local
84 property = kzalloc(sizeof(*property), GFP_KERNEL);
85 if (!property)
88 strcpy(property->key, key);
89 property->type = type;
90 INIT_LIST_HEAD(&property->list);
92 return property;
99 struct tb_property *property; local
193 struct tb_property *property; local
263 tb_property_free(struct tb_property *property) argument
295 struct tb_property *property, *tmp; local
312 const struct tb_property *property; local
352 const struct tb_property *property; local
514 struct tb_property *property, *p = NULL; local
584 struct tb_property *property; local
615 struct tb_property *property; local
651 struct tb_property *property; local
683 struct tb_property *property; local
706 tb_property_remove(struct tb_property *property) argument
725 struct tb_property *property; local
[all...]
/linux-master/include/linux/mfd/
H A Dsyscon.h24 const char *property);
26 const char *property,
30 const char *property);
49 const char *property)
56 const char *property,
65 const char *property)
47 syscon_regmap_lookup_by_phandle( struct device_node *np, const char *property) argument
54 syscon_regmap_lookup_by_phandle_args( struct device_node *np, const char *property, int arg_count, unsigned int *out_args) argument
63 syscon_regmap_lookup_by_phandle_optional( struct device_node *np, const char *property) argument
H A Daltera-sysmgr.h19 const char *property);
23 const char *property)
22 altr_sysmgr_regmap_lookup_by_phandle(struct device_node *np, const char *property) argument
/linux-master/arch/powerpc/include/asm/
H A Dmpc5xxx.h14 #include <linux/property.h>
/linux-master/drivers/gpu/drm/logicvc/
H A Dlogicvc_of.c129 struct logicvc_of_property *property; local
137 property = &logicvc_of_properties[index];
139 if (!property->optional &&
140 !of_property_read_bool(of_node, property->name))
143 if (property->sv) {
144 ret = of_property_read_string(of_node, property->name, &string);
148 ret = logicvc_of_property_sv_value(property->sv, string,
153 ret = of_property_read_u32(of_node, property->name, &value);
158 if (property->range[0] || property
170 struct logicvc_of_property *property; local
[all...]
/linux-master/drivers/gpu/drm/
H A Ddrm_property.c44 * property types and ranges.
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
95 * A pointer to the newly created property o
101 struct drm_property *property = NULL; local
167 struct drm_property *property; local
216 struct drm_property *property; local
246 struct drm_property *property; local
336 struct drm_property *property; local
390 drm_property_add_enum(struct drm_property *property, uint64_t value, const char *name) argument
441 drm_property_destroy(struct drm_device *dev, struct drm_property *property) argument
462 struct drm_property *property; local
933 drm_property_change_valid_get(struct drm_property *property, uint64_t value, struct drm_mode_object **ref) argument
989 drm_property_change_valid_put(struct drm_property *property, struct drm_mode_object *ref) argument
[all...]
H A Ddrm_atomic_uapi.c61 * the enable property.
110 * @blob: pointer to blob property to use for mode
112 * Set a mode (originating from a blob property) on the desired CRTC state.
113 * This function will take a reference on the blob property for the CRTC state,
114 * and release the reference held on the state's existing mode property, if any
366 struct drm_crtc_state *state, struct drm_property *property,
374 if (property == config->prop_active)
376 else if (property == config->prop_mode_id) {
382 } else if (property == config->prop_vrr_enabled) {
384 } else if (property
365 drm_atomic_crtc_set_property(struct drm_crtc *crtc, struct drm_crtc_state *state, struct drm_property *property, uint64_t val) argument
434 drm_atomic_crtc_get_property(struct drm_crtc *crtc, const struct drm_crtc_state *state, struct drm_property *property, uint64_t *val) argument
470 drm_atomic_plane_set_property(struct drm_plane *plane, struct drm_plane_state *state, struct drm_file *file_priv, struct drm_property *property, uint64_t val) argument
582 drm_atomic_plane_get_property(struct drm_plane *plane, const struct drm_plane_state *state, struct drm_property *property, uint64_t *val) argument
668 drm_atomic_connector_set_property(struct drm_connector *connector, struct drm_connector_state *state, struct drm_file *file_priv, struct drm_property *property, uint64_t val) argument
794 drm_atomic_connector_get_property(struct drm_connector *connector, const struct drm_connector_state *state, struct drm_property *property, uint64_t *val) argument
876 drm_atomic_get_property(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
[all...]
H A Ddrm_mode_object.c221 * drm_object_attach_property - attach a property to a modeset object
223 * @property: property to attach
224 * @init_val: initial value of the property
226 * This attaches the given property to the modeset object with the given initial
234 struct drm_property *property,
238 struct drm_device *dev = property->dev;
251 WARN(1, "Failed to attach object property (type: 0x%x). Please "
258 obj->properties->properties[count] = property;
265 * drm_object_property_set_value - set the value of a property
233 drm_object_attach_property(struct drm_mode_object *obj, struct drm_property *property, uint64_t init_val) argument
283 drm_object_property_set_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t val) argument
302 __drm_object_property_get_prop_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
318 __drm_object_property_get_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
351 drm_object_property_get_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
376 drm_object_property_get_default_value(struct drm_mode_object *obj, struct drm_property *property, uint64_t *val) argument
566 struct drm_property *property; local
[all...]
/linux-master/drivers/of/
H A Dof_private.h14 * struct alias_prop - Alias property in 'aliases' node
16 * @alias: Alias property name
21 * The structure represents one alias property of 'aliases' node as
47 struct property *prop, struct property *old_prop);
57 struct property *prop, struct property *old_prop)
71 int __of_add_property_sysfs(struct device_node *np, struct property *pp);
72 void __of_remove_property_sysfs(struct device_node *np, struct property *prop);
73 void __of_update_property_sysfs(struct device_node *np, struct property *newpro
[all...]
H A Dkobj.c35 struct property *pp = container_of(bin_attr, struct property, attr);
63 int __of_add_property_sysfs(struct device_node *np, struct property *pp)
87 void __of_sysfs_remove_bin_file(struct device_node *np, struct property *prop)
96 void __of_remove_property_sysfs(struct device_node *np, struct property *prop)
103 void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
104 struct property *oldprop)
119 struct property *pp;
151 struct property *pp;
/linux-master/drivers/mfd/
H A Dsi476x-prop.c46 u16 property)
80 return si476x_core_element_is_in_range(property, valid_ranges,
82 si476x_core_element_is_in_array(property, valid_properties,
87 u16 property)
100 return si476x_core_is_valid_property_a10(core, property) ||
101 si476x_core_element_is_in_range(property, valid_ranges,
103 si476x_core_element_is_in_array(property, valid_properties,
108 u16 property)
126 return si476x_core_is_valid_property_a20(core, property) ||
127 si476x_core_element_is_in_range(property, valid_range
45 si476x_core_is_valid_property_a10(struct si476x_core *core, u16 property) argument
86 si476x_core_is_valid_property_a20(struct si476x_core *core, u16 property) argument
107 si476x_core_is_valid_property_a30(struct si476x_core *core, u16 property) argument
135 si476x_core_is_valid_property(struct si476x_core *core, u16 property) argument
150 si476x_core_is_readonly_property(struct si476x_core *core, u16 property) argument
[all...]
/linux-master/include/linux/gpio/
H A Dproperty.h5 #include <linux/property.h>
/linux-master/drivers/bus/
H A Dtegra-gmi.c97 u32 property, ranges[4]; local
148 * CS# from the reg property instead.
150 err = of_property_read_u32(child, "reg", &property);
153 "failed to decode CS: no reg property found\n");
157 property = ranges[1];
161 if (property >= TEGRA_GMI_MAX_CHIP_SELECT) {
162 dev_err(gmi->dev, "invalid chip select: %d", property);
167 gmi->snor_config |= TEGRA_GMI_CS_SELECT(property);
170 if (!of_property_read_u32(child, "nvidia,snor-muxed-width", &property))
171 gmi->snor_timing0 |= TEGRA_GMI_MUXED_WIDTH(property);
[all...]
/linux-master/drivers/base/test/
H A DMakefile7 obj-$(CONFIG_DRIVER_PE_KUNIT_TEST) += property-entry-test.o
/linux-master/include/drm/
H A Ddrm_sysfs.h16 struct drm_property *property);
H A Ddrm_mode_object.h65 * struct drm_object_properties - property tracking for &drm_mode_object
79 * a better job of detaching property from mode objects to avoid
80 * dangling property pointers:
85 * @values: Array to store the property values, matching @properties. Do
128 struct drm_property *property,
131 struct drm_property *property,
134 struct drm_property *property,
138 struct drm_property *property,
/linux-master/arch/sparc/include/asm/
H A Doplib_32.h122 /* Get the length, at the passed node, of the given property type.
123 * Returns -1 on error (ie. no such property at this node).
125 int prom_getproplen(phandle thisnode, const char *property);
127 /* Fetch the requested property using the given buffer. Returns
130 int __must_check prom_getproperty(phandle thisnode, const char *property,
133 /* Acquire an integer property. */
134 int prom_getint(phandle node, char *property);
136 /* Acquire an integer property, with a default value. */
137 int prom_getintdefault(phandle node, char *property, int defval);
139 /* Acquire a boolean property,
[all...]
H A Doplib_64.h190 /* Get the length, at the passed node, of the given property type.
191 * Returns -1 on error (ie. no such property at this node).
193 int prom_getproplen(phandle thisnode, const char *property);
195 /* Fetch the requested property using the given buffer. Returns
198 int prom_getproperty(phandle thisnode, const char *property,
201 /* Acquire an integer property. */
202 int prom_getint(phandle node, const char *property);
204 /* Acquire an integer property, with a default value. */
205 int prom_getintdefault(phandle node, const char *property, int defval);
207 /* Acquire a boolean property,
[all...]
/linux-master/arch/arm/mach-tegra/
H A Dboard-paz00.c11 #include <linux/property.h>
/linux-master/arch/powerpc/sysdev/
H A Dmpc5xxx_clocks.c5 #include <linux/property.h>
/linux-master/tools/testing/selftests/net/
H A Daltnames.sh20 ip link property add $DUMMY_DEV altname $SHORT_NAME
35 ip link property add $DUMMY_DEV altname $LONG_NAME
47 ip link property del $DUMMY_DEV altname $SHORT_NAME
/linux-master/arch/m68k/include/asm/
H A Doplib.h223 /* Get the length, at the passed node, of the given property type.
224 * Returns -1 on error (ie. no such property at this node).
226 extern int prom_getproplen(int thisnode, char *property);
228 /* Fetch the requested property using the given buffer. Returns
231 extern int prom_getproperty(int thisnode, char *property,
234 /* Acquire an integer property. */
235 extern int prom_getint(int node, char *property);
237 /* Acquire an integer property, with a default value. */
238 extern int prom_getintdefault(int node, char *property, int defval);
240 /* Acquire a boolean property,
[all...]
/linux-master/drivers/power/reset/
H A Dgpio-restart.c53 u32 property; local
76 ret = of_property_read_u32(pdev->dev.of_node, "priority", &property);
78 if (property > 255)
79 dev_err(&pdev->dev, "Invalid priority property: %u\n",
80 property);
82 priority = property;
/linux-master/scripts/dtc/
H A Dlivetree.c39 struct property *build_property(char *name, struct data val,
42 struct property *new = xmalloc(sizeof(*new));
53 struct property *build_property_delete(char *name)
55 struct property *new = xmalloc(sizeof(*new));
65 struct property *chain_property(struct property *first, struct property *list)
73 struct property *reverse_properties(struct property *first)
75 struct property *
[all...]
H A Ddtc.h206 struct property { struct
211 struct property *next;
220 struct property *proplist;
263 struct property *build_property(char *name, struct data val,
265 struct property *build_property_delete(char *name);
266 struct property *chain_property(struct property *first, struct property *list);
267 struct property *reverse_properties(struct property *firs
[all...]

Completed in 435 milliseconds

1234567891011>>