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