Symbol: tpm_softc
sys/dev/tpm/tpm.c
1015
tpm_legacy_init(struct tpm_softc *sc, int irq, const char *name)
sys/dev/tpm/tpm.c
1037
tpm_legacy_start(struct tpm_softc *sc, int flag)
sys/dev/tpm/tpm.c
1062
tpm_legacy_read(struct tpm_softc *sc, void *buf, int len, size_t *count,
sys/dev/tpm/tpm.c
1087
tpm_legacy_write(struct tpm_softc *sc, void *buf, int len)
sys/dev/tpm/tpm.c
1106
tpm_legacy_end(struct tpm_softc *sc, int flag, int rv)
sys/dev/tpm/tpm.c
1139
struct tpm_softc *sc = TPMSOFTC(dev);
sys/dev/tpm/tpm.c
1155
struct tpm_softc *sc = TPMSOFTC(dev);
sys/dev/tpm/tpm.c
1171
struct tpm_softc *sc = TPMSOFTC(dev);
sys/dev/tpm/tpm.c
1243
struct tpm_softc *sc = TPMSOFTC(dev);
sys/dev/tpm/tpm.c
128
((struct tpm_softc *)dev->si_drv1)
sys/dev/tpm/tpm.c
164
int tpm_tis12_irqinit(struct tpm_softc *, int, int);
sys/dev/tpm/tpm.c
165
int tpm_tis12_init(struct tpm_softc *, int, const char *);
sys/dev/tpm/tpm.c
166
int tpm_tis12_start(struct tpm_softc *, int);
sys/dev/tpm/tpm.c
167
int tpm_tis12_read(struct tpm_softc *, void *, int, size_t *, int);
sys/dev/tpm/tpm.c
168
int tpm_tis12_write(struct tpm_softc *, void *, int);
sys/dev/tpm/tpm.c
169
int tpm_tis12_end(struct tpm_softc *, int, int);
sys/dev/tpm/tpm.c
173
int tpm_waitfor_poll(struct tpm_softc *, u_int8_t, int, void *);
sys/dev/tpm/tpm.c
174
int tpm_waitfor_int(struct tpm_softc *, u_int8_t, int, void *, int);
sys/dev/tpm/tpm.c
175
int tpm_waitfor(struct tpm_softc *, u_int8_t, int, void *);
sys/dev/tpm/tpm.c
176
int tpm_request_locality(struct tpm_softc *, int);
sys/dev/tpm/tpm.c
177
int tpm_getburst(struct tpm_softc *);
sys/dev/tpm/tpm.c
178
u_int8_t tpm_status(struct tpm_softc *);
sys/dev/tpm/tpm.c
182
int tpm_legacy_init(struct tpm_softc *, int, const char *);
sys/dev/tpm/tpm.c
183
int tpm_legacy_start(struct tpm_softc *, int);
sys/dev/tpm/tpm.c
184
int tpm_legacy_read(struct tpm_softc *, void *, int, size_t *, int);
sys/dev/tpm/tpm.c
185
int tpm_legacy_write(struct tpm_softc *, void *, int);
sys/dev/tpm/tpm.c
186
int tpm_legacy_end(struct tpm_softc *, int, int);
sys/dev/tpm/tpm.c
203
struct tpm_softc *sc = device_get_softc(dev);
sys/dev/tpm/tpm.c
264
struct tpm_softc * sc = device_get_softc(dev);
sys/dev/tpm/tpm.c
325
tpm_tis12_irqinit(struct tpm_softc *sc, int irq, int idx)
sys/dev/tpm/tpm.c
359
tpm_tis12_init(struct tpm_softc *sc, int irq, const char *name)
sys/dev/tpm/tpm.c
400
tpm_request_locality(struct tpm_softc *sc, int l)
sys/dev/tpm/tpm.c
442
tpm_getburst(struct tpm_softc *sc)
sys/dev/tpm/tpm.c
474
tpm_status(struct tpm_softc *sc)
sys/dev/tpm/tpm.c
499
struct tpm_softc *sc = device_get_softc(dev);
sys/dev/tpm/tpm.c
527
struct tpm_softc *sc = device_get_softc(dev);
sys/dev/tpm/tpm.c
541
tpm_waitfor_poll(struct tpm_softc *sc, u_int8_t mask, int tmo, void *c)
sys/dev/tpm/tpm.c
564
tpm_waitfor_int(struct tpm_softc *sc, u_int8_t mask, int tmo, void *c,
sys/dev/tpm/tpm.c
631
tpm_waitfor(struct tpm_softc *sc, u_int8_t b0, int tmo, void *c)
sys/dev/tpm/tpm.c
724
tpm_tis12_start(struct tpm_softc *sc, int flag)
sys/dev/tpm/tpm.c
769
tpm_tis12_read(struct tpm_softc *sc, void *buf, int len, size_t *count,
sys/dev/tpm/tpm.c
809
tpm_tis12_write(struct tpm_softc *sc, void *buf, int len)
sys/dev/tpm/tpm.c
870
tpm_tis12_end(struct tpm_softc *sc, int flag, int err)
sys/dev/tpm/tpm.c
916
struct tpm_softc *sc = v;
sys/dev/tpm/tpm_acpi.c
75
"tpm", tpm_acpi_methods, sizeof(struct tpm_softc),
sys/dev/tpm/tpm_isa.c
88
"tpm", tpm_methods, sizeof(struct tpm_softc),
sys/dev/tpm/tpmvar.h
28
int (*sc_init)(struct tpm_softc *, int, const char *);
sys/dev/tpm/tpmvar.h
29
int (*sc_start)(struct tpm_softc *, int);
sys/dev/tpm/tpmvar.h
30
int (*sc_read)(struct tpm_softc *, void *, int, size_t *, int);
sys/dev/tpm/tpmvar.h
31
int (*sc_write)(struct tpm_softc *, void *, int);
sys/dev/tpm/tpmvar.h
32
int (*sc_end)(struct tpm_softc *, int, int);