x68kInit.c revision 45f60b5b
1/* $NetBSD: x68kInit.c,v 1.13 2025/06/22 22:29:23 tsutsui Exp $ */ 2/*------------------------------------------------------------------------- 3 * Copyright (c) 1996 Yasushi Yamasaki 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 *-----------------------------------------------------------------------*/ 26 27/* 28 * 29 * Copyright (c) 1987 by the Regents of the University of California 30 * 31 * Permission to use, copy, modify, and distribute this 32 * software and its documentation for any purpose and without 33 * fee is hereby granted, provided that the above copyright 34 * notice appear in all copies. The University of California 35 * makes no representations about the suitability of this 36 * software for any purpose. It is provided "as is" without 37 * express or implied warranty. 38 * 39 * 40 */ 41 42/************************************************************ 43Copyright 1987 by Sun Microsystems, Inc. Mountain View, CA. 44 45 All Rights Reserved 46 47Permission to use, copy, modify, and distribute this 48software and its documentation for any purpose and without 49fee is hereby granted, provided that the above copyright no- 50tice appear in all copies and that both that copyright no- 51tice and this permission notice appear in supporting docu- 52mentation, and that the names of Sun or X Consortium 53not be used in advertising or publicity pertaining to 54distribution of the software without specific prior 55written permission. Sun and X Consortium make no 56representations about the suitability of this software for 57any purpose. It is provided "as is" without any express or 58implied warranty. 59 60SUN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 61INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FIT- 62NESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SUN BE LI- 63ABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR 64ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 65PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 66OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH 67THE USE OR PERFORMANCE OF THIS SOFTWARE. 68 69*******************************************************/ 70 71#include <X11/Xos.h> 72#include "x68k.h" 73#include "mi.h" 74#include "extinit.h" 75 76static int nscreens; 77 78/* default log file paths */ 79#ifndef DEFAULT_LOGDIR 80#define DEFAULT_LOGDIR "/var/log" 81#endif 82#ifndef DEFAULT_LOGPREFIX 83#define DEFAULT_LOGPREFIX "X68K." 84#endif 85 86void 87OsVendorInit(void) 88{ 89 static int inited; 90 91 if (!inited) { 92 const char *logfile; 93 char *lf; 94 95#define LOGSUFFIX ".log" 96#define LOGOLDSUFFIX ".old" 97 logfile = DEFAULT_LOGDIR "/" DEFAULT_LOGPREFIX; 98 if (asprintf(&lf, "%s%%s" LOGSUFFIX, logfile) == -1) 99 FatalError("Cannot allocate space for the log file name\n"); 100 LogInit(lf, LOGOLDSUFFIX); 101#undef LOGSUFFIX 102#undef LOGOLDSUFFIX 103 free(lf); 104 105 inited = 1; 106 } 107} 108 109#ifdef GLXEXT 110void 111GlxExtensionInit(void) 112{ 113} 114#endif 115 116/*------------------------------------------------------------------------- 117 * function "InitOutput" [ called by DIX ] 118 * 119 * purpose: initialize outputs ( screens ) 120 * argument: (ScreenInfo *)pScreenInfo : screen info struct 121 * (int)argc, (char *)argv : standard arguments 122 * returns: nothing 123 *-----------------------------------------------------------------------*/ 124void 125InitOutput(ScreenInfo *pScreenInfo, int argc, char *argv[]) 126{ 127 int i; 128 X68kScreenRec *screen; 129 X68kFbProcRec *fb; 130 131 pScreenInfo->imageByteOrder = IMAGE_BYTE_ORDER; 132 pScreenInfo->bitmapScanlineUnit = BITMAP_SCANLINE_UNIT; 133 pScreenInfo->bitmapScanlinePad = BITMAP_SCANLINE_PAD; 134 pScreenInfo->bitmapBitOrder = BITMAP_BIT_ORDER; 135 136 /* read configuration file */ 137 nscreens = x68kConfig(); 138 139 /* register pixmap formats */ 140 x68kRegisterPixmapFormats(pScreenInfo); 141 142 /* open and initialize frame buffer for each screen */ 143 for (i = 0; i < nscreens; i++) { 144 screen = x68kGetScreenRec(i); 145 fb = x68kGetFbProcRec(i); 146 if ( !(*fb->open)(screen) ) 147 return; 148 if ( AddScreen(fb->init, argc, argv) < 0 ) 149 FatalError("AddScreen failed\n"); 150 } 151} 152 153/*------------------------------------------------------------------------- 154 * function "InitInput" [ called by DIX ] 155 * 156 * purpose: initialize inputs ( keyboard and mouse ) 157 * argument: (int)argc, (char *)argv : standard arguments 158 * returns: nothing 159 *-----------------------------------------------------------------------*/ 160void 161InitInput(int argc, char *argv[]) 162{ 163 int rc; 164 165 rc = AllocDevicePair(serverClient, "x68k", 166 &x68kPointerDevice, &x68kKeyboardDevice, 167 x68kMouseProc,x68kKbdProc, FALSE); 168 if (rc != Success) 169 FatalError("Failed to init x68k default input devices.\n"); 170 171 if ( !mieqInit() ) 172 FatalError("mieqInit failed\n"); 173} 174 175void 176CloseInput(void) 177{ 178 mieqFini(); 179} 180 181/*------------------------------------------------------------------------- 182 * function "ddxGiveUp" [ called by DIX ] 183 * 184 * purpose: free signal handler and close frame buffers 185 * argument: ExitCode 186 * returns: nothing 187 *-----------------------------------------------------------------------*/ 188void 189ddxGiveUp(enum ExitCode error) 190{ 191 int i; 192 X68kScreenRec *screen; 193 X68kFbProcRec *fb; 194 195 /* close all frame buffers */ 196 for (i = 0; i < nscreens; i++) { 197 screen = x68kGetScreenRec(i); 198 fb = x68kGetFbProcRec(i); 199 (*fb->close)(screen); 200 } 201 LogClose(error); 202} 203 204/*------------------------------------------------------------------------- 205 * function "ddxProcessArgument" [ called by OS ] 206 * 207 * purpose: process X68k dependent arguments 208 * currently only `x68kconfig' will be recognized. 209 * argument: (int)argc, (char **)argv: standard C arguments 210 * (int)i : index of current argument 211 * returns: number of arguments eaten 212 *-----------------------------------------------------------------------*/ 213int 214ddxProcessArgument(int argc, char *argv[], int i) 215{ 216 217 if (strcmp(argv[i], "-x68kconfig") == 0) { 218 if (++i >= argc) 219 UseMsg(); 220 configFilename = strdup(argv[i]); 221 return 2; 222 } 223 return 0; 224} 225 226/*------------------------------------------------------------------------- 227 * function "ddxUseMsg" [ called by OS ] 228 * 229 * purpose: print X68k dependent usage 230 * argument: nothing 231 * returns: nothing 232 *-----------------------------------------------------------------------*/ 233void 234ddxUseMsg(void) 235{ 236 ErrorF("\nX68k dependent options\n"); 237 ErrorF("-x68kconfig filename specify configuration file\n"); 238} 239 240_X_EXPORT void 241OsVendorFatalError(const char *f, va_list args) 242{ 243} 244 245#if INPUTTHREAD 246/** This function is called in Xserver/os/inputthread.c when starting 247 the input thread. */ 248void 249ddxInputThreadInit(void) 250{ 251} 252#endif 253 254/* EOF x68kInit.c */ 255