arch/m68k/68000/ucsimm.c

Source file repositories/reference/linux-study-clean/arch/m68k/68000/ucsimm.c

File Facts

System
Linux kernel
Corpus path
arch/m68k/68000/ucsimm.c
Extension
.c
Size
914 bytes
Lines
39
Domain
Architecture Layer
Bucket
arch/m68k
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0
/*
 *  Copyright (C) 1993 Hamish Macdonald
 *  Copyright (C) 1999 D. Jeff Dionne
 *  Copyright (C) 2001 Georges Menie, Ken Desmet
 *
 * 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/string.h>
#include <asm/bootstd.h>
#include <asm/machdep.h>
#include <asm/MC68VZ328.h>


#include "m68328.h"

static int errno;

static _bsc0(char *, getserialnum)
static _bsc1(unsigned char *, gethwaddr, int, a)
static _bsc1(char *, getbenv, char *, a)

void __init init_ucsimm(char *command, int size)
{
	char *p;

	pr_info("uCsimm/uCdimm serial string [%s]\n", getserialnum());
	p = gethwaddr(0);
	pr_info("uCsimm/uCdimm hwaddr %pM\n", p);
	p = getbenv("APPEND");
	if (p)
		strscpy(p, command, size);
	else
		command[0] = 0;
}

Annotation

Implementation Notes