From patchwork Sat Mar 17 14:54:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Karsten Keil X-Patchwork-Id: 154511 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 43DEFB6EEB for ; Tue, 24 Apr 2012 03:10:07 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754751Ab2DWRKB (ORCPT ); Mon, 23 Apr 2012 13:10:01 -0400 Received: from moutng.kundenserver.de ([212.227.126.171]:59593 "EHLO moutng.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752690Ab2DWRIW (ORCPT ); Mon, 23 Apr 2012 13:08:22 -0400 Received: from mailone.linux-pingi.de (p5497CD69.dip.t-dialin.net [84.151.205.105]) by mrelayeu.kundenserver.de (node=mrbap4) with ESMTP (Nemesis) id 0MHpa1-1SNBAE3aN3-003cCQ; Mon, 23 Apr 2012 19:08:20 +0200 Received: from pingi6.linux-pingi.de (pingi6.linux-pingi.de [10.23.200.6]) by mailone.linux-pingi.de (Postfix) with ESMTP id D194A4FD8; Mon, 23 Apr 2012 19:08:16 +0200 (CEST) Received: by pingi6.linux-pingi.de (Postfix, from userid 1000) id 194D19FB78; Mon, 23 Apr 2012 19:05:50 +0200 (CEST) Date: Sat, 17 Mar 2012 15:54:33 +0100 Subject: [PATCH 10/28] mISDN: Add interface for PCM only access From: Karsten Keil To: David Miller Cc: netdev@vger.kernel.org, isdn4linux@listserv.isdn4linux.de Message-Id: <20120423170550.194D19FB78@pingi6.linux-pingi.de> X-Provags-ID: V02:K0:VsV0V1NGrdWWEPgS0StnC2xp/jOBlMd8HFrA5pS46f0 MIEQSvnGT236RoJKWYYJ9QMzsjhYuv7/IFWherKAn/EsPm3f5a IfCG6n4/uao6BTW+t4HZP0iOAAPonW+k5aVjyEU+S7EhdmcNnw 9+l2hHLVEaJvKIQKt0bkl/m+GyqG4e46hAiT2lRqQNmyQO4MPZ FTeE+Z/Ol4doTUll+TwKR0v269dWCU77aNh0+PnXTwEr/MGT0y UW+oGSHSAe0QrQ8ZygWUrVnc96MdwlKWC4AVx11UWCRXEPzkJ/ nySI3EFYrLtWgRqfq8NnoNOM5fqqYUTfrj5ep4lO//DphlpzzE Bh2J7H1ZJ7JsWomYSPnLI7KMGMC/vGQuPNTL/9G6oAP9TRi/I1 OV0RKoLoCfrdaUPZKhItrGX9/lVdyG2pmY= Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Sometimes the ISDN chip only control the D-channel and B-channel are only accessed via the PCM interface. Add infrastruckture for this mode. Signed-off-by: Karsten Keil --- drivers/isdn/mISDN/socket.c | 1 + include/linux/mISDNhw.h | 3 +++ include/linux/mISDNif.h | 13 +++++++++---- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/drivers/isdn/mISDN/socket.c b/drivers/isdn/mISDN/socket.c index abe2d69..1254d8d 100644 --- a/drivers/isdn/mISDN/socket.c +++ b/drivers/isdn/mISDN/socket.c @@ -544,6 +544,7 @@ data_sock_bind(struct socket *sock, struct sockaddr *addr, int addr_len) err = create_l2entity(_pms(sk)->dev, &_pms(sk)->ch, sk->sk_protocol, maddr); break; + case ISDN_P_B_PCM: case ISDN_P_B_RAW: case ISDN_P_B_HDLC: case ISDN_P_B_X75SLP: diff --git a/include/linux/mISDNhw.h b/include/linux/mISDNhw.h index 4af8414..74d5734 100644 --- a/include/linux/mISDNhw.h +++ b/include/linux/mISDNhw.h @@ -5,6 +5,7 @@ * Basic declarations for the mISDN HW channels * * Copyright 2008 by Karsten Keil + * Copyright 2009-2012 by Karsten Keil * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -148,6 +149,8 @@ struct bchannel { u_int state; void *hw; int slot; /* multiport card channel slot */ + int pcm_tx; /* PCM tx slot nr */ + int pcm_rx; /* PCM rx slot nr */ struct timer_list timer; /* receive data */ struct sk_buff *rx_skb; diff --git a/include/linux/mISDNif.h b/include/linux/mISDNif.h index b5e7f22..bdda647 100644 --- a/include/linux/mISDNif.h +++ b/include/linux/mISDNif.h @@ -37,7 +37,7 @@ */ #define MISDN_MAJOR_VERSION 1 #define MISDN_MINOR_VERSION 1 -#define MISDN_RELEASE 21 +#define MISDN_RELEASE 24 /* primitives for information exchange * generell format @@ -229,7 +229,7 @@ #define ISDN_P_B_MASK 0x1f #define ISDN_P_B_START 0x20 - +#define ISDN_P_B_PCM 0x20 #define ISDN_P_B_RAW 0x21 #define ISDN_P_B_HDLC 0x22 #define ISDN_P_B_X75SLP 0x23 @@ -360,8 +360,8 @@ clear_channelmap(u_int nr, u_char *map) #define MISDN_CTRL_LOOP 0x0001 #define MISDN_CTRL_CONNECT 0x0002 #define MISDN_CTRL_DISCONNECT 0x0004 -#define MISDN_CTRL_PCMCONNECT 0x0010 -#define MISDN_CTRL_PCMDISCONNECT 0x0020 +#define MISDN_CTRL_GET_PCM_SLOTS 0x0010 +#define MISDN_CTRL_SET_PCM_SLOTS 0x0020 #define MISDN_CTRL_SETPEER 0x0040 #define MISDN_CTRL_UNSETPEER 0x0080 #define MISDN_CTRL_RX_OFF 0x0100 @@ -381,6 +381,10 @@ clear_channelmap(u_int nr, u_char *map) #define MISDN_CTRL_HFC_WD_INIT 0x4009 #define MISDN_CTRL_HFC_WD_RESET 0x400A +/* special PCM slot numbers */ +#define MISDN_PCM_SLOT_DISABLE -1 /* PCM disabled */ +#define MISDN_PCM_SLOT_IGNORE -2 /* PCM setting will be not changed */ + /* socket options */ #define MISDN_TIME_STAMP 0x0001 @@ -389,6 +393,7 @@ struct mISDN_ctrl_req { int channel; int p1; int p2; + int p3; }; /* muxer options */