Pull Hexagon fixes from Richard Kuo: "Changes for the Hexagon architecture (and one touching OpenRISC). They include various fixes to make use of additional arch features and cleanups. The largest functional change is a cleanup of the signal and event return paths" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel: (32 commits) Hexagon: add v4 CS regs to core copyout macro Hexagon: use correct translation for VMALLOC_START Hexagon: use correct translations for DMA mappings Hexagon: fix return value for notify_resume case in do_work_pending Hexagon: fix signal number for user mem faults Hexagon: remove two Kconfig entries arch: remove CONFIG_GENERIC_FIND_NEXT_BIT again Hexagon: update copyright dates Hexagon: add translation types for __vmnewmap Hexagon: fix signal.c compile error Hexagon: break up user fn/arg register setting Hexagon: use generic sys_fork, sys_vfork, and sys_clone Hexagon: fix psp/sp macro Hexagon: fix up int enable/disable at ret_from_fork Hexagon: add IOMEM and _relaxed IO macros Hexagon: switch to using the device type for IO mappings Hexagon: don't print info for offline CPU's Hexagon: add support for single-stepping (v4+) Hexagon: use correct work mask when checking for more work Hexagon: add support for additional exceptions ...
		
			
				
	
	
		
			104 lines
		
	
	
	
		
			3.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
	
		
			3.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Mostly IRQ support for Hexagon
 | 
						|
 *
 | 
						|
 * Copyright (c) 2010-2012, The Linux Foundation. All rights reserved.
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License version 2 and
 | 
						|
 * only version 2 as published by the Free Software Foundation.
 | 
						|
 *
 | 
						|
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA
 | 
						|
 * 02110-1301, USA.
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/kernel.h>
 | 
						|
#include <asm/registers.h>
 | 
						|
#include <linux/irq.h>
 | 
						|
#include <linux/hardirq.h>
 | 
						|
 | 
						|
/*
 | 
						|
 * show_regs - print pt_regs structure
 | 
						|
 * @regs: pointer to pt_regs
 | 
						|
 *
 | 
						|
 * To-do:  add all the accessor definitions to registers.h
 | 
						|
 *
 | 
						|
 * Will make this routine a lot easier to write.
 | 
						|
 */
 | 
						|
void show_regs(struct pt_regs *regs)
 | 
						|
{
 | 
						|
	show_regs_print_info(KERN_EMERG);
 | 
						|
 | 
						|
	printk(KERN_EMERG "restart_r0: \t0x%08lx   syscall_nr: %ld\n",
 | 
						|
	       regs->restart_r0, regs->syscall_nr);
 | 
						|
	printk(KERN_EMERG "preds: \t\t0x%08lx\n", regs->preds);
 | 
						|
	printk(KERN_EMERG "lc0: \t0x%08lx   sa0: 0x%08lx   m0:  0x%08lx\n",
 | 
						|
	       regs->lc0, regs->sa0, regs->m0);
 | 
						|
	printk(KERN_EMERG "lc1: \t0x%08lx   sa1: 0x%08lx   m1:  0x%08lx\n",
 | 
						|
	       regs->lc1, regs->sa1, regs->m1);
 | 
						|
	printk(KERN_EMERG "gp: \t0x%08lx   ugp: 0x%08lx   usr: 0x%08lx\n",
 | 
						|
	       regs->gp, regs->ugp, regs->usr);
 | 
						|
	printk(KERN_EMERG "cs0: \t0x%08lx   cs1: 0x%08lx\n",
 | 
						|
	       regs->cs0, regs->cs1);
 | 
						|
	printk(KERN_EMERG "r0: \t0x%08lx %08lx %08lx %08lx\n", regs->r00,
 | 
						|
		regs->r01,
 | 
						|
		regs->r02,
 | 
						|
		regs->r03);
 | 
						|
	printk(KERN_EMERG "r4:  \t0x%08lx %08lx %08lx %08lx\n", regs->r04,
 | 
						|
		regs->r05,
 | 
						|
		regs->r06,
 | 
						|
		regs->r07);
 | 
						|
	printk(KERN_EMERG "r8:  \t0x%08lx %08lx %08lx %08lx\n", regs->r08,
 | 
						|
		regs->r09,
 | 
						|
		regs->r10,
 | 
						|
		regs->r11);
 | 
						|
	printk(KERN_EMERG "r12: \t0x%08lx %08lx %08lx %08lx\n", regs->r12,
 | 
						|
		regs->r13,
 | 
						|
		regs->r14,
 | 
						|
		regs->r15);
 | 
						|
	printk(KERN_EMERG "r16: \t0x%08lx %08lx %08lx %08lx\n", regs->r16,
 | 
						|
		regs->r17,
 | 
						|
		regs->r18,
 | 
						|
		regs->r19);
 | 
						|
	printk(KERN_EMERG "r20: \t0x%08lx %08lx %08lx %08lx\n", regs->r20,
 | 
						|
		regs->r21,
 | 
						|
		regs->r22,
 | 
						|
		regs->r23);
 | 
						|
	printk(KERN_EMERG "r24: \t0x%08lx %08lx %08lx %08lx\n", regs->r24,
 | 
						|
		regs->r25,
 | 
						|
		regs->r26,
 | 
						|
		regs->r27);
 | 
						|
	printk(KERN_EMERG "r28: \t0x%08lx %08lx %08lx %08lx\n", regs->r28,
 | 
						|
		regs->r29,
 | 
						|
		regs->r30,
 | 
						|
		regs->r31);
 | 
						|
 | 
						|
	printk(KERN_EMERG "elr: \t0x%08lx   cause: 0x%08lx   user_mode: %d\n",
 | 
						|
		pt_elr(regs), pt_cause(regs), user_mode(regs));
 | 
						|
	printk(KERN_EMERG "psp: \t0x%08lx   badva: 0x%08lx   int_enabled: %d\n",
 | 
						|
		pt_psp(regs), pt_badva(regs), ints_enabled(regs));
 | 
						|
}
 | 
						|
 | 
						|
void dummy_handler(struct pt_regs *regs)
 | 
						|
{
 | 
						|
	unsigned int elr = pt_elr(regs);
 | 
						|
	printk(KERN_ERR "Unimplemented handler; ELR=0x%08x\n", elr);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void arch_do_IRQ(struct pt_regs *regs)
 | 
						|
{
 | 
						|
	int irq = pt_cause(regs);
 | 
						|
	struct pt_regs *old_regs = set_irq_regs(regs);
 | 
						|
 | 
						|
	irq_enter();
 | 
						|
	generic_handle_irq(irq);
 | 
						|
	irq_exit();
 | 
						|
	set_irq_regs(old_regs);
 | 
						|
}
 |