cregit-Linux how code gets into the kernel

Release 4.14 arch/sparc/prom/misc_32.c

Directory: arch/sparc/prom
// SPDX-License-Identifier: GPL-2.0
/*
 * misc.c:  Miscellaneous prom functions that don't belong
 *          anywhere else.
 *
 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
 */

#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/module.h>

#include <asm/openprom.h>
#include <asm/oplib.h>
#include <asm/auxio.h>

extern void restore_current(void);


DEFINE_SPINLOCK(prom_lock);

/* Reset and reboot the machine with the command 'bcommand'. */

void prom_reboot(char *bcommand) { unsigned long flags; spin_lock_irqsave(&prom_lock, flags); (*(romvec->pv_reboot))(bcommand); /* Never get here. */ restore_current(); spin_unlock_irqrestore(&prom_lock, flags); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)45100.00%4100.00%
Total45100.00%4100.00%

/* Forth evaluate the expression contained in 'fstring'. */
void prom_feval(char *fstring) { unsigned long flags; if(!fstring || fstring[0] == 0) return; spin_lock_irqsave(&prom_lock, flags); if(prom_vers == PROM_V0) (*(romvec->pv_fortheval.v0_eval))(strlen(fstring), fstring); else (*(romvec->pv_fortheval.v2_eval))(fstring); restore_current(); spin_unlock_irqrestore(&prom_lock, flags); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)85100.00%4100.00%
Total85100.00%4100.00%

EXPORT_SYMBOL(prom_feval); /* Drop into the prom, with the chance to continue with the 'go' * prom command. */
void prom_cmdline(void) { unsigned long flags; spin_lock_irqsave(&prom_lock, flags); (*(romvec->pv_abort))(); restore_current(); spin_unlock_irqrestore(&prom_lock, flags); set_auxio(AUXIO_LED, 0); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4287.50%480.00%
Eric Brower612.50%120.00%
Total48100.00%5100.00%

/* Drop into the prom, but completely terminate the program. * No chance of continuing. */
void __noreturn prom_halt(void) { unsigned long flags; again: spin_lock_irqsave(&prom_lock, flags); (*(romvec->pv_halt))(); /* Never get here. */ restore_current(); spin_unlock_irqrestore(&prom_lock, flags); goto again; /* PROM is out to get me -DaveM */ }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4897.96%583.33%
Sam Ravnborg12.04%116.67%
Total49100.00%6100.00%

typedef void (*sfunc_t)(void); /* Set prom sync handler to call function 'funcp'. */
void prom_setsync(sfunc_t funcp) { if(!funcp) return; *romvec->pv_synchook = funcp; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)21100.00%1100.00%
Total21100.00%1100.00%

/* Get the idprom and stuff it into buffer 'idbuf'. Returns the * format type. 'num_bytes' is the number of bytes that your idbuf * has space for. Returns 0xff on error. */
unsigned char prom_get_idprom(char *idbuf, int num_bytes) { int len; len = prom_getproplen(prom_root_node, "idprom"); if((len>num_bytes) || (len==-1)) return 0xff; if(!prom_getproperty(prom_root_node, "idprom", idbuf, num_bytes)) return idbuf[0]; return 0xff; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)66100.00%2100.00%
Total66100.00%2100.00%

/* Get the major prom version number. */
int prom_version(void) { return romvec->pv_romvers; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)12100.00%1100.00%
Total12100.00%1100.00%

/* Get the prom plugin-revision. */
int prom_getrev(void) { return prom_rev; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)10100.00%1100.00%
Total10100.00%1100.00%

/* Get the prom firmware print revision. */
int prom_getprev(void) { return prom_prev; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)10100.00%1100.00%
Total10100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)38494.81%650.00%
Sam Ravnborg92.22%216.67%
Eric Brower61.48%18.33%
Thomas Gleixner40.99%18.33%
Greg Kroah-Hartman10.25%18.33%
Adrian Bunk10.25%18.33%
Total405100.00%12100.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.