2015-08-30 08:24:03 +03:00
|
|
|
/* $NetBSD: md_root.c,v 1.19 2015/08/30 05:24:03 uebayasi Exp $ */
|
2000-10-02 19:22:32 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Gordon W. Ross.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 08:32:49 +03:00
|
|
|
#include <sys/cdefs.h>
|
2015-08-30 08:24:03 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: md_root.c,v 1.19 2015/08/30 05:24:03 uebayasi Exp $");
|
2001-11-13 08:32:49 +03:00
|
|
|
|
2001-07-02 21:17:23 +04:00
|
|
|
#include "opt_md.h"
|
2015-08-30 08:24:03 +03:00
|
|
|
#include "opt_memory_disk_image.h"
|
2001-07-02 21:17:23 +04:00
|
|
|
|
2000-10-02 19:22:32 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/reboot.h>
|
|
|
|
|
|
|
|
#include <dev/md.h>
|
|
|
|
|
2001-11-28 08:55:34 +03:00
|
|
|
#ifdef MEMORY_DISK_DYNAMIC
|
2015-08-30 08:24:03 +03:00
|
|
|
#ifdef makeoptions_MEMORY_DISK_IMAGE
|
|
|
|
#error MEMORY_DISK_DYNAMIC is not compatible with MEMORY_DISK_IMAGE
|
|
|
|
#endif
|
2001-07-02 21:17:23 +04:00
|
|
|
size_t md_root_size;
|
|
|
|
char *md_root_image;
|
|
|
|
#else /* MEMORY_DISK_DYNAMIC */
|
|
|
|
|
2015-08-30 08:24:03 +03:00
|
|
|
#ifdef makeoptions_MEMORY_DISK_IMAGE
|
|
|
|
#ifdef MEMORY_DISK_ROOT_SIZE
|
|
|
|
#error MEMORY_DISK_ROOT_SIZE is not compatible with MEMORY_DISK_IMAGE
|
|
|
|
#endif
|
|
|
|
char md_root_image[] = {
|
|
|
|
#include "md_root_image.h"
|
|
|
|
};
|
|
|
|
uint32_t md_root_size = sizeof(md_root_image) & ~(DEV_BSIZE - 1);
|
|
|
|
|
|
|
|
#else /* makeoptions_MEMORY_DISK_IMAGE */
|
2003-03-07 04:26:12 +03:00
|
|
|
|
2002-04-02 09:30:34 +04:00
|
|
|
#ifndef MEMORY_DISK_ROOT_SIZE
|
|
|
|
#define MEMORY_DISK_ROOT_SIZE 512
|
2000-10-02 19:22:32 +04:00
|
|
|
#endif
|
2002-04-02 09:30:34 +04:00
|
|
|
#define ROOTBYTES (MEMORY_DISK_ROOT_SIZE << DEV_BSHIFT)
|
2000-10-02 19:22:32 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This array will be patched to contain a file-system image.
|
|
|
|
* See the program mdsetimage(8) for details.
|
|
|
|
*/
|
2009-04-16 18:46:33 +04:00
|
|
|
uint32_t md_root_size = ROOTBYTES;
|
2000-10-02 19:22:32 +04:00
|
|
|
char md_root_image[ROOTBYTES] = "|This is the root ramdisk!\n";
|
2015-08-30 08:24:03 +03:00
|
|
|
#endif /* makeoptions_MEMORY_DISK_IMAGE */
|
2001-07-02 21:17:23 +04:00
|
|
|
#endif /* MEMORY_DISK_DYNAMIC */
|
|
|
|
|
2009-02-06 21:50:26 +03:00
|
|
|
#ifndef MEMORY_DISK_RBFLAGS
|
|
|
|
#define MEMORY_DISK_RBFLAGS RB_AUTOBOOT /* default boot mode */
|
2003-02-05 18:20:29 +03:00
|
|
|
#endif
|
|
|
|
|
2001-11-28 08:55:34 +03:00
|
|
|
#ifdef MEMORY_DISK_DYNAMIC
|
2001-07-02 21:17:23 +04:00
|
|
|
void
|
|
|
|
md_root_setconf(char *addr, size_t size)
|
|
|
|
{
|
2009-04-16 18:46:33 +04:00
|
|
|
|
2008-05-02 17:02:31 +04:00
|
|
|
md_is_root = 1;
|
2001-07-02 21:17:23 +04:00
|
|
|
md_root_image = addr;
|
|
|
|
md_root_size = size;
|
|
|
|
}
|
|
|
|
#endif /* MEMORY_DISK_DYNAMIC */
|
2000-10-02 19:22:32 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is called during pseudo-device attachment.
|
|
|
|
*/
|
2009-04-16 18:46:33 +04:00
|
|
|
#define PBUFLEN sizeof("99999 KB")
|
|
|
|
|
2000-10-02 19:22:32 +04:00
|
|
|
void
|
2001-07-02 21:17:23 +04:00
|
|
|
md_attach_hook(int unit, struct md_conf *md)
|
2000-10-02 19:22:32 +04:00
|
|
|
{
|
2009-04-16 18:46:33 +04:00
|
|
|
char pbuf[PBUFLEN];
|
2000-10-02 19:22:32 +04:00
|
|
|
|
2008-05-02 17:02:31 +04:00
|
|
|
if (unit == 0 && md_is_root) {
|
2000-10-02 19:22:32 +04:00
|
|
|
/* Setup root ramdisk */
|
2007-03-04 08:59:00 +03:00
|
|
|
md->md_addr = (void *)md_root_image;
|
2000-10-02 19:22:32 +04:00
|
|
|
md->md_size = (size_t)md_root_size;
|
|
|
|
md->md_type = MD_KMEM_FIXED;
|
2001-07-02 21:17:23 +04:00
|
|
|
format_bytes(pbuf, sizeof(pbuf), md->md_size);
|
2008-05-02 17:02:31 +04:00
|
|
|
aprint_verbose("md%d: internal %s image area\n", unit, pbuf);
|
2000-10-02 19:22:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is called during open (i.e. mountroot)
|
|
|
|
*/
|
|
|
|
void
|
2006-11-16 04:32:37 +03:00
|
|
|
md_open_hook(int unit, struct md_conf *md)
|
2000-10-02 19:22:32 +04:00
|
|
|
{
|
|
|
|
|
2008-05-02 17:02:31 +04:00
|
|
|
if (unit == 0 && md_is_root) {
|
2009-02-06 21:50:26 +03:00
|
|
|
boothowto |= MEMORY_DISK_RBFLAGS;
|
2000-10-02 19:22:32 +04:00
|
|
|
}
|
|
|
|
}
|