1*11498SJerry.Gilliam@Sun.COM /* 2*11498SJerry.Gilliam@Sun.COM * CDDL HEADER START 3*11498SJerry.Gilliam@Sun.COM * 4*11498SJerry.Gilliam@Sun.COM * The contents of this file are subject to the terms of the 5*11498SJerry.Gilliam@Sun.COM * Common Development and Distribution License (the "License"). 6*11498SJerry.Gilliam@Sun.COM * You may not use this file except in compliance with the License. 7*11498SJerry.Gilliam@Sun.COM * 8*11498SJerry.Gilliam@Sun.COM * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*11498SJerry.Gilliam@Sun.COM * or http://www.opensolaris.org/os/licensing. 10*11498SJerry.Gilliam@Sun.COM * See the License for the specific language governing permissions 11*11498SJerry.Gilliam@Sun.COM * and limitations under the License. 12*11498SJerry.Gilliam@Sun.COM * 13*11498SJerry.Gilliam@Sun.COM * When distributing Covered Code, include this CDDL HEADER in each 14*11498SJerry.Gilliam@Sun.COM * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*11498SJerry.Gilliam@Sun.COM * If applicable, add the following below this CDDL HEADER, with the 16*11498SJerry.Gilliam@Sun.COM * fields enclosed by brackets "[]" replaced with your own identifying 17*11498SJerry.Gilliam@Sun.COM * information: Portions Copyright [yyyy] [name of copyright owner] 18*11498SJerry.Gilliam@Sun.COM * 19*11498SJerry.Gilliam@Sun.COM * CDDL HEADER END 20*11498SJerry.Gilliam@Sun.COM */ 21*11498SJerry.Gilliam@Sun.COM /* 22*11498SJerry.Gilliam@Sun.COM * Copyright 2010 Sun Microsystems, Inc. All rights reserved. 23*11498SJerry.Gilliam@Sun.COM * Use is subject to license terms. 24*11498SJerry.Gilliam@Sun.COM */ 25*11498SJerry.Gilliam@Sun.COM 26*11498SJerry.Gilliam@Sun.COM #include <sys/types.h> 27*11498SJerry.Gilliam@Sun.COM #include <sys/param.h> 28*11498SJerry.Gilliam@Sun.COM #include <sys/fcntl.h> 29*11498SJerry.Gilliam@Sun.COM #include <sys/promif.h> 30*11498SJerry.Gilliam@Sun.COM #include <sys/prom_plat.h> 31*11498SJerry.Gilliam@Sun.COM #include <sys/salib.h> 32*11498SJerry.Gilliam@Sun.COM #include "boot_plat.h" 33*11498SJerry.Gilliam@Sun.COM 34*11498SJerry.Gilliam@Sun.COM /* 35*11498SJerry.Gilliam@Sun.COM * boot plat defaults for sun4v 36*11498SJerry.Gilliam@Sun.COM */ 37*11498SJerry.Gilliam@Sun.COM bootplat_defaults_t sun4u_plat_defaults = { 38*11498SJerry.Gilliam@Sun.COM "sun4u", /* platform name */ 39*11498SJerry.Gilliam@Sun.COM " /platform/sun4u/kernel", /* default module path */ 40*11498SJerry.Gilliam@Sun.COM 1 /* virtual address cache type */ 41*11498SJerry.Gilliam@Sun.COM /* (none == 0) */ 42*11498SJerry.Gilliam@Sun.COM }; 43