cregit-Linux how code gets into the kernel

Release 4.10 arch/m68k/68000/m68EZ328.c

Directory: arch/m68k/68000
/***************************************************************************/

/*
 *  m68EZ328.c - 68EZ328 specific config
 *
 *  Copyright (C) 1993 Hamish Macdonald
 *  Copyright (C) 1999 D. Jeff Dionne
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file COPYING in the main directory of this archive
 * for more details.
 */

/***************************************************************************/

#include <linux/init.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/rtc.h>
#include <asm/pgtable.h>
#include <asm/machdep.h>
#include <asm/MC68EZ328.h>
#ifdef CONFIG_UCSIMM
#include <asm/bootstd.h>
#endif

/***************************************************************************/

int m68328_hwclk(int set, struct rtc_time *t);

/***************************************************************************/


void m68ez328_reset(void) { local_irq_disable(); asm volatile ( "moveal #0x10c00000, %a0;\n" "moveb #0, 0xFFFFF300;\n" "moveal 0(%a0), %sp;\n" "moveal 4(%a0), %a0;\n" "jmp (%a0);\n" ); }

Contributors

PersonTokensPropCommitsCommitProp
alan coxalan cox1184.62%133.33%
greg ungerergreg ungerer215.38%266.67%
Total13100.00%3100.00%

/***************************************************************************/ unsigned char *cs8900a_hwaddr; static int errno; #ifdef CONFIG_UCSIMM _bsc0(char *, getserialnum) _bsc1(unsigned char *, gethwaddr, int, a) _bsc1(char *, getbenv, char *, a) #endif
void __init config_BSP(char *command, int len) { unsigned char *p; printk(KERN_INFO "\n68EZ328 DragonBallEZ support (C) 1999 Rt-Control, Inc\n"); #ifdef CONFIG_UCSIMM printk(KERN_INFO "uCsimm serial string [%s]\n",getserialnum()); p = cs8900a_hwaddr = gethwaddr(0); printk(KERN_INFO "uCsimm hwaddr %pM\n", p); p = getbenv("APPEND"); if (p) strcpy(p,command); else command[0] = 0; #endif mach_sched_init = hw_timer_init; mach_hwclk = m68328_hwclk; mach_reset = m68ez328_reset; }

Contributors

PersonTokensPropCommitsCommitProp
alan coxalan cox8187.10%114.29%
daniel palmerdaniel palmer44.30%114.29%
greg ungerergreg ungerer33.23%228.57%
andrew mortonandrew morton33.23%114.29%
joe perchesjoe perches11.08%114.29%
geert uytterhoevengeert uytterhoeven11.08%114.29%
Total93100.00%7100.00%

/***************************************************************************/

Overall Contributors

PersonTokensPropCommitsCommitProp
alan coxalan cox16082.47%111.11%
greg ungerergreg ungerer2110.82%333.33%
daniel palmerdaniel palmer42.06%111.11%
geert uytterhoevengeert uytterhoeven42.06%111.11%
andrew mortonandrew morton31.55%111.11%
luis alvesluis alves10.52%111.11%
joe perchesjoe perches10.52%111.11%
Total194100.00%9100.00%
Directory: arch/m68k/68000
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.