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/tpm/tpmvar.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  * Copyright (c) 2008, 2009 Michael Shalayeff
    3  * Copyright (c) 2009, 2010 Hans-Joerg Hoexer
    4  * All rights reserved.
    5  *
    6  * Permission to use, copy, modify, and distribute this software for any
    7  * purpose with or without fee is hereby granted, provided that the above
    8  * copyright notice and this permission notice appear in all copies.
    9  *
   10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   14  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER IN
   15  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
   16  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   17  *
   18  * $FreeBSD$
   19  */
   20 
   21 #ifndef _TPMVAR_H
   22 #define _TPMVAR_H
   23 
   24 struct tpm_softc {
   25 #ifndef __FreeBSD__
   26         struct device sc_dev;
   27 #endif
   28         void *sc_ih;
   29 
   30         int     (*sc_init)(struct tpm_softc *, int, const char *);
   31         int     (*sc_start)(struct tpm_softc *, int);
   32         int     (*sc_read)(struct tpm_softc *, void *, int, size_t *, int);
   33         int     (*sc_write)(struct tpm_softc *, void *, int);
   34         int     (*sc_end)(struct tpm_softc *, int, int);
   35 
   36         bus_space_tag_t sc_bt, sc_batm;
   37         bus_space_handle_t sc_bh, sc_bahm;
   38 
   39         u_int32_t sc_devid;
   40         u_int32_t sc_rev;
   41         u_int32_t sc_stat;
   42         u_int32_t sc_capabilities;
   43 
   44         int sc_flags;
   45 #define TPM_OPEN        0x0001
   46 
   47         int      sc_vector;
   48 #ifdef __FreeBSD__
   49         void    *intr_cookie;
   50         int mem_rid, irq_rid;
   51         struct resource *mem_res, *irq_res;
   52         struct cdev *sc_cdev;
   53 #endif
   54 
   55 #ifndef __FreeBSD__
   56         void    *sc_powerhook;
   57 #endif
   58         int      sc_suspend;
   59 };
   60 
   61 int tpm_tis12_probe(bus_space_tag_t iot, bus_space_handle_t ioh);
   62 int tpm_attach(device_t dev);
   63 int tpm_detach(device_t dev);
   64 int tpm_suspend(device_t dev);
   65 int tpm_resume(device_t dev);
   66 #endif

Cache object: d5d5eb902c99b56c51ad9bb3f052d786


[ 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.