Home
last modified time | relevance | path

Searched refs:component (Results 1 – 200 of 205) sorted by relevance

12

/linux-4.4.14/sound/soc/
Dsoc-io.c28 int snd_soc_component_read(struct snd_soc_component *component, in snd_soc_component_read() argument
33 if (component->regmap) in snd_soc_component_read()
34 ret = regmap_read(component->regmap, reg, val); in snd_soc_component_read()
35 else if (component->read) in snd_soc_component_read()
36 ret = component->read(component, reg, val); in snd_soc_component_read()
52 int snd_soc_component_write(struct snd_soc_component *component, in snd_soc_component_write() argument
55 if (component->regmap) in snd_soc_component_write()
56 return regmap_write(component->regmap, reg, val); in snd_soc_component_write()
57 else if (component->write) in snd_soc_component_write()
58 return component->write(component, reg, val); in snd_soc_component_write()
[all …]
Dsoc-core.c285 static void soc_init_component_debugfs(struct snd_soc_component *component) in soc_init_component_debugfs() argument
287 if (!component->card->debugfs_card_root) in soc_init_component_debugfs()
290 if (component->debugfs_prefix) { in soc_init_component_debugfs()
294 component->debugfs_prefix, component->name); in soc_init_component_debugfs()
296 component->debugfs_root = debugfs_create_dir(name, in soc_init_component_debugfs()
297 component->card->debugfs_card_root); in soc_init_component_debugfs()
301 component->debugfs_root = debugfs_create_dir(component->name, in soc_init_component_debugfs()
302 component->card->debugfs_card_root); in soc_init_component_debugfs()
305 if (!component->debugfs_root) { in soc_init_component_debugfs()
306 dev_warn(component->dev, in soc_init_component_debugfs()
[all …]
Dsoc-ops.c67 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in snd_soc_get_enum_double() local
73 ret = snd_soc_component_read(component, e->reg, &reg_val); in snd_soc_get_enum_double()
101 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in snd_soc_put_enum_double() local
118 return snd_soc_component_update_bits(component, e->reg, mask, val); in snd_soc_put_enum_double()
137 static int snd_soc_read_signed(struct snd_soc_component *component, in snd_soc_read_signed() argument
144 ret = snd_soc_component_read(component, reg, &val); in snd_soc_read_signed()
250 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in snd_soc_get_volsw() local
268 ret = snd_soc_read_signed(component, reg, mask, shift, sign_bit, &val); in snd_soc_get_volsw()
279 ret = snd_soc_read_signed(component, reg, mask, rshift, in snd_soc_get_volsw()
282 ret = snd_soc_read_signed(component, reg2, mask, shift, in snd_soc_get_volsw()
[all …]
Dsoc-cache.c29 codec->component.name); in snd_soc_cache_init()
49 codec->component.name); in snd_soc_cache_exit()
Dsoc-ac97.c72 ac97->dev.parent = codec->component.card->dev; in snd_soc_alloc_ac97_codec()
76 codec->component.card->snd_card->number, 0, in snd_soc_alloc_ac97_codec()
77 codec->component.name); in snd_soc_alloc_ac97_codec()
Dsoc-dapm.c554 if (!dapm->component) in soc_dapm_prefix()
556 return dapm->component->name_prefix; in soc_dapm_prefix()
562 if (!dapm->component) in soc_dapm_read()
564 return snd_soc_component_read(dapm->component, reg, value); in soc_dapm_read()
570 if (!dapm->component) in soc_dapm_update_bits()
572 return snd_soc_component_update_bits(dapm->component, reg, in soc_dapm_update_bits()
579 if (!dapm->component) in soc_dapm_test_bits()
581 return snd_soc_component_test_bits(dapm->component, reg, mask, value); in soc_dapm_test_bits()
586 if (dapm->component) in soc_dapm_async_complete()
587 snd_soc_component_async_complete(dapm->component); in soc_dapm_async_complete()
[all …]
Dsoc-compress.c41 platform->component.name); in soc_compr_open()
89 platform->component.name); in soc_compr_open_fe()
712 codec->component.name); in snd_soc_new_compress()
Dsoc-pcm.c83 cpu_dai->component->active++; in snd_soc_runtime_activate()
86 rtd->codec_dais[i]->component->active++; in snd_soc_runtime_activate()
118 cpu_dai->component->active--; in snd_soc_runtime_deactivate()
120 rtd->codec_dais[i]->component->active--; in snd_soc_runtime_deactivate()
143 ignore &= rtd->codec_dais[i]->component->ignore_pmdown_time; in snd_soc_runtime_ignore_pmdown_time()
145 return rtd->cpu_dai->component->ignore_pmdown_time && ignore; in snd_soc_runtime_ignore_pmdown_time()
482 " %s: %d\n", platform->component.name, ret); in soc_pcm_open()
906 platform->component.name, ret); in soc_pcm_hw_params()
Dsoc-topology.c1784 remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET); in snd_soc_tplg_widget_remove()
/linux-4.4.14/drivers/base/
Dcomponent.c40 struct component { struct
67 static void component_attach_master(struct master *master, struct component *c) in component_attach_master()
75 static void component_detach_master(struct master *master, struct component *c) in component_detach_master()
90 struct component *c; in component_master_add_child()
141 struct component *c = list_first_entry(&master->components, in master_remove_components()
142 struct component, master_node); in master_remove_components()
158 struct component *component) in try_to_bring_up_master() argument
175 if (component && component->master != master) { in try_to_bring_up_master()
202 static int try_to_bring_up_masters(struct component *component) in try_to_bring_up_masters() argument
208 ret = try_to_bring_up_master(m, component); in try_to_bring_up_masters()
[all …]
DMakefile3 obj-y := component.o core.o bus.o dd.o syscore.o \
/linux-4.4.14/drivers/acpi/acpica/
Duttrack.c72 u32 component, const char *module, u32 line);
76 u32 component, const char *module, u32 line);
128 u32 component, const char *module, u32 line) in acpi_ut_allocate_and_track() argument
154 ACPI_MEM_MALLOC, component, module, in acpi_ut_allocate_and_track()
189 u32 component, in acpi_ut_allocate_zeroed_and_track() argument
216 ACPI_MEM_CALLOC, component, module, in acpi_ut_allocate_zeroed_and_track()
252 u32 component, const char *module, u32 line) in acpi_ut_free_and_track() argument
273 component, module, line); in acpi_ut_free_and_track()
368 u32 component, const char *module, u32 line) in acpi_ut_track_allocation() argument
402 allocation->component = component; in acpi_ut_track_allocation()
[all …]
Dacutils.h628 u32 component, const char *module, u32 line);
631 u32 component,
636 u32 component, const char *module, u32 line);
640 void acpi_ut_dump_allocations(u32 component, const char *module);
Dnsdump.c134 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component) in acpi_ns_dump_pathname() argument
141 if (!ACPI_IS_DEBUG_ENABLED(level, component)) { in acpi_ns_dump_pathname()
Dacnamesp.h201 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component);
Daclocal.h1164 u32 component; \
/linux-4.4.14/include/acpi/
Dacoutput.h287 #define ACPI_IS_DEBUG_ENABLED(level, component) \ argument
288 ((level & acpi_dbg_level) && (component & acpi_dbg_layer))
322 #define ACPI_DO_DEBUG_PRINT(function, level, line, filename, modulename, component, ...) \ argument
324 if (ACPI_IS_DEBUG_ENABLED (level, component)) \
326 function (level, line, filename, modulename, component, __VA_ARGS__); \
330 #define ACPI_ACTUAL_DEBUG(level, line, filename, modulename, component, ...) \ argument
332 filename, modulename, component, __VA_ARGS__)
334 #define ACPI_ACTUAL_DEBUG_RAW(level, line, filename, modulename, component, ...) \ argument
336 filename, modulename, component, __VA_ARGS__)
473 #define ACPI_IS_DEBUG_ENABLED(level, component) 0 argument
/linux-4.4.14/include/sound/
Dsoc.h580 int snd_soc_add_component_controls(struct snd_soc_component *component,
765 int (*of_xlate_dai_name)(struct snd_soc_component *component,
834 void (*init_debugfs)(struct snd_soc_component *component);
858 struct snd_soc_component component; member
949 struct snd_soc_component component; member
1068 int (*init)(struct snd_soc_component *component);
1194 struct snd_soc_component *component; /* Only valid for AUX dev rtds */ member
1259 struct snd_soc_component *component) in snd_soc_component_to_codec() argument
1261 return container_of(component, struct snd_soc_codec, component); in snd_soc_component_to_codec()
1272 struct snd_soc_component *component) in snd_soc_component_to_platform() argument
[all …]
Dsoc-dai.h287 struct snd_soc_component *component; member
Dcore.h264 int snd_component_add(struct snd_card *card, const char *component);
Dsoc-dapm.h623 struct snd_soc_component *component; /* parent component */ member
/linux-4.4.14/drivers/misc/
Denclosure.c149 edev->component[i].number = -1; in enclosure_register()
150 edev->component[i].slot = -1; in enclosure_register()
151 edev->component[i].power_status = 1; in enclosure_register()
183 if (edev->component[i].number != -1) in enclosure_unregister()
184 device_unregister(&edev->component[i].cdev); in enclosure_unregister()
266 ecomp = &edev->component[i]; in enclosure_component_find_by_name()
305 ecomp = &edev->component[number]; in enclosure_component_alloc()
374 int enclosure_add_device(struct enclosure_device *edev, int component, in enclosure_add_device() argument
379 if (!edev || component >= edev->components) in enclosure_add_device()
382 cdev = &edev->component[component]; in enclosure_add_device()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/media/i2c/
Dtvp514x.txt5 video formats into digital video component. The tvp514x decoder supports analog-
6 to-digital (A/D) conversion of component RGB and YPbPr signals as well as A/D
8 component YCbCr.
Dadv7343.txt5 (CVBS), S-Video (Y-C), and component (YPrPb/RGB) analog outputs in standard
/linux-4.4.14/Documentation/DocBook/
Dalsa-driver-api.xml.db9 API-snd-component-add
223 API-snd-soc-component-to-codec
224 API-snd-soc-component-to-platform
225 API-snd-soc-dapm-to-component
228 API-snd-soc-component-get-dapm
237 API-snd-soc-kcontrol-component
242 API-snd-soc-add-component-controls
259 API-snd-soc-component-init-regmap
260 API-snd-soc-component-exit-regmap
261 API-snd-soc-unregister-component
[all …]
Dgpu.xml.db565 API-i915-audio-component-init
566 API-i915-audio-component-cleanup
567 API-struct-i915-audio-component-ops
568 API-struct-i915-audio-component
Ddevice-drivers.xml.db718 API-snd-component-add
/linux-4.4.14/drivers/staging/rtl8192e/
Drtllib_debug.h61 #define RT_TRACE(component, x, args...) \ argument
63 if (rt_global_debug_component & component) \
Dlicense166 the executable runs, unless that component itself accompanies the
/linux-4.4.14/drivers/char/agp/
DKconfig33 This option gives you AGP support for the GLX component of
48 This option gives you AGP support for the GLX component of
55 This option gives you AGP support for the GLX component of
62 This option gives you AGP support for the GLX component of
73 This option gives you AGP support for the GLX component of X
84 This option gives you AGP support for the GLX component of
91 This option gives you AGP support for the GLX component of
108 This option gives you AGP support for the GLX component of
/linux-4.4.14/Documentation/devicetree/bindings/clock/ti/
Dcomposite.txt16 The binding must provide a list of the component clocks that shall be
17 merged to this clock. The component clocks shall be of one of the
27 - clocks : link phandles of component clocks
/linux-4.4.14/sound/soc/codecs/
Dsigmadsp.h36 struct snd_soc_component *component; member
62 struct snd_soc_component *component);
Dmax9768.c132 static int max9768_probe(struct snd_soc_component *component) in max9768_probe() argument
134 struct max9768 *max9768 = snd_soc_component_get_drvdata(component); in max9768_probe()
145 ret = snd_soc_add_component_controls(component, max9768_mute, in max9768_probe()
Dts3a227e.h14 int ts3a227e_enable_jack_detect(struct snd_soc_component *component,
Dcx20442.c256 codec->component.card->pop_time = 0; in v253_close()
284 codec->component.card->pop_time = 1; in v253_receive()
373 codec->component.card->pop_time = 0; in cx20442_codec_probe()
Dsigmadsp.c655 return snd_ctl_add(sigmadsp->component->card->snd_card, kcontrol); in sigmadsp_alloc_control()
661 struct snd_card *card = sigmadsp->component->card->snd_card; in sigmadsp_activate_ctrl()
706 struct snd_soc_component *component) in sigmadsp_attach() argument
712 sigmadsp->component = component; in sigmadsp_attach()
Dts3a227e.c238 int ts3a227e_enable_jack_detect(struct snd_soc_component *component, in ts3a227e_enable_jack_detect() argument
241 struct ts3a227e *ts3a227e = snd_soc_component_get_drvdata(component); in ts3a227e_enable_jack_detect()
Dac97.c76 ret = snd_ac97_bus(codec->component.card->snd_card, 0, soc_ac97_ops, in ac97_soc_probe()
Drt5645.c500 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5645_hweq_get() local
501 struct rt5645_priv *rt5645 = snd_soc_component_get_drvdata(component); in rt5645_hweq_get()
526 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5645_hweq_put() local
527 struct rt5645_priv *rt5645 = snd_soc_component_get_drvdata(component); in rt5645_hweq_put()
571 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5645_spk_put_volsw() local
572 struct rt5645_priv *rt5645 = snd_soc_component_get_drvdata(component); in rt5645_spk_put_volsw()
Dwm_adsp.c350 if (!codec->component.debugfs_root) { in wm_adsp2_init_debugfs()
360 root = debugfs_create_dir(root_name, codec->component.debugfs_root); in wm_adsp2_init_debugfs()
1800 dsp->card = codec->component.card; in wm_adsp1_event()
1999 dsp->card = codec->component.card; in wm_adsp2_early_event()
Drt5677.c804 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5677_dsp_vad_get() local
805 struct rt5677_priv *rt5677 = snd_soc_component_get_drvdata(component); in rt5677_dsp_vad_get()
815 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5677_dsp_vad_put() local
816 struct rt5677_priv *rt5677 = snd_soc_component_get_drvdata(component); in rt5677_dsp_vad_put()
817 struct snd_soc_codec *codec = snd_soc_component_to_codec(component); in rt5677_dsp_vad_put()
Dadau17x1.c830 ret = sigmadsp_attach(adau->sigmadsp, &codec->component); in adau17x1_add_widgets()
Dadau1701.c673 ret = sigmadsp_attach(adau1701->sigmadsp, &codec->component); in adau1701_probe()
Dwm8960.c496 list_for_each_entry(w, &codec->component.card->widgets, list) { in wm8960_add_widgets()
Dtlv320dac33.c1407 codec->component.name, codec); in dac33_soc_probe()
/linux-4.4.14/Documentation/devicetree/bindings/arm/
Dcoresight.txt8 sink. Each CoreSight component device should use these properties to describe
24 set(s) of the component.
26 * clocks: the clocks associated to this component.
32 clocks the core of that coresight component. The latter clock
35 * port or ports: The representation of the component's port
Dcci.txt23 Description: Describes a CCI cache coherent Interconnect component
225 This CCI node corresponds to a CCI component whose control registers sits
/linux-4.4.14/include/linux/
Denclosure.h115 struct enclosure_component component[0]; member
138 int enclosure_add_device(struct enclosure_device *enclosure, int component,
/linux-4.4.14/sound/soc/omap/
DKconfig21 The hdmi audio driver implements cpu-dai component using the
22 callbacks provided by OMAPDSS and registers the component
24 component also under DSS HDMI device. Dummy codec is used as
25 as codec component. The hdmi audio driver implements also
Dams-delta.c304 struct snd_soc_dapm_context *dapm = &codec->component.card->dapm; in cx81801_close()
/linux-4.4.14/fs/nfs/
Dnfs4namespace.c43 const struct nfs4_string *component = &pathname->components[n]; in nfs4_pathname_string() local
44 buflen -= component->len + 1; in nfs4_pathname_string()
47 end -= component->len; in nfs4_pathname_string()
48 memcpy(end, component->data, component->len); in nfs4_pathname_string()
Dnfs4xdr.c3580 struct nfs4_string *component = &path->components[path->ncomponents]; in decode_pathname() local
3581 status = decode_opaque_inline(xdr, &component->len, &component->data); in decode_pathname()
3587 component->len, component->data); in decode_pathname()
/linux-4.4.14/sound/soc/intel/boards/
Dcht_bsw_max98090_ti.c202 static int cht_max98090_headset_init(struct snd_soc_component *component) in cht_max98090_headset_init() argument
204 struct snd_soc_card *card = component->card; in cht_max98090_headset_init()
207 return ts3a227e_enable_jack_detect(component, &ctx->jack); in cht_max98090_headset_init()
Dbroadwell.c226 if (!strcmp(codec->component.name, "i2c-INT343A:00")) { in broadwell_suspend()
239 if (!strcmp(codec->component.name, "i2c-INT343A:00")) { in broadwell_resume()
Dcht_bsw_rt5672.c289 if (!strcmp(codec->component.name, "i2c-10EC5670:00")) { in cht_suspend_pre()
303 if (!strcmp(codec->component.name, "i2c-10EC5670:00")) { in cht_resume_post()
/linux-4.4.14/drivers/media/pci/ivtv/
Divtv-gpio.h27 int ivtv_reset_tuner_gpio(void *dev, int component, int cmd, int value);
Divtv-gpio.c128 int ivtv_reset_tuner_gpio(void *dev, int component, int cmd, int value) in ivtv_reset_tuner_gpio() argument
/linux-4.4.14/drivers/media/pci/cx18/
Dcx18-gpio.h34 int cx18_reset_tuner_gpio(void *dev, int component, int cmd, int value);
Dcx18-gpio.c338 int cx18_reset_tuner_gpio(void *dev, int component, int cmd, int value) in cx18_reset_tuner_gpio() argument
/linux-4.4.14/sound/soc/rockchip/
Drockchip_max98090.c123 static int rk_98090_headset_init(struct snd_soc_component *component) in rk_98090_headset_init() argument
125 return ts3a227e_enable_jack_detect(component, &headset_jack); in rk_98090_headset_init()
/linux-4.4.14/drivers/net/wireless/ipw2x00/
DKconfig174 networking stack. This component is deprecated in favor of the
175 mac80211 component.
178 bool "Full debugging output for the LIBIPW component"
182 libipw component.
198 component, you most likely want to say N here.
/linux-4.4.14/Documentation/acpi/
Ddebug.txt17 When CONFIG_ACPI_DEBUG=y, you can select the component and level of messages
23 debug_layer (component)
146 Show all valid component values:
Dscan_handlers.txt31 component represented by the given device node which can be determined on the
Dmethod-tracing.txt20 ACPI_DEBUG_PRINT() macro can be reduced at 2 levels - per-component
/linux-4.4.14/drivers/usb/mon/
DKconfig8 If you select this option, a component which captures the USB traffic
/linux-4.4.14/Documentation/devicetree/bindings/net/
Dhisilicon-hns-mdio.txt7 - #size-cells: Must be <0>. MDIO addresses have no size component.
Dcavium-mdio.txt12 - #size-cells: Must be <0>. MDIO addresses have no size component.
/linux-4.4.14/drivers/media/usb/tm6000/
Dtm6000-alsa.c422 char component[14]; in tm6000_audio_init() local
445 sprintf(component, "USB%04x:%04x", in tm6000_audio_init()
448 snd_component_add(card, component); in tm6000_audio_init()
Dtm6000.h312 int tm6000_tuner_callback(void *ptr, int component, int command, int arg);
313 int tm6000_xc5000_callback(void *ptr, int component, int command, int arg);
Dtm6000-cards.c691 int tm6000_xc5000_callback(void *ptr, int component, int command, int arg) in tm6000_xc5000_callback() argument
717 int tm6000_tuner_callback(void *ptr, int component, int command, int arg) in tm6000_tuner_callback() argument
/linux-4.4.14/Documentation/fb/
Dpxafb.txt95 for YUV planar modes, it is a requirement for the component
96 with minimum bits per pixel, e.g. for YUV420, Cr component
124 and lengths of each component within the framebuffer.
Dapi.txt114 Pixels are broken into red, green and blue components, and each component
118 Each component is stored in a macropixel according to the variable screen
132 Pixels are broken into red, green and blue components, and each component
135 Each component is stored in a macropixel according to the variable screen
269 component in the pixel value are described by the fb_bitfield offset and
Dsstfb.txt142 byte -> basically the blue component and some of the green). I'm unable
/linux-4.4.14/Documentation/ABI/stable/
Dsysfs-bus-w14 Description: Bus scanning interval, microseconds component.
/linux-4.4.14/Documentation/ABI/testing/
Ddebugfs-ideapad8 capability and what graphic component within the machine.
Dsysfs-firmware-ofw25 directory name is the resolved path component name (node
Dconfigfs-stp-policy24 <device> component of its parent directory.
Dsysfs-bus-iio88 component of the signal while the 'q' channel contains the quadrature
89 component.
1284 x y z w. Here x, y, and z component represents the axis about
1285 which a rotation will occur and w component represents the
1311 component of the signal while the 'q' channel contains the quadrature
1312 component.
Dsysfs-block118 maximum physical_block_size of the component devices.
/linux-4.4.14/drivers/scsi/
Dses.c457 if (!edev->component[0].scratch) in ses_enclosure_find_by_addr()
461 scomp = edev->component[i].scratch; in ses_enclosure_find_by_addr()
546 ecomp = &edev->component[components++]; in ses_enclosure_data_process()
736 edev->component[i].scratch = scomp + i; in ses_intf_add()
803 kfree(edev->component[0].scratch); in ses_intf_remove_enclosure()
D53c700.scr33 ; This is the magic component for handling scatter-gather. Each of the
D53c700_d.h_shipped36 ; This is the magic component for handling scatter-gather. Each of the
DKconfig324 The userspace component needed to initialize the driver, documentation,
/linux-4.4.14/Documentation/devicetree/bindings/i2c/
Di2c-octeon.txt11 - #size-cells: Must be <0>. I2C addresses have no size component.
Dqcom,i2c-qup.txt18 - #size-cells: Should be <0> as i2c addresses have no size component
/linux-4.4.14/sound/soc/samsung/
Dspeyside.c225 static int speyside_wm9081_init(struct snd_soc_component *component) in speyside_wm9081_init() argument
227 struct snd_soc_codec *codec = snd_soc_component_to_codec(component); in speyside_wm9081_init()
/linux-4.4.14/drivers/hwtracing/coresight/
DKconfig30 complies with the generic implementation of the component without
49 that complies with the generic implementation of the component without
/linux-4.4.14/include/media/
Dtuner.h230 int (*tuner_callback)(void *dev, int component, int cmd, int arg);
/linux-4.4.14/Documentation/hwmon/
Dwm831x37 thermistor component.
/linux-4.4.14/sound/soc/intel/atom/
Dsst-atom-controls.c330 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in sst_algo_control_get() local
337 dev_err(component->dev, "Invalid Input- algo type:%d\n", in sst_algo_control_get()
435 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in sst_gain_get() local
454 dev_err(component->dev, "Invalid Input- gain type:%d\n", in sst_gain_get()
1398 struct snd_card *card = platform->component.card->snd_card; in sst_fill_widget_module_info()
1454 list_for_each_entry(w, &platform->component.card->widgets, list) { in sst_fill_linked_widgets()
1470 list_for_each_entry(w, &platform->component.card->widgets, list) { in sst_map_modules_to_pipe()
1495 snd_soc_component_get_dapm(&platform->component); in sst_dsp_init_v2_dpcm()
Dsst-mfld-platform-pcm.c695 drv->soc_card = platform->component.card; in sst_soc_probe()
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/
Dti,keystone-irq.txt6 analyzing SRCCx bits in IPCARx registers. This is one of the component
/linux-4.4.14/Documentation/sound/alsa/soc/
Doverview.txt53 multiple re-usable component drivers :-
66 decribes and binds the other component drivers together to form an ALSA
Dpops_clicks.txt12 click every time a component power state is changed.
Ddapm.txt43 consists of the interconnections between every audio component (including
79 Widgets can be added to the sound card by any of the component driver types.
145 machine audio component (non codec or DSP) that can be independently
Dmachine.txt5 component drivers (e.g. codecs, platforms and DAIs). It also describes the
DDPCM.txt17 DPCM re-uses all the existing component codec, platform and DAI drivers without
296 component drivers (e.g. codec graph).
/linux-4.4.14/sound/core/
Dinit.c876 int snd_component_add(struct snd_card *card, const char *component) in snd_component_add() argument
879 int len = strlen(component); in snd_component_add()
881 ptr = strstr(card->components, component); in snd_component_add()
892 strcat(card->components, component); in snd_component_add()
/linux-4.4.14/Documentation/devicetree/bindings/gpio/
Dgpio-dsp-keystone.txt5 This is one of the component used by the IPC mechanism used on Keystone SOCs.
/linux-4.4.14/Documentation/devicetree/bindings/media/
Dti-am437x-vpfe.txt4 The Video Processing Front End (VPFE) is a key component for image capture
/linux-4.4.14/sound/usb/
Dcard.c335 char component[14]; in snd_usb_audio_create() local
392 sprintf(component, "USB%04x:%04x", in snd_usb_audio_create()
394 snd_component_add(card, component); in snd_usb_audio_create()
/linux-4.4.14/Documentation/devicetree/bindings/media/xilinx/
Dvideo.txt26 width expressed as a number of bits per pixel component. All components must
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dda9062.txt40 The component follows the standard regulator framework and the bindings
Dda9063.txt47 The component follows the standard regulator framework and the bindings
Dqcom-rpm.txt4 various Qualcomm platforms. The RPM allows each component in the system to vote
/linux-4.4.14/drivers/media/dvb-frontends/
Ddibx000_common.h236 u8 component; member
/linux-4.4.14/drivers/uio/
DKconfig20 driver requires a userspace component called cif that handles
101 This driver requires a userspace component that comes with the card
/linux-4.4.14/Documentation/networking/
Daltera_tse.txt7 platform bus to obtain component resources. The designs used to test this
25 Triple-Speed Ethernet instance is using an SGDMA or MSGDMA component. The
30 The SGDMA component is to be deprecated in the near future (over the next 1-2
31 years as of this writing in early 2014) in favor of the MSGDMA component.
DLICENSE.qlcnic173 operating system on which the executable runs, unless that component
DLICENSE.qlge173 operating system on which the executable runs, unless that component
/linux-4.4.14/drivers/bus/
Darm-ccn.c1365 struct arm_ccn_component *component; in arm_ccn_init_nodes() local
1374 component = &ccn->xp[id]; in arm_ccn_init_nodes()
1378 component = &ccn->node[id]; in arm_ccn_init_nodes()
1384 component = &ccn->node[id]; in arm_ccn_init_nodes()
1388 component->base = base; in arm_ccn_init_nodes()
1389 component->type = type; in arm_ccn_init_nodes()
/linux-4.4.14/Documentation/
Dsgi-ioc4.txt37 component). There's not much to say about it other than it hooks
Dunshare.txt228 etc, had roughly two components. The first component allocated
229 and duplicated the appropriate structure and the second component
231 function. The first component was split into its own function.
Dntb.txt18 component making use of the NTB api. The term "driver," or "hardware driver,"
DIRQ-domain.txt19 interrupt controller (i.e. the component actually fireing the
Dmd.txt221 and if the component drives are large enough.
345 As component devices are added to an md array, they appear in the 'md'
Dxillybus.txt200 Each pipe has a number of attributes which are set when the FPGA component
/linux-4.4.14/fs/ocfs2/
DKconfig31 Cluster Base. It only requires a very small userspace component
/linux-4.4.14/drivers/hwtracing/intel_th/
DKconfig30 Global Trace Hub (GTH) is the central component of the
/linux-4.4.14/Documentation/thermal/
Dexynos_thermal72 b) TMU driver: This component initialises the TMU controller and sets different
Dpower_allocator.txt132 is the desired one, then the proportional component is zero and
/linux-4.4.14/drivers/mtd/onenand/
DKconfig59 Flash memory array, these two component enables simultaneous program
/linux-4.4.14/Documentation/devicetree/bindings/display/bridge/
Dadi,adv7511.txt19 - adi,input-depth: Number of bits per color component at the input (8, 10 or
/linux-4.4.14/Documentation/devicetree/bindings/soc/
Dqcom,smd-rpm.txt4 various Qualcomm platforms. The RPM allows each component in the system to vote
/linux-4.4.14/fs/proc/
Dproc_sysctl.c1419 const struct ctl_path *component; in __register_sysctl_paths() local
1427 for (component = path; component->procname; component++) { in __register_sysctl_paths()
1428 pos = append_path(new_path, pos, component->procname); in __register_sysctl_paths()
/linux-4.4.14/Documentation/devicetree/bindings/display/exynos/
Dexynos_dp.txt44 number of bits per colour component.
/linux-4.4.14/drivers/media/usb/au0828/
Dau0828-cards.c127 int au0828_tuner_callback(void *priv, int component, int command, int arg) in au0828_tuner_callback() argument
Dau0828.h304 extern int au0828_tuner_callback(void *priv, int component,
/linux-4.4.14/Documentation/devicetree/bindings/leds/
Dcommon.txt8 to one or more discrete LED component. Since the arrangement of connections
/linux-4.4.14/drivers/atm/
Dnicstarmac.copyright19 * PHY component is expected to be 155 Mbps S/UNI-Lite or IDT 77155;
/linux-4.4.14/Documentation/devicetree/bindings/display/
Darm,pl11x.txt49 as R0 (first bit of the red component), second value
/linux-4.4.14/Documentation/PCI/
Dpcieaer-howto.txt128 AER aware drivers of PCI Express component need change the device
195 component has an aer driver. If it has, kernel uses the reset_link
196 callback of the aer driver. If the upstream component has no aer driver
/linux-4.4.14/drivers/crypto/caam/
DKconfig8 to operate as a DPAA component automatically, depending
/linux-4.4.14/drivers/media/dvb-core/
Ddvb_frontend.h680 int (*callback)(void *adapter_priv, int component, int cmd, int arg);
/linux-4.4.14/Documentation/trace/
Dintel_th.txt26 - Global Trace Hub (GTH), which is a switch and a central component
Dcoresight.txt167 perform base operations related to the components, each component having
187 specific to that component only. "Implementation defined" customisations are
/linux-4.4.14/net/l2tp/
DKconfig28 The kernel component handles only L2TP data packets: a
/linux-4.4.14/arch/arm64/boot/dts/arm/
Drtsm_ve-motherboard.dtsi5 * Motherboard component
/linux-4.4.14/fs/reiserfs/
DREADME72 building, by buying from third party OS component suppliers. Leverage
73 the software component development power of the internet. Be the most
/linux-4.4.14/drivers/staging/rtl8192u/
Dr8192U.h51 #define RT_TRACE(component, x, args...) \ argument
53 if (rt_global_debug_component & component) \
Dcopying163 operating system on which the executable runs, unless that component
/linux-4.4.14/Documentation/s390/
Ds390dbf.txt10 where log records can be stored efficiently in memory, where each component
56 a directory for each registered component, which is named like the
57 corresponding component. The debugfs normally should be mounted to
62 to the debug log. Each component can decide which views should be
/linux-4.4.14/Documentation/filesystems/
Dpath-lookup.txt7 with the first component of the pathname (eg. root or cwd) with a known dentry,
8 then finding the child of that dentry, which is named the next component in the
17 thus in every component during path look-up. Since 2.5.10 onwards, fast-walk
19 as many cached path component dentries as possible. This significantly
Dramfs-rootfs-initramfs.txt30 an optional component removable via menuconfig, since there would be negligible
178 or by the kernel build) back into its component files:
Dseq_file.txt8 There are numerous ways for a device driver (or other kernel component) to
Dvfs.txt486 atomic_open: called on the last component of an open. Using this optional
490 usual 0 or -ve . This method is only called if the last component is
1112 d_lookup: look up a dentry given its parent and path name component
Dcoda.txt2 This is one of the technical documents describing a component of
152 A key component in the Coda Distributed File System is the cache
/linux-4.4.14/Documentation/tpm/
Dxen-tpmfront.txt19 major component of vTPM is implemented as a separate domain, providing secure
/linux-4.4.14/sound/soc/intel/skylake/
Dskl-pcm.c388 link = snd_hdac_ext_bus_get_link(ebus, rtd->codec->component.name); in skl_link_pcm_prepare()
437 link = snd_hdac_ext_bus_get_link(ebus, rtd->codec->component.name); in skl_link_hw_free()
Dskl-topology.c1241 ret = snd_soc_tplg_component_load(&platform->component, in skl_tplg_init()
/linux-4.4.14/drivers/staging/fsl-mc/
DREADME.txt29 A DPAA2 hardware component called the Management Complex (or MC) manages the
361 An Ethernet PHY is an off-chip, board specific component and is managed
/linux-4.4.14/Documentation/rapidio/
Drapidio.txt105 modular component of the kernel (see details below).
270 For both endpoints and switches the enumerator writes a unique component tag
291 devices. This way each Linux-based component of the RapidIO subsystem has
/linux-4.4.14/Documentation/i2c/
Dfault-codes81 Returned by any component that can't allocate memory when
/linux-4.4.14/drivers/media/usb/em28xx/
Dem28xx.h784 int em28xx_tuner_callback(void *ptr, int component, int command, int arg);
Dem28xx-cards.c2510 int em28xx_tuner_callback(void *ptr, int component, int command, int arg) in em28xx_tuner_callback() argument
/linux-4.4.14/Documentation/device-mapper/
Dlog-writes.txt90 Userspace component
/linux-4.4.14/drivers/media/pci/cx88/
Dcx88.h689 extern int cx88_tuner_callback(void *dev, int component, int command, int arg);
Dcx88-cards.c3227 int cx88_tuner_callback(void *priv, int component, int command, int arg) in cx88_tuner_callback() argument
3244 if (component != DVB_FRONTEND_COMPONENT_TUNER) in cx88_tuner_callback()
/linux-4.4.14/drivers/media/pci/cx23885/
Dcx23885.h550 extern int cx23885_tuner_callback(void *priv, int component,
Dcx23885-cards.c1220 int cx23885_tuner_callback(void *priv, int component, int command, int arg) in cx23885_tuner_callback() argument
/linux-4.4.14/drivers/media/usb/dvb-usb/
Ddib0700_devices.c420 static int stk7700ph_xc3028_callback(void *ptr, int component, in stk7700ph_xc3028_callback() argument
2274 …{ .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_ON, .mask = 0…
2275 …{ .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_OFF, .mask = …
2305 …{ .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_ON, .mask = 0…
2306 …{ .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_OFF, .mask = …
3444 static int dib0700_xc5000_tuner_callback(void *priv, int component, in dib0700_xc5000_tuner_callback() argument
3478 static int dib0700_xc4000_tuner_callback(void *priv, int component, in dib0700_xc4000_tuner_callback() argument
Dcxusb.c807 static int dvico_bluebird_xc2028_callback(void *ptr, int component, in dvico_bluebird_xc2028_callback() argument
/linux-4.4.14/Documentation/vm/
Dslub.txt263 which will keep the system running even if a bad kernel component will
269 No guarantees. The kernel component still needs to be fixed. Performance
/linux-4.4.14/drivers/media/usb/dvb-usb-v2/
Drtl28xxu.c816 static int rtl2832u_frontend_callback(void *adapter_priv, int component, in rtl2832u_frontend_callback() argument
840 component, cmd, arg); in rtl2832u_frontend_callback()
842 switch (component) { in rtl2832u_frontend_callback()
Daf9035.c1100 static int af9035_frontend_callback(void *adapter_priv, int component, in af9035_frontend_callback() argument
1107 __func__, component, cmd, arg); in af9035_frontend_callback()
1109 switch (component) { in af9035_frontend_callback()
/linux-4.4.14/Documentation/gpio/
Dgpio.txt115 value (after the appropriate rise time passes), you know some other component is
Dgpio-legacy.txt435 value (after the appropriate rise time passes), you know some other component
/linux-4.4.14/sound/pci/hda/
Dhda_codec.c805 char component[31]; in snd_hda_codec_new() local
823 sprintf(component, "hdaudioC%dD%d", card->number, codec_addr); in snd_hda_codec_new()
824 err = snd_hdac_device_init(&codec->core, &bus->core, component, in snd_hda_codec_new()
884 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id, in snd_hda_codec_new()
886 snd_component_add(card, component); in snd_hda_codec_new()
/linux-4.4.14/drivers/media/pci/saa7134/
Dsaa7134.h768 int saa7134_tuner_callback(void *priv, int component, int command, int arg);
/linux-4.4.14/arch/m68k/fpsp040/
Dstan.S337 fsubx %fp0,%fp1 |determine low component of result
/linux-4.4.14/Documentation/scsi/
Dosd.txt18 The main component of OSD in Kernel is the osd-initiator library. Its main
DLICENSE.qla4xxx174 operating system on which the executable runs, unless that component
DLICENSE.qla2xxx175 operating system on which the executable runs, unless that component
DBusLogic.txt175 offending component is removed.
/linux-4.4.14/Documentation/development-process/
D1.Intro62 kernel has evolved into a best-of-breed operating system component which
71 use Linux as a component in an integrated product, want Linux to be as
/linux-4.4.14/Documentation/blockdev/
Dparide.txt55 accessing the parallel ports. The second component is a set of
67 The third component of PARIDE is a set of low-level protocol drivers
/linux-4.4.14/Documentation/driver-model/
Dplatform.txt119 different system component than the driver.
/linux-4.4.14/Documentation/arm/pxa/
Dmfp.txt125 b) when there is only one possible pin configurations for a component,
/linux-4.4.14/drivers/media/usb/cx231xx/
Dcx231xx.h970 int cx231xx_tuner_callback(void *ptr, int component, int command, int arg);
Dcx231xx-cards.c920 int cx231xx_tuner_callback(void *ptr, int component, int command, int arg) in cx231xx_tuner_callback() argument
/linux-4.4.14/drivers/iommu/
DKconfig99 your system. An IOMMU is a hardware component which provides
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Ddcsr.txt279 component controller.
/linux-4.4.14/Documentation/video4linux/
Dvivid.txt24 - Support for the alpha color component
554 The 'Alpha Component' control can be used to set the alpha component for
999 The alpha component can be set through the 'Alpha Component' User control
1001 is set, then the alpha component is only used for the color red and set to
DZoran45 1-3 triples as component.
/linux-4.4.14/drivers/media/v4l2-core/
Dtuner-core.c266 int (*tuner_callback) (void *dev, int component, int cmd, int arg)) in set_type() argument
/linux-4.4.14/Documentation/dvb/
Davermedia.txt20 although the component structure of budget DVB-T cards are
/linux-4.4.14/Documentation/locking/
Dlockdep-design.txt183 occur in practice to prove a deadlock: only the simple 'component'
/linux-4.4.14/sound/soc/intel/haswell/
Dsst-haswell-pcm.c1072 priv_data->soc_card = platform->component.card; in hsw_pcm_probe()
/linux-4.4.14/Documentation/usb/
Dpower-management.txt33 component is "suspended" it is in a nonfunctional low-power state; it
34 might even be turned off completely. A suspended component can be
/linux-4.4.14/Documentation/sound/alsa/
DHD-Audio.txt9 HD-audio is the new standard on-board audio component on modern PCs
16 The HD-audio component consists of two parts: the controller chip and
/linux-4.4.14/Documentation/security/
DSmack.txt21 The kernel component of Smack is implemented as a Linux
312 protected from each other. This scheme has been widely deployed as a component
/linux-4.4.14/tools/usb/usbip/
DCOPYING163 operating system on which the executable runs, unless that component
/linux-4.4.14/
DCOPYING179 operating system on which the executable runs, unless that component
/linux-4.4.14/Documentation/filesystems/cifs/
DREADME377 credentials Although ignored by the cifs kernel component, it is used by
382 guest Although ignored by the kernel component, the mount.cifs
DCHANGES141 with prefixpaths longer than one directory (one path component) when
/linux-4.4.14/Documentation/kbuild/
Dkconfig-language.txt389 To restrict a component build to module-only, qualify its config symbol
/linux-4.4.14/drivers/regulator/
DKconfig382 from the adjacent phase, allowing the use of small magnetic component.
/linux-4.4.14/Documentation/RCU/
DRTFP.txt2530 of the most expensive parts of path component lookup, which was the
2531 d_lock on every component lookup. So I'm seeing improvements of 30-50%
/linux-4.4.14/drivers/mfd/
DKconfig1151 component is currently supported.
/linux-4.4.14/drivers/watchdog/
DKconfig1038 This is the driver for the hardware watchdog component on the

12