Home | History | Annotate | Line # | Download | only in acpica
OsdMisc.c revision 1.8
      1  1.8    jruoho /*	$NetBSD: OsdMisc.c,v 1.8 2010/04/10 06:56:30 jruoho Exp $	*/
      2  1.1     kochi 
      3  1.1     kochi /*
      4  1.1     kochi  * Copyright 2001 Wasabi Systems, Inc.
      5  1.1     kochi  * All rights reserved.
      6  1.1     kochi  *
      7  1.1     kochi  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8  1.1     kochi  *
      9  1.1     kochi  * Redistribution and use in source and binary forms, with or without
     10  1.1     kochi  * modification, are permitted provided that the following conditions
     11  1.1     kochi  * are met:
     12  1.1     kochi  * 1. Redistributions of source code must retain the above copyright
     13  1.1     kochi  *    notice, this list of conditions and the following disclaimer.
     14  1.1     kochi  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1     kochi  *    notice, this list of conditions and the following disclaimer in the
     16  1.1     kochi  *    documentation and/or other materials provided with the distribution.
     17  1.1     kochi  * 3. All advertising materials mentioning features or use of this software
     18  1.1     kochi  *    must display the following acknowledgement:
     19  1.1     kochi  *	This product includes software developed for the NetBSD Project by
     20  1.1     kochi  *	Wasabi Systems, Inc.
     21  1.1     kochi  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  1.1     kochi  *    or promote products derived from this software without specific prior
     23  1.1     kochi  *    written permission.
     24  1.1     kochi  *
     25  1.1     kochi  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  1.1     kochi  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  1.1     kochi  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  1.1     kochi  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  1.1     kochi  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  1.1     kochi  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  1.1     kochi  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  1.1     kochi  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  1.1     kochi  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  1.1     kochi  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  1.1     kochi  * POSSIBILITY OF SUCH DAMAGE.
     36  1.1     kochi  */
     37  1.1     kochi 
     38  1.1     kochi /*
     39  1.1     kochi  * OS Services Layer
     40  1.1     kochi  *
     41  1.1     kochi  * 6.10: Miscellaneous
     42  1.1     kochi  */
     43  1.1     kochi 
     44  1.1     kochi #include <sys/cdefs.h>
     45  1.8    jruoho __KERNEL_RCSID(0, "$NetBSD: OsdMisc.c,v 1.8 2010/04/10 06:56:30 jruoho Exp $");
     46  1.1     kochi 
     47  1.1     kochi #include "opt_acpi.h"
     48  1.1     kochi #include "opt_ddb.h"
     49  1.1     kochi 
     50  1.1     kochi #include <sys/param.h>
     51  1.1     kochi #include <sys/systm.h>
     52  1.1     kochi 
     53  1.1     kochi #include <machine/db_machdep.h>
     54  1.1     kochi 
     55  1.1     kochi #include <ddb/db_extern.h>
     56  1.1     kochi #include <ddb/db_output.h>
     57  1.1     kochi 
     58  1.1     kochi #include <dev/acpi/acpica.h>
     59  1.1     kochi #include <dev/acpi/acpi_osd.h>
     60  1.1     kochi 
     61  1.7  jmcneill #include <external/intel-public/acpica/dist/include/accommon.h>
     62  1.7  jmcneill #include <external/intel-public/acpica/dist/include/acdebug.h>
     63  1.8    jruoho 
     64  1.1     kochi /*
     65  1.8    jruoho  * For debugging or fixing a DSDT (try this at your own risk!):
     66  1.8    jruoho  *
     67  1.8    jruoho  *	1. Dump the raw DSDT with acpidump(8).
     68  1.8    jruoho  *
     69  1.8    jruoho  *	2. Disassemble with iasl(8) using the option -d.
     70  1.8    jruoho  *
     71  1.8    jruoho  *	3. Modify the ASL file.
     72  1.8    jruoho  *
     73  1.8    jruoho  *	4. Compile it with iasl(8), -tc
     74  1.8    jruoho  *
     75  1.8    jruoho  *	5. Copy the *.hex to src/sys/dev/acpi/acpica/Osd/dsdt.hex
     76  1.8    jruoho  *
     77  1.8    jruoho  *		- or -
     78  1.1     kochi  *
     79  1.8    jruoho  *	   Use the option ACPI_DSDT_FILE="\"/dir/yourdsdt.hex\"" in
     80  1.8    jruoho  *	   the kernel config file.
     81  1.1     kochi  *
     82  1.8    jruoho  *	6. Define ACPI_DSDT_OVERRIDE in the kernel config file and rebuild.
     83  1.1     kochi  */
     84  1.1     kochi 
     85  1.1     kochi #ifdef ACPI_DSDT_OVERRIDE
     86  1.1     kochi #ifndef ACPI_DSDT_FILE
     87  1.1     kochi #define ACPI_DSDT_FILE "dsdt.hex"
     88  1.1     kochi #endif
     89  1.1     kochi #include ACPI_DSDT_FILE
     90  1.1     kochi #endif
     91  1.1     kochi 
     92  1.1     kochi int acpi_indebugger;
     93  1.1     kochi 
     94  1.1     kochi /*
     95  1.1     kochi  * AcpiOsSignal:
     96  1.1     kochi  *
     97  1.1     kochi  *	Break to the debugger or display a breakpoint message.
     98  1.1     kochi  */
     99  1.1     kochi ACPI_STATUS
    100  1.7  jmcneill AcpiOsSignal(UINT32 Function, void *Info)
    101  1.1     kochi {
    102  1.3     kochi 	/*
    103  1.3     kochi 	 * the upper layer might call with Info = NULL,
    104  1.3     kochi 	 * which makes little sense.
    105  1.3     kochi 	 */
    106  1.3     kochi 	if (Info == NULL)
    107  1.3     kochi 		return AE_NO_MEMORY;
    108  1.1     kochi 
    109  1.1     kochi 	switch (Function) {
    110  1.1     kochi 	case ACPI_SIGNAL_FATAL:
    111  1.1     kochi 	    {
    112  1.7  jmcneill 		ACPI_SIGNAL_FATAL_INFO *info = Info;
    113  1.1     kochi 
    114  1.1     kochi 		panic("ACPI fatal signal: "
    115  1.1     kochi 		    "Type 0x%08x, Code 0x%08x, Argument 0x%08x",
    116  1.1     kochi 		    info->Type, info->Code, info->Argument);
    117  1.1     kochi 		/* NOTREACHED */
    118  1.1     kochi 		break;
    119  1.1     kochi 	    }
    120  1.1     kochi 
    121  1.1     kochi 	case ACPI_SIGNAL_BREAKPOINT:
    122  1.1     kochi 	    {
    123  1.6     joerg #ifdef ACPI_BREAKPOINT
    124  1.7  jmcneill 		char *info = Info;
    125  1.1     kochi 
    126  1.1     kochi 		printf("%s\n", info);
    127  1.6     joerg #  if defined(DDB)
    128  1.1     kochi 		Debugger();
    129  1.6     joerg #  else
    130  1.1     kochi 		printf("ACPI: WARNING: DDB not configured into kernel.\n");
    131  1.1     kochi 		return AE_NOT_EXIST;
    132  1.6     joerg #  endif
    133  1.1     kochi #endif
    134  1.1     kochi 		break;
    135  1.1     kochi 	    }
    136  1.1     kochi 
    137  1.1     kochi 	default:
    138  1.1     kochi 		return AE_BAD_PARAMETER;
    139  1.1     kochi 	}
    140  1.1     kochi 
    141  1.1     kochi 	return AE_OK;
    142  1.1     kochi }
    143  1.1     kochi 
    144  1.1     kochi ACPI_STATUS
    145  1.1     kochi AcpiOsGetLine(char *Buffer)
    146  1.1     kochi {
    147  1.1     kochi #if defined(DDB)
    148  1.1     kochi 	char *cp;
    149  1.1     kochi 
    150  1.1     kochi 	db_readline(Buffer, 80);
    151  1.1     kochi 	for (cp = Buffer; *cp != 0; cp++)
    152  1.1     kochi 		if (*cp == '\n' || *cp == '\r')
    153  1.1     kochi 			*cp = 0;
    154  1.1     kochi 	db_output_line = 0;
    155  1.1     kochi 	return AE_OK;
    156  1.1     kochi #else
    157  1.1     kochi 	printf("ACPI: WARNING: DDB not configured into kernel.\n");
    158  1.1     kochi 	return AE_NOT_EXIST;
    159  1.1     kochi #endif
    160  1.1     kochi }
    161  1.1     kochi 
    162  1.1     kochi ACPI_STATUS
    163  1.5  christos AcpiOsTableOverride(ACPI_TABLE_HEADER *ExistingTable,
    164  1.1     kochi 		    ACPI_TABLE_HEADER **NewTable)
    165  1.1     kochi {
    166  1.1     kochi #ifndef ACPI_DSDT_OVERRIDE
    167  1.1     kochi 	*NewTable = NULL;
    168  1.1     kochi #else
    169  1.1     kochi 	if (strncmp(ExistingTable->Signature, "DSDT", 4) == 0)
    170  1.1     kochi 		*NewTable = (ACPI_TABLE_HEADER *)AmlCode;
    171  1.1     kochi 	else
    172  1.1     kochi 		*NewTable = NULL;
    173  1.1     kochi #endif
    174  1.1     kochi 	return AE_OK;
    175  1.1     kochi }
    176  1.1     kochi 
    177  1.1     kochi ACPI_STATUS
    178  1.1     kochi AcpiOsPredefinedOverride(const ACPI_PREDEFINED_NAMES *InitVal,
    179  1.1     kochi 			 ACPI_STRING *NewVal)
    180  1.1     kochi {
    181  1.1     kochi 	if (!InitVal || !NewVal)
    182  1.1     kochi 		return AE_BAD_PARAMETER;
    183  1.1     kochi 
    184  1.1     kochi 	*NewVal = NULL;
    185  1.1     kochi 	return AE_OK;
    186  1.1     kochi }
    187  1.1     kochi 
    188  1.1     kochi /*
    189  1.1     kochi  * acpi_osd_debugger:
    190  1.1     kochi  *
    191  1.1     kochi  *	Enter the ACPICA debugger.
    192  1.1     kochi  */
    193  1.1     kochi void
    194  1.1     kochi acpi_osd_debugger(void)
    195  1.1     kochi {
    196  1.1     kochi #ifdef ACPI_DEBUGGER
    197  1.1     kochi 	static int beenhere;
    198  1.1     kochi 	ACPI_PARSE_OBJECT obj;
    199  1.1     kochi 	label_t	acpi_jmpbuf;
    200  1.1     kochi 	label_t	*savejmp;
    201  1.1     kochi 
    202  1.1     kochi 	if (beenhere == 0) {
    203  1.1     kochi 		printf("Initializing ACPICA debugger...\n");
    204  1.1     kochi 		AcpiDbInitialize();
    205  1.1     kochi 		beenhere = 1;
    206  1.1     kochi 	}
    207  1.1     kochi 
    208  1.1     kochi 	printf("Entering ACPICA debugger...\n");
    209  1.1     kochi 	savejmp = db_recover;
    210  1.1     kochi 	setjmp(&acpi_jmpbuf);
    211  1.1     kochi 	db_recover = &acpi_jmpbuf;
    212  1.1     kochi 
    213  1.1     kochi 	acpi_indebugger = 1;
    214  1.1     kochi 	AcpiDbUserCommands('A', &obj);
    215  1.1     kochi 	acpi_indebugger = 0;
    216  1.1     kochi 
    217  1.1     kochi 	db_recover = savejmp;
    218  1.1     kochi #else
    219  1.1     kochi 	printf("ACPI: WARNING: ACPICA debugger not present.\n");
    220  1.1     kochi #endif
    221  1.1     kochi }
    222