The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/ichsmb/ichsmb_var.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * ichsmb_var.h
    3  *
    4  * Copyright (c) 2000 Whistle Communications, Inc.
    5  * All rights reserved.
    6  * 
    7  * Subject to the following obligations and disclaimer of warranty, use and
    8  * redistribution of this software, in source or object code forms, with or
    9  * without modifications are expressly permitted by Whistle Communications;
   10  * provided, however, that:
   11  * 1. Any and all reproductions of the source or object code must include the
   12  *    copyright notice above and the following disclaimer of warranties; and
   13  * 2. No rights are granted, in any manner or form, to use Whistle
   14  *    Communications, Inc. trademarks, including the mark "WHISTLE
   15  *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
   16  *    such appears in the above copyright notice or in the software.
   17  * 
   18  * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
   19  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
   20  * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
   21  * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
   22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
   23  * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
   24  * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
   25  * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
   26  * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
   27  * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
   28  * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
   29  * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
   30  * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
   31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   32  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   33  * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
   34  * OF SUCH DAMAGE.
   35  *
   36  * Author: Archie Cobbs <archie@freebsd.org>
   37  *
   38  * $FreeBSD$
   39  */
   40 
   41 #ifndef _DEV_ICHSMB_ICHSMB_VAR_H
   42 #define _DEV_ICHSMB_ICHSMB_VAR_H
   43 
   44 #include "smbus_if.h"
   45 
   46 /* Per-device private info */
   47 struct ichsmb_softc {
   48 
   49         /* Device/bus stuff */
   50         device_t                dev;            /* this device */
   51         device_t                smb;            /* smb device */
   52         struct resource         *io_res;        /* i/o port resource */
   53         int                     io_rid;         /* i/o port bus id */
   54         bus_space_tag_t         io_bst;         /* bus space tag */
   55         bus_space_handle_t      io_bsh;         /* bus space handle */
   56         struct resource         *irq_res;       /* interrupt resource */
   57         int                     irq_rid;        /* interrupt bus id */
   58         void                    *irq_handle;    /* handle for interrupt code */
   59 
   60         /* Device state */
   61         int                     ich_cmd;        /* ich command, or -1 */
   62         int                     smb_error;      /* result of smb command */
   63         int                     block_count;    /* count for block read/write */
   64         int                     block_index;    /* index for block read/write */
   65         u_char                  block_write;    /* 0=read, 1=write */
   66         u_char                  block_data[32]; /* block read/write data */
   67         struct mtx              mutex;          /* device mutex */
   68 };
   69 typedef struct ichsmb_softc *sc_p;
   70 
   71 /* SMBus methods */
   72 extern smbus_callback_t ichsmb_callback;        
   73 extern smbus_quick_t    ichsmb_quick;   
   74 extern smbus_sendb_t    ichsmb_sendb;   
   75 extern smbus_recvb_t    ichsmb_recvb;   
   76 extern smbus_writeb_t   ichsmb_writeb;  
   77 extern smbus_writew_t   ichsmb_writew;  
   78 extern smbus_readb_t    ichsmb_readb;   
   79 extern smbus_readw_t    ichsmb_readw;   
   80 extern smbus_pcall_t    ichsmb_pcall;   
   81 extern smbus_bwrite_t   ichsmb_bwrite;  
   82 extern smbus_bread_t    ichsmb_bread;   
   83 
   84 /* Other functions */
   85 extern void     ichsmb_device_intr(void *cookie);
   86 extern void     ichsmb_release_resources(sc_p sc);
   87 extern int      ichsmb_probe(device_t dev);
   88 extern int      ichsmb_attach(device_t dev);
   89 extern int      ichsmb_detach(device_t dev);
   90 
   91 #endif /* _DEV_ICHSMB_ICHSMB_VAR_H */
   92 

Cache object: 4bcef9ff4a63024a11a587adcc2f674e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.