Home | History | Annotate | Line # | Download | only in executer
exserial.c revision 1.1.1.2
      1      1.1  christos /******************************************************************************
      2      1.1  christos  *
      3      1.1  christos  * Module Name: exserial - FieldUnit support for serial address spaces
      4      1.1  christos  *
      5      1.1  christos  *****************************************************************************/
      6      1.1  christos 
      7      1.1  christos /*
      8  1.1.1.2  christos  * Copyright (C) 2000 - 2019, Intel Corp.
      9      1.1  christos  * All rights reserved.
     10      1.1  christos  *
     11      1.1  christos  * Redistribution and use in source and binary forms, with or without
     12      1.1  christos  * modification, are permitted provided that the following conditions
     13      1.1  christos  * are met:
     14      1.1  christos  * 1. Redistributions of source code must retain the above copyright
     15      1.1  christos  *    notice, this list of conditions, and the following disclaimer,
     16      1.1  christos  *    without modification.
     17      1.1  christos  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18      1.1  christos  *    substantially similar to the "NO WARRANTY" disclaimer below
     19      1.1  christos  *    ("Disclaimer") and any redistribution must be conditioned upon
     20      1.1  christos  *    including a substantially similar Disclaimer requirement for further
     21      1.1  christos  *    binary redistribution.
     22      1.1  christos  * 3. Neither the names of the above-listed copyright holders nor the names
     23      1.1  christos  *    of any contributors may be used to endorse or promote products derived
     24      1.1  christos  *    from this software without specific prior written permission.
     25      1.1  christos  *
     26      1.1  christos  * Alternatively, this software may be distributed under the terms of the
     27      1.1  christos  * GNU General Public License ("GPL") version 2 as published by the Free
     28      1.1  christos  * Software Foundation.
     29      1.1  christos  *
     30      1.1  christos  * NO WARRANTY
     31      1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32      1.1  christos  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33      1.1  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34      1.1  christos  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35      1.1  christos  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36      1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37      1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38      1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39      1.1  christos  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40      1.1  christos  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41      1.1  christos  * POSSIBILITY OF SUCH DAMAGES.
     42      1.1  christos  */
     43      1.1  christos 
     44      1.1  christos #include "acpi.h"
     45      1.1  christos #include "accommon.h"
     46      1.1  christos #include "acdispat.h"
     47      1.1  christos #include "acinterp.h"
     48      1.1  christos #include "amlcode.h"
     49      1.1  christos 
     50      1.1  christos 
     51      1.1  christos #define _COMPONENT          ACPI_EXECUTER
     52      1.1  christos         ACPI_MODULE_NAME    ("exserial")
     53      1.1  christos 
     54      1.1  christos 
     55      1.1  christos /*******************************************************************************
     56      1.1  christos  *
     57      1.1  christos  * FUNCTION:    AcpiExReadGpio
     58      1.1  christos  *
     59      1.1  christos  * PARAMETERS:  ObjDesc             - The named field to read
     60  1.1.1.2  christos  *              Buffer              - Where the return data is returned
     61      1.1  christos  *
     62      1.1  christos  * RETURN:      Status
     63      1.1  christos  *
     64      1.1  christos  * DESCRIPTION: Read from a named field that references a Generic Serial Bus
     65      1.1  christos  *              field
     66      1.1  christos  *
     67      1.1  christos  ******************************************************************************/
     68      1.1  christos 
     69      1.1  christos ACPI_STATUS
     70      1.1  christos AcpiExReadGpio (
     71      1.1  christos     ACPI_OPERAND_OBJECT     *ObjDesc,
     72      1.1  christos     void                    *Buffer)
     73      1.1  christos {
     74      1.1  christos     ACPI_STATUS             Status;
     75      1.1  christos 
     76      1.1  christos 
     77      1.1  christos     ACPI_FUNCTION_TRACE_PTR (ExReadGpio, ObjDesc);
     78      1.1  christos 
     79      1.1  christos 
     80      1.1  christos     /*
     81      1.1  christos      * For GPIO (GeneralPurposeIo), the Address will be the bit offset
     82      1.1  christos      * from the previous Connection() operator, making it effectively a
     83      1.1  christos      * pin number index. The BitLength is the length of the field, which
     84      1.1  christos      * is thus the number of pins.
     85      1.1  christos      */
     86      1.1  christos     ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
     87      1.1  christos         "GPIO FieldRead [FROM]:  Pin %u Bits %u\n",
     88      1.1  christos         ObjDesc->Field.PinNumberIndex, ObjDesc->Field.BitLength));
     89      1.1  christos 
     90      1.1  christos     /* Lock entire transaction if requested */
     91      1.1  christos 
     92      1.1  christos     AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
     93      1.1  christos 
     94      1.1  christos     /* Perform the read */
     95      1.1  christos 
     96      1.1  christos     Status = AcpiExAccessRegion (
     97      1.1  christos         ObjDesc, 0, (UINT64 *) Buffer, ACPI_READ);
     98      1.1  christos 
     99      1.1  christos     AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
    100      1.1  christos     return_ACPI_STATUS (Status);
    101      1.1  christos }
    102      1.1  christos 
    103      1.1  christos 
    104      1.1  christos /*******************************************************************************
    105      1.1  christos  *
    106      1.1  christos  * FUNCTION:    AcpiExWriteGpio
    107      1.1  christos  *
    108      1.1  christos  * PARAMETERS:  SourceDesc          - Contains data to write. Expect to be
    109      1.1  christos  *                                    an Integer object.
    110      1.1  christos  *              ObjDesc             - The named field
    111      1.1  christos  *              ResultDesc          - Where the return value is returned, if any
    112      1.1  christos  *
    113      1.1  christos  * RETURN:      Status
    114      1.1  christos  *
    115      1.1  christos  * DESCRIPTION: Write to a named field that references a General Purpose I/O
    116      1.1  christos  *              field.
    117      1.1  christos  *
    118      1.1  christos  ******************************************************************************/
    119      1.1  christos 
    120      1.1  christos ACPI_STATUS
    121      1.1  christos AcpiExWriteGpio (
    122      1.1  christos     ACPI_OPERAND_OBJECT     *SourceDesc,
    123      1.1  christos     ACPI_OPERAND_OBJECT     *ObjDesc,
    124      1.1  christos     ACPI_OPERAND_OBJECT     **ReturnBuffer)
    125      1.1  christos {
    126      1.1  christos     ACPI_STATUS             Status;
    127      1.1  christos     void                    *Buffer;
    128      1.1  christos 
    129      1.1  christos 
    130      1.1  christos     ACPI_FUNCTION_TRACE_PTR (ExWriteGpio, ObjDesc);
    131      1.1  christos 
    132      1.1  christos 
    133      1.1  christos     /*
    134      1.1  christos      * For GPIO (GeneralPurposeIo), we will bypass the entire field
    135      1.1  christos      * mechanism and handoff the bit address and bit width directly to
    136      1.1  christos      * the handler. The Address will be the bit offset
    137      1.1  christos      * from the previous Connection() operator, making it effectively a
    138      1.1  christos      * pin number index. The BitLength is the length of the field, which
    139      1.1  christos      * is thus the number of pins.
    140      1.1  christos      */
    141      1.1  christos     if (SourceDesc->Common.Type != ACPI_TYPE_INTEGER)
    142      1.1  christos     {
    143      1.1  christos         return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
    144      1.1  christos     }
    145      1.1  christos 
    146      1.1  christos     ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
    147      1.1  christos         "GPIO FieldWrite [FROM]: (%s:%X), Value %.8X  [TO]: Pin %u Bits %u\n",
    148      1.1  christos         AcpiUtGetTypeName (SourceDesc->Common.Type),
    149      1.1  christos         SourceDesc->Common.Type, (UINT32) SourceDesc->Integer.Value,
    150      1.1  christos         ObjDesc->Field.PinNumberIndex, ObjDesc->Field.BitLength));
    151      1.1  christos 
    152      1.1  christos     Buffer = &SourceDesc->Integer.Value;
    153      1.1  christos 
    154      1.1  christos     /* Lock entire transaction if requested */
    155      1.1  christos 
    156      1.1  christos     AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
    157      1.1  christos 
    158      1.1  christos     /* Perform the write */
    159      1.1  christos 
    160      1.1  christos     Status = AcpiExAccessRegion (
    161      1.1  christos         ObjDesc, 0, (UINT64 *) Buffer, ACPI_WRITE);
    162      1.1  christos     AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
    163      1.1  christos     return_ACPI_STATUS (Status);
    164      1.1  christos }
    165      1.1  christos 
    166      1.1  christos 
    167      1.1  christos /*******************************************************************************
    168      1.1  christos  *
    169      1.1  christos  * FUNCTION:    AcpiExReadSerialBus
    170      1.1  christos  *
    171      1.1  christos  * PARAMETERS:  ObjDesc             - The named field to read
    172      1.1  christos  *              ReturnBuffer        - Where the return value is returned, if any
    173      1.1  christos  *
    174      1.1  christos  * RETURN:      Status
    175      1.1  christos  *
    176      1.1  christos  * DESCRIPTION: Read from a named field that references a serial bus
    177      1.1  christos  *              (SMBus, IPMI, or GSBus).
    178      1.1  christos  *
    179      1.1  christos  ******************************************************************************/
    180      1.1  christos 
    181      1.1  christos ACPI_STATUS
    182      1.1  christos AcpiExReadSerialBus (
    183      1.1  christos     ACPI_OPERAND_OBJECT     *ObjDesc,
    184      1.1  christos     ACPI_OPERAND_OBJECT     **ReturnBuffer)
    185      1.1  christos {
    186      1.1  christos     ACPI_STATUS             Status;
    187      1.1  christos     UINT32                  BufferLength;
    188      1.1  christos     ACPI_OPERAND_OBJECT     *BufferDesc;
    189      1.1  christos     UINT32                  Function;
    190      1.1  christos     UINT16                  AccessorType;
    191      1.1  christos 
    192      1.1  christos 
    193      1.1  christos     ACPI_FUNCTION_TRACE_PTR (ExReadSerialBus, ObjDesc);
    194      1.1  christos 
    195      1.1  christos 
    196      1.1  christos     /*
    197      1.1  christos      * This is an SMBus, GSBus or IPMI read. We must create a buffer to
    198      1.1  christos      * hold the data and then directly access the region handler.
    199      1.1  christos      *
    200      1.1  christos      * Note: SMBus and GSBus protocol value is passed in upper 16-bits
    201      1.1  christos      * of Function
    202      1.1  christos      *
    203      1.1  christos      * Common buffer format:
    204      1.1  christos      *     Status;    (Byte 0 of the data buffer)
    205      1.1  christos      *     Length;    (Byte 1 of the data buffer)
    206      1.1  christos      *     Data[x-1]: (Bytes 2-x of the arbitrary length data buffer)
    207      1.1  christos      */
    208      1.1  christos     switch (ObjDesc->Field.RegionObj->Region.SpaceId)
    209      1.1  christos     {
    210      1.1  christos     case ACPI_ADR_SPACE_SMBUS:
    211      1.1  christos 
    212      1.1  christos         BufferLength = ACPI_SMBUS_BUFFER_SIZE;
    213      1.1  christos         Function = ACPI_READ | (ObjDesc->Field.Attribute << 16);
    214      1.1  christos         break;
    215      1.1  christos 
    216      1.1  christos     case ACPI_ADR_SPACE_IPMI:
    217      1.1  christos 
    218      1.1  christos         BufferLength = ACPI_IPMI_BUFFER_SIZE;
    219      1.1  christos         Function = ACPI_READ;
    220      1.1  christos         break;
    221      1.1  christos 
    222      1.1  christos     case ACPI_ADR_SPACE_GSBUS:
    223      1.1  christos 
    224      1.1  christos         AccessorType = ObjDesc->Field.Attribute;
    225      1.1  christos         if (AccessorType == AML_FIELD_ATTRIB_RAW_PROCESS_BYTES)
    226      1.1  christos         {
    227      1.1  christos             ACPI_ERROR ((AE_INFO,
    228      1.1  christos                 "Invalid direct read using bidirectional write-then-read protocol"));
    229      1.1  christos 
    230      1.1  christos             return_ACPI_STATUS (AE_AML_PROTOCOL);
    231      1.1  christos         }
    232      1.1  christos 
    233      1.1  christos         Status = AcpiExGetProtocolBufferLength (AccessorType, &BufferLength);
    234      1.1  christos         if (ACPI_FAILURE (Status))
    235      1.1  christos         {
    236      1.1  christos             ACPI_ERROR ((AE_INFO,
    237      1.1  christos                 "Invalid protocol ID for GSBus: 0x%4.4X", AccessorType));
    238      1.1  christos 
    239      1.1  christos             return_ACPI_STATUS (Status);
    240      1.1  christos         }
    241      1.1  christos 
    242      1.1  christos         /* Add header length to get the full size of the buffer */
    243      1.1  christos 
    244      1.1  christos         BufferLength += ACPI_SERIAL_HEADER_SIZE;
    245      1.1  christos         Function = ACPI_READ | (AccessorType << 16);
    246      1.1  christos         break;
    247      1.1  christos 
    248      1.1  christos     default:
    249      1.1  christos         return_ACPI_STATUS (AE_AML_INVALID_SPACE_ID);
    250      1.1  christos     }
    251      1.1  christos 
    252      1.1  christos     /* Create the local transfer buffer that is returned to the caller */
    253      1.1  christos 
    254      1.1  christos     BufferDesc = AcpiUtCreateBufferObject (BufferLength);
    255      1.1  christos     if (!BufferDesc)
    256      1.1  christos     {
    257      1.1  christos         return_ACPI_STATUS (AE_NO_MEMORY);
    258      1.1  christos     }
    259      1.1  christos 
    260      1.1  christos     /* Lock entire transaction if requested */
    261      1.1  christos 
    262      1.1  christos     AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
    263      1.1  christos 
    264      1.1  christos     /* Call the region handler for the write-then-read */
    265      1.1  christos 
    266      1.1  christos     Status = AcpiExAccessRegion (ObjDesc, 0,
    267      1.1  christos         ACPI_CAST_PTR (UINT64, BufferDesc->Buffer.Pointer), Function);
    268      1.1  christos     AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
    269      1.1  christos 
    270      1.1  christos     *ReturnBuffer = BufferDesc;
    271      1.1  christos     return_ACPI_STATUS (Status);
    272      1.1  christos }
    273      1.1  christos 
    274      1.1  christos 
    275      1.1  christos /*******************************************************************************
    276      1.1  christos  *
    277      1.1  christos  * FUNCTION:    AcpiExWriteSerialBus
    278      1.1  christos  *
    279      1.1  christos  * PARAMETERS:  SourceDesc          - Contains data to write
    280      1.1  christos  *              ObjDesc             - The named field
    281      1.1  christos  *              ReturnBuffer        - Where the return value is returned, if any
    282      1.1  christos  *
    283      1.1  christos  * RETURN:      Status
    284      1.1  christos  *
    285      1.1  christos  * DESCRIPTION: Write to a named field that references a serial bus
    286      1.1  christos  *              (SMBus, IPMI, GSBus).
    287      1.1  christos  *
    288      1.1  christos  ******************************************************************************/
    289      1.1  christos 
    290      1.1  christos ACPI_STATUS
    291      1.1  christos AcpiExWriteSerialBus (
    292      1.1  christos     ACPI_OPERAND_OBJECT     *SourceDesc,
    293      1.1  christos     ACPI_OPERAND_OBJECT     *ObjDesc,
    294      1.1  christos     ACPI_OPERAND_OBJECT     **ReturnBuffer)
    295      1.1  christos {
    296      1.1  christos     ACPI_STATUS             Status;
    297      1.1  christos     UINT32                  BufferLength;
    298      1.1  christos     UINT32                  DataLength;
    299      1.1  christos     void                    *Buffer;
    300      1.1  christos     ACPI_OPERAND_OBJECT     *BufferDesc;
    301      1.1  christos     UINT32                  Function;
    302      1.1  christos     UINT16                  AccessorType;
    303      1.1  christos 
    304      1.1  christos 
    305      1.1  christos     ACPI_FUNCTION_TRACE_PTR (ExWriteSerialBus, ObjDesc);
    306      1.1  christos 
    307      1.1  christos 
    308      1.1  christos     /*
    309      1.1  christos      * This is an SMBus, GSBus or IPMI write. We will bypass the entire
    310      1.1  christos      * field mechanism and handoff the buffer directly to the handler.
    311      1.1  christos      * For these address spaces, the buffer is bidirectional; on a
    312      1.1  christos      * write, return data is returned in the same buffer.
    313      1.1  christos      *
    314      1.1  christos      * Source must be a buffer of sufficient size, these are fixed size:
    315      1.1  christos      * ACPI_SMBUS_BUFFER_SIZE, or ACPI_IPMI_BUFFER_SIZE.
    316      1.1  christos      *
    317      1.1  christos      * Note: SMBus and GSBus protocol type is passed in upper 16-bits
    318      1.1  christos      * of Function
    319      1.1  christos      *
    320      1.1  christos      * Common buffer format:
    321      1.1  christos      *     Status;    (Byte 0 of the data buffer)
    322      1.1  christos      *     Length;    (Byte 1 of the data buffer)
    323      1.1  christos      *     Data[x-1]: (Bytes 2-x of the arbitrary length data buffer)
    324      1.1  christos      */
    325      1.1  christos     if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER)
    326      1.1  christos     {
    327      1.1  christos         ACPI_ERROR ((AE_INFO,
    328      1.1  christos             "SMBus/IPMI/GenericSerialBus write requires "
    329      1.1  christos             "Buffer, found type %s",
    330      1.1  christos             AcpiUtGetObjectTypeName (SourceDesc)));
    331      1.1  christos 
    332      1.1  christos         return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
    333      1.1  christos     }
    334      1.1  christos 
    335      1.1  christos     switch (ObjDesc->Field.RegionObj->Region.SpaceId)
    336      1.1  christos     {
    337      1.1  christos     case ACPI_ADR_SPACE_SMBUS:
    338      1.1  christos 
    339      1.1  christos         BufferLength = ACPI_SMBUS_BUFFER_SIZE;
    340      1.1  christos         Function = ACPI_WRITE | (ObjDesc->Field.Attribute << 16);
    341      1.1  christos         break;
    342      1.1  christos 
    343      1.1  christos     case ACPI_ADR_SPACE_IPMI:
    344      1.1  christos 
    345      1.1  christos         BufferLength = ACPI_IPMI_BUFFER_SIZE;
    346      1.1  christos         Function = ACPI_WRITE;
    347      1.1  christos         break;
    348      1.1  christos 
    349      1.1  christos     case ACPI_ADR_SPACE_GSBUS:
    350      1.1  christos 
    351      1.1  christos         AccessorType = ObjDesc->Field.Attribute;
    352      1.1  christos         Status = AcpiExGetProtocolBufferLength (AccessorType, &BufferLength);
    353      1.1  christos         if (ACPI_FAILURE (Status))
    354      1.1  christos         {
    355      1.1  christos             ACPI_ERROR ((AE_INFO,
    356      1.1  christos                 "Invalid protocol ID for GSBus: 0x%4.4X", AccessorType));
    357      1.1  christos 
    358      1.1  christos             return_ACPI_STATUS (Status);
    359      1.1  christos         }
    360      1.1  christos 
    361      1.1  christos         /* Add header length to get the full size of the buffer */
    362      1.1  christos 
    363      1.1  christos         BufferLength += ACPI_SERIAL_HEADER_SIZE;
    364      1.1  christos         Function = ACPI_WRITE | (AccessorType << 16);
    365      1.1  christos         break;
    366      1.1  christos 
    367      1.1  christos     default:
    368      1.1  christos         return_ACPI_STATUS (AE_AML_INVALID_SPACE_ID);
    369      1.1  christos     }
    370      1.1  christos 
    371      1.1  christos     /* Create the transfer/bidirectional/return buffer */
    372      1.1  christos 
    373      1.1  christos     BufferDesc = AcpiUtCreateBufferObject (BufferLength);
    374      1.1  christos     if (!BufferDesc)
    375      1.1  christos     {
    376      1.1  christos         return_ACPI_STATUS (AE_NO_MEMORY);
    377      1.1  christos     }
    378      1.1  christos 
    379      1.1  christos     /* Copy the input buffer data to the transfer buffer */
    380      1.1  christos 
    381      1.1  christos     Buffer = BufferDesc->Buffer.Pointer;
    382      1.1  christos     DataLength = (BufferLength < SourceDesc->Buffer.Length ?
    383      1.1  christos         BufferLength : SourceDesc->Buffer.Length);
    384      1.1  christos     memcpy (Buffer, SourceDesc->Buffer.Pointer, DataLength);
    385      1.1  christos 
    386      1.1  christos     /* Lock entire transaction if requested */
    387      1.1  christos 
    388      1.1  christos     AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
    389      1.1  christos 
    390      1.1  christos     /*
    391      1.1  christos      * Perform the write (returns status and perhaps data in the
    392      1.1  christos      * same buffer)
    393      1.1  christos      */
    394      1.1  christos     Status = AcpiExAccessRegion (
    395      1.1  christos         ObjDesc, 0, (UINT64 *) Buffer, Function);
    396      1.1  christos     AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
    397      1.1  christos 
    398      1.1  christos     *ReturnBuffer = BufferDesc;
    399      1.1  christos     return_ACPI_STATUS (Status);
    400      1.1  christos }
    401