1*0Sstevel@tonic-gate /* 2*0Sstevel@tonic-gate * CDDL HEADER START 3*0Sstevel@tonic-gate * 4*0Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*0Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*0Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*0Sstevel@tonic-gate * with the License. 8*0Sstevel@tonic-gate * 9*0Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*0Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*0Sstevel@tonic-gate * See the License for the specific language governing permissions 12*0Sstevel@tonic-gate * and limitations under the License. 13*0Sstevel@tonic-gate * 14*0Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*0Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*0Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*0Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*0Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*0Sstevel@tonic-gate * 20*0Sstevel@tonic-gate * CDDL HEADER END 21*0Sstevel@tonic-gate */ 22*0Sstevel@tonic-gate /* 23*0Sstevel@tonic-gate * Copyright (c) 1999 by Sun Microsystems, Inc. 24*0Sstevel@tonic-gate * All rights reserved. 25*0Sstevel@tonic-gate */ 26*0Sstevel@tonic-gate 27*0Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 28*0Sstevel@tonic-gate 29*0Sstevel@tonic-gate #include <sys/stat.h> 30*0Sstevel@tonic-gate #include <fcntl.h> 31*0Sstevel@tonic-gate #include <unistd.h> 32*0Sstevel@tonic-gate #include <stdlib.h> 33*0Sstevel@tonic-gate #include <stdio.h> 34*0Sstevel@tonic-gate #include <strings.h> 35*0Sstevel@tonic-gate 36*0Sstevel@tonic-gate #include <fcode/private.h> 37*0Sstevel@tonic-gate #include <fcode/log.h> 38*0Sstevel@tonic-gate 39*0Sstevel@tonic-gate #include <fcdriver/fcdriver.h> 40*0Sstevel@tonic-gate 41*0Sstevel@tonic-gate static void 42*0Sstevel@tonic-gate dump_private(fcode_env_t *env) 43*0Sstevel@tonic-gate { 44*0Sstevel@tonic-gate common_data_t *cdp; 45*0Sstevel@tonic-gate private_data_t *p; 46*0Sstevel@tonic-gate 47*0Sstevel@tonic-gate if (env->current_device) { 48*0Sstevel@tonic-gate p = env->current_device->private; 49*0Sstevel@tonic-gate if (p) { 50*0Sstevel@tonic-gate cdp = p->common; 51*0Sstevel@tonic-gate } else 52*0Sstevel@tonic-gate cdp = NULL; 53*0Sstevel@tonic-gate } else { 54*0Sstevel@tonic-gate cdp = env->private; 55*0Sstevel@tonic-gate p = NULL; 56*0Sstevel@tonic-gate } 57*0Sstevel@tonic-gate 58*0Sstevel@tonic-gate if (cdp == NULL) { 59*0Sstevel@tonic-gate log_message(MSG_ERROR, "dump_private: NULL private ptr!\n"); 60*0Sstevel@tonic-gate return; 61*0Sstevel@tonic-gate } 62*0Sstevel@tonic-gate 63*0Sstevel@tonic-gate log_message(MSG_DEBUG, "Private Data:\n"); 64*0Sstevel@tonic-gate log_message(MSG_DEBUG, "Progname: %s\n", cdp->Progname); 65*0Sstevel@tonic-gate log_message(MSG_DEBUG, "fcode_fd: %8p\n", cdp->fcode_fd); 66*0Sstevel@tonic-gate log_message(MSG_DEBUG, "attach: %llx\n", cdp->attach); 67*0Sstevel@tonic-gate log_message(MSG_DEBUG, "Params: (%8p)\n", &cdp->fc); 68*0Sstevel@tonic-gate log_message(MSG_DEBUG, " size: %d\n", cdp->fc.fcode_size); 69*0Sstevel@tonic-gate log_message(MSG_DEBUG, " unit: %s\n", cdp->fc.unit_address); 70*0Sstevel@tonic-gate if (p != NULL) { 71*0Sstevel@tonic-gate log_message(MSG_DEBUG, "Node: %p\n", p->node); 72*0Sstevel@tonic-gate log_message(MSG_DEBUG, "Parent: %p\n", p->parent); 73*0Sstevel@tonic-gate log_message(MSG_DEBUG, "upload: %d\n", p->upload); 74*0Sstevel@tonic-gate log_message(MSG_DEBUG, "debug: %8x\n", p->debug); 75*0Sstevel@tonic-gate } 76*0Sstevel@tonic-gate } 77*0Sstevel@tonic-gate 78*0Sstevel@tonic-gate static void 79*0Sstevel@tonic-gate trigger(fcode_env_t *env) 80*0Sstevel@tonic-gate { 81*0Sstevel@tonic-gate common_data_t *cdp = (common_data_t *)env->private; 82*0Sstevel@tonic-gate 83*0Sstevel@tonic-gate ASSERT(cdp); 84*0Sstevel@tonic-gate 85*0Sstevel@tonic-gate cdp->fcode_fd = open("/dev/fcode", O_RDONLY); 86*0Sstevel@tonic-gate if (cdp->fcode_fd >= 0) { 87*0Sstevel@tonic-gate log_message(MSG_INFO, "Trigger..."); 88*0Sstevel@tonic-gate if (!fc_get_request(cdp)) 89*0Sstevel@tonic-gate log_message(MSG_ERROR, "fc_get_request failed\n"); 90*0Sstevel@tonic-gate else 91*0Sstevel@tonic-gate log_message(MSG_INFO, "\n"); 92*0Sstevel@tonic-gate } else 93*0Sstevel@tonic-gate forth_abort(env, "Can't open /dev/fcode\n"); 94*0Sstevel@tonic-gate } 95*0Sstevel@tonic-gate 96*0Sstevel@tonic-gate static void 97*0Sstevel@tonic-gate do_trigger(fcode_env_t *env) 98*0Sstevel@tonic-gate { 99*0Sstevel@tonic-gate trigger(env); 100*0Sstevel@tonic-gate build_tree(env); 101*0Sstevel@tonic-gate install_builtin_nodes(env); 102*0Sstevel@tonic-gate } 103*0Sstevel@tonic-gate 104*0Sstevel@tonic-gate #pragma init(_init) 105*0Sstevel@tonic-gate 106*0Sstevel@tonic-gate static void 107*0Sstevel@tonic-gate _init(void) 108*0Sstevel@tonic-gate { 109*0Sstevel@tonic-gate fcode_env_t *env = initial_env; 110*0Sstevel@tonic-gate 111*0Sstevel@tonic-gate ASSERT(env); 112*0Sstevel@tonic-gate NOTICE; 113*0Sstevel@tonic-gate 114*0Sstevel@tonic-gate FORTH(0, "dump-private", dump_private); 115*0Sstevel@tonic-gate FORTH(0, "trigger", do_trigger); 116*0Sstevel@tonic-gate } 117