#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.26 2026/06/10 21:24:11 andvar Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
#include "opt_kloader.h"
#include "opt_kloader_kernel_path.h"
#include "opt_memsize.h"
#include "opt_modular.h"
#include "ksyms.h"
#include "scif.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/mount.h>
#include <sys/reboot.h>
#include <sys/sysctl.h>
#include <sys/ksyms.h>
#include <sys/device.h>
#include <sys/module.h>
#include <sys/cpu.h>
#include <uvm/uvm_extern.h>
#include <ufs/mfs/mfs_extern.h>
#include <dev/cons.h>
#include <sh3/bscreg.h>
#include <sh3/cpgreg.h>
#include <sh3/exception.h>
#include <sh3/wdtreg.h>
#include <sh3/cache.h>
#include <sh3/cache_sh4.h>
#include <sh3/mmu_sh4.h>
#include <sys/bus.h>
#include <machine/bootinfo.h>
#include <machine/pcb.h>
#include <landisk/landisk/landiskreg.h>
#ifdef KLOADER
#include <machine/kloader.h>
#endif
#ifdef KGDB
#include <sys/kgdb.h>
#include <sh3/dev/scifvar.h>
#endif
#if NKSYMS || defined(MODULAR) || defined(DDB)
#include <machine/db_machdep.h>
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>
#include <sys/exec_elf.h>
#endif
char machine[] = MACHINE;
char machine_arch[] = MACHINE_ARCH;
#ifdef KLOADER
struct kloader_bootinfo kbootinfo;
#else
struct bootinfo _bootinfo;
#endif
struct bootinfo *bootinfo;
void main(void) __attribute__((__noreturn__));
void landisk_startup(int, void *) __attribute__((__noreturn__));
void
cpu_startup(void)
{
cpu_setmodel("Model: I-O DATA LANDISK");
sh_startup();
}
void
landisk_startup(int howto, void *bi)
{
extern char edata[], end[];
vaddr_t kernend;
size_t symbolsize;
memset(edata, 0, end - edata);
symbolsize = 0;
#if NKSYMS || defined(MODULAR) || defined(DDB)
if (memcmp(&end, ELFMAG, SELFMAG) == 0) {
Elf_Ehdr *eh = (void *)end;
Elf_Shdr *sh = (void *)(end + eh->e_shoff);
int i;
for (i = 0; i < eh->e_shnum; i++, sh++) {
if (sh->sh_offset > 0 &&
(sh->sh_offset + sh->sh_size) > symbolsize) {
symbolsize = sh->sh_offset + sh->sh_size;
}
}
}
#endif
kernend = (vaddr_t)sh3_round_page(end + symbolsize);
#ifdef KLOADER
bootinfo = &kbootinfo.bootinfo;
#else
bootinfo = &_bootinfo;
#endif
memcpy(bootinfo, bi, sizeof(struct bootinfo));
boothowto = howto;
sh_cpu_init(CPU_ARCH_SH4, CPU_PRODUCT_7751R);
consinit();
if (boothowto & RB_MINIROOT) {
size_t fssz;
fssz = sh3_round_page(mfs_initminiroot((void *)kernend));
#ifdef MEMORY_DISK_DYNAMIC
md_root_setconf((void *)kernend, fssz);
#endif
kernend += fssz;
}
#ifdef KLOADER
kloader_bootinfo_set(&kbootinfo, 0, NULL, NULL, true);
#endif
physmem = atop(IOM_RAM_SIZE);
kernend = atop(round_page(SH3_P1SEG_TO_PHYS(kernend)));
uvm_page_physload(
kernend, atop(IOM_RAM_BEGIN + IOM_RAM_SIZE),
kernend, atop(IOM_RAM_BEGIN + IOM_RAM_SIZE),
VM_FREELIST_DEFAULT);
sh_proc0_init();
pmap_bootstrap();
#if NKSYMS || defined(MODULAR) || defined(DDB)
if (symbolsize != 0) {
ksyms_addsyms_elf(symbolsize, &end, end + symbolsize);
}
#endif
#if defined(DDB)
if (boothowto & RB_KDB) {
Debugger();
}
#endif
#if defined(KGDB) && (NSCIF > 0)
if (scif_kgdb_init() == 0) {
if (boothowto & RB_KDB) {
kgdb_debug_init = 1;
kgdb_connect(1);
}
}
#endif
__asm volatile(
"jmp @%0;"
"mov %1, sp"
:: "r" (main), "r" (lwp0.l_md.md_pcb->pcb_sf.sf_r7_bank));
for (;;) {
continue;
}
}
void *
lookup_bootinfo(int type)
{
struct btinfo_common *help;
int n = bootinfo->nentries;
help = (struct btinfo_common *)(bootinfo->info);
while (n--) {
if (help->type == type)
return (help);
help = (struct btinfo_common *)((char *)help + help->len);
}
return (NULL);
}
SYSCTL_SETUP(sysctl_machdep_setup, "sysctl machdep subtree setup")
{
sysctl_createv(clog, 0, NULL, NULL,
CTLFLAG_PERMANENT,
CTLTYPE_NODE, "machdep", NULL,
NULL, 0, NULL, 0,
CTL_MACHDEP, CTL_EOL);
sysctl_createv(clog, 0, NULL, NULL,
CTLFLAG_PERMANENT,
CTLTYPE_STRUCT, "console_device", NULL,
sysctl_consdev, 0, NULL, sizeof(dev_t),
CTL_MACHDEP, CPU_CONSDEV, CTL_EOL);
}
void
cpu_reboot(int howto, char *bootstr)
{
if (cold) {
howto |= RB_HALT;
goto haltsys;
}
#ifdef KLOADER
if ((howto & RB_HALT) == 0) {
if ((howto & RB_STRING) && (bootstr != NULL)) {
kloader_reboot_setup(bootstr);
}
#ifdef KLOADER_KERNEL_PATH
else {
kloader_reboot_setup(KLOADER_KERNEL_PATH);
}
#endif
}
#endif
boothowto = howto;
if ((howto & RB_NOSYNC) == 0) {
vfs_shutdown();
}
delay(1 * 1000 * 1000);
splhigh();
if ((howto & (RB_DUMP | RB_HALT)) == RB_DUMP) {
dumpsys();
}
haltsys:
doshutdownhooks();
pmf_system_shutdown(boothowto);
if ((howto & RB_POWERDOWN) == RB_POWERDOWN) {
_reg_write_1(LANDISK_PWRMNG, PWRMNG_POWEROFF);
delay(1 * 1000 * 1000);
printf("POWEROFF FAILED!\n");
}
if (howto & RB_HALT) {
printf("\n");
printf("The operating system has halted.\n");
printf("Please press any key to reboot.\n\n");
cngetc();
}
#ifdef KLOADER
else {
delay(1 * 1000 * 1000);
kloader_reboot();
printf("\n");
printf("Failed to load a new kernel.\n");
printf("Please press any key to reboot.\n\n");
cngetc();
}
#endif
printf("rebooting...\n");
machine_reset();
}
void
machine_reset(void)
{
_cpu_exception_suspend();
asm("trapa #0");
for (;;) {
continue;
}
}
#if !defined(DONT_INIT_BSC)
void InitializeBsc(void);
void
InitializeBsc(void)
{
_reg_write_4(SH4_BCR1, BSC_BCR1_VAL);
_reg_write_2(SH4_BCR2, BSC_BCR2_VAL);
#if defined(SH4) && defined(SH7751R)
if (cpu_product == CPU_PRODUCT_7751R) {
#ifdef BSC_BCR3_VAL
_reg_write_2(SH4_BCR3, BSC_BCR3_VAL);
#endif
#ifdef BSC_BCR4_VAL
_reg_write_4(SH4_BCR4, BSC_BCR4_VAL);
#endif
}
#endif
_reg_write_4(SH4_WCR1, BSC_WCR1_VAL);
_reg_write_4(SH4_WCR2, BSC_WCR2_VAL);
#ifdef BSC_WCR3_VAL
_reg_write_4(SH4_WCR3, BSC_WCR3_VAL);
#endif
_reg_write_4(SH4_MCR, BSC_MCR_VAL);
#ifdef BSC_SDMR2_VAL
_reg_write_1(BSC_SDMR2_VAL, 0);
#endif
#ifdef BSC_SDMR3_VAL
_reg_write_1(BSC_SDMR3_VAL, 0);
#endif
#ifdef BSC_PCR_VAL
_reg_write_2(SH4_PCR, BSC_PCR_VAL);
#endif
_reg_write_2(SH4_RTCSR, BSC_RTCSR_VAL);
#ifdef BSC_RTCNT_VAL
_reg_write_2(SH4_RTCNT, BSC_RTCNT_VAL);
#endif
_reg_write_2(SH4_RTCOR, BSC_RTCOR_VAL);
#ifdef BSC_RFCR_VAL
_reg_write_2(SH4_RFCR, BSC_RFCR_VAL);
#endif
_reg_write_2(SH4_FRQCR, FRQCR_VAL);
}
#endif