199767f8919635c4928607450d9e0abb932109ceToomas Soome/*-
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Copyright (c) 2000 Benno Rice <benno@jeamland.net>
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Copyright (c) 2000 Stephane Potvin <sepotvin@videotron.ca>
199767f8919635c4928607450d9e0abb932109ceToomas Soome * All rights reserved.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Redistribution and use in source and binary forms, with or without
199767f8919635c4928607450d9e0abb932109ceToomas Soome * modification, are permitted provided that the following conditions
199767f8919635c4928607450d9e0abb932109ceToomas Soome * are met:
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 1. Redistributions of source code must retain the above copyright
199767f8919635c4928607450d9e0abb932109ceToomas Soome * notice, this list of conditions and the following disclaimer.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 2. Redistributions in binary form must reproduce the above copyright
199767f8919635c4928607450d9e0abb932109ceToomas Soome * notice, this list of conditions and the following disclaimer in the
199767f8919635c4928607450d9e0abb932109ceToomas Soome * documentation and/or other materials provided with the distribution.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
199767f8919635c4928607450d9e0abb932109ceToomas Soome * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
199767f8919635c4928607450d9e0abb932109ceToomas Soome * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
199767f8919635c4928607450d9e0abb932109ceToomas Soome * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
199767f8919635c4928607450d9e0abb932109ceToomas Soome * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
199767f8919635c4928607450d9e0abb932109ceToomas Soome * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
199767f8919635c4928607450d9e0abb932109ceToomas Soome * SUCH DAMAGE.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <sys/cdefs.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome__FBSDID("$FreeBSD$");
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <stand.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "openfirm.h"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "libofw.h"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "bootstrap.h"
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestruct arch_switch archsw; /* MI/MD interface boundary */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeextern char end[];
199767f8919635c4928607450d9e0abb932109ceToomas Soomeextern char bootprog_name[];
199767f8919635c4928607450d9e0abb932109ceToomas Soomeextern char bootprog_rev[];
199767f8919635c4928607450d9e0abb932109ceToomas Soomeextern char bootprog_date[];
199767f8919635c4928607450d9e0abb932109ceToomas Soomeextern char bootprog_maker[];
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeu_int32_t acells, scells;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic char bootargs[128];
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define HEAP_SIZE 0x100000
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define OF_puts(fd, text) OF_write(fd, text, strlen(text))
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomevoid
199767f8919635c4928607450d9e0abb932109ceToomas Soomeinit_heap(void)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome void *base;
199767f8919635c4928607450d9e0abb932109ceToomas Soome ihandle_t stdout;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome if ((base = ofw_alloc_heap(HEAP_SIZE)) == (void *)0xffffffff) {
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_getprop(chosen, "stdout", &stdout, sizeof(stdout));
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_puts(stdout, "Heap memory claim failed!\n");
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_enter();
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome setheap(base, (void *)((int)base + HEAP_SIZE));
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeuint64_t
199767f8919635c4928607450d9e0abb932109ceToomas Soomememsize(void)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome phandle_t memoryp;
199767f8919635c4928607450d9e0abb932109ceToomas Soome cell_t reg[24];
199767f8919635c4928607450d9e0abb932109ceToomas Soome int i, sz;
199767f8919635c4928607450d9e0abb932109ceToomas Soome u_int64_t memsz;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome memsz = 0;
199767f8919635c4928607450d9e0abb932109ceToomas Soome memoryp = OF_instance_to_package(memory);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome sz = OF_getprop(memoryp, "reg", &reg, sizeof(reg));
199767f8919635c4928607450d9e0abb932109ceToomas Soome sz /= sizeof(reg[0]);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome for (i = 0; i < sz; i += (acells + scells)) {
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (scells > 1)
199767f8919635c4928607450d9e0abb932109ceToomas Soome memsz += (uint64_t)reg[i + acells] << 32;
199767f8919635c4928607450d9e0abb932109ceToomas Soome memsz += reg[i + acells + scells - 1];
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome return (memsz);
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeint
199767f8919635c4928607450d9e0abb932109ceToomas Soomemain(int (*openfirm)(void *))
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome phandle_t root;
199767f8919635c4928607450d9e0abb932109ceToomas Soome int i;
199767f8919635c4928607450d9e0abb932109ceToomas Soome char bootpath[64];
199767f8919635c4928607450d9e0abb932109ceToomas Soome char *ch;
199767f8919635c4928607450d9e0abb932109ceToomas Soome int bargc;
199767f8919635c4928607450d9e0abb932109ceToomas Soome char **bargv;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome /*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Initalise the Open Firmware routines by giving them the entry point.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_init(openfirm);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome root = OF_finddevice("/");
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome scells = acells = 1;
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_getprop(root, "#address-cells", &acells, sizeof(acells));
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_getprop(root, "#size-cells", &scells, sizeof(scells));
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome /*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Initialise the heap as early as possible. Once this is done,
199767f8919635c4928607450d9e0abb932109ceToomas Soome * alloc() is usable. The stack is buried inside us, so this is
199767f8919635c4928607450d9e0abb932109ceToomas Soome * safe.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome init_heap();
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome /*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Set up console.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome cons_probe();
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome /*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * March through the device switch probing for things.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome for (i = 0; devsw[i] != NULL; i++)
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (devsw[i]->dv_init != NULL)
199767f8919635c4928607450d9e0abb932109ceToomas Soome (devsw[i]->dv_init)();
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("\n");
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("(%s, %s)\n", bootprog_maker, bootprog_date);
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("Memory: %lldKB\n", memsize() / 1024);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_getprop(chosen, "bootpath", bootpath, 64);
199767f8919635c4928607450d9e0abb932109ceToomas Soome ch = strchr(bootpath, ':');
199767f8919635c4928607450d9e0abb932109ceToomas Soome *ch = '\0';
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("Booted from: %s\n", bootpath);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("\n");
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome /*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Only parse the first bootarg if present. It should
199767f8919635c4928607450d9e0abb932109ceToomas Soome * be simple to handle extra arguments
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_getprop(chosen, "bootargs", bootargs, sizeof(bootargs));
199767f8919635c4928607450d9e0abb932109ceToomas Soome bargc = 0;
199767f8919635c4928607450d9e0abb932109ceToomas Soome parse(&bargc, &bargv, bootargs);
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (bargc == 1)
199767f8919635c4928607450d9e0abb932109ceToomas Soome env_setenv("currdev", EV_VOLATILE, bargv[0], ofw_setcurrdev,
199767f8919635c4928607450d9e0abb932109ceToomas Soome env_nounset);
199767f8919635c4928607450d9e0abb932109ceToomas Soome else
199767f8919635c4928607450d9e0abb932109ceToomas Soome env_setenv("currdev", EV_VOLATILE, bootpath,
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofw_setcurrdev, env_nounset);
199767f8919635c4928607450d9e0abb932109ceToomas Soome env_setenv("loaddev", EV_VOLATILE, bootpath, env_noset,
199767f8919635c4928607450d9e0abb932109ceToomas Soome env_nounset);
199767f8919635c4928607450d9e0abb932109ceToomas Soome setenv("LINES", "24", 1); /* optional */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome archsw.arch_getdev = ofw_getdev;
199767f8919635c4928607450d9e0abb932109ceToomas Soome archsw.arch_copyin = ofw_copyin;
199767f8919635c4928607450d9e0abb932109ceToomas Soome archsw.arch_copyout = ofw_copyout;
199767f8919635c4928607450d9e0abb932109ceToomas Soome archsw.arch_readin = ofw_readin;
199767f8919635c4928607450d9e0abb932109ceToomas Soome archsw.arch_autoload = ofw_autoload;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome interact(NULL); /* doesn't return */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_exit();
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome return 0;
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeCOMMAND_SET(halt, "halt", "halt the system", command_halt);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int
199767f8919635c4928607450d9e0abb932109ceToomas Soomecommand_halt(int argc, char *argv[])
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_exit();
199767f8919635c4928607450d9e0abb932109ceToomas Soome return (CMD_OK);
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas SoomeCOMMAND_SET(memmap, "memmap", "print memory map", command_memmap);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeint
199767f8919635c4928607450d9e0abb932109ceToomas Soomecommand_memmap(int argc, char **argv)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofw_memmap(acells);
199767f8919635c4928607450d9e0abb932109ceToomas Soome return (CMD_OK);
199767f8919635c4928607450d9e0abb932109ceToomas Soome}