| /openbsd-src/sys/arch/mips64/include/ |
| H A D | cache.h | 32 #define CACHE_PROTOS(chip) \ argument 34 void chip##_ConfigCache(struct cpu_info *); \ 36 void chip##_SyncCache(struct cpu_info *); \ 38 void chip##_InvalidateICache(struct cpu_info *, vaddr_t, size_t); \ 40 void chip##_InvalidateICachePage(struct cpu_info *, vaddr_t); \ 42 void chip##_SyncICache(struct cpu_info *); \ 44 void chip##_SyncDCachePage(struct cpu_info *, vaddr_t, paddr_t); \ 46 void chip##_HitSyncDCachePage(struct cpu_info *, vaddr_t, paddr_t); \ 48 void chip##_HitSyncDCache(struct cpu_info *, vaddr_t, size_t); \ 50 void chip##_HitInvalidateDCache(struct cpu_info *, vaddr_t, size_t); \ [all …]
|
| /openbsd-src/sys/dev/ic/ |
| H A D | rtwn.c | 213 printf("%s: unsupported chip\n", sc->sc_pdev->dv_xname); in rtwn_attach() 218 if (sc->chip & (RTWN_CHIP_92C | RTWN_CHIP_92E)) { in rtwn_attach() 219 sc->ntxchains = (sc->chip & RTWN_CHIP_92C_1T2R) ? 1 : 2; in rtwn_attach() 228 if (sc->chip & RTWN_CHIP_PCI) { in rtwn_attach() 231 (sc->chip & RTWN_CHIP_92C) ? "8192CE" : in rtwn_attach() 232 (sc->chip & RTWN_CHIP_88E) ? "8188EE" : in rtwn_attach() 233 (sc->chip & RTWN_CHIP_92E) ? "8192EE" : in rtwn_attach() 234 (sc->chip & RTWN_CHIP_23A) ? "8723AE" : in rtwn_attach() 235 (sc->chip & RTWN_CHIP_23B) ? "8723BE" : "8188CE", in rtwn_attach() 238 } else if (sc->chip in rtwn_attach() [all...] |
| H A D | cyreg.h | 115 #define cd_read_reg_sc(sc,chip,reg) bus_space_read_1(sc->sc_memt, \ argument 117 sc->sc_cd1400_offs[chip]+\ 120 #define cd_write_reg_sc(sc,chip,reg,val) bus_space_write_1(sc->sc_memt, \ argument 122 sc->sc_cd1400_offs[chip]+\
|
| /openbsd-src/sys/dev/i2c/ |
| H A D | adt7460.c | 122 struct adt_chip *chip; member 168 sc->chip = &adt_chips[i]; in adt_attach() 189 if (sc->chip->type == 7460) { in adt_attach() 212 if (sc->chip->type == 5017) in adt_attach() 215 if (sc->chip->type == 5027) in adt_attach() 269 sc->chip->ratio[worklist[i].index - 32768] == 0) in adt_attach() 292 ratio = sc->chip->ratio[worklist[i].index - 32768]; in adt_refresh() 306 if (sc->chip->vcc && (sc->sc_conf & ADT7460_CONFIG_Vcc)) in adt_refresh() 307 ratio = sc->chip->vcc; in adt_refresh() 345 if (sc->chip->type != 5027) { in adt_refresh()
|
| /openbsd-src/sys/dev/usb/ |
| H A D | if_urtwn.c | 240 uint32_t chip; member 454 sc->sc_sc.chip = urtwn_lookup(uaa->vendor, uaa->product)->chip; in urtwn_attach() 1194 rate = (sc->sc_sc.chip & (RTWN_CHIP_88F | RTWN_CHIP_92E)) ? in urtwn_rx_frame() 1333 if (sc->sc_sc.chip & RTWN_CHIP_88E) { in urtwn_rxeof() 1352 } else if (sc->sc_sc.chip & (RTWN_CHIP_88F | RTWN_CHIP_92E)) { in urtwn_rxeof() 1378 align = ((sc->sc_sc.chip & (RTWN_CHIP_88F | RTWN_CHIP_92E)) ? 7 : 127); in urtwn_rxeof() 1485 if (sc->sc_sc.chip & RTWN_CHIP_88E) { in urtwn_tx_fill_desc() 1519 if (sc->sc_sc.chip & RTWN_CHIP_88E) { in urtwn_tx_fill_desc() 1678 if (sc->sc_sc.chip in urtwn_tx() [all...] |
| H A D | if_bwfm_usb.c | 127 uint32_t chip; /* Chip id */ member 302 sc->sc_chip = letoh32(brom.chip); in bwfm_usb_preinit() 369 if (letoh32(brom.chip) == BRCMF_POSTBOOT_ID) in bwfm_usb_preinit() 373 if (letoh32(brom.chip) != BRCMF_POSTBOOT_ID) { in bwfm_usb_preinit() 379 sc->sc_chip = letoh32(brom.chip); in bwfm_usb_preinit()
|
| /openbsd-src/sys/dev/sbus/ |
| H A D | magma.c | 291 int chip, cd_clock; in magma_attach() local 369 for (chip = 0 ; chip < card->mb_ncd1400 ; chip++) { in magma_attach() 370 struct cd1400 *cd = &sc->ms_cd1400[chip]; in magma_attach() 375 card->mb_cd1400[chip], CD1400_REGMAPSIZE, &cd->cd_regh)) { in magma_attach() 386 sc->ms_dev.dv_xname, chip, cd->cd_reg, in magma_attach() 418 for (chip = 0 ; chip < card->mb_ncd1190 ; chip++) { in magma_attach() 419 struct cd1190 *cd = &sc->ms_cd1190[chip]; in magma_attach() 422 card->mb_cd1190[chip], CD1190_REGMAPSIZE, &cd->cd_regh)) { in magma_attach() 428 sc->ms_dev.dv_xname, chip, cd->cd_reg)); in magma_attach() 449 int chip, status = 0; in magma_hard() local [all …]
|
| /openbsd-src/sys/dev/pci/ |
| H A D | if_rtwn.c | 400 sc->sc_sc.chip = RTWN_CHIP_PCI; in rtwn_pci_attach() 404 sc->sc_sc.chip |= RTWN_CHIP_88C | RTWN_CHIP_92C; in rtwn_pci_attach() 407 sc->sc_sc.chip |= RTWN_CHIP_88E; in rtwn_pci_attach() 410 sc->sc_sc.chip |= RTWN_CHIP_23A; in rtwn_pci_attach() 829 if (sc->sc_sc.chip & RTWN_CHIP_88E) { in rtwn_rx_frame() 1059 if (sc->sc_sc.chip & RTWN_CHIP_88E) { in rtwn_tx() 1116 if (sc->sc_sc.chip & RTWN_CHIP_23A) in rtwn_tx() 1121 if (!(sc->sc_sc.chip & RTWN_CHIP_23A)) in rtwn_tx() 1228 if (!(sc->sc_sc.chip & RTWN_CHIP_23A)) in rtwn_tx_done() 1255 if (sc->sc_sc.chip & RTWN_CHIP_88E) { in rtwn_pci_init() [all …]
|
| H A D | ahc_pci.c | 805 ahc->chip |= AHC_PCI; in ahc_pci_attach() 1104 u_int chip; in ahc_ext_scbram_present() local 1109 chip = ahc->chip & AHC_CHIPID_MASK; in ahc_ext_scbram_present() 1115 else if (chip == AHC_AIC7895 || chip == AHC_AIC7895C) in ahc_ext_scbram_present() 1123 else if (chip >= AHC_AIC7870) in ahc_ext_scbram_present() 1442 ahc->chip = AHC_AIC7850; in ahc_aic785X_setup() 1458 ahc->chip = AHC_AIC7860; in ahc_aic7860_setup() 1485 ahc->chip = AHC_AIC7870; in ahc_aic7870_setup() 1531 ahc->chip = AHC_AIC7880; in ahc_aic7880_setup() 1580 ahc->chip = AHC_AIC7890; in ahc_aic7890_setup() [all …]
|
| H A D | ahd_pci.c | 224 /* Generic chip probes for devices we don't know 'exactly' */ 381 ahd->chip |= AHD_PCI; in ahd_pci_attach() 385 ahd->chip |= AHD_PCIX; in ahd_pci_attach() 393 if (ahd->chip & AHD_PCIX) in ahd_pci_attach() 396 ahd->chip &= ~AHD_PCIX; in ahd_pci_attach() 397 ahd->chip |= AHD_PCI; in ahd_pci_attach() 603 * chip reset. in ahd_pci_test_register_access() 1066 ahd->chip = AHD_AIC7901; in ahd_aic7901_setup() 1075 ahd->chip = AHD_AIC7901A; in ahd_aic7901A_setup() 1083 ahd->chip in ahd_aic7902_setup() [all...] |
| H A D | if_bwfm_pci.c | 436 const char *chip = NULL; in bwfm_pci_preinit() local 471 chip = "4350c2"; in bwfm_pci_preinit() 473 chip = "4350"; in bwfm_pci_preinit() 476 chip = "4355c1"; in bwfm_pci_preinit() 479 chip = "4356"; in bwfm_pci_preinit() 483 chip = "4364b2"; in bwfm_pci_preinit() 485 chip = "4364b3"; in bwfm_pci_preinit() 488 chip = "43602"; in bwfm_pci_preinit() 491 chip = "4371"; in bwfm_pci_preinit() 494 chip = "4377b3"; in bwfm_pci_preinit() [all …]
|
| /openbsd-src/sys/dev/tc/ |
| H A D | tcds.c | 533 tcds_params(sc, chip, idp, fastp) in tcds_params() argument 535 int chip, *idp, *fastp; 544 id = dec_3000_scsiid[chip]; 545 fast = dec_3000_scsifast[chip]; 555 if (chip == 0) 564 sc->sc_dv.dv_xname, id, chip); 570 sc->sc_dv.dv_xname, chip);
|
| /openbsd-src/sys/dev/sdmmc/ |
| H A D | if_bwfm_sdio.c | 351 const char *chip = NULL; in bwfm_sdio_preinit() local 365 chip = "43241b0"; in bwfm_sdio_preinit() 367 chip = "43241b4"; in bwfm_sdio_preinit() 369 chip = "43241b5"; in bwfm_sdio_preinit() 372 chip = "4330"; in bwfm_sdio_preinit() 375 chip = "4334"; in bwfm_sdio_preinit() 379 chip = "43456"; in bwfm_sdio_preinit() 381 chip = "43455"; in bwfm_sdio_preinit() 385 chip = "43340"; in bwfm_sdio_preinit() 389 chip = "4335"; in bwfm_sdio_preinit() [all …]
|
| /openbsd-src/sys/dev/fdt/ |
| H A D | bd718x7.c | 88 const char *chip; in bdpmic_attach() local 94 chip = "BD71837"; in bdpmic_attach() 97 chip = "BD71847"; in bdpmic_attach() 100 printf(": %s\n", chip); in bdpmic_attach()
|
| H A D | rkpmic.c | 459 const char *chip; in rkpmic_attach() 464 chip = "RK805"; in rkpmic_attach() 471 chip = "RK806"; in rkpmic_attach() 476 chip = "RK808"; in rkpmic_attach() 483 chip = "RK809"; in rkpmic_attach() 490 chip = "RK817"; in rkpmic_attach() 497 printf(": %s\n", chip); in rkpmic_attach() 442 const char *chip; rkpmic_attach() local
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Target/ |
| H A D | TargetItinerary.td | 19 // available across all chip sets for the target. Eg., IntUnit, FPUnit, ... 20 // These may be independent values for each chip set or may be shared across 21 // all chip sets of the target. Each functional unit is treated as a resource 74 // instructions across chip sets. An instruction uses the same itinerary class 75 // across all chip sets. Thus a new chip set can be added without modifying 121 // classes for a given chip set.
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Win32/t/ |
| H A D | Names.t | 34 like( $chiparch, '/^(0|5|6|9|12)$/', " - checking returned chip arch" ); 39 like( $chipname, '/^(0|386|486|586|2200|8664)$/', " - checking returned chip name");
|
| /openbsd-src/gnu/gcc/gcc/cp/ |
| H A D | ChangeLog-1993 | 250 Mon Oct 4 12:50:02 1993 Chip Salzenberg <chip@fin.uucp> 307 Thu Nov 25 23:50:19 1993 Chip Salzenberg <chip@fin.uucp> 323 Mon Nov 15 15:39:15 1993 Chip Salzenberg <chip@fin.uucp> 328 Thu Nov 25 13:31:37 1993 Chip Salzenberg <chip@fin.uucp> 334 Wed Nov 17 19:03:30 1993 Chip Salzenberg <chip@fin.uucp> 343 Wed Nov 17 19:10:37 1993 Chip Salzenberg <chip@fin.uucp> 349 Wed Nov 17 19:07:18 1993 Chip Salzenberg <chip@fin.uucp> 357 Mon Oct 11 23:10:53 1993 Chip Salzenberg <chip@fin.uucp> 362 Mon Oct 4 12:26:49 1993 Chip Salzenberg <chip@fin.uucp> 376 Sat Jul 24 12:04:29 1993 Chip Salzenberg <chip@fin.uucp> [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gas/doc/ |
| H A D | c-ppc.texi | 28 The PowerPC chip family includes several successive levels, using the same 31 instructions each variant supports, please see the chip's architecture
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/ld/scripttempl/ |
| H A D | tic4xcoff.sc | 1 # In microcomputer (MC) mode, the vectors are mapped into the on-chip ROM, 3 # on the external bus. In MC mode, the on-chip ROM contains a bootloader program
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/doc/ |
| H A D | c-ppc.texi | 28 The PowerPC chip family includes several successive levels, using the same 31 instructions each variant supports, please see the chip's architecture
|
| /openbsd-src/gnu/usr.bin/binutils/ld/scripttempl/ |
| H A D | tic4xcoff.sc | 1 # In microcomputer (MC) mode, the vectors are mapped into the on-chip ROM, 3 # on the external bus. In MC mode, the on-chip ROM contains a bootloader program
|
| /openbsd-src/sys/dev/microcode/tigon/ |
| H A D | tigon-license | 1 * Firmware for Alteon Tigon 1 chip.
|
| /openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/ |
| H A D | porting.texi | 85 * CPU:: Configuring for your processor chip. 100 If you are porting to a new operating system (as opposed to a new chip 200 If you are porting to a new chip (as opposed to a new operating system 201 running on an existing chip), you will need to create a new directory in the 211 @code{cpu_include_dir}, add a pattern to handle your chip. 213 Note that some chip families share a single configuration directory, for 220 appropriate for your chip. 449 @file{config/cpu/<chip>/atomicity.h}, where chip is the name of
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/ |
| H A D | porting.texi | 81 * CPU:: Configuring for your processor chip. 96 If you are porting to a new operating system (as opposed to a new chip 216 If you are porting to a new chip (as opposed to a new operating system 217 running on an existing chip), you will need to create a new directory in the 227 @code{cpu_include_dir}, add a pattern to handle your chip. 229 Note that some chip families share a single configuration directory, for 236 appropriate for your chip. 465 @file{config/cpu/<chip>/atomicity.h}, where chip is the name of
|