From owner-cvs-src@FreeBSD.ORG Sat May 27 16:33:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6F1016A97B; Sat, 27 May 2006 16:33:11 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9724B43D5E; Sat, 27 May 2006 16:33:10 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k4RGW5kY059307; Sat, 27 May 2006 16:32:05 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k4RGW51G059306; Sat, 27 May 2006 16:32:05 GMT (envelope-from netchild) Message-Id: <200605271632.k4RGW51G059306@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 27 May 2006 16:32:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/sound/driver/cmi Makefile src/sys/modules/sound/driver/emu10k1 Makefile src/sys/modules/sound/sound Makefile src/sys/conf files kmod.mk src/sys/dev/sound/midi midi.c midi.h midiq.h mpu401.c mpu401.h mpu_if.m mpufoi_if.m sequencer.c sequencer.h synth_if.m X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 May 2006 16:33:41 -0000 netchild 2006-05-27 16:32:05 UTC FreeBSD src repository Modified files: sys/modules/sound/driver/cmi Makefile sys/modules/sound/driver/emu10k1 Makefile sys/modules/sound/sound Makefile sys/conf files kmod.mk Added files: sys/dev/sound/midi midi.c midi.h midiq.h mpu401.c mpu401.h mpu_if.m mpufoi_if.m sequencer.c sequencer.h synth_if.m Log: Commit the new (old) midi framework. It's based in parts on the NetBSD code, but large parts are rewritten by matk and tanimura. This is old code, it's not maintained since 2003. We also don't have a maintainer for this! Yuriy Tsibizov took it and uses it in his emu10kx driver. Since the emu10kx driver will enter the tree "soon" (some bugs have to be fixed after Yuriy return from his holidays), I add it here already. This also contains some changes to emu10k1 and cmi, so if you're lucky, you can now make some kind of use of midi with those soundcards. To all those poor souls which don't have such a card: feel free to send patches, we don't have a maintainer for this. To those which miss a specific feature in the midi code: feel free to submit patches, we don't have a maintainer for this. Oh, did I already told that it would be nice if someone would take care of it? Maintainer with midi equipment wanted! :-) If you get LOR's, submit a PR and notify multimedia@ please. If you get panics, submit a PR with a backtrace (compile the sound system into your kernel instead of using modules in this case) and notify multimedia@ please. Written by: matk, tanimura Submitted by: "Yuriy Tsibizov" Based upon: code from NetBSD Revision Changes Path 1.1119 +6 -0 src/sys/conf/files 1.208 +3 -2 src/sys/conf/kmod.mk 1.16 +1509 -0 src/sys/dev/sound/midi/midi.c (new) 1.14 +55 -0 src/sys/dev/sound/midi/midi.h (new) 1.1 +104 -0 src/sys/dev/sound/midi/midiq.h (new) 1.1 +284 -0 src/sys/dev/sound/midi/mpu401.c (new) 1.1 +37 -0 src/sys/dev/sound/midi/mpu401.h (new) 1.1 +72 -0 src/sys/dev/sound/midi/mpu_if.m (new) 1.1 +48 -0 src/sys/dev/sound/midi/mpufoi_if.m (new) 1.18 +2042 -0 src/sys/dev/sound/midi/sequencer.c (new) 1.7 +85 -0 src/sys/dev/sound/midi/sequencer.h (new) 1.1 +311 -0 src/sys/dev/sound/midi/synth_if.m (new) 1.4 +1 -0 src/sys/modules/sound/driver/cmi/Makefile 1.5 +1 -0 src/sys/modules/sound/driver/emu10k1/Makefile 1.18 +4 -0 src/sys/modules/sound/sound/Makefile