rioctrl.c

来自「LINUX 2.6.17.4的源码」· C语言 代码 · 共 1,498 行 · 第 1/4 页

C
1,498
字号
/*** -----------------------------------------------------------------------------****  Perle Specialix driver for Linux**  Ported from existing RIO Driver for SCO sources. * *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK. * *      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 of the License, or *      (at your option) any later version. * *      This program is distributed in the hope that it will be useful, *      but WITHOUT ANY WARRANTY; 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.****	Module		: rioctrl.c**	SID		: 1.3**	Last Modified	: 11/6/98 10:33:42**	Retrieved	: 11/6/98 10:33:49****  ident @(#)rioctrl.c	1.3**** -----------------------------------------------------------------------------*/#ifdef SCCS_LABELSstatic char *_rioctrl_c_sccs_ = "@(#)rioctrl.c	1.3";#endif#include <linux/module.h>#include <linux/slab.h>#include <linux/errno.h>#include <asm/io.h>#include <asm/system.h>#include <asm/string.h>#include <asm/semaphore.h>#include <asm/uaccess.h>#include <linux/termios.h>#include <linux/serial.h>#include <linux/generic_serial.h>#include "linux_compat.h"#include "rio_linux.h"#include "pkt.h"#include "daemon.h"#include "rio.h"#include "riospace.h"#include "cmdpkt.h"#include "map.h"#include "rup.h"#include "port.h"#include "riodrvr.h"#include "rioinfo.h"#include "func.h"#include "errors.h"#include "pci.h"#include "parmmap.h"#include "unixrup.h"#include "board.h"#include "host.h"#include "phb.h"#include "link.h"#include "cmdblk.h"#include "route.h"#include "cirrus.h"#include "rioioctl.h"static struct LpbReq LpbReq;static struct RupReq RupReq;static struct PortReq PortReq;static struct HostReq HostReq;static struct HostDpRam HostDpRam;static struct DebugCtrl DebugCtrl;static struct Map MapEnt;static struct PortSetup PortSetup;static struct DownLoad DownLoad;static struct SendPack SendPack;/* static struct StreamInfo	StreamInfo; *//* static char modemtable[RIO_PORTS]; */static struct SpecialRupCmd SpecialRupCmd;static struct PortParams PortParams;static struct portStats portStats;static struct SubCmdStruct {	ushort Host;	ushort Rup;	ushort Port;	ushort Addr;} SubCmd;struct PortTty {	uint port;	struct ttystatics Tty;};static struct PortTty PortTty;typedef struct ttystatics TERMIO;/*** This table is used when the config.rio downloads bin code to the** driver. We index the table using the product code, 0-F, and call** the function pointed to by the entry, passing the information** about the boot.** The RIOBootCodeUNKNOWN entry is there to politely tell the calling** process to bog off.*/static int (*RIOBootTable[MAX_PRODUCT]) (struct rio_info *, struct DownLoad *) = {					/* 0 */ RIOBootCodeHOST,					/* Host Card */					/* 1 */ RIOBootCodeRTA,					/* RTA */};#define drv_makedev(maj, min) ((((uint) maj & 0xff) << 8) | ((uint) min & 0xff))int riocontrol(p, dev, cmd, arg, su)struct rio_info *p;dev_t dev;int cmd;caddr_t arg;int su;{	uint Host;		/* leave me unsigned! */	uint port;		/* and me! */	struct Host *HostP;	ushort loop;	int Entry;	struct Port *PortP;	struct PKT *PacketP;	int retval = 0;	unsigned long flags;	func_enter();	/* Confuse the compiler to think that we've initialized these */	Host = 0;	PortP = NULL;	rio_dprintk(RIO_DEBUG_CTRL, "control ioctl cmd: 0x%x arg: %p\n", cmd, arg);	switch (cmd) {		/*		 ** RIO_SET_TIMER		 **		 ** Change the value of the host card interrupt timer.		 ** If the host card number is -1 then all host cards are changed		 ** otherwise just the specified host card will be changed.		 */	case RIO_SET_TIMER:		rio_dprintk(RIO_DEBUG_CTRL, "RIO_SET_TIMER to %ldms\n", (unsigned long)arg);		{			int host, value;			host = ((unsigned long) arg >> 16) & 0x0000FFFF;			value = (unsigned long) arg & 0x0000ffff;			if (host == -1) {				for (host = 0; host < p->RIONumHosts; host++) {					if (p->RIOHosts[host].Flags == RC_RUNNING) {						writew(value, &p->RIOHosts[host].ParmMapP->timer);					}				}			} else if (host >= p->RIONumHosts) {				return -EINVAL;			} else {				if (p->RIOHosts[host].Flags == RC_RUNNING) {					writew(value, &p->RIOHosts[host].ParmMapP->timer);				}			}		}		return 0;	case RIO_FOAD_RTA:		rio_dprintk(RIO_DEBUG_CTRL, "RIO_FOAD_RTA\n");		return RIOCommandRta(p, (unsigned long)arg, RIOFoadRta);	case RIO_ZOMBIE_RTA:		rio_dprintk(RIO_DEBUG_CTRL, "RIO_ZOMBIE_RTA\n");		return RIOCommandRta(p, (unsigned long)arg, RIOZombieRta);	case RIO_IDENTIFY_RTA:		rio_dprintk(RIO_DEBUG_CTRL, "RIO_IDENTIFY_RTA\n");		return RIOIdentifyRta(p, arg);	case RIO_KILL_NEIGHBOUR:		rio_dprintk(RIO_DEBUG_CTRL, "RIO_KILL_NEIGHBOUR\n");		return RIOKillNeighbour(p, arg);	case SPECIAL_RUP_CMD:		{			struct CmdBlk *CmdBlkP;			rio_dprintk(RIO_DEBUG_CTRL, "SPECIAL_RUP_CMD\n");			if (copy_from_user(&SpecialRupCmd, arg, sizeof(SpecialRupCmd))) {				rio_dprintk(RIO_DEBUG_CTRL, "SPECIAL_RUP_CMD copy failed\n");				p->RIOError.Error = COPYIN_FAILED;				return -EFAULT;			}			CmdBlkP = RIOGetCmdBlk();			if (!CmdBlkP) {				rio_dprintk(RIO_DEBUG_CTRL, "SPECIAL_RUP_CMD GetCmdBlk failed\n");				return -ENXIO;			}			CmdBlkP->Packet = SpecialRupCmd.Packet;			if (SpecialRupCmd.Host >= p->RIONumHosts)				SpecialRupCmd.Host = 0;			rio_dprintk(RIO_DEBUG_CTRL, "Queue special rup command for host %d rup %d\n", SpecialRupCmd.Host, SpecialRupCmd.RupNum);			if (RIOQueueCmdBlk(&p->RIOHosts[SpecialRupCmd.Host], SpecialRupCmd.RupNum, CmdBlkP) == RIO_FAIL) {				printk(KERN_WARNING "rio: FAILED TO QUEUE SPECIAL RUP COMMAND\n");			}			return 0;		}	case RIO_DEBUG_MEM:		return -EPERM;	case RIO_ALL_MODEM:		rio_dprintk(RIO_DEBUG_CTRL, "RIO_ALL_MODEM\n");		p->RIOError.Error = IOCTL_COMMAND_UNKNOWN;		return -EINVAL;	case RIO_GET_TABLE:		/*		 ** Read the routing table from the device driver to user space		 */		rio_dprintk(RIO_DEBUG_CTRL, "RIO_GET_TABLE\n");		if ((retval = RIOApel(p)) != 0)			return retval;		if (copy_to_user(arg, p->RIOConnectTable, TOTAL_MAP_ENTRIES * sizeof(struct Map))) {			rio_dprintk(RIO_DEBUG_CTRL, "RIO_GET_TABLE copy failed\n");			p->RIOError.Error = COPYOUT_FAILED;			return -EFAULT;		}		{			int entry;			rio_dprintk(RIO_DEBUG_CTRL, "*****\nMAP ENTRIES\n");			for (entry = 0; entry < TOTAL_MAP_ENTRIES; entry++) {				if ((p->RIOConnectTable[entry].ID == 0) && (p->RIOConnectTable[entry].HostUniqueNum == 0) && (p->RIOConnectTable[entry].RtaUniqueNum == 0))					continue;				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.HostUniqueNum = 0x%x\n", entry, p->RIOConnectTable[entry].HostUniqueNum);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.RtaUniqueNum = 0x%x\n", entry, p->RIOConnectTable[entry].RtaUniqueNum);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.ID = 0x%x\n", entry, p->RIOConnectTable[entry].ID);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.ID2 = 0x%x\n", entry, p->RIOConnectTable[entry].ID2);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Flags = 0x%x\n", entry, (int) p->RIOConnectTable[entry].Flags);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.SysPort = 0x%x\n", entry, (int) p->RIOConnectTable[entry].SysPort);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Top[0].Unit = %x\n", entry, p->RIOConnectTable[entry].Topology[0].Unit);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Top[0].Link = %x\n", entry, p->RIOConnectTable[entry].Topology[0].Link);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Top[1].Unit = %x\n", entry, p->RIOConnectTable[entry].Topology[1].Unit);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Top[1].Link = %x\n", entry, p->RIOConnectTable[entry].Topology[1].Link);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Top[2].Unit = %x\n", entry, p->RIOConnectTable[entry].Topology[2].Unit);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Top[2].Link = %x\n", entry, p->RIOConnectTable[entry].Topology[2].Link);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Top[3].Unit = %x\n", entry, p->RIOConnectTable[entry].Topology[3].Unit);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Top[4].Link = %x\n", entry, p->RIOConnectTable[entry].Topology[3].Link);				rio_dprintk(RIO_DEBUG_CTRL, "Map entry %d.Name = %s\n", entry, p->RIOConnectTable[entry].Name);			}			rio_dprintk(RIO_DEBUG_CTRL, "*****\nEND MAP ENTRIES\n");		}		p->RIOQuickCheck = NOT_CHANGED;	/* a table has been gotten */		return 0;	case RIO_PUT_TABLE:		/*		 ** Write the routing table to the device driver from user space		 */		rio_dprintk(RIO_DEBUG_CTRL, "RIO_PUT_TABLE\n");		if (!su) {			rio_dprintk(RIO_DEBUG_CTRL, "RIO_PUT_TABLE !Root\n");			p->RIOError.Error = NOT_SUPER_USER;			return -EPERM;		}		if (copy_from_user(&p->RIOConnectTable[0], arg, TOTAL_MAP_ENTRIES * sizeof(struct Map))) {			rio_dprintk(RIO_DEBUG_CTRL, "RIO_PUT_TABLE copy failed\n");			p->RIOError.Error = COPYIN_FAILED;			return -EFAULT;		}/************************************				{					int entry;					rio_dprint(RIO_DEBUG_CTRL,  ("*****\nMAP ENTRIES\n") );					for ( entry=0; entry<TOTAL_MAP_ENTRIES; entry++ )					{						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.HostUniqueNum = 0x%x\n", entry, p->RIOConnectTable[entry].HostUniqueNum ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.RtaUniqueNum = 0x%x\n", entry, p->RIOConnectTable[entry].RtaUniqueNum ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.ID = 0x%x\n", entry, p->RIOConnectTable[entry].ID ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.ID2 = 0x%x\n", entry, p->RIOConnectTable[entry].ID2 ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Flags = 0x%x\n", entry, p->RIOConnectTable[entry].Flags ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.SysPort = 0x%x\n", entry, p->RIOConnectTable[entry].SysPort ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Top[0].Unit = %b\n", entry, p->RIOConnectTable[entry].Topology[0].Unit ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Top[0].Link = %b\n", entry, p->RIOConnectTable[entry].Topology[0].Link ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Top[1].Unit = %b\n", entry, p->RIOConnectTable[entry].Topology[1].Unit ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Top[1].Link = %b\n", entry, p->RIOConnectTable[entry].Topology[1].Link ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Top[2].Unit = %b\n", entry, p->RIOConnectTable[entry].Topology[2].Unit ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Top[2].Link = %b\n", entry, p->RIOConnectTable[entry].Topology[2].Link ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Top[3].Unit = %b\n", entry, p->RIOConnectTable[entry].Topology[3].Unit ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Top[4].Link = %b\n", entry, p->RIOConnectTable[entry].Topology[3].Link ) );						rio_dprint(RIO_DEBUG_CTRL,  ("Map entry %d.Name = %s\n", entry, p->RIOConnectTable[entry].Name ) );					}					rio_dprint(RIO_DEBUG_CTRL,  ("*****\nEND MAP ENTRIES\n") );				}************************************/		return RIONewTable(p);	case RIO_GET_BINDINGS:		/*		 ** Send bindings table, containing unique numbers of RTAs owned		 ** by this system to user space		 */		rio_dprintk(RIO_DEBUG_CTRL, "RIO_GET_BINDINGS\n");		if (!su) {			rio_dprintk(RIO_DEBUG_CTRL, "RIO_GET_BINDINGS !Root\n");			p->RIOError.Error = NOT_SUPER_USER;			return -EPERM;		}		if (copy_to_user(arg, p->RIOBindTab, (sizeof(ulong) * MAX_RTA_BINDINGS))) {			rio_dprintk(RIO_DEBUG_CTRL, "RIO_GET_BINDINGS copy failed\n");			p->RIOError.Error = COPYOUT_FAILED;			return -EFAULT;		}		return 0;	case RIO_PUT_BINDINGS:		/*		 ** Receive a bindings table, containing unique numbers of RTAs owned		 ** by this system		 */		rio_dprintk(RIO_DEBUG_CTRL, "RIO_PUT_BINDINGS\n");		if (!su) {			rio_dprintk(RIO_DEBUG_CTRL, "RIO_PUT_BINDINGS !Root\n");			p->RIOError.Error = NOT_SUPER_USER;			return -EPERM;		}		if (copy_from_user(&p->RIOBindTab[0], arg, (sizeof(ulong) * MAX_RTA_BINDINGS))) {			rio_dprintk(RIO_DEBUG_CTRL, "RIO_PUT_BINDINGS copy failed\n");			p->RIOError.Error = COPYIN_FAILED;			return -EFAULT;		}		return 0;	case RIO_BIND_RTA:		{			int EmptySlot = -1;			/*			 ** Bind this RTA to host, so that it will be booted by			 ** host in 'boot owned RTAs' mode.			 */			rio_dprintk(RIO_DEBUG_CTRL, "RIO_BIND_RTA\n");			if (!su) {				rio_dprintk(RIO_DEBUG_CTRL, "RIO_BIND_RTA !Root\n");				p->RIOError.Error = NOT_SUPER_USER;				return -EPERM;			}			for (Entry = 0; Entry < MAX_RTA_BINDINGS; Entry++) {				if ((EmptySlot == -1) && (p->RIOBindTab[Entry] == 0L))					EmptySlot = Entry;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?