Home
last modified time | relevance | path

Searched full:ff (Results 1 – 25 of 3949) sorted by relevance

12345678910>>...158

/OK3568_Linux_fs/kernel/Documentation/w1/slaves/
H A Dw1_ds2423.rst44 …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 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
46 …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
47 …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
51 …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
52 …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
53 …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
54 …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
/OK3568_Linux_fs/kernel/sound/firewire/fireface/
H A Dff-stream.c3 * ff-stream.c - a part of driver for RME Fireface series
8 #include "ff.h"
33 static inline void finish_session(struct snd_ff *ff) in finish_session() argument
35 ff->spec->protocol->finish_session(ff); in finish_session()
36 ff->spec->protocol->switch_fetching_mode(ff, false); in finish_session()
39 static int init_stream(struct snd_ff *ff, struct amdtp_stream *s) in init_stream() argument
45 if (s == &ff->tx_stream) { in init_stream()
46 resources = &ff->tx_resources; in init_stream()
49 resources = &ff->rx_resources; in init_stream()
53 err = fw_iso_resources_init(resources, ff->unit); in init_stream()
[all …]
H A Dff-transaction.c3 * ff-transaction.c - a part of driver for RME Fireface series
8 #include "ff.h"
10 static void finish_transmit_midi_msg(struct snd_ff *ff, unsigned int port, in finish_transmit_midi_msg() argument
14 READ_ONCE(ff->rx_midi_substreams[port]); in finish_transmit_midi_msg()
17 ff->rx_midi_error[port] = true; in finish_transmit_midi_msg()
23 ff->next_ktime[port] = 0; in finish_transmit_midi_msg()
24 schedule_work(&ff->rx_midi_work[port]); in finish_transmit_midi_msg()
28 snd_rawmidi_transmit_ack(substream, ff->rx_bytes[port]); in finish_transmit_midi_msg()
29 ff->rx_bytes[port] = 0; in finish_transmit_midi_msg()
32 schedule_work(&ff->rx_midi_work[port]); in finish_transmit_midi_msg()
[all …]
H A Dff.c3 * ff.c - a part of driver for RME Fireface series
8 #include "ff.h"
16 static void name_card(struct snd_ff *ff) in name_card() argument
18 struct fw_device *fw_dev = fw_parent_device(ff->unit); in name_card()
28 name = names[ff->unit_version]; in name_card()
30 strcpy(ff->card->driver, "Fireface"); in name_card()
31 strcpy(ff->card->shortname, name); in name_card()
32 strcpy(ff->card->mixername, name); in name_card()
33 snprintf(ff->card->longname, sizeof(ff->card->longname), in name_card()
36 dev_name(&ff->unit->device), 100 << fw_dev->max_speed); in name_card()
[all …]
H A Dff-pcm.c3 * ff-pcm.c - a part of driver for RME Fireface series
8 #include "ff.h"
104 static int pcm_init_hw_params(struct snd_ff *ff, in pcm_init_hw_params() argument
114 s = &ff->tx_stream; in pcm_init_hw_params()
115 pcm_channels = ff->spec->pcm_capture_channels; in pcm_init_hw_params()
118 s = &ff->rx_stream; in pcm_init_hw_params()
119 pcm_channels = ff->spec->pcm_playback_channels; in pcm_init_hw_params()
141 struct snd_ff *ff = substream->private_data; in pcm_open() local
142 struct amdtp_domain *d = &ff->domain; in pcm_open()
147 err = snd_ff_stream_lock_try(ff); in pcm_open()
[all …]
H A Dff-hwdep.c3 * ff-hwdep.c - a part of driver for RME Fireface series
16 #include "ff.h"
21 struct snd_ff *ff = hwdep->private_data; in hwdep_read() local
25 spin_lock_irq(&ff->lock); in hwdep_read()
27 while (!ff->dev_lock_changed) { in hwdep_read()
28 prepare_to_wait(&ff->hwdep_wait, &wait, TASK_INTERRUPTIBLE); in hwdep_read()
29 spin_unlock_irq(&ff->lock); in hwdep_read()
31 finish_wait(&ff->hwdep_wait, &wait); in hwdep_read()
34 spin_lock_irq(&ff->lock); in hwdep_read()
38 if (ff->dev_lock_changed) { in hwdep_read()
[all …]
H A Dff-midi.c3 * ff-midi.c - a part of driver for RME Fireface series
8 #include "ff.h"
18 struct snd_ff *ff = substream->rmidi->private_data; in midi_playback_open() local
21 ff->on_sysex[substream->number] = 0; in midi_playback_open()
22 ff->rx_midi_error[substream->number] = false; in midi_playback_open()
24 WRITE_ONCE(ff->rx_midi_substreams[substream->number], substream); in midi_playback_open()
37 struct snd_ff *ff = substream->rmidi->private_data; in midi_playback_close() local
39 cancel_work_sync(&ff->rx_midi_work[substream->number]); in midi_playback_close()
40 WRITE_ONCE(ff->rx_midi_substreams[substream->number], NULL); in midi_playback_close()
48 struct snd_ff *ff = substream->rmidi->private_data; in midi_capture_trigger() local
[all …]
H A Dff-protocol-former.c2 // ff-protocol-former.c - a part of driver for RME Fireface series
10 #include "ff.h"
73 static int former_get_clock(struct snd_ff *ff, unsigned int *rate, in former_get_clock() argument
80 err = snd_fw_transaction(ff->unit, TCODE_READ_QUADLET_REQUEST, in former_get_clock()
89 static int former_switch_fetching_mode(struct snd_ff *ff, bool enable) in former_switch_fetching_mode() argument
98 count = max(count, ff->spec->pcm_playback_channels[i]); in former_switch_fetching_mode()
116 err = snd_fw_transaction(ff->unit, TCODE_WRITE_BLOCK_REQUEST, in former_switch_fetching_mode()
123 static void dump_clock_config(struct snd_ff *ff, struct snd_info_buffer *buffer) in dump_clock_config() argument
132 err = snd_fw_transaction(ff->unit, TCODE_READ_BLOCK_REQUEST, in dump_clock_config()
161 static void dump_sync_status(struct snd_ff *ff, struct snd_info_buffer *buffer) in dump_sync_status() argument
[all …]
H A Dff.h3 * ff.h - a part of driver for RME Fireface series
116 void (*handle_midi_msg)(struct snd_ff *ff, unsigned int offset,
118 int (*fill_midi_msg)(struct snd_ff *ff,
121 int (*get_clock)(struct snd_ff *ff, unsigned int *rate,
123 int (*switch_fetching_mode)(struct snd_ff *ff, bool enable);
124 int (*allocate_resources)(struct snd_ff *ff, unsigned int rate);
125 int (*begin_session)(struct snd_ff *ff, unsigned int rate);
126 void (*finish_session)(struct snd_ff *ff);
127 void (*dump_status)(struct snd_ff *ff, struct snd_info_buffer *buffer);
134 int snd_ff_transaction_register(struct snd_ff *ff);
[all …]
H A Dff-protocol-latter.c2 // ff-protocol-latter - a part of driver for RME Fireface series
10 #include "ff.h"
143 static int latter_get_clock(struct snd_ff *ff, unsigned int *rate, in latter_get_clock() argument
150 err = snd_fw_transaction(ff->unit, TCODE_READ_QUADLET_REQUEST, in latter_get_clock()
156 return parse_clock_bits(data, rate, src, ff->unit_version); in latter_get_clock()
159 static int latter_switch_fetching_mode(struct snd_ff *ff, bool enable) in latter_switch_fetching_mode() argument
170 return snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in latter_switch_fetching_mode()
174 static int latter_allocate_resources(struct snd_ff *ff, unsigned int rate) in latter_allocate_resources() argument
199 err = snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in latter_allocate_resources()
210 err = latter_get_clock(ff, &curr_rate, &src); in latter_allocate_resources()
[all …]
H A Dff-proc.c3 * ff-proc.c - a part of driver for RME Fireface series
8 #include "./ff.h"
30 struct snd_ff *ff = entry->private_data; in proc_dump_status() local
32 ff->spec->protocol->dump_status(ff, buffer); in proc_dump_status()
35 static void add_node(struct snd_ff *ff, struct snd_info_entry *root, in add_node() argument
42 entry = snd_info_create_card_entry(ff->card, name, root); in add_node()
44 snd_info_set_text_ops(entry, ff, op); in add_node()
47 void snd_ff_proc_init(struct snd_ff *ff) in snd_ff_proc_init() argument
55 root = snd_info_create_card_entry(ff->card, "firewire", in snd_ff_proc_init()
56 ff->card->proc_root); in snd_ff_proc_init()
[all …]
H A DMakefile2 snd-fireface-objs := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \
3 ff-stream.o ff-pcm.o ff-hwdep.o ff-protocol-former.o \
4 ff-protocol-latter.o
/OK3568_Linux_fs/kernel/drivers/input/
H A Dff-core.c24 static int check_effect_access(struct ff_device *ff, int effect_id, in check_effect_access() argument
27 if (effect_id < 0 || effect_id >= ff->max_effects || in check_effect_access()
28 !ff->effect_owners[effect_id]) in check_effect_access()
31 if (file && ff->effect_owners[effect_id] != file) in check_effect_access()
51 static int compat_effect(struct ff_device *ff, struct ff_effect *effect) in compat_effect() argument
57 if (!test_bit(FF_PERIODIC, ff->ffbit)) in compat_effect()
95 struct ff_device *ff = dev->ff; in input_ff_upload() local
117 if (!test_bit(effect->type, ff->ffbit)) { in input_ff_upload()
118 ret = compat_effect(ff, effect); in input_ff_upload()
123 mutex_lock(&ff->mutex); in input_ff_upload()
[all …]
/OK3568_Linux_fs/u-boot/arch/x86/dts/
H A Dchromebook_link.dts341 ff ff ff ff ff ff ff ff
342 ff ff ff ff ff ff ff ff
343 ff ff ff ff ff ff ff ff
344 ff ff ff ff ff ff ff ff
345 ff ff ff ff ff ff ff ff
346 ff ff ff ff ff ff ff ff
347 ff ff ff ff ff ff ff ff
348 ff ff ff ff ff ff ff ff
349 ff ff ff ff ff ff ff ff
350 ff ff ff ff ff ff ff ff];
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.davinci.nand_spl31 00000010 00 00 00 00 20 00 00 00 ff ff ff ff ff ff ff ff |.... ...........|
32 00000020 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |................|
39 00001fe0 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff ff |................|
40 00001ff0 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |................|
/OK3568_Linux_fs/kernel/tools/perf/util/
H A 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 …]
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dvrf.rst176 link/ether 72:b3:ba:91:e2:24 brd ff:ff:ff:ff:ff:ff promiscuity 0
179 link/ether b6:6f:6e:f6:da:73 brd ff:ff:ff:ff:ff:ff promiscuity 0
182 link/ether 36:62:e8:7d:bb:8c brd ff:ff:ff:ff:ff:ff promiscuity 0
185 link/ether e6:28:b8:63:70:bb brd ff:ff:ff:ff:ff:ff promiscuity 0
225 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff
227 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff
229 link/ether 02:00:00:00:02:06 brd ff:ff:ff:ff:ff:ff
270 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff
275 inet6 fe80::ff:fe00:202/64 scope link
278 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff
[all …]
H A 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
/OK3568_Linux_fs/kernel/fs/fuse/
H A Dfile.c65 struct fuse_file *ff; in fuse_file_alloc() local
67 ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL_ACCOUNT); in fuse_file_alloc()
68 if (unlikely(!ff)) in fuse_file_alloc()
71 ff->fm = fm; in fuse_file_alloc()
72 ff->release_args = kzalloc(sizeof(*ff->release_args), in fuse_file_alloc()
74 if (!ff->release_args) { in fuse_file_alloc()
75 kfree(ff); in fuse_file_alloc()
79 INIT_LIST_HEAD(&ff->write_entry); in fuse_file_alloc()
80 mutex_init(&ff->readdir.lock); in fuse_file_alloc()
81 refcount_set(&ff->count, 1); in fuse_file_alloc()
[all …]
H A Dreaddir.c117 struct fuse_file *ff = file->private_data; in fuse_emit() local
119 if (ff->open_flags & FOPEN_CACHE_DIR) in fuse_emit()
357 struct fuse_file *ff = file->private_data; in fuse_readdir_uncached() local
359 if (ff->open_flags & FOPEN_CACHE_DIR) in fuse_readdir_uncached()
382 static enum fuse_parse_result fuse_parse_cache(struct fuse_file *ff, in fuse_parse_cache() argument
386 unsigned int offset = ff->readdir.cache_off & ~PAGE_MASK; in fuse_parse_cache()
408 if (ff->readdir.pos == ctx->pos) { in fuse_parse_cache()
415 ff->readdir.pos = dirent->off; in fuse_parse_cache()
416 ff->readdir.cache_off += reclen; in fuse_parse_cache()
438 struct fuse_file *ff = file->private_data; in fuse_readdir_cached() local
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dctxnv50.c809 dd_emit(ctx, 1, 0); /* 000000ff SRC_ADDRESS_HIGH */ in nv50_gr_construct_mmio_ddata()
819 dd_emit(ctx, 1, 0); /* 000000ff CB_DEF_ADDRESS_HIGH */ in nv50_gr_construct_mmio_ddata()
825 dd_emit(ctx, 1, 0); /* 000000ff UNK370 */ in nv50_gr_construct_mmio_ddata()
826 dd_emit(ctx, 1, 0); /* 000000ff USER_PARAM_UNK */ in nv50_gr_construct_mmio_ddata()
827 dd_emit(ctx, 1, 0); /* 000000ff USER_PARAM_COUNT */ in nv50_gr_construct_mmio_ddata()
828 dd_emit(ctx, 1, 1); /* 000000ff UNK384 bits 8-15 */ in nv50_gr_construct_mmio_ddata()
832 dd_emit(ctx, 1, 1); /* 000007ff BLOCKDIM_X */ in nv50_gr_construct_mmio_ddata()
833 dd_emit(ctx, 1, 1); /* 000007ff BLOCKDIM_XMY */ in nv50_gr_construct_mmio_ddata()
836 dd_emit(ctx, 1, 1); /* 000007ff BLOCKDIM_Y */ in nv50_gr_construct_mmio_ddata()
838 dd_emit(ctx, 1, 4); /* 000000ff CP_REG_ALLOC_TEMP */ in nv50_gr_construct_mmio_ddata()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/locales/
H A Dcy_GB79 % &F<ff<<<Ff<<<FF
99 % a b c ch d dd e f ff g ng h i l ll m n o p ph r rh s t th u w y
111 collating-symbol <ff-digraph>
112 collating-element <ff> from "ff"
113 collating-element <fF> from "fF"
114 collating-element <Ff> from "Ff"
115 collating-element <FF> from "FF"
147 <ff-digraph>
167 <ff> <ff-digraph>;"<BASE><BASE>";"<MIN><MIN>";IGNORE
168 <fF> <ff-digraph>;"<BASE><BASE>";"<MIN><CAP>";IGNORE
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/locales/
H A Dcy_GB79 % &F<ff<<<Ff<<<FF
99 % a b c ch d dd e f ff g ng h i l ll m n o p ph r rh s t th u w y
111 collating-symbol <ff-digraph>
112 collating-element <ff> from "ff"
113 collating-element <fF> from "fF"
114 collating-element <Ff> from "Ff"
115 collating-element <FF> from "FF"
147 <ff-digraph>
167 <ff> <ff-digraph>;"<BASE><BASE>";"<MIN><MIN>";IGNORE
168 <fF> <ff-digraph>;"<BASE><BASE>";"<MIN><CAP>";IGNORE
[all …]
/OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/
H A 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 …]
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/
H A Drk3566-rk817-eink-w6.dts650 9E 55 00 8E 61 00 7F 70 00 7F 70 00 00 00 F0 90 3C FF FF 07 00 00
652 00 00 1C 1A 18 16 14 12 10 0E 0C 0A 08 06 04 02 FF FF FF FF FF FF
653 FF FF FF FF FF FF FF FF FF FF 00 02 04 06 08 0A 0C 0F 10 12 13 16
654 18 1C 1D 1E 1F 20 21 22 FF FF FF FF FF FF FF FF FF FF FF FF FF FF
655 FF FF FF FF FF FF FF FF F6 01

12345678910>>...158