Home
last modified time | relevance | path

Searched refs:ff (Results 1 – 25 of 110) sorted by relevance

12345

/Linux-v4.19/Documentation/w1/slaves/
Dw1_ds242338 …2 00 00 00 00 00 00 00 6d 38 00 ff ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
39 …2 00 00 00 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
40 …9 c6 5d 18 00 00 00 00 04 37 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
41 …05 00 00 00 00 00 00 00 8d 39 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
44 …2 00 00 00 00 00 00 00 6d 38 00 ff ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
45 …2 00 00 22 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
46 …1 61 5d 19 00 00 00 00 df 0b 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
47 …05 00 00 20 00 00 00 00 8d 39 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
/Linux-v4.19/sound/firewire/fireface/
Dff-stream.c34 static int keep_resources(struct snd_ff *ff, unsigned int rate) in keep_resources() argument
44 err = amdtp_ff_set_parameters(&ff->tx_stream, rate, in keep_resources()
45 ff->spec->pcm_capture_channels[mode]); in keep_resources()
48 ff->tx_resources.channels_mask = 0x00000000000000ffuLL; in keep_resources()
49 err = fw_iso_resources_allocate(&ff->tx_resources, in keep_resources()
50 amdtp_stream_get_max_payload(&ff->tx_stream), in keep_resources()
51 fw_parent_device(ff->unit)->max_speed); in keep_resources()
56 err = amdtp_ff_set_parameters(&ff->rx_stream, rate, in keep_resources()
57 ff->spec->pcm_playback_channels[mode]); in keep_resources()
60 ff->rx_resources.channels_mask = 0x00000000000000ffuLL; in keep_resources()
[all …]
Dff.c17 static void name_card(struct snd_ff *ff) in name_card() argument
19 struct fw_device *fw_dev = fw_parent_device(ff->unit); in name_card()
21 strcpy(ff->card->driver, "Fireface"); in name_card()
22 strcpy(ff->card->shortname, ff->spec->name); in name_card()
23 strcpy(ff->card->mixername, ff->spec->name); in name_card()
24 snprintf(ff->card->longname, sizeof(ff->card->longname), in name_card()
25 "RME %s, GUID %08x%08x at %s, S%d", ff->spec->name, in name_card()
27 dev_name(&ff->unit->device), 100 << fw_dev->max_speed); in name_card()
30 static void ff_free(struct snd_ff *ff) in ff_free() argument
32 snd_ff_stream_destroy_duplex(ff); in ff_free()
[all …]
Dff-transaction.c11 static void finish_transmit_midi_msg(struct snd_ff *ff, unsigned int port, in finish_transmit_midi_msg() argument
15 READ_ONCE(ff->rx_midi_substreams[port]); in finish_transmit_midi_msg()
18 ff->rx_midi_error[port] = true; in finish_transmit_midi_msg()
24 ff->next_ktime[port] = 0; in finish_transmit_midi_msg()
25 schedule_work(&ff->rx_midi_work[port]); in finish_transmit_midi_msg()
29 snd_rawmidi_transmit_ack(substream, ff->rx_bytes[port]); in finish_transmit_midi_msg()
30 ff->rx_bytes[port] = 0; in finish_transmit_midi_msg()
33 schedule_work(&ff->rx_midi_work[port]); in finish_transmit_midi_msg()
40 struct snd_ff *ff = in finish_transmit_midi0_msg() local
42 finish_transmit_midi_msg(ff, 0, rcode); in finish_transmit_midi0_msg()
[all …]
Dff-hwdep.c22 struct snd_ff *ff = hwdep->private_data; in hwdep_read() local
26 spin_lock_irq(&ff->lock); in hwdep_read()
28 while (!ff->dev_lock_changed) { in hwdep_read()
29 prepare_to_wait(&ff->hwdep_wait, &wait, TASK_INTERRUPTIBLE); in hwdep_read()
30 spin_unlock_irq(&ff->lock); in hwdep_read()
32 finish_wait(&ff->hwdep_wait, &wait); in hwdep_read()
35 spin_lock_irq(&ff->lock); in hwdep_read()
39 if (ff->dev_lock_changed) { in hwdep_read()
41 event.lock_status.status = (ff->dev_lock_count > 0); in hwdep_read()
42 ff->dev_lock_changed = false; in hwdep_read()
[all …]
Dff-pcm.c94 static int pcm_init_hw_params(struct snd_ff *ff, in pcm_init_hw_params() argument
104 s = &ff->tx_stream; in pcm_init_hw_params()
105 pcm_channels = ff->spec->pcm_capture_channels; in pcm_init_hw_params()
108 s = &ff->rx_stream; in pcm_init_hw_params()
109 pcm_channels = ff->spec->pcm_playback_channels; in pcm_init_hw_params()
131 struct snd_ff *ff = substream->private_data; in pcm_open() local
136 err = snd_ff_stream_lock_try(ff); in pcm_open()
140 err = pcm_init_hw_params(ff, substream); in pcm_open()
144 err = ff->spec->protocol->get_clock(ff, &rate, &src); in pcm_open()
165 if (amdtp_stream_pcm_running(&ff->rx_stream) || in pcm_open()
[all …]
Dff-midi.c19 struct snd_ff *ff = substream->rmidi->private_data; in midi_playback_open() local
22 ff->running_status[substream->number] = 0; in midi_playback_open()
23 ff->rx_midi_error[substream->number] = false; in midi_playback_open()
25 WRITE_ONCE(ff->rx_midi_substreams[substream->number], substream); in midi_playback_open()
38 struct snd_ff *ff = substream->rmidi->private_data; in midi_playback_close() local
40 cancel_work_sync(&ff->rx_midi_work[substream->number]); in midi_playback_close()
41 WRITE_ONCE(ff->rx_midi_substreams[substream->number], NULL); in midi_playback_close()
49 struct snd_ff *ff = substream->rmidi->private_data; in midi_capture_trigger() local
52 spin_lock_irqsave(&ff->lock, flags); in midi_capture_trigger()
55 WRITE_ONCE(ff->tx_midi_substreams[substream->number], in midi_capture_trigger()
[all …]
Dff.h99 int (*get_clock)(struct snd_ff *ff, unsigned int *rate,
101 int (*begin_session)(struct snd_ff *ff, unsigned int rate);
102 void (*finish_session)(struct snd_ff *ff);
103 int (*switch_fetching_mode)(struct snd_ff *ff, bool enable);
105 void (*dump_sync_status)(struct snd_ff *ff,
107 void (*dump_clock_config)(struct snd_ff *ff,
117 int snd_ff_transaction_register(struct snd_ff *ff);
118 int snd_ff_transaction_reregister(struct snd_ff *ff);
119 void snd_ff_transaction_unregister(struct snd_ff *ff);
128 int snd_ff_stream_init_duplex(struct snd_ff *ff);
[all …]
Dff-proc.c14 struct snd_ff *ff = entry->private_data; in proc_dump_clock_config() local
16 ff->spec->protocol->dump_clock_config(ff, buffer); in proc_dump_clock_config()
22 struct snd_ff *ff = entry->private_data; in proc_dump_sync_status() local
24 ff->spec->protocol->dump_sync_status(ff, buffer); in proc_dump_sync_status()
27 static void add_node(struct snd_ff *ff, struct snd_info_entry *root, in add_node() argument
34 entry = snd_info_create_card_entry(ff->card, name, root); in add_node()
38 snd_info_set_text_ops(entry, ff, op); in add_node()
43 void snd_ff_proc_init(struct snd_ff *ff) in snd_ff_proc_init() argument
51 root = snd_info_create_card_entry(ff->card, "firewire", in snd_ff_proc_init()
52 ff->card->proc_root); in snd_ff_proc_init()
[all …]
DMakefile1 snd-fireface-objs := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \
2 ff-stream.o ff-pcm.o ff-hwdep.o ff-protocol-ff400.o
Dff-protocol-ff400.c25 static int ff400_get_clock(struct snd_ff *ff, unsigned int *rate, in ff400_get_clock() argument
32 err = snd_fw_transaction(ff->unit, TCODE_READ_QUADLET_REQUEST, in ff400_get_clock()
84 static int ff400_begin_session(struct snd_ff *ff, unsigned int rate) in ff400_begin_session() argument
99 err = snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in ff400_begin_session()
110 reg = cpu_to_le32(((ff->rx_stream.data_block_quadlets << 3) << 8) | in ff400_begin_session()
111 ff->rx_resources.channel); in ff400_begin_session()
112 err = snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in ff400_begin_session()
123 (ff->tx_resources.channel << 5) | in ff400_begin_session()
124 (ff->tx_stream.data_block_quadlets)); in ff400_begin_session()
125 err = snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in ff400_begin_session()
[all …]
/Linux-v4.19/drivers/input/
Dff-core.c36 static int check_effect_access(struct ff_device *ff, int effect_id, in check_effect_access() argument
39 if (effect_id < 0 || effect_id >= ff->max_effects || in check_effect_access()
40 !ff->effect_owners[effect_id]) in check_effect_access()
43 if (file && ff->effect_owners[effect_id] != file) in check_effect_access()
63 static int compat_effect(struct ff_device *ff, struct ff_effect *effect) in compat_effect() argument
69 if (!test_bit(FF_PERIODIC, ff->ffbit)) in compat_effect()
107 struct ff_device *ff = dev->ff; in input_ff_upload() local
129 if (!test_bit(effect->type, ff->ffbit)) { in input_ff_upload()
130 ret = compat_effect(ff, effect); in input_ff_upload()
135 mutex_lock(&ff->mutex); in input_ff_upload()
[all …]
Dff-memless.c210 static int get_compatible_type(struct ff_device *ff, int effect_type) in get_compatible_type() argument
213 if (test_bit(effect_type, ff->ffbit)) in get_compatible_type()
216 if (effect_type == FF_PERIODIC && test_bit(FF_RUMBLE, ff->ffbit)) in get_compatible_type()
367 effect_type = get_compatible_type(ml->dev->ff, effect->type); in ml_get_combo_effect()
433 struct ml_device *ml = dev->ff->private; in ml_ff_set_gain()
449 struct ml_device *ml = dev->ff->private; in ml_ff_playback()
480 struct ml_device *ml = dev->ff->private; in ml_ff_upload()
500 static void ml_ff_destroy(struct ff_device *ff) in ml_ff_destroy() argument
502 struct ml_device *ml = ff->private; in ml_ff_destroy()
517 struct ff_device *ff; in input_ff_create_memless() local
[all …]
/Linux-v4.19/Documentation/fmc/
Dparameters.txt37 [ 6626.387308] 1800: 70 6c 61 63 65 68 6f 6c 64 65 72 ff ff ff ff ff
38 [ 6626.394259] 1810: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
46 spec 0000:02:00.0: SDB: 0000ce42:ff07fc47 WR-Periph-Syscon (00000000-000000ff)
50 0010: 00 00 00 00 00 00 01 ff 00 00 00 00 00 00 06 51
54 0050: 00 00 00 00 00 00 00 ff 00 00 00 00 00 00 ce 42
55 0060: ff 07 fc 47 00 00 00 01 20 12 03 05 57 52 2d 50
/Linux-v4.19/tools/perf/util/
Dheader.c91 static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size) in __do_write_fd() argument
93 ssize_t ret = writen(ff->fd, buf, size); in __do_write_fd()
100 static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size) in __do_write_buf() argument
104 size_t new_size = ff->size; in __do_write_buf()
107 if (size + ff->offset > max_size) in __do_write_buf()
110 while (size > (new_size - ff->offset)) in __do_write_buf()
114 if (ff->size < new_size) { in __do_write_buf()
115 addr = realloc(ff->buf, new_size); in __do_write_buf()
118 ff->buf = addr; in __do_write_buf()
119 ff->size = new_size; in __do_write_buf()
[all …]
/Linux-v4.19/drivers/fmc/
Dfmc-fakedev.c141 struct ff_dev *ff = ff_current_dev; in ff_work_fn() local
144 fmc_device_unregister_n(ff->fmc, ff_nr_dev); in ff_work_fn()
145 device_unregister(&ff->dev); in ff_work_fn()
148 ff = ff_dev_create(); in ff_work_fn()
149 if (IS_ERR(ff)) { in ff_work_fn()
153 ret = fmc_device_register_n(ff->fmc, ff_nr_dev); in ff_work_fn()
155 dev_warn(&ff->dev, "can't re-register FMC devices\n"); in ff_work_fn()
156 device_unregister(&ff->dev); in ff_work_fn()
160 ff_current_dev = ff; in ff_work_fn()
247 struct ff_dev *ff = container_of(dev, struct ff_dev, dev); in ff_dev_release() local
[all …]
/Linux-v4.19/Documentation/networking/
Dvrf.txt145 link/ether 72:b3:ba:91:e2:24 brd ff:ff:ff:ff:ff:ff promiscuity 0
148 link/ether b6:6f:6e:f6:da:73 brd ff:ff:ff:ff:ff:ff promiscuity 0
151 link/ether 36:62:e8:7d:bb:8c brd ff:ff:ff:ff:ff:ff promiscuity 0
154 link/ether e6:28:b8:63:70:bb brd ff:ff:ff:ff:ff:ff promiscuity 0
190 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff
192 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff
194 link/ether 02:00:00:00:02:06 brd ff:ff:ff:ff:ff:ff
230 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff
235 inet6 fe80::ff:fe00:202/64 scope link
238 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff
[all …]
Dnet_failover.rst63 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
69 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
71 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
/Linux-v4.19/fs/fuse/
Dfile.c48 struct fuse_file *ff; in fuse_file_alloc() local
50 ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL); in fuse_file_alloc()
51 if (unlikely(!ff)) in fuse_file_alloc()
54 ff->fc = fc; in fuse_file_alloc()
55 ff->reserved_req = fuse_request_alloc(0); in fuse_file_alloc()
56 if (unlikely(!ff->reserved_req)) { in fuse_file_alloc()
57 kfree(ff); in fuse_file_alloc()
61 INIT_LIST_HEAD(&ff->write_entry); in fuse_file_alloc()
62 refcount_set(&ff->count, 1); in fuse_file_alloc()
63 RB_CLEAR_NODE(&ff->polled_node); in fuse_file_alloc()
[all …]
/Linux-v4.19/arch/m68k/ifpsp060/
Dfplsp.sa74 dc.l $660861ff,$00007124,$60220c01,$00026608
75 dc.l $61ff0000,$6d226014,$0c010003,$660861ff
76 dc.l $00006f4c,$600661ff,$00002f8e,$4cee0303
83 dc.l $660861ff,$00002d3e,$60300c01,$00016608
84 dc.l $61ff0000,$70866022,$0c010002,$660861ff
93 dc.l $660861ff,$00002c9e,$60300c01,$00016608
94 dc.l $61ff0000,$6fe66022,$0c010002,$660861ff
103 dc.l $2c0e6030,$0c010001,$660861ff,$00006fc8
105 dc.l $0c010003,$660861ff,$00006d74,$600661ff
112 dc.l $ff631d41,$ff4e4a01,$660861ff,$00002b70
[all …]
/Linux-v4.19/drivers/input/joystick/iforce/
Diforce-main.c213 for (i = 0; i < dev->ff->max_effects; i++) { in iforce_close()
248 struct ff_device *ff; in iforce_init_device() local
419 for (i = 0; iforce->type->ff[i] >= 0; i++) in iforce_init_device()
420 set_bit(iforce->type->ff[i], input_dev->ffbit); in iforce_init_device()
426 ff = input_dev->ff; in iforce_init_device()
427 ff->upload = iforce_upload_effect; in iforce_init_device()
428 ff->erase = iforce_erase_effect; in iforce_init_device()
429 ff->set_gain = iforce_set_gain; in iforce_init_device()
430 ff->set_autocenter = iforce_set_autocenter; in iforce_init_device()
431 ff->playback = iforce_playback; in iforce_init_device()
/Linux-v4.19/drivers/clk/mediatek/
Dclk-mtk.c85 const struct mtk_fixed_factor *ff = &clks[i]; in mtk_clk_register_factors() local
87 if (clk_data && !IS_ERR_OR_NULL(clk_data->clks[ff->id])) in mtk_clk_register_factors()
90 clk = clk_register_fixed_factor(NULL, ff->name, ff->parent_name, in mtk_clk_register_factors()
91 CLK_SET_RATE_PARENT, ff->mult, ff->div); in mtk_clk_register_factors()
95 ff->name, PTR_ERR(clk)); in mtk_clk_register_factors()
100 clk_data->clks[ff->id] = clk; in mtk_clk_register_factors()
/Linux-v4.19/drivers/clk/pistachio/
Dclk.c111 struct pistachio_fixed_factor *ff, in pistachio_clk_register_fixed_factor() argument
118 clk = clk_register_fixed_factor(NULL, ff[i].name, ff[i].parent, in pistachio_clk_register_fixed_factor()
119 0, 1, ff[i].div); in pistachio_clk_register_fixed_factor()
120 p->clk_data.clks[ff[i].id] = clk; in pistachio_clk_register_fixed_factor()
/Linux-v4.19/samples/bpf/
Dtest_cls_bpf.sh6 -m 90:e2:ba:ff:ff:ff -d 192.168.0.1 -t 4
/Linux-v4.19/drivers/video/fbdev/
Dpxa168fb.h408 #define DMA_FF_UNDERFLOW_ENA(ff) ((ff) << 29) argument
414 #define GRA_FF_UNDERFLOW_ENA(ff) ((ff) << 25) argument
441 #define DMA_FF_UNDERFLOW(ff) ((ff) << 29) argument
447 #define GRA_FF_UNDERFLOW(ff) ((ff) << 25) argument

12345