cregit-Linux how code gets into the kernel

Release 4.14 arch/sparc/prom/p1275.c

Directory: arch/sparc/prom
// SPDX-License-Identifier: GPL-2.0
/*
 * p1275.c: Sun IEEE 1275 PROM low level interface routines
 *
 * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
 */

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/string.h>
#include <linux/spinlock.h>
#include <linux/irqflags.h>

#include <asm/openprom.h>
#include <asm/oplib.h>
#include <asm/spitfire.h>
#include <asm/pstate.h>
#include <asm/ldc.h>

struct {
	
long prom_callback;			/* 0x00 */
	
void (*prom_cif_handler)(long *);	/* 0x08 */

} p1275buf;

extern void prom_world(int);

extern void prom_cif_direct(unsigned long *args);
extern void prom_cif_callback(void);

/*
 * This provides SMP safety on the p1275buf.
 */

DEFINE_RAW_SPINLOCK(prom_entry_lock);


void p1275_cmd_direct(unsigned long *args) { unsigned long flags; local_save_flags(flags); local_irq_restore((unsigned long)PIL_NMI); raw_spin_lock(&prom_entry_lock); prom_world(1); prom_cif_direct(args); prom_world(0); raw_spin_unlock(&prom_entry_lock); local_irq_restore(flags); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2643.33%337.50%
David S. Miller2440.00%337.50%
Linus Torvalds610.00%112.50%
David Howells46.67%112.50%
Total60100.00%8100.00%


void prom_cif_init(void *cif_handler, void *cif_stack) { p1275buf.prom_cif_handler = (void (*)(long *))cif_handler; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)29100.00%2100.00%
Total29100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)11867.82%947.37%
David S. Miller4123.56%526.32%
Linus Torvalds63.45%15.26%
David Howells42.30%15.26%
Thomas Gleixner31.72%15.26%
Adrian Bunk10.57%15.26%
Greg Kroah-Hartman10.57%15.26%
Total174100.00%19100.00%
Directory: arch/sparc/prom
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.