Symbol: lm_softc
sys/arch/i386/pnpbios/lm_pnpbios.c
129
struct lm_softc *sc = device_private(self);
sys/arch/i386/pnpbios/lm_pnpbios.c
153
lm_pnpbios_readreg(struct lm_softc *sc, int reg)
sys/arch/i386/pnpbios/lm_pnpbios.c
161
lm_pnpbios_writereg(struct lm_softc *sc, int reg, int val)
sys/arch/i386/pnpbios/lm_pnpbios.c
59
uint8_t lm_pnpbios_readreg(struct lm_softc *, int);
sys/arch/i386/pnpbios/lm_pnpbios.c
60
void lm_pnpbios_writereg(struct lm_softc *, int, int);
sys/arch/i386/pnpbios/lm_pnpbios.c
63
CFATTACH_DECL_NEW(lm_pnpbios, sizeof(struct lm_softc),
sys/dev/i2c/lm_i2c.c
117
lm_i2c_readreg(struct lm_softc *lmsc, int reg)
sys/dev/i2c/lm_i2c.c
136
lm_i2c_writereg(struct lm_softc *lmsc, int reg, uint8_t val)
sys/dev/i2c/lm_i2c.c
52
uint8_t lm_i2c_readreg(struct lm_softc *, int);
sys/dev/i2c/lm_i2c.c
53
void lm_i2c_writereg(struct lm_softc *, int, uint8_t);
sys/dev/i2c/lm_i2c.c
56
struct lm_softc sc_lmsc;
sys/dev/ic/nslm7x.c
100
static void wb_refresh_fanrpm(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
101
static void wb_w83792d_refresh_fanrpm(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
102
static void wb_nct6776f_refresh_fanrpm(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
104
static void as_refresh_temp(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
107
int (*chip_match)(struct lm_softc *);
sys/dev/ic/nslm7x.c
108
int (*chip_attach)(struct lm_softc *);
sys/dev/ic/nslm7x.c
2188
lm_generic_banksel(struct lm_softc *lmsc, uint8_t bank)
sys/dev/ic/nslm7x.c
2200
lm_match(struct lm_softc *lmsc)
sys/dev/ic/nslm7x.c
2224
nslm_match(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2244
lm_attach(struct lm_softc *lmsc)
sys/dev/ic/nslm7x.c
2304
lm_detach(struct lm_softc *lmsc)
sys/dev/ic/nslm7x.c
2317
struct lm_softc *lmsc = arg;
sys/dev/ic/nslm7x.c
2324
nslm_attach(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2359
def_match(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2366
def_attach(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2381
wb_temp_diode_type(struct lm_softc *sc, int diode_type)
sys/dev/ic/nslm7x.c
2429
wb_lookup(struct lm_softc *sc, const struct wb_product *products, uint16_t id)
sys/dev/ic/nslm7x.c
2468
wb_read_vendorid(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2503
wb_read_chipid(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2533
wb_match(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2563
wb_attach(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2661
lm_setup_sensors(struct lm_softc *sc, const struct lm_sensor *sensors)
sys/dev/ic/nslm7x.c
2677
lm_refresh_sensor_data(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2686
lm_refresh_volt(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2711
lm_refresh_temp(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2733
lm_refresh_fanrpm(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2765
wb_refresh_sensor_data(struct lm_softc *sc)
sys/dev/ic/nslm7x.c
2785
wb_w83637hf_refresh_vcore(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2806
wb_refresh_nvolt(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2825
wb_w83627ehf_refresh_nvolt(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2844
wb_refresh_temp(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2870
wb_refresh_fanrpm(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2919
wb_nct6776f_refresh_fanrpm(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2935
wb_w83792d_refresh_fanrpm(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
2983
as_refresh_temp(struct lm_softc *sc, int n)
sys/dev/ic/nslm7x.c
75
static const struct wb_product *wb_lookup(struct lm_softc *,
sys/dev/ic/nslm7x.c
77
static int wb_match(struct lm_softc *);
sys/dev/ic/nslm7x.c
78
static int wb_attach(struct lm_softc *);
sys/dev/ic/nslm7x.c
79
static int nslm_match(struct lm_softc *);
sys/dev/ic/nslm7x.c
80
static int nslm_attach(struct lm_softc *);
sys/dev/ic/nslm7x.c
81
static int def_match(struct lm_softc *);
sys/dev/ic/nslm7x.c
82
static int def_attach(struct lm_softc *);
sys/dev/ic/nslm7x.c
83
static void wb_temp_diode_type(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
84
static uint16_t wb_read_vendorid(struct lm_softc *);
sys/dev/ic/nslm7x.c
88
static void lm_generic_banksel(struct lm_softc *, uint8_t);
sys/dev/ic/nslm7x.c
89
static void lm_setup_sensors(struct lm_softc *, const struct lm_sensor *);
sys/dev/ic/nslm7x.c
90
static void lm_refresh_sensor_data(struct lm_softc *);
sys/dev/ic/nslm7x.c
91
static void lm_refresh_volt(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
92
static void lm_refresh_temp(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
93
static void lm_refresh_fanrpm(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
95
static void wb_refresh_sensor_data(struct lm_softc *);
sys/dev/ic/nslm7x.c
96
static void wb_w83637hf_refresh_vcore(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
97
static void wb_refresh_nvolt(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
98
static void wb_w83627ehf_refresh_nvolt(struct lm_softc *, int);
sys/dev/ic/nslm7x.c
99
static void wb_refresh_temp(struct lm_softc *, int);
sys/dev/ic/nslm7xvar.h
167
void (*refresh_sensor_data)(struct lm_softc *);
sys/dev/ic/nslm7xvar.h
169
uint8_t (*lm_readreg)(struct lm_softc *, int);
sys/dev/ic/nslm7xvar.h
170
void (*lm_writereg)(struct lm_softc *, int, uint8_t);
sys/dev/ic/nslm7xvar.h
183
void (*refresh)(struct lm_softc *, int);
sys/dev/ic/nslm7xvar.h
191
void (*extattach)(struct lm_softc *);
sys/dev/ic/nslm7xvar.h
194
int lm_match(struct lm_softc *);
sys/dev/ic/nslm7xvar.h
195
void lm_attach(struct lm_softc *);
sys/dev/ic/nslm7xvar.h
196
void lm_detach(struct lm_softc *);
sys/dev/isa/lm_isa_common.c
143
lm_isa_readreg(struct lm_softc *lmsc, int reg)
sys/dev/isa/lm_isa_common.c
152
lm_isa_writereg(struct lm_softc *lmsc, int reg, uint8_t val)
sys/dev/isa/lm_isa_common.c
54
static uint8_t lm_isa_readreg(struct lm_softc *, int);
sys/dev/isa/lm_isa_common.c
55
static void lm_isa_writereg(struct lm_softc *, int, uint8_t);
sys/dev/isa/lm_isa_common.c
58
struct lm_softc lmsc;
sys/dev/isa/lm_isa_common_var.h
41
struct lm_softc lmsc;