亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? mesh.c

?? linux 內(nèi)核源代碼
?? C
?? 第 1 頁 / 共 4 頁
字號(hào):
/* * SCSI low-level driver for the MESH (Macintosh Enhanced SCSI Hardware) * bus adaptor found on Power Macintosh computers. * We assume the MESH is connected to a DBDMA (descriptor-based DMA) * controller. * * Paul Mackerras, August 1996. * Copyright (C) 1996 Paul Mackerras. * * Apr. 21 2002  - BenH		Rework bus reset code for new error handler *                              Add delay after initial bus reset *                              Add module parameters * * Sep. 27 2003  - BenH		Move to new driver model, fix some write posting *				issues * To do: * - handle aborts correctly * - retry arbitration if lost (unless higher levels do this for us) * - power down the chip when no device is detected */#include <linux/module.h>#include <linux/kernel.h>#include <linux/delay.h>#include <linux/types.h>#include <linux/string.h>#include <linux/slab.h>#include <linux/blkdev.h>#include <linux/proc_fs.h>#include <linux/stat.h>#include <linux/interrupt.h>#include <linux/reboot.h>#include <linux/spinlock.h>#include <asm/dbdma.h>#include <asm/io.h>#include <asm/pgtable.h>#include <asm/prom.h>#include <asm/system.h>#include <asm/irq.h>#include <asm/hydra.h>#include <asm/processor.h>#include <asm/machdep.h>#include <asm/pmac_feature.h>#include <asm/pci-bridge.h>#include <asm/macio.h>#include <scsi/scsi.h>#include <scsi/scsi_cmnd.h>#include <scsi/scsi_device.h>#include <scsi/scsi_host.h>#include "mesh.h"#if 1#undef KERN_DEBUG#define KERN_DEBUG KERN_WARNING#endifMODULE_AUTHOR("Paul Mackerras (paulus@samba.org)");MODULE_DESCRIPTION("PowerMac MESH SCSI driver");MODULE_LICENSE("GPL");static int sync_rate = CONFIG_SCSI_MESH_SYNC_RATE;static int sync_targets = 0xff;static int resel_targets = 0xff;static int debug_targets = 0;	/* print debug for these targets */static int init_reset_delay = CONFIG_SCSI_MESH_RESET_DELAY_MS;module_param(sync_rate, int, 0);MODULE_PARM_DESC(sync_rate, "Synchronous rate (0..10, 0=async)");module_param(sync_targets, int, 0);MODULE_PARM_DESC(sync_targets, "Bitmask of targets allowed to set synchronous");module_param(resel_targets, int, 0);MODULE_PARM_DESC(resel_targets, "Bitmask of targets allowed to set disconnect");module_param(debug_targets, int, 0644);MODULE_PARM_DESC(debug_targets, "Bitmask of debugged targets");module_param(init_reset_delay, int, 0);MODULE_PARM_DESC(init_reset_delay, "Initial bus reset delay (0=no reset)");static int mesh_sync_period = 100;static int mesh_sync_offset = 0;static unsigned char use_active_neg = 0;  /* bit mask for SEQ_ACTIVE_NEG if used */#define ALLOW_SYNC(tgt)		((sync_targets >> (tgt)) & 1)#define ALLOW_RESEL(tgt)	((resel_targets >> (tgt)) & 1)#define ALLOW_DEBUG(tgt)	((debug_targets >> (tgt)) & 1)#define DEBUG_TARGET(cmd)	((cmd) && ALLOW_DEBUG((cmd)->device->id))#undef MESH_DBG#define N_DBG_LOG	50#define N_DBG_SLOG	20#define NUM_DBG_EVENTS	13#undef	DBG_USE_TB		/* bombs on 601 */struct dbglog {	char	*fmt;	u32	tb;	u8	phase;	u8	bs0;	u8	bs1;	u8	tgt;	int	d;};enum mesh_phase {	idle,	arbitrating,	selecting,	commanding,	dataing,	statusing,	busfreeing,	disconnecting,	reselecting,	sleeping};enum msg_phase {	msg_none,	msg_out,	msg_out_xxx,	msg_out_last,	msg_in,	msg_in_bad,};enum sdtr_phase {	do_sdtr,	sdtr_sent,	sdtr_done};struct mesh_target {	enum sdtr_phase sdtr_state;	int	sync_params;	int	data_goes_out;		/* guess as to data direction */	struct scsi_cmnd *current_req;	u32	saved_ptr;#ifdef MESH_DBG	int	log_ix;	int	n_log;	struct dbglog log[N_DBG_LOG];#endif};struct mesh_state {	volatile struct	mesh_regs __iomem *mesh;	int	meshintr;	volatile struct	dbdma_regs __iomem *dma;	int	dmaintr;	struct	Scsi_Host *host;	struct	mesh_state *next;	struct scsi_cmnd *request_q;	struct scsi_cmnd *request_qtail;	enum mesh_phase phase;		/* what we're currently trying to do */	enum msg_phase msgphase;	int	conn_tgt;		/* target we're connected to */	struct scsi_cmnd *current_req;		/* req we're currently working on */	int	data_ptr;	int	dma_started;	int	dma_count;	int	stat;	int	aborting;	int	expect_reply;	int	n_msgin;	u8	msgin[16];	int	n_msgout;	int	last_n_msgout;	u8	msgout[16];	struct dbdma_cmd *dma_cmds;	/* space for dbdma commands, aligned */	dma_addr_t dma_cmd_bus;	void	*dma_cmd_space;	int	dma_cmd_size;	int	clk_freq;	struct mesh_target tgts[8];	struct macio_dev *mdev;	struct pci_dev* pdev;#ifdef MESH_DBG	int	log_ix;	int	n_log;	struct dbglog log[N_DBG_SLOG];#endif};/* * Driver is too messy, we need a few prototypes... */static void mesh_done(struct mesh_state *ms, int start_next);static void mesh_interrupt(struct mesh_state *ms);static void cmd_complete(struct mesh_state *ms);static void set_dma_cmds(struct mesh_state *ms, struct scsi_cmnd *cmd);static void halt_dma(struct mesh_state *ms);static void phase_mismatch(struct mesh_state *ms);/* * Some debugging & logging routines */#ifdef MESH_DBGstatic inline u32 readtb(void){	u32 tb;#ifdef DBG_USE_TB	/* Beware: if you enable this, it will crash on 601s. */	asm ("mftb %0" : "=r" (tb) : );#else	tb = 0;#endif	return tb;}static void dlog(struct mesh_state *ms, char *fmt, int a){	struct mesh_target *tp = &ms->tgts[ms->conn_tgt];	struct dbglog *tlp, *slp;	tlp = &tp->log[tp->log_ix];	slp = &ms->log[ms->log_ix];	tlp->fmt = fmt;	tlp->tb = readtb();	tlp->phase = (ms->msgphase << 4) + ms->phase;	tlp->bs0 = ms->mesh->bus_status0;	tlp->bs1 = ms->mesh->bus_status1;	tlp->tgt = ms->conn_tgt;	tlp->d = a;	*slp = *tlp;	if (++tp->log_ix >= N_DBG_LOG)		tp->log_ix = 0;	if (tp->n_log < N_DBG_LOG)		++tp->n_log;	if (++ms->log_ix >= N_DBG_SLOG)		ms->log_ix = 0;	if (ms->n_log < N_DBG_SLOG)		++ms->n_log;}static void dumplog(struct mesh_state *ms, int t){	struct mesh_target *tp = &ms->tgts[t];	struct dbglog *lp;	int i;	if (tp->n_log == 0)		return;	i = tp->log_ix - tp->n_log;	if (i < 0)		i += N_DBG_LOG;	tp->n_log = 0;	do {		lp = &tp->log[i];		printk(KERN_DEBUG "mesh log %d: bs=%.2x%.2x ph=%.2x ",		       t, lp->bs1, lp->bs0, lp->phase);#ifdef DBG_USE_TB		printk("tb=%10u ", lp->tb);#endif		printk(lp->fmt, lp->d);		printk("\n");		if (++i >= N_DBG_LOG)			i = 0;	} while (i != tp->log_ix);}static void dumpslog(struct mesh_state *ms){	struct dbglog *lp;	int i;	if (ms->n_log == 0)		return;	i = ms->log_ix - ms->n_log;	if (i < 0)		i += N_DBG_SLOG;	ms->n_log = 0;	do {		lp = &ms->log[i];		printk(KERN_DEBUG "mesh log: bs=%.2x%.2x ph=%.2x t%d ",		       lp->bs1, lp->bs0, lp->phase, lp->tgt);#ifdef DBG_USE_TB		printk("tb=%10u ", lp->tb);#endif		printk(lp->fmt, lp->d);		printk("\n");		if (++i >= N_DBG_SLOG)			i = 0;	} while (i != ms->log_ix);}#elsestatic inline void dlog(struct mesh_state *ms, char *fmt, int a){}static inline void dumplog(struct mesh_state *ms, int tgt){}static inline void dumpslog(struct mesh_state *ms){}#endif /* MESH_DBG */#define MKWORD(a, b, c, d)	(((a) << 24) + ((b) << 16) + ((c) << 8) + (d))static voidmesh_dump_regs(struct mesh_state *ms){	volatile struct mesh_regs __iomem *mr = ms->mesh;	volatile struct dbdma_regs __iomem *md = ms->dma;	int t;	struct mesh_target *tp;	printk(KERN_DEBUG "mesh: state at %p, regs at %p, dma at %p\n",	       ms, mr, md);	printk(KERN_DEBUG "    ct=%4x seq=%2x bs=%4x fc=%2x "	       "exc=%2x err=%2x im=%2x int=%2x sp=%2x\n",	       (mr->count_hi << 8) + mr->count_lo, mr->sequence,	       (mr->bus_status1 << 8) + mr->bus_status0, mr->fifo_count,	       mr->exception, mr->error, mr->intr_mask, mr->interrupt,	       mr->sync_params);	while(in_8(&mr->fifo_count))		printk(KERN_DEBUG " fifo data=%.2x\n",in_8(&mr->fifo));	printk(KERN_DEBUG "    dma stat=%x cmdptr=%x\n",	       in_le32(&md->status), in_le32(&md->cmdptr));	printk(KERN_DEBUG "    phase=%d msgphase=%d conn_tgt=%d data_ptr=%d\n",	       ms->phase, ms->msgphase, ms->conn_tgt, ms->data_ptr);	printk(KERN_DEBUG "    dma_st=%d dma_ct=%d n_msgout=%d\n",	       ms->dma_started, ms->dma_count, ms->n_msgout);	for (t = 0; t < 8; ++t) {		tp = &ms->tgts[t];		if (tp->current_req == NULL)			continue;		printk(KERN_DEBUG "    target %d: req=%p goes_out=%d saved_ptr=%d\n",		       t, tp->current_req, tp->data_goes_out, tp->saved_ptr);	}}/* * Flush write buffers on the bus path to the mesh */static inline void mesh_flush_io(volatile struct mesh_regs __iomem *mr){	(void)in_8(&mr->mesh_id);}/* * Complete a SCSI command */static void mesh_completed(struct mesh_state *ms, struct scsi_cmnd *cmd){	(*cmd->scsi_done)(cmd);}/* Called with  meshinterrupt disabled, initialize the chipset * and eventually do the initial bus reset. The lock must not be * held since we can schedule. */static void mesh_init(struct mesh_state *ms){	volatile struct mesh_regs __iomem *mr = ms->mesh;	volatile struct dbdma_regs __iomem *md = ms->dma;	mesh_flush_io(mr);	udelay(100);	/* Reset controller */	out_le32(&md->control, (RUN|PAUSE|FLUSH|WAKE) << 16);	/* stop dma */	out_8(&mr->exception, 0xff);	/* clear all exception bits */	out_8(&mr->error, 0xff);	/* clear all error bits */	out_8(&mr->sequence, SEQ_RESETMESH);	mesh_flush_io(mr);	udelay(10);	out_8(&mr->intr_mask, INT_ERROR | INT_EXCEPTION | INT_CMDDONE);	out_8(&mr->source_id, ms->host->this_id);	out_8(&mr->sel_timeout, 25);	/* 250ms */	out_8(&mr->sync_params, ASYNC_PARAMS);	if (init_reset_delay) {		printk(KERN_INFO "mesh: performing initial bus reset...\n");				/* Reset bus */		out_8(&mr->bus_status1, BS1_RST);	/* assert RST */		mesh_flush_io(mr);		udelay(30);			/* leave it on for >= 25us */		out_8(&mr->bus_status1, 0);	/* negate RST */		mesh_flush_io(mr);		/* Wait for bus to come back */		msleep(init_reset_delay);	}		/* Reconfigure controller */	out_8(&mr->interrupt, 0xff);	/* clear all interrupt bits */	out_8(&mr->sequence, SEQ_FLUSHFIFO);	mesh_flush_io(mr);	udelay(1);	out_8(&mr->sync_params, ASYNC_PARAMS);	out_8(&mr->sequence, SEQ_ENBRESEL);	ms->phase = idle;	ms->msgphase = msg_none;}static void mesh_start_cmd(struct mesh_state *ms, struct scsi_cmnd *cmd){	volatile struct mesh_regs __iomem *mr = ms->mesh;	int t, id;	id = cmd->device->id;	ms->current_req = cmd;	ms->tgts[id].data_goes_out = cmd->sc_data_direction == DMA_TO_DEVICE;	ms->tgts[id].current_req = cmd;#if 1	if (DEBUG_TARGET(cmd)) {		int i;		printk(KERN_DEBUG "mesh_start: %p ser=%lu tgt=%d cmd=",		       cmd, cmd->serial_number, id);		for (i = 0; i < cmd->cmd_len; ++i)			printk(" %x", cmd->cmnd[i]);		printk(" use_sg=%d buffer=%p bufflen=%u\n",		       scsi_sg_count(cmd), scsi_sglist(cmd), scsi_bufflen(cmd));	}#endif	if (ms->dma_started)		panic("mesh: double DMA start !\n");	ms->phase = arbitrating;	ms->msgphase = msg_none;	ms->data_ptr = 0;	ms->dma_started = 0;	ms->n_msgout = 0;	ms->last_n_msgout = 0;	ms->expect_reply = 0;	ms->conn_tgt = id;	ms->tgts[id].saved_ptr = 0;	ms->stat = DID_OK;	ms->aborting = 0;#ifdef MESH_DBG	ms->tgts[id].n_log = 0;	dlog(ms, "start cmd=%x", (int) cmd);#endif	/* Off we go */	dlog(ms, "about to arb, intr/exc/err/fc=%.8x",	     MKWORD(mr->interrupt, mr->exception, mr->error, mr->fifo_count));	out_8(&mr->interrupt, INT_CMDDONE);	out_8(&mr->sequence, SEQ_ENBRESEL);	mesh_flush_io(mr);	udelay(1);	if (in_8(&mr->bus_status1) & (BS1_BSY | BS1_SEL)) {		/*		 * Some other device has the bus or is arbitrating for it -		 * probably a target which is about to reselect us.		 */		dlog(ms, "busy b4 arb, intr/exc/err/fc=%.8x",		     MKWORD(mr->interrupt, mr->exception,			    mr->error, mr->fifo_count));		for (t = 100; t > 0; --t) {			if ((in_8(&mr->bus_status1) & (BS1_BSY | BS1_SEL)) == 0)				break;			if (in_8(&mr->interrupt) != 0) {				dlog(ms, "intr b4 arb, intr/exc/err/fc=%.8x",				     MKWORD(mr->interrupt, mr->exception,					    mr->error, mr->fifo_count));				mesh_interrupt(ms);				if (ms->phase != arbitrating)					return;			}			udelay(1);		}		if (in_8(&mr->bus_status1) & (BS1_BSY | BS1_SEL)) {			/* XXX should try again in a little while */			ms->stat = DID_BUS_BUSY;			ms->phase = idle;			mesh_done(ms, 0);			return;		}	}	/*	 * Apparently the mesh has a bug where it will assert both its	 * own bit and the target's bit on the bus during arbitration.	 */	out_8(&mr->dest_id, mr->source_id);	/*	 * There appears to be a race with reselection sometimes,	 * where a target reselects us just as we issue the	 * arbitrate command.  It seems that then the arbitrate	 * command just hangs waiting for the bus to be free	 * without giving us a reselection exception.	 * The only way I have found to get it to respond correctly	 * is this: disable reselection before issuing the arbitrate	 * command, then after issuing it, if it looks like a target	 * is trying to reselect us, reset the mesh and then enable	 * reselection.	 */	out_8(&mr->sequence, SEQ_DISRESEL);	if (in_8(&mr->interrupt) != 0) {		dlog(ms, "intr after disresel, intr/exc/err/fc=%.8x",		     MKWORD(mr->interrupt, mr->exception,			    mr->error, mr->fifo_count));		mesh_interrupt(ms);		if (ms->phase != arbitrating)			return;		dlog(ms, "after intr after disresel, intr/exc/err/fc=%.8x",		     MKWORD(mr->interrupt, mr->exception,			    mr->error, mr->fifo_count));	}	out_8(&mr->sequence, SEQ_ARBITRATE);	for (t = 230; t > 0; --t) {		if (in_8(&mr->interrupt) != 0)			break;		udelay(1);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
男人的天堂久久精品| 国产麻豆视频一区二区| 2023国产一二三区日本精品2022| 成人免费视频视频在线观看免费| 亚洲激情成人在线| 久久众筹精品私拍模特| 欧美日本一区二区| 99久久精品国产精品久久| 九九视频精品免费| 亚洲大片免费看| 国产精品传媒入口麻豆| 精品国产一二三区| 91精品婷婷国产综合久久竹菊| 99视频精品全部免费在线| 激情图片小说一区| 琪琪一区二区三区| 午夜精品一区二区三区三上悠亚| 亚洲欧洲一区二区在线播放| 久久综合色8888| 日韩欧美中文一区二区| 91超碰这里只有精品国产| voyeur盗摄精品| 国产不卡视频在线播放| 国产一区二三区好的| 麻豆成人综合网| 午夜精品一区二区三区三上悠亚| 亚洲精品美国一| 亚洲欧洲一区二区在线播放| 日本一区二区三区高清不卡 | 国产精品123| 蜜臀91精品一区二区三区| 一区二区欧美在线观看| 亚洲欧美日韩中文播放| 亚洲人成小说网站色在线 | 欧美日韩精品欧美日韩精品一| 99免费精品视频| av成人免费在线观看| 国产91富婆露脸刺激对白| 国产乱码精品一区二区三区五月婷| 蜜桃视频一区二区| 韩日欧美一区二区三区| 国产一区二区三区电影在线观看| 精品一区二区综合| 国产成人综合网| 国产超碰在线一区| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 亚洲在线观看免费视频| 亚洲一区二区三区自拍| 亚洲伊人伊色伊影伊综合网| 亚洲一二三级电影| 日韩av成人高清| 麻豆精品一区二区综合av| 精品一区二区三区免费播放| 久久超碰97中文字幕| 国产传媒久久文化传媒| 91在线观看免费视频| 色一情一乱一乱一91av| 欧美午夜精品一区二区蜜桃| 欧美精品1区2区3区| 欧美成人精品二区三区99精品| 精品国产露脸精彩对白| 欧美国产97人人爽人人喊| 亚洲欧美电影院| 亚洲观看高清完整版在线观看 | av在线不卡电影| 在线观看一区日韩| 欧美一级高清大全免费观看| 2022国产精品视频| 亚洲日本韩国一区| 日韩二区三区在线观看| 国产精品99久久久久久久vr| 97国产一区二区| 欧美一区二区三区啪啪| 欧美一级在线免费| 久久精品欧美一区二区三区麻豆| 日本一区免费视频| 亚洲成人动漫一区| 国产精品乡下勾搭老头1| 色又黄又爽网站www久久| 欧美一级日韩免费不卡| 中文av一区二区| 丝袜亚洲另类欧美综合| 国产精品888| 欧美亚洲免费在线一区| 日韩精品在线一区| 亚洲美女视频一区| 激情五月激情综合网| 欧美影院午夜播放| 久久久久久**毛片大全| 亚洲成a人v欧美综合天堂下载| 国产自产2019最新不卡| 色丁香久综合在线久综合在线观看| 欧美tickling挠脚心丨vk| 亚洲欧美偷拍三级| 亚洲一级二级在线| 国产suv一区二区三区88区| 欧美日韩精品专区| 久久99精品国产.久久久久久| 成人一区二区三区视频| 欧美一区二区三区视频| 亚洲欧洲成人精品av97| 久久国产麻豆精品| 欧美日韩一区二区三区高清| 国产精品女主播在线观看| 久久精品国产色蜜蜜麻豆| 91福利区一区二区三区| 国产精品午夜在线| 国产一区二区三区在线观看免费| 欧美亚州韩日在线看免费版国语版| 国产欧美一区二区精品忘忧草| 婷婷丁香激情综合| 91国模大尺度私拍在线视频| 欧美韩日一区二区三区四区| 麻豆国产欧美一区二区三区| 在线播放中文字幕一区| 一区二区三区四区在线免费观看| 国产成人av电影在线观看| 日韩欧美你懂的| 石原莉奈一区二区三区在线观看| 日本丰满少妇一区二区三区| 国产精品―色哟哟| 国产精品1024| 国产日韩欧美a| 国产精品一区二区三区网站| 精品日韩99亚洲| 美日韩一区二区| 日韩一卡二卡三卡国产欧美| 日韩专区中文字幕一区二区| 欧美日韩综合一区| 三级欧美在线一区| 777奇米成人网| 日韩经典中文字幕一区| 欧美一区二区视频在线观看| 日韩主播视频在线| 91精品免费观看| 免费成人你懂的| 日韩精品一区国产麻豆| 久久国产剧场电影| 国产亚洲视频系列| 国产精品77777| 国产精品欧美极品| 色婷婷久久99综合精品jk白丝| 亚洲欧美日韩国产中文在线| 91久久精品一区二区| 亚洲午夜在线观看视频在线| 欧美精品三级日韩久久| 日韩不卡一区二区| 欧美大片免费久久精品三p| 六月婷婷色综合| 久久五月婷婷丁香社区| 国产91丝袜在线18| 18成人在线观看| 欧美日韩黄色影视| 韩日av一区二区| 国产精品久久久久四虎| 色噜噜狠狠成人中文综合| 亚洲国产成人tv| 26uuu成人网一区二区三区| 国产成人一区在线| 日韩一区中文字幕| 欧美丰满少妇xxxbbb| 激情深爱一区二区| 亚洲欧美中日韩| 欧美日本国产一区| 国产一区二区精品久久| 日韩美女视频一区| 91麻豆精品久久久久蜜臀 | 中文字幕一区二区三区色视频| 91论坛在线播放| 青椒成人免费视频| 国产精品无遮挡| 7777精品伊人久久久大香线蕉的| 精品午夜一区二区三区在线观看| 国产精品美女久久福利网站| 欧美三级视频在线| 国产精品自在欧美一区| 欧美日本不卡视频| 日韩国产精品大片| 欧美极品美女视频| 欧美老人xxxx18| 成人综合在线观看| 日韩和的一区二区| 国产日本亚洲高清| 欧美日韩小视频| 成人av网址在线| 免费不卡在线视频| 一区二区三区在线影院| 久久久久久久久一| 欧美日韩精品专区| caoporm超碰国产精品| 蜜桃视频在线观看一区| 一区二区在线免费| 国产日韩欧美综合在线| 69堂国产成人免费视频| 91玉足脚交白嫩脚丫在线播放| 久久99精品久久只有精品| 亚洲高清免费一级二级三级| 国产精品每日更新在线播放网址| 日韩午夜小视频| 欧美丝袜第三区|