spu_base.c

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

C
768
字号
/* * Low-level SPU handling * * (C) Copyright IBM Deutschland Entwicklung GmbH 2005 * * Author: Arnd Bergmann <arndb@de.ibm.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; 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. */#undef DEBUG#include <linux/interrupt.h>#include <linux/list.h>#include <linux/module.h>#include <linux/poll.h>#include <linux/ptrace.h>#include <linux/slab.h>#include <linux/wait.h>#include <asm/io.h>#include <asm/prom.h>#include <linux/mutex.h>#include <asm/spu.h>#include <asm/mmu_context.h>#include "interrupt.h"static int __spu_trap_invalid_dma(struct spu *spu){	pr_debug("%s\n", __FUNCTION__);	force_sig(SIGBUS, /* info, */ current);	return 0;}static int __spu_trap_dma_align(struct spu *spu){	pr_debug("%s\n", __FUNCTION__);	force_sig(SIGBUS, /* info, */ current);	return 0;}static int __spu_trap_error(struct spu *spu){	pr_debug("%s\n", __FUNCTION__);	force_sig(SIGILL, /* info, */ current);	return 0;}static void spu_restart_dma(struct spu *spu){	struct spu_priv2 __iomem *priv2 = spu->priv2;	if (!test_bit(SPU_CONTEXT_SWITCH_PENDING, &spu->flags))		out_be64(&priv2->mfc_control_RW, MFC_CNTL_RESTART_DMA_COMMAND);}static int __spu_trap_data_seg(struct spu *spu, unsigned long ea){	struct spu_priv2 __iomem *priv2 = spu->priv2;	struct mm_struct *mm = spu->mm;	u64 esid, vsid;	pr_debug("%s\n", __FUNCTION__);	if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {		/* SLBs are pre-loaded for context switch, so		 * we should never get here!		 */		printk("%s: invalid access during switch!\n", __func__);		return 1;	}	if (!mm || (REGION_ID(ea) != USER_REGION_ID)) {		/* Future: support kernel segments so that drivers		 * can use SPUs.		 */		pr_debug("invalid region access at %016lx\n", ea);		return 1;	}	esid = (ea & ESID_MASK) | SLB_ESID_V;	vsid = (get_vsid(mm->context.id, ea) << SLB_VSID_SHIFT) | SLB_VSID_USER;	if (in_hugepage_area(mm->context, ea))		vsid |= SLB_VSID_L;	out_be64(&priv2->slb_index_W, spu->slb_replace);	out_be64(&priv2->slb_vsid_RW, vsid);	out_be64(&priv2->slb_esid_RW, esid);	spu->slb_replace++;	if (spu->slb_replace >= 8)		spu->slb_replace = 0;	spu_restart_dma(spu);	return 0;}extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXXstatic int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr){	pr_debug("%s, %lx, %lx\n", __FUNCTION__, dsisr, ea);	/* Handle kernel space hash faults immediately.	   User hash faults need to be deferred to process context. */	if ((dsisr & MFC_DSISR_PTE_NOT_FOUND)	    && REGION_ID(ea) != USER_REGION_ID	    && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) {		spu_restart_dma(spu);		return 0;	}	if (test_bit(SPU_CONTEXT_SWITCH_ACTIVE, &spu->flags)) {		printk("%s: invalid access during switch!\n", __func__);		return 1;	}	spu->dar = ea;	spu->dsisr = dsisr;	mb();	if (spu->stop_callback)		spu->stop_callback(spu);	return 0;}static int __spu_trap_mailbox(struct spu *spu){	if (spu->ibox_callback)		spu->ibox_callback(spu);	/* atomically disable SPU mailbox interrupts */	spin_lock(&spu->register_lock);	spu_int_mask_and(spu, 2, ~0x1);	spin_unlock(&spu->register_lock);	return 0;}static int __spu_trap_stop(struct spu *spu){	pr_debug("%s\n", __FUNCTION__);	spu->stop_code = in_be32(&spu->problem->spu_status_R);	if (spu->stop_callback)		spu->stop_callback(spu);	return 0;}static int __spu_trap_halt(struct spu *spu){	pr_debug("%s\n", __FUNCTION__);	spu->stop_code = in_be32(&spu->problem->spu_status_R);	if (spu->stop_callback)		spu->stop_callback(spu);	return 0;}static int __spu_trap_tag_group(struct spu *spu){	pr_debug("%s\n", __FUNCTION__);	spu->mfc_callback(spu);	return 0;}static int __spu_trap_spubox(struct spu *spu){	if (spu->wbox_callback)		spu->wbox_callback(spu);	/* atomically disable SPU mailbox interrupts */	spin_lock(&spu->register_lock);	spu_int_mask_and(spu, 2, ~0x10);	spin_unlock(&spu->register_lock);	return 0;}static irqreturn_tspu_irq_class_0(int irq, void *data, struct pt_regs *regs){	struct spu *spu;	spu = data;	spu->class_0_pending = 1;	if (spu->stop_callback)		spu->stop_callback(spu);	return IRQ_HANDLED;}intspu_irq_class_0_bottom(struct spu *spu){	unsigned long stat, mask;	spu->class_0_pending = 0;	mask = spu_int_mask_get(spu, 0);	stat = spu_int_stat_get(spu, 0);	stat &= mask;	if (stat & 1) /* invalid MFC DMA */		__spu_trap_invalid_dma(spu);	if (stat & 2) /* invalid DMA alignment */		__spu_trap_dma_align(spu);	if (stat & 4) /* error on SPU */		__spu_trap_error(spu);	spu_int_stat_clear(spu, 0, stat);	return (stat & 0x7) ? -EIO : 0;}EXPORT_SYMBOL_GPL(spu_irq_class_0_bottom);static irqreturn_tspu_irq_class_1(int irq, void *data, struct pt_regs *regs){	struct spu *spu;	unsigned long stat, mask, dar, dsisr;	spu = data;	/* atomically read & clear class1 status. */	spin_lock(&spu->register_lock);	mask  = spu_int_mask_get(spu, 1);	stat  = spu_int_stat_get(spu, 1) & mask;	dar   = spu_mfc_dar_get(spu);	dsisr = spu_mfc_dsisr_get(spu);	if (stat & 2) /* mapping fault */		spu_mfc_dsisr_set(spu, 0ul);	spu_int_stat_clear(spu, 1, stat);	spin_unlock(&spu->register_lock);	pr_debug("%s: %lx %lx %lx %lx\n", __FUNCTION__, mask, stat,			dar, dsisr);	if (stat & 1) /* segment fault */		__spu_trap_data_seg(spu, dar);	if (stat & 2) { /* mapping fault */		__spu_trap_data_map(spu, dar, dsisr);	}	if (stat & 4) /* ls compare & suspend on get */		;	if (stat & 8) /* ls compare & suspend on put */		;	return stat ? IRQ_HANDLED : IRQ_NONE;}EXPORT_SYMBOL_GPL(spu_irq_class_1_bottom);static irqreturn_tspu_irq_class_2(int irq, void *data, struct pt_regs *regs){	struct spu *spu;	unsigned long stat;	unsigned long mask;	spu = data;	stat = spu_int_stat_get(spu, 2);	mask = spu_int_mask_get(spu, 2);	pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask);	stat &= mask;	if (stat & 1)  /* PPC core mailbox */		__spu_trap_mailbox(spu);	if (stat & 2) /* SPU stop-and-signal */		__spu_trap_stop(spu);	if (stat & 4) /* SPU halted */		__spu_trap_halt(spu);	if (stat & 8) /* DMA tag group complete */		__spu_trap_tag_group(spu);	if (stat & 0x10) /* SPU mailbox threshold */		__spu_trap_spubox(spu);	spu_int_stat_clear(spu, 2, stat);	return stat ? IRQ_HANDLED : IRQ_NONE;}static intspu_request_irqs(struct spu *spu){	int ret;	int irq_base;	irq_base = IIC_NODE_STRIDE * spu->node + IIC_SPE_OFFSET;	snprintf(spu->irq_c0, sizeof (spu->irq_c0), "spe%02d.0", spu->number);	ret = request_irq(irq_base + spu->isrc,		 spu_irq_class_0, SA_INTERRUPT, spu->irq_c0, spu);	if (ret)		goto out;	snprintf(spu->irq_c1, sizeof (spu->irq_c1), "spe%02d.1", spu->number);	ret = request_irq(irq_base + IIC_CLASS_STRIDE + spu->isrc,		 spu_irq_class_1, SA_INTERRUPT, spu->irq_c1, spu);	if (ret)		goto out1;	snprintf(spu->irq_c2, sizeof (spu->irq_c2), "spe%02d.2", spu->number);	ret = request_irq(irq_base + 2*IIC_CLASS_STRIDE + spu->isrc,		 spu_irq_class_2, SA_INTERRUPT, spu->irq_c2, spu);	if (ret)		goto out2;	goto out;out2:	free_irq(irq_base + IIC_CLASS_STRIDE + spu->isrc, spu);out1:	free_irq(irq_base + spu->isrc, spu);out:	return ret;}static voidspu_free_irqs(struct spu *spu){	int irq_base;	irq_base = IIC_NODE_STRIDE * spu->node + IIC_SPE_OFFSET;	free_irq(irq_base + spu->isrc, spu);	free_irq(irq_base + IIC_CLASS_STRIDE + spu->isrc, spu);	free_irq(irq_base + 2*IIC_CLASS_STRIDE + spu->isrc, spu);}static LIST_HEAD(spu_list);static DEFINE_MUTEX(spu_mutex);static void spu_init_channels(struct spu *spu){	static const struct {		 unsigned channel;		 unsigned count;	} zero_list[] = {		{ 0x00, 1, }, { 0x01, 1, }, { 0x03, 1, }, { 0x04, 1, },		{ 0x18, 1, }, { 0x19, 1, }, { 0x1b, 1, }, { 0x1d, 1, },	}, count_list[] = {		{ 0x00, 0, }, { 0x03, 0, }, { 0x04, 0, }, { 0x15, 16, },		{ 0x17, 1, }, { 0x18, 0, }, { 0x19, 0, }, { 0x1b, 0, },		{ 0x1c, 1, }, { 0x1d, 0, }, { 0x1e, 1, },	};	struct spu_priv2 __iomem *priv2;	int i;	priv2 = spu->priv2;	/* initialize all channel data to zero */	for (i = 0; i < ARRAY_SIZE(zero_list); i++) {		int count;		out_be64(&priv2->spu_chnlcntptr_RW, zero_list[i].channel);		for (count = 0; count < zero_list[i].count; count++)			out_be64(&priv2->spu_chnldata_RW, 0);	}	/* initialize channel counts to meaningful values */	for (i = 0; i < ARRAY_SIZE(count_list); i++) {		out_be64(&priv2->spu_chnlcntptr_RW, count_list[i].channel);		out_be64(&priv2->spu_chnlcnt_RW, count_list[i].count);	}}struct spu *spu_alloc(void){

⌨️ 快捷键说明

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