[ patch 7/7] drivers/serial/jsm: new serial device driver

From: Wen Xiong (wendyx_at_us.ibm.com)
Date: 02/28/05

  • Next message: Rik van Riel: "Re: Slowdown on high-load machines with 3000 sockets"
    Date:	Sun, 27 Feb 2005 18:40:36 -0500
    To: linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org
    
    
    

    This patch includes drivers/serial/Kconfig, drivers/serial/Makefile,
    serial_core.h and Makefile for jsm device driver.

    Signed-off-by: Wen Xiong <wendyx@us.ltcfwd.linux.ibm.com>

    
    

    diff -Nuar linux-2.6.9.orig/drivers/serial/Kconfig linux-2.6.9.new/drivers/serial/Kconfig
    --- linux-2.6.9.orig/drivers/serial/Kconfig 2005-02-18 09:08:04.000000000 -0600
    +++ linux-2.6.9.new/drivers/serial/Kconfig 2005-02-27 17:03:04.597029080 -0600
    @@ -572,5 +572,20 @@
     
               This driver can also be built as a module. If so, the module
               will be called icom.
    +
    +config SERIAL_JSM
    + tristate "Digi International NEO PCI Support"
    + select SERIAL_CORE
    + help
    + This is a driver for Digi International's Neo series
    + of cards which provide multiple serial ports. You would need
    + something like this to connect more than two modems to your Linux
    + box, for instance in order to become a dial-in server. This driver
    + supports PCI boards only.
    + If you have a card like this, say Y here and read the file
    + <file:Documentation/digidgnc.txt>.
    +
    + To compile this driver as a module, choose M here: the
    + module will be called jsm.
     endmenu
     
    diff -Nuar linux-2.6.9.orig/drivers/serial/Makefile linux-2.6.9.new/drivers/serial/Makefile
    --- linux-2.6.9.orig/drivers/serial/Makefile 2005-02-18 09:08:10.000000000 -0600
    +++ linux-2.6.9.new/drivers/serial/Makefile 2005-02-27 17:03:32.251950560 -0600
    @@ -37,3 +37,4 @@
     obj-$(CONFIG_SERIAL_DZ) += dz.o
     obj-$(CONFIG_SERIAL_SH_SCI) += sh-sci.o
     obj-$(CONFIG_SERIAL_ICOM) += icom.o
    +obj-$(CONFIG_SERIAL_JSM) += jsm/
    diff -Nuar linux-2.6.9.orig/drivers/serial/jsm/Makefile linux-2.6.9.new/drivers/serial/jsm/Makefile
    --- linux-2.6.9.orig/drivers/serial/jsm/Makefile 1969-12-31 18:00:00.000000000 -0600
    +++ linux-2.6.9.new/drivers/serial/jsm/Makefile 2005-02-27 17:01:43.725941288 -0600
    @@ -0,0 +1,36 @@
    +##################################################################
    +# Copyright 2003 Digi International (www.digi.com)
    +# Scott H Kilau <Scott_Kilau at digi dot com>
    +#
    +# This program is free software; you can redistribute it and/or modify
    +# it under the terms of the GNU General Public License as published by
    +# the Free Software Foundation; either version 2, or (at your option)
    +# any later version.
    +#
    +# This program is distributed in the hope that it will be useful,
    +# but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the
    +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
    +# PURPOSE. See the GNU General Public License for more details.
    +#
    +# You should have received a copy of the GNU General Public License
    +# along with this program; if not, write to the Free Software
    +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    +#
    +#
    +# NOTE TO LINUX KERNEL HACKERS: DO NOT REFORMAT THIS CODE!
    +#
    +# Send any bug fixes/changes to: Eng.Linux at digi dot com.
    +# Thank you.
    +#
    +#
    +##################################################################
    +
    +#
    +# Makefile for Jasmine adapter
    +#
    +
    +obj-$(CONFIG_SERIAL_JSM) += jsm.o
    +
    +jsm-objs := jsm_driver.o jsm_mgmt.o jsm_neo.o\
    + jsm_proc.o jsm_tty.o
    +
    diff -Nuar linux-2.6.9.orig/include/linux/serial_core.h linux-2.6.9.new/include/linux/serial_core.h
    --- linux-2.6.9.orig/include/linux/serial_core.h 2005-02-18 09:31:07.000000000 -0600
    +++ linux-2.6.9.new/include/linux/serial_core.h 2005-02-18 09:09:59.000000000 -0600
    @@ -86,6 +86,9 @@
     /* IBM icom */
     #define PORT_ICOM 55
     
    +/*Digi dgnc */
    +#define PORT_JSM 56
    +
     #ifdef __KERNEL__
     
     #include <linux/config.h>

    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/


  • Next message: Rik van Riel: "Re: Slowdown on high-load machines with 3000 sockets"