Searched refs:sc_model (Results 1 - 25 of 54) sorted by relevance

123

/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Drs5c313var.h51 } sc_model; member in struct:rs5c313_softc
H A Dmk48txxvar.h43 const char *sc_model; /* chip model name */ member in struct:mk48txx_softc
H A Dahavar.h88 char sc_model[18], member in struct:aha_softc
H A Dmvsatavar.h113 int sc_model; member in struct:mvsata_softc
H A Daha.c860 if (!strncmp(sc->sc_model, "1542C", 5)) {
1027 strcpy(sc->sc_model, "unknown");
1072 strcpy(sc->sc_model, "1540");
1075 strcpy(sc->sc_model, "1540A/1542A/1542B");
1078 strcpy(sc->sc_model, "1640");
1081 strcpy(sc->sc_model, "1740");
1084 strcpy(sc->sc_model, "1542C");
1087 strcpy(sc->sc_model, "1542CF");
1090 strcpy(sc->sc_model, "1542CP");
1103 sc->sc_model, s
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/marvell/
H A Dgt.c223 if (gt_devs[i].model != sc->sc_model)
227 mva.mva_model = sc->sc_model;
252 gt->sc_model = PCI_PRODUCT(gt_read(gt, GTPCI_CD(0)));
257 switch (gt->sc_model) {
305 loaddr = GT_LADDR_GET(gt_read(gt, GT_SCS0_Low_Decode), gt->sc_model);
306 hiaddr = GT_HADDR_GET(gt_read(gt, GT_SCS0_High_Decode), gt->sc_model);
310 loaddr = GT_LADDR_GET(gt_read(gt, GT_SCS1_Low_Decode), gt->sc_model);
311 hiaddr = GT_HADDR_GET(gt_read(gt, GT_SCS1_High_Decode), gt->sc_model);
315 loaddr = GT_LADDR_GET(gt_read(gt, GT_SCS2_Low_Decode), gt->sc_model);
316 hiaddr = GT_HADDR_GET(gt_read(gt, GT_SCS2_High_Decode), gt->sc_model);
[all...]
H A Dgtvar.h33 int sc_model; member in struct:gt_softc
H A Dgtpcivar.h33 int sc_model; member in struct:gtpci_softc
H A Dmvpexvar.h51 int sc_model; member in struct:mvpex_softc
H A Dehci_mv.c157 int sc_model; member in struct:mvusb_softc
209 sc->sc_model = mva->mva_model;
278 if (!((sc->sc_model == MARVELL_ORION_1_88F5181 &&
280 (sc->sc_model == MARVELL_ORION_1_88F5182 && sc->sc_rev <= 1) ||
281 (sc->sc_model == MARVELL_ORION_2_88F5281 && sc->sc_rev <= 1))) {
300 if (sc->sc_model == MARVELL_ORION_1_88F5181 && sc->sc_rev <= 1)
316 if (sc->sc_model == MARVELL_ORION_1_88F5181 && sc->sc_rev <= 2)
318 else if (sc->sc_model == MARVELL_ORION_2_88F5281 && sc->sc_rev == 0)
/netbsd-6-1-5-RELEASE/sys/arch/ews4800mips/sbd/
H A Dmkclock_sbdio.c82 sc->sc_model = "mk48t08";
87 sc->sc_model = "mk48t18";
93 sc->sc_model = "mk48t18";
/netbsd-6-1-5-RELEASE/sys/arch/mvme68k/dev/
H A Dtimekeeper.c88 sc->sc_model = "mk48t02";
91 sc->sc_model = "mk48t08";
/netbsd-6-1-5-RELEASE/sys/dev/isa/
H A Dsbdspvar.h164 u_int sc_model; /* DSP model */ member in struct:sbdsp_softc
193 #define ISSBPRO(sc) ((sc)->sc_model == SB_PRO || (sc)->sc_model == SB_JAZZ)
194 #define ISSBPROCLASS(sc) ((sc)->sc_model >= SB_PRO)
195 #define ISSB16CLASS(sc) ((sc)->sc_model >= SB_16)
H A Dessvar.h154 u_int sc_model; member in struct:ess_softc
H A Dsb.c279 if (sc->sc_model >= SB_20) {
299 if (sc->sc_model == SB_JAZZ)
305 if (sc->sc_model < sizeof names / sizeof names[0])
306 config = names[sc->sc_model];
H A Dess.c315 if (!ESS_USE_AUDIO1(sc->sc_model)) {
478 if (sc->sc_model == ESS_1887 &&
511 if (sc->sc_model == ESS_1887) {
545 if (ESS_USE_AUDIO1(sc->sc_model))
589 if (ESS_USE_AUDIO1(sc->sc_model))
639 * This routine sets the values of sc->sc_model and sc->sc_version.
649 sc->sc_model = ESS_UNSUPPORTED;
669 sc->sc_model = ESS_688;
691 sc->sc_model = ESS_1688;
719 sc->sc_model
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/hpcarm/dev/
H A Dwzero3_tp.c117 const struct wzero3tp_model *sc_model; member in struct:wzero3tp_softc
277 sc->sc_model = wzero3tp_lookup();
278 if (sc->sc_model == NULL) {
286 if (sc->sc_model->wait_for_hsync)
287 ads7846_wait_for_hsync = sc->sc_model->wait_for_hsync;
289 (*sc->sc_model->chip.init)();
298 if (sc->sc_model->calib) {
300 __UNCONST(sc->sc_model->calib), 0, 0);
322 pxa2x0_gpio_set_function(sc->sc_model->intr_pin, GPIO_IN);
327 sc->sc_model
[all...]
H A Dwzero3_ssp.c60 const struct wzero3ssp_model *sc_model; member in struct:wzero3ssp_softc
153 sc->sc_model = wzero3ssp_lookup();
154 if (sc->sc_model == NULL) {
162 if (bus_space_map(sc->sc_iot, sc->sc_model->sspaddr, PXA2X0_SSP_SIZE, 0,
183 if (sc->sc_model->sspaddr == PXA2X0_SSP1_BASE)
185 else if (sc->sc_model->sspaddr == PXA2X0_SSP2_BASE)
/netbsd-6-1-5-RELEASE/sys/dev/acpi/
H A Daibs_acpi.c95 bool sc_model; /* new model = true */ member in struct:aibs_softc
155 if (sc->sc_model != false)
212 sc->sc_model = false;
219 sc->sc_model = false;
226 sc->sc_model = false;
230 sc->sc_model = true;
266 sc->sc_model = false;
439 if (sc->sc_model != false) {
478 if (sc->sc_model != false)
536 if (sc->sc_model !
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/news68k/dev/
H A Dmkclock_hb.c91 sc->sc_model = "mk48t02";
/netbsd-6-1-5-RELEASE/sys/arch/newsmips/dev/
H A Dmkclock_hb.c86 sc->sc_model = "mk48t02";
/netbsd-6-1-5-RELEASE/sys/arch/arm/marvell/
H A Dpci_machdep.c307 !(sc->sc_model == MARVELL_ORION_2_88F5281 && sc->sc_rev == 1) &&
308 !(sc->sc_model == MARVELL_ORION_1_88F5181 && sc->sc_rev == 8)) {
336 (sc->sc_model == MARVELL_ORION_1_88F1181) ?
359 if (sc->sc_model == MARVELL_ORION_1_88F1181) {
362 } else if (sc->sc_model == MARVELL_ORION_1_88F5182) {
/netbsd-6-1-5-RELEASE/sys/arch/newsmips/apbus/
H A Dmkclock_ap.c84 sc->sc_model = "mk48t02";
/netbsd-6-1-5-RELEASE/sys/arch/evbppc/mpc85xx/
H A Dds1553rtc.c111 sc->sc_model = "ds1553";
/netbsd-6-1-5-RELEASE/sys/arch/sparc/sparc/
H A Dmkclock.c234 sc->sc_model = "mk48t02"; /* Hard-coded sun4 clock */
236 sc->sc_model = prom_getpropstring(node, "model");
252 panic("Cannot get nvram size on %s", sc->sc_model);

Completed in 475 milliseconds

123