From owner-freebsd-isdn Fri Aug 23 5:51:14 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C19FE37B401 for ; Fri, 23 Aug 2002 05:51:07 -0700 (PDT) Received: from fep01-svc.swip.net (fep01.swip.net [130.244.199.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D5DE43E6E for ; Fri, 23 Aug 2002 05:51:06 -0700 (PDT) (envelope-from hselasky@c2i.net) Received: from mta-int.swip.net ([192.168.145.28]) by fep01-svc.swip.net with SMTP id <20020823125105.EQHF29728.fep01-svc.swip.net@mta-int.swip.net> for ; Fri, 23 Aug 2002 14:51:05 +0200 X-Originating-IP: [128.39.202.179] From: To: freebsd-isdn@freebsd.org Subject: New ihfc driver Date: Fri, 23 Aug 2002 14:51:02 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=____1030107062510_4IRi0jLcsq" Message-Id: <20020823125105.EQHF29728.fep01-svc.swip.net@mta-int.swip.net> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=____1030107062510_4IRi0jLcsq Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi. I've been working on a new driver for i4b supporting some (new) cards. The driver does not include DOV support, and if there has been any other commits this summer (after MAY) I would be glad if someone could make and send me patches against my driver. Please see attachment for more information. About the HFC PCMIA support the PCMIA version should work, given internal IO and IRQ are right. If someone could send me the wiring of the chip to the PCMIA slot + other chips on the card + PnP/PCI id if present, I could write the tables needed for automatic setup and add it to my driver. -- Yours HPS ------------------------------------------------- WebMail fra Tele2 http://www.tele2.no ------------------------------------------------- ------=____1030107062510_4IRi0jLcsq Content-Type: text/plain; name="driver_info.txt" Content-Disposition: inline; filename="driver_info.txt" For developers and others wanting to help debug: Driver can be downloaded from: http://home.c2i.net/hselasky/isdn4bsd/privat/temporary/new_ihfc_0_1.tar.bz2 List of new features currently not found in I4B: - Driver uses mutexes to protect chip access. - Direct access to D-channel and B-channel(not finished, but works) - Support for: - NT-mode (IPAC chips support line switch instead) - data filters (``as plug-ins'') - drivers (``as plug-ins'') - polled interrupt mode - chip reset - HFCS-PCI About the driver: ================= The driver supports generic IPAC/ISAC/HSCX/HFC chips and allows the drivers to emulate behind one or more of those chips. As a consequence of this any ring-buffer (``weird buffering'') or block-buffer isdn device can easily be implemented with a minimum of code. To have more people being able to test the driver there has been added support for some cards already found in ISDN4BSD. Please see the new_ihfc.4 manual. NOTE: Only HFC based and Dynalink compatible cards have been tested. Please send patches using `diff -crN` and include the complete file if the patch is big. NOTE: Code outside of i4b/layer1/ was rewritten. Possible kernel bugs found: =========================== 1. (not patched, only temporary workaround) In the function static int isa_find_irq(device_t child, struct isa_config *config, struct isa_config *result) the following lines have been added, though it is bus_alloc_resource that doesn't check that RF_SHAREABLE is not present?! /* Don't share IRQ unless the driver wants */ if(res[i]->r_sharehead) { bus_release_resource(child, SYS_RES_IRQ, i, res[i]); res[i] = 0; continue; } 2. (not patched, only temporary workaround) the function device_get_namenunit(dev) in /sys/kern/subr_bus.c returns one text pointer value at probe time and another after attach. device_get_nameunit(dev) should be considered the same way as device_get_softc(dev) in my opinion. 3. (no patch) when using Polled mode the KERNEL provides no function to switch the interrupt output of a card to an unused pin. All PnP controllers should support this (and maybe PCI controllers too), but there are no routines to call that will do this! Currently only HFC chips support switching of IRQ in hardware, any maybe the old ISA cards if you can remove the IRQ jumper! This might be interesting for people wanting to use their old ISA cards, but doesn't want to spend time on configuration. TODO: ===== 1. Currently freeing an mbuf takes ``so long time'' that if it is done before ISAC/HSCX cmdr write, that command may fail (no fix). Is a mutex sleeping problem? Also when switching the console there may occur glitches in the output stream. Maybe ISDN4BSD should use a fixed ring of mbufs to speed up allocation and freeing? How to install: ============= 1. manually add these lines to /sys/conf/files.i386 at the line saying: # # isdn4bsd, needed for isic | iwic | ifpi | ifpi2 | ihfc | ifpnp | itjc # # add this: i4b/layer1/i4b_l1dmux.c optional new_ihfc i4b/layer1/i4b_l1lib.c optional new_ihfc # # and this: # # isdn4bsd, new_ihfc # i4b/layer1/ihfc2/i4b_ihfc2_l1if.c optional new_ihfc i4b/layer1/ihfc2/i4b_ihfc2_pnp.c optional new_ihfc i4b/layer1/ihfc2/i4b_ihfc2_drv.c optional new_ihfc i4b/layer1/ihfc2/i4b_ihfc2_dev.c optional new_ihfc 2. make sure the following lines are in your kernel configuration file: # I4B section options IPR_VJ device "i4bq921" 1 device "i4bq931" 1 device "i4b" 1 device "i4btrc" 8 device "i4bctl" 1 device "i4brbch" 8 device "i4btel" 8 device "i4bipr" 8 device "i4bisppp" 8 device new_ihfc 3. make backup of these directories if you don't want to develop the driver mkdir /usr/i4b_bak || exit mkdir /usr/i4b_bak/sys || exit cp -rv /usr/include/machine /usr/i4b_bak/ cp -rv /usr/src/sys/i386/include /usr/i4b_bak/sys/ cp -rv /usr/src/usr.sbin/i4b /usr/i4b_bak/ cp -rv /usr/src/sys/i4b /usr/i4b_bak/sys/ cp -rv /usr/src/sys/isa/isa_common.c /usr/i4b_bak/ rm -rv /usr/src/sys/i4b/* 4. install the driver like this tar -jxvf new_ihfc*.tar.bz2 -C /usr/src/ cp -rv /usr/src/sys/i386/include/*i4b* /usr/include/machine/ 5. run your kernel configuration script 6. recompile the kernel (remove all *i4b*.o files from the compile directory or make clean build) 7. hopefully no errors should occur during compilation. 8. after the kernel has been compiled recompile isdndebug and manual pages (`man new_ihfc' should work afterwards) cd /usr/src/usr.sbin/i4b/ make all install 9. make a backup of the old kernel in case it doesn't work. 10. reboot -HPS ------=____1030107062510_4IRi0jLcsq-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Aug 23 5:51:27 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8B8137B405 for ; Fri, 23 Aug 2002 05:51:07 -0700 (PDT) Received: from fep01-svc.swip.net (fep01.swip.net [130.244.199.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id E203D43E4A for ; Fri, 23 Aug 2002 05:51:05 -0700 (PDT) (envelope-from hselasky@c2i.net) Received: from mta-int.swip.net ([192.168.145.28]) by fep01-svc.swip.net with SMTP id <20020823125105.EQHE29728.fep01-svc.swip.net@mta-int.swip.net> for ; Fri, 23 Aug 2002 14:51:05 +0200 X-Originating-IP: [128.39.202.179] From: To: freebsd-isdn@freebsd.org Subject: New ihfc driver Date: Fri, 23 Aug 2002 14:51:02 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=____1030107062407_R)SYISCpjH" Message-Id: <20020823125105.EQHE29728.fep01-svc.swip.net@mta-int.swip.net> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=____1030107062407_R)SYISCpjH Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi. I've been working on a new driver for i4b supporting some (new) cards. The driver does not include DOV support, and if there has been any other commits this summer (after MAY) I would be glad if someone could make and send me patches against my driver. Please see attachment for more information. About the HFC PCMIA support the PCMIA version should work, given internal IO and IRQ are right. If someone could send me the wiring of the chip to the PCMIA slot + other chips on the card + PnP/PCI id if present, I could write the tables needed for automatic setup and add it to my driver. -- Yours HPS ------------------------------------------------- WebMail fra Tele2 http://www.tele2.no ------------------------------------------------- ------=____1030107062407_R)SYISCpjH Content-Type: text/plain; name="driver_info.txt" Content-Disposition: inline; filename="driver_info.txt" For developers and others wanting to help debug: Driver can be downloaded from: http://home.c2i.net/hselasky/isdn4bsd/privat/temporary/new_ihfc_0_1.tar.bz2 List of new features currently not found in I4B: - Driver uses mutexes to protect chip access. - Direct access to D-channel and B-channel(not finished, but works) - Support for: - NT-mode (IPAC chips support line switch instead) - data filters (``as plug-ins'') - drivers (``as plug-ins'') - polled interrupt mode - chip reset - HFCS-PCI About the driver: ================= The driver supports generic IPAC/ISAC/HSCX/HFC chips and allows the drivers to emulate behind one or more of those chips. As a consequence of this any ring-buffer (``weird buffering'') or block-buffer isdn device can easily be implemented with a minimum of code. To have more people being able to test the driver there has been added support for some cards already found in ISDN4BSD. Please see the new_ihfc.4 manual. NOTE: Only HFC based and Dynalink compatible cards have been tested. Please send patches using `diff -crN` and include the complete file if the patch is big. NOTE: Code outside of i4b/layer1/ was rewritten. Possible kernel bugs found: =========================== 1. (not patched, only temporary workaround) In the function static int isa_find_irq(device_t child, struct isa_config *config, struct isa_config *result) the following lines have been added, though it is bus_alloc_resource that doesn't check that RF_SHAREABLE is not present?! /* Don't share IRQ unless the driver wants */ if(res[i]->r_sharehead) { bus_release_resource(child, SYS_RES_IRQ, i, res[i]); res[i] = 0; continue; } 2. (not patched, only temporary workaround) the function device_get_namenunit(dev) in /sys/kern/subr_bus.c returns one text pointer value at probe time and another after attach. device_get_nameunit(dev) should be considered the same way as device_get_softc(dev) in my opinion. 3. (no patch) when using Polled mode the KERNEL provides no function to switch the interrupt output of a card to an unused pin. All PnP controllers should support this (and maybe PCI controllers too), but there are no routines to call that will do this! Currently only HFC chips support switching of IRQ in hardware, any maybe the old ISA cards if you can remove the IRQ jumper! This might be interesting for people wanting to use their old ISA cards, but doesn't want to spend time on configuration. TODO: ===== 1. Currently freeing an mbuf takes ``so long time'' that if it is done before ISAC/HSCX cmdr write, that command may fail (no fix). Is a mutex sleeping problem? Also when switching the console there may occur glitches in the output stream. Maybe ISDN4BSD should use a fixed ring of mbufs to speed up allocation and freeing? How to install: ============= 1. manually add these lines to /sys/conf/files.i386 at the line saying: # # isdn4bsd, needed for isic | iwic | ifpi | ifpi2 | ihfc | ifpnp | itjc # # add this: i4b/layer1/i4b_l1dmux.c optional new_ihfc i4b/layer1/i4b_l1lib.c optional new_ihfc # # and this: # # isdn4bsd, new_ihfc # i4b/layer1/ihfc2/i4b_ihfc2_l1if.c optional new_ihfc i4b/layer1/ihfc2/i4b_ihfc2_pnp.c optional new_ihfc i4b/layer1/ihfc2/i4b_ihfc2_drv.c optional new_ihfc i4b/layer1/ihfc2/i4b_ihfc2_dev.c optional new_ihfc 2. make sure the following lines are in your kernel configuration file: # I4B section options IPR_VJ device "i4bq921" 1 device "i4bq931" 1 device "i4b" 1 device "i4btrc" 8 device "i4bctl" 1 device "i4brbch" 8 device "i4btel" 8 device "i4bipr" 8 device "i4bisppp" 8 device new_ihfc 3. make backup of these directories if you don't want to develop the driver mkdir /usr/i4b_bak || exit mkdir /usr/i4b_bak/sys || exit cp -rv /usr/include/machine /usr/i4b_bak/ cp -rv /usr/src/sys/i386/include /usr/i4b_bak/sys/ cp -rv /usr/src/usr.sbin/i4b /usr/i4b_bak/ cp -rv /usr/src/sys/i4b /usr/i4b_bak/sys/ cp -rv /usr/src/sys/isa/isa_common.c /usr/i4b_bak/ rm -rv /usr/src/sys/i4b/* 4. install the driver like this tar -jxvf new_ihfc*.tar.bz2 -C /usr/src/ cp -rv /usr/src/sys/i386/include/*i4b* /usr/include/machine/ 5. run your kernel configuration script 6. recompile the kernel (remove all *i4b*.o files from the compile directory or make clean build) 7. hopefully no errors should occur during compilation. 8. after the kernel has been compiled recompile isdndebug and manual pages (`man new_ihfc' should work afterwards) cd /usr/src/usr.sbin/i4b/ make all install 9. make a backup of the old kernel in case it doesn't work. 10. reboot -HPS ------=____1030107062407_R)SYISCpjH-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Aug 23 9:46:34 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FEAE37B400 for ; Fri, 23 Aug 2002 09:46:32 -0700 (PDT) Received: from accms33.physik.rwth-aachen.de (accms33.physik.RWTH-Aachen.DE [137.226.46.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BBDF43E42 for ; Fri, 23 Aug 2002 09:46:31 -0700 (PDT) (envelope-from kuku@accms33.physik.rwth-aachen.de) Received: (from kuku@localhost) by accms33.physik.rwth-aachen.de (8.9.3/8.9.3) id SAA19866 for freebsd-isdn@freebsd.org; Fri, 23 Aug 2002 18:46:30 +0200 Date: Fri, 23 Aug 2002 18:46:30 +0200 From: Christoph Kukulies Message-Id: <200208231646.SAA19866@accms33.physik.rwth-aachen.de> To: freebsd-isdn@freebsd.org Subject: 4.6 - upgrade - nogo Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I did an upgrade of my system 4.5 System to 4.6 today and presently I'm cut off the net via i4b for the moment since dialing into my provider no longer works. I'm getting a permanent deactivation after isdnd did connection about ten times. From the log window I can see that I'm disconnected from the opposite site. isp0 is up and running. My password hasn't changed, though the install process clobbered my /etc/rc.conf. It couldnt cope with the \ (backslash) I had in my ispppcontrol connection string. Help. What has changed so significantly that I cannot connect any longer? -- Chris Christoph P. U. Kukulies kukulies@rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Aug 23 12:49:30 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4541337B400 for ; Fri, 23 Aug 2002 12:49:28 -0700 (PDT) Received: from mailout09.sul.t-online.com (mailout09.sul.t-online.com [194.25.134.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3394F43E88 for ; Fri, 23 Aug 2002 12:46:36 -0700 (PDT) (envelope-from garyj@jennejohn.org) Received: from fwd10.sul.t-online.de by mailout09.sul.t-online.com with smtp id 17iKMe-00037b-04; Fri, 23 Aug 2002 21:45:00 +0200 Received: from peedub.jennejohn.org (520017439985-0001@[217.80.238.92]) by fmrl10.sul.t-online.com with esmtp id 17iKMX-0DvicKC; Fri, 23 Aug 2002 21:44:53 +0200 Received: from peedub.jennejohn.org (localhost [127.0.0.1]) by peedub.jennejohn.org (8.12.5/8.11.6) with ESMTP id g7NJikok041584; Fri, 23 Aug 2002 21:44:47 +0200 (CEST) (envelope-from garyj@peedub.jennejohn.org) Message-Id: <200208231944.g7NJikok041584@peedub.jennejohn.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Christoph Kukulies Cc: freebsd-isdn@freebsd.org Subject: Re: 4.6 - upgrade - nogo Reply-To: Gary Jennejohn In-reply-to: Your message of "Fri, 23 Aug 2002 18:46:30 +0200." <200208231646.SAA19866@accms33.physik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 23 Aug 2002 21:44:46 +0200 From: Gary Jennejohn X-Sender: 520017439985-0001@t-dialin.net Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Christoph Kukulies writes: > Help. What has changed so significantly that I cannot connect any longer? > IIRC ispppcontrol has been replaced by spppcontrol. --- Gary Jennejohn / garyj@jennejohn.org gj@freebsd.org gj@denx.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Aug 23 19:28:53 2002 Delivered-To: freebsd-isdn@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C4C737B400 for ; Fri, 23 Aug 2002 19:28:50 -0700 (PDT) Received: from freecelebbabes.com (blk4.net7-8.nuhosting.com [66.102.227.200]) by mx1.FreeBSD.org (Postfix) with SMTP id CD50843E3B for ; Fri, 23 Aug 2002 19:28:44 -0700 (PDT) (envelope-from returns-94259-861469@freecelebbabes.com) Date: Sat, 24 Aug 2002 02:30:57 -0000 Message-ID: From: "vicki" To: Subject: Your favorite pornstars MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0073_01C1B54B.A1B394C0" X-Accept-Language: en Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ------=_NextPart_000_0073_01C1B54B.A1B394C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit FREE CELEBRITY PORN!!! Click here to enter http://www.freecelebbabes.com/cott/ae72c0ac1485d28fbd9dbd0ed42c168b All new exclusiveb celebs and private collection pics from paparazzi including: Britney Spears, Anna Kournikova, Angelina Jolie Shakira, Jenifer Lopez, Christina Aguilera and many more. http://www.freecelebbabes.com/cott/ae72c0ac1485d28fbd9dbd0ed42c168b The rarest, newest pics exclusive to Freecelebbabes.net Join now for FREE ALL ACCESS To take your name off our list please click here: http://www.freecelebbabes.com/rr/cott/ae72c0ac1485d28fbd9dbd0ed42c168b ------=_NextPart_000_0073_01C1B54B.A1B394C0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: 7bit FREE CELEB HARDCORE ACCESS!
FREE INSTANT VIP ACCESS!!
we offer the most celeb content on the web!!
all 100% free and triple X hardcore.

-CANDID CAMERAS-
-BEFORE THEY WERE FAMOUS-
-UNRELEASED PHOTOSHOOTS-
-KINKY HOME MOVIES-


FREE HARDCORE CELEB ACTION
FREE XXX!




Note: this is not a spam email. This email was sent to you because your email was entered in on a website
requesting to be a registered subscriber. If you would would like to be removed from our list,
CLICK HERE TO CANCEL YOUR ACCOUNT and you will *never* receive another email from us!
------=_NextPart_000_0073_01C1B54B.A1B394C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message