12a1ad637SFrançois Tigeot /*- 22a1ad637SFrançois Tigeot * Copyright (c) 2007 Ariff Abdullah <ariff@FreeBSD.org> 32a1ad637SFrançois Tigeot * All rights reserved. 42a1ad637SFrançois Tigeot * 52a1ad637SFrançois Tigeot * Redistribution and use in source and binary forms, with or without 62a1ad637SFrançois Tigeot * modification, are permitted provided that the following conditions 72a1ad637SFrançois Tigeot * are met: 82a1ad637SFrançois Tigeot * 1. Redistributions of source code must retain the above copyright 92a1ad637SFrançois Tigeot * notice, this list of conditions and the following disclaimer. 102a1ad637SFrançois Tigeot * 2. Redistributions in binary form must reproduce the above copyright 112a1ad637SFrançois Tigeot * notice, this list of conditions and the following disclaimer in the 122a1ad637SFrançois Tigeot * documentation and/or other materials provided with the distribution. 132a1ad637SFrançois Tigeot * 142a1ad637SFrançois Tigeot * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 152a1ad637SFrançois Tigeot * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 162a1ad637SFrançois Tigeot * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 172a1ad637SFrançois Tigeot * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 182a1ad637SFrançois Tigeot * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 192a1ad637SFrançois Tigeot * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 202a1ad637SFrançois Tigeot * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 212a1ad637SFrançois Tigeot * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 222a1ad637SFrançois Tigeot * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 232a1ad637SFrançois Tigeot * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 242a1ad637SFrançois Tigeot * SUCH DAMAGE. 252a1ad637SFrançois Tigeot * 262a1ad637SFrançois Tigeot * $FreeBSD: head/sys/dev/sound/clone.h 170719 2007-06-14 11:10:21Z ariff $ 272a1ad637SFrançois Tigeot */ 282a1ad637SFrançois Tigeot 292a1ad637SFrançois Tigeot #ifndef _SND_CLONE_H_ 302a1ad637SFrançois Tigeot #define _SND_CLONE_H_ 312a1ad637SFrançois Tigeot 322a1ad637SFrançois Tigeot struct snd_clone_entry; 332a1ad637SFrançois Tigeot struct snd_clone; 342a1ad637SFrançois Tigeot 352a1ad637SFrançois Tigeot /* 362a1ad637SFrançois Tigeot * 750 milisecond default deadline. Short enough to not cause excessive 372a1ad637SFrançois Tigeot * garbage collection, long enough to indicate stalled VFS. 382a1ad637SFrançois Tigeot */ 392a1ad637SFrançois Tigeot #define SND_CLONE_DEADLINE_DEFAULT 750 402a1ad637SFrançois Tigeot 412a1ad637SFrançois Tigeot /* 42*5f097292SMatthew Dillon * Fit within 24bit MAXMINOR. In DragonFly the minor mask 43*5f097292SMatthew Dillon * is 0xffff00ff so set this to something that won't mess up. 44*5f097292SMatthew Dillon * (the assertions should just be removed, frankly). 452a1ad637SFrançois Tigeot */ 46*5f097292SMatthew Dillon #define SND_CLONE_MAXUNIT 0xffffffff 472a1ad637SFrançois Tigeot 482a1ad637SFrançois Tigeot /* 492a1ad637SFrançois Tigeot * Creation flags, mostly related to the behaviour of garbage collector. 502a1ad637SFrançois Tigeot * 512a1ad637SFrançois Tigeot * SND_CLONE_ENABLE - Enable clone allocation. 522a1ad637SFrançois Tigeot * SND_CLONE_GC_ENABLE - Enable garbage collector operation, automatically 532a1ad637SFrançois Tigeot * or if explicitly called upon. 542a1ad637SFrançois Tigeot * SND_CLONE_GC_UNREF - Garbage collect during unref operation. 552a1ad637SFrançois Tigeot * SND_CLONE_GC_LASTREF - Garbage collect during last reference 562a1ad637SFrançois Tigeot * (refcount = 0) 572a1ad637SFrançois Tigeot * SND_CLONE_GC_EXPIRED - Don't garbage collect unless the global clone 582a1ad637SFrançois Tigeot * handler has been expired. 592a1ad637SFrançois Tigeot * SND_CLONE_GC_REVOKE - Revoke clone invocation status which has been 602a1ad637SFrançois Tigeot * expired instead of removing and freeing it. 612a1ad637SFrançois Tigeot * SND_CLONE_WAITOK - malloc() is allowed to sleep while allocating 622a1ad637SFrançois Tigeot * clone entry. 632a1ad637SFrançois Tigeot */ 642a1ad637SFrançois Tigeot #define SND_CLONE_ENABLE 0x00000001 652a1ad637SFrançois Tigeot #define SND_CLONE_GC_ENABLE 0x00000002 662a1ad637SFrançois Tigeot #define SND_CLONE_GC_UNREF 0x00000004 672a1ad637SFrançois Tigeot #define SND_CLONE_GC_LASTREF 0x00000008 682a1ad637SFrançois Tigeot #define SND_CLONE_GC_EXPIRED 0x00000010 692a1ad637SFrançois Tigeot #define SND_CLONE_GC_REVOKE 0x00000020 702a1ad637SFrançois Tigeot #define SND_CLONE_WAITOK 0x80000000 712a1ad637SFrançois Tigeot 722a1ad637SFrançois Tigeot #define SND_CLONE_GC_MASK (SND_CLONE_GC_ENABLE | \ 732a1ad637SFrançois Tigeot SND_CLONE_GC_UNREF | \ 742a1ad637SFrançois Tigeot SND_CLONE_GC_LASTREF | \ 752a1ad637SFrançois Tigeot SND_CLONE_GC_EXPIRED | \ 762a1ad637SFrançois Tigeot SND_CLONE_GC_REVOKE) 772a1ad637SFrançois Tigeot 782a1ad637SFrançois Tigeot #define SND_CLONE_MASK (SND_CLONE_ENABLE | SND_CLONE_GC_MASK | \ 792a1ad637SFrançois Tigeot SND_CLONE_WAITOK) 802a1ad637SFrançois Tigeot 812a1ad637SFrançois Tigeot /* 822a1ad637SFrançois Tigeot * Runtime clone device flags 832a1ad637SFrançois Tigeot * 842a1ad637SFrançois Tigeot * These are mostly private to the clone manager operation: 852a1ad637SFrançois Tigeot * 862a1ad637SFrançois Tigeot * SND_CLONE_NEW - New clone allocation in progress. 872a1ad637SFrançois Tigeot * SND_CLONE_INVOKE - Cloning being invoked, waiting for next VFS operation. 882a1ad637SFrançois Tigeot * SND_CLONE_BUSY - In progress, being referenced by living thread/proc. 892a1ad637SFrançois Tigeot */ 902a1ad637SFrançois Tigeot #define SND_CLONE_NEW 0x00000001 912a1ad637SFrançois Tigeot #define SND_CLONE_INVOKE 0x00000002 922a1ad637SFrançois Tigeot #define SND_CLONE_BUSY 0x00000004 932a1ad637SFrançois Tigeot 942a1ad637SFrançois Tigeot /* 952a1ad637SFrançois Tigeot * Nothing important, just for convenience. 962a1ad637SFrançois Tigeot */ 972a1ad637SFrançois Tigeot #define SND_CLONE_ALLOC (SND_CLONE_NEW | SND_CLONE_INVOKE | \ 982a1ad637SFrançois Tigeot SND_CLONE_BUSY) 992a1ad637SFrançois Tigeot 1002a1ad637SFrançois Tigeot #define SND_CLONE_DEVMASK SND_CLONE_ALLOC 1012a1ad637SFrançois Tigeot 1022a1ad637SFrançois Tigeot 1032a1ad637SFrançois Tigeot void snd_timestamp(struct timespec *); 1042a1ad637SFrançois Tigeot 1052a1ad637SFrançois Tigeot struct snd_clone *snd_clone_create(int, int, int, uint32_t); 1062a1ad637SFrançois Tigeot int snd_clone_busy(struct snd_clone *); 1072a1ad637SFrançois Tigeot int snd_clone_enable(struct snd_clone *); 1082a1ad637SFrançois Tigeot int snd_clone_disable(struct snd_clone *); 1092a1ad637SFrançois Tigeot int snd_clone_getsize(struct snd_clone *); 1102a1ad637SFrançois Tigeot int snd_clone_getmaxunit(struct snd_clone *); 1112a1ad637SFrançois Tigeot int snd_clone_setmaxunit(struct snd_clone *, int); 1122a1ad637SFrançois Tigeot int snd_clone_getdeadline(struct snd_clone *); 1132a1ad637SFrançois Tigeot int snd_clone_setdeadline(struct snd_clone *, int); 1142a1ad637SFrançois Tigeot int snd_clone_gettime(struct snd_clone *, struct timespec *); 1152a1ad637SFrançois Tigeot uint32_t snd_clone_getflags(struct snd_clone *); 1162a1ad637SFrançois Tigeot uint32_t snd_clone_setflags(struct snd_clone *, uint32_t); 1172a1ad637SFrançois Tigeot int snd_clone_getdevtime(struct cdev *, struct timespec *); 1182a1ad637SFrançois Tigeot uint32_t snd_clone_getdevflags(struct cdev *); 1192a1ad637SFrançois Tigeot uint32_t snd_clone_setdevflags(struct cdev *, uint32_t); 1202a1ad637SFrançois Tigeot int snd_clone_gc(struct snd_clone *); 1212a1ad637SFrançois Tigeot void snd_clone_destroy(struct snd_clone *); 1222a1ad637SFrançois Tigeot int snd_clone_acquire(struct cdev *); 1232a1ad637SFrançois Tigeot int snd_clone_release(struct cdev *); 1242a1ad637SFrançois Tigeot int snd_clone_ref(struct cdev *); 1252a1ad637SFrançois Tigeot int snd_clone_unref(struct cdev *); 1262a1ad637SFrançois Tigeot void snd_clone_register(struct snd_clone_entry *, struct cdev *); 1272a1ad637SFrançois Tigeot struct snd_clone_entry *snd_clone_alloc(struct snd_clone *, struct cdev **, 1282a1ad637SFrançois Tigeot int *, int); 1292a1ad637SFrançois Tigeot 1302a1ad637SFrançois Tigeot #define snd_clone_enabled(x) ((x) != NULL && \ 1312a1ad637SFrançois Tigeot (snd_clone_getflags(x) & SND_CLONE_ENABLE)) 1322a1ad637SFrançois Tigeot #define snd_clone_disabled(x) (!snd_clone_enabled(x)) 1332a1ad637SFrançois Tigeot 1342a1ad637SFrançois Tigeot #endif /* !_SND_CLONE_H */ 135