| /freebsd/sys/dev/bhnd/bhndb/ |
| H A D | bhndb_pcireg.h | 31 * There have been four revisions to the BAR0 memory mappings used 37 * BAR0 size: 8KB 49 * BAR0 size: 16KB 60 * BAR0 size: 16KB 71 * BAR0 size: 32KB 128 #define BHNDB_PCI_V0_BAR0_WIN0_CONTROL 0x80 /* backplane address space accessed by BAR0/WIN0 */ 131 #define BHNDB_PCI_V0_BAR0_SIZE 0x2000 /* 8KB BAR0 */ 132 #define BHNDB_PCI_V0_BAR0_WIN0_OFFSET 0x0 /* bar0 + 0x0 accesses configurable 4K region of backplan… 134 #define BHNDB_PCI_V0_BAR0_SPROM_OFFSET 0x1000 /* bar0 + 4K accesses sprom shadow (in pci core) */ 136 #define BHNDB_PCI_V0_BAR0_PCIREG_OFFSET 0x1800 /* bar0 + 6K accesses pci core registers (not includ… [all …]
|
| H A D | bhndb_pci_hwdata.c | 91 /* bar0+0x0000: configurable backplane window */ 124 /* bar0+0x0000: configurable backplane window */ 135 /* bar0+0x3000: chipc core registers */ 290 /* bar0+0x0000: configurable backplane window */ 301 /* bar0+0x1000: sprom shadow */ 310 * bar0+0x1800: pci core registers. 330 /* bar0+0x1E00: pci core (SSB CFG registers) */ 372 /* bar0+0x0000: configurable backplane window */ 383 /* bar0+0x1000: sprom shadow */ 391 /* bar0+0x2000: pci core registers */ [all …]
|
| /freebsd/contrib/netbsd-tests/usr.bin/uniq/ |
| H A D | d_input.in | 1 #01 foo0 bar0 foo1 bar1 2 #02 bar0 foo1 bar1 foo1 3 #03 foo0 bar0 foo1 bar1 5 #05 foo0 bar0 foo1 bar1 6 #06 foo0 bar0 foo1 bar1 7 #07 bar0 foo1 bar1 foo0
|
| H A D | d_counts.out | 1 1 #01 foo0 bar0 foo1 bar1 2 1 #02 bar0 foo1 bar1 foo1 3 1 #03 foo0 bar0 foo1 bar1 5 2 #05 foo0 bar0 foo1 bar1 6 1 #07 bar0 foo1 bar1 foo0
|
| H A D | d_show_uniques.out | 1 #01 foo0 bar0 foo1 bar1 2 #02 bar0 foo1 bar1 foo1 3 #03 foo0 bar0 foo1 bar1 5 #07 bar0 foo1 bar1 foo0
|
| H A D | d_show_duplicates.out | 1 #05 foo0 bar0 foo1 bar1
|
| /freebsd/sys/dev/ice/ |
| H A D | ice_osdep.c | 188 * Read the specified 32bit register value from BAR0 and return its contents. 195 return bus_space_read_4(sc->bar0.tag, sc->bar0.handle, reg); in rd32() 203 * Read the specified 64bit register value from BAR0 and return its contents. 215 data = bus_space_read_8(sc->bar0.tag, sc->bar0.handle, reg); in rd64() 221 data = bus_space_read_4(sc->bar0.tag, sc->bar0.handle, reg); in rd64() 222 data |= ((uint64_t)bus_space_read_4(sc->bar0.tag, sc->bar0.handle, reg + 4)) << 32; in rd64() 234 * Write the specified 32bit value to a register address in BAR0. 241 bus_space_write_4(sc->bar0.tag, sc->bar0.handle, reg, val); in wr32() 250 * Write the specified 64bit value to a register address in BAR0. 261 bus_space_write_8(sc->bar0.tag, sc->bar0.handle, reg, val); in wr64() [all …]
|
| /freebsd/sys/dev/bxe/ |
| H A D | bxe_debug.c | 47 bus_space_write_1(sc->bar[BAR0].tag, in bxe_reg_write8() 48 sc->bar[BAR0].handle, in bxe_reg_write8() 61 bus_space_write_2(sc->bar[BAR0].tag, in bxe_reg_write16() 62 sc->bar[BAR0].handle, in bxe_reg_write16() 75 bus_space_write_4(sc->bar[BAR0].tag, in bxe_reg_write32() 76 sc->bar[BAR0].handle, in bxe_reg_write32() 86 val = bus_space_read_1(sc->bar[BAR0].tag, in bxe_reg_read8() 87 sc->bar[BAR0].handle, in bxe_reg_read8() 103 val = bus_space_read_2(sc->bar[BAR0].tag, in bxe_reg_read16() 104 sc->bar[BAR0].handle, in bxe_reg_read16() [all …]
|
| /freebsd/share/man/man9/ |
| H A D | bus_generic_print_child.9 | 56 .Sq bar0 63 foo0: <FooCard 1234> numa-domain 1 on bar0 99 .Dq \& on bar0
|
| /freebsd/contrib/libarchive/tar/test/ |
| H A D | test_option_k.c | 66 assertMakeFile("bar", 0644, "bar0"); in DEFINE_TEST() 79 assertMakeFile("bar", 0644, "bar0"); in DEFINE_TEST() 84 assertFileContents("bar0", 4, "bar"); in DEFINE_TEST()
|
| /freebsd/contrib/netbsd-tests/ipf/input/ |
| H A D | n200 | 1 [in,bar0] 4 [out,bar0]
|
| /freebsd/sys/dev/mana/ |
| H A D | gdma_main.c | 1494 uintptr_t bar0_va = rman_get_bushandle(gc->bar0); in mana_gd_init_registers() 1495 vm_paddr_t bar0_pa = rman_get_start(gc->bar0); in mana_gd_init_registers() 1553 if (gc->bar0 != NULL) { in mana_gd_free_pci_res() 1555 PCIR_BAR(GDMA_BAR0), gc->bar0); in mana_gd_free_pci_res() 1780 gc->bar0 = mana_gd_alloc_bar(dev, GDMA_BAR0); in mana_gd_attach() 1781 if (unlikely(gc->bar0 == NULL)) { in mana_gd_attach() 1783 "unable to allocate bus resource for bar0!\n"); in mana_gd_attach() 1788 /* Store bar0 tage and handle for quick access */ in mana_gd_attach() 1789 gc->gd_bus.bar0_t = rman_get_bustag(gc->bar0); in mana_gd_attach() 1790 gc->gd_bus.bar0_h = rman_get_bushandle(gc->bar0); in mana_gd_attach() [all …]
|
| /freebsd/sys/dev/ntb/ntb_hw/ |
| H A D | ntb_hw_intel.h | 212 * These are located within BAR0 of the internal endpoint. 268 /* BAR0 MMIO */ 282 * These are located within BAR0 of the internal endpoint.
|
| /freebsd/contrib/netbsd-tests/ipf/regress/ |
| H A D | n200 | 1 divert in on bar0 from any to any -> src 127.0.0.1,10101 dst 127.0.0.1,10101 udp;
|
| H A D | in1 | 29 map bar0 0/0 -> 0/32 icmpidmap icmp 1000:2000
|
| /freebsd/sys/dev/liquidio/base/ |
| H A D | cn23xx_pf_device.c | 930 uint64_t BAR0, BAR1; in lio_cn23xx_pf_setup_device() local 934 BAR0 = (uint64_t)(data32 & ~0xf); in lio_cn23xx_pf_setup_device() 936 BAR0 |= ((uint64_t)data32 << 32); in lio_cn23xx_pf_setup_device() 942 if (!BAR0 || !BAR1) { in lio_cn23xx_pf_setup_device() 943 if (!BAR0) in lio_cn23xx_pf_setup_device() 944 lio_dev_err(oct, "Device BAR0 unassigned\n"); in lio_cn23xx_pf_setup_device()
|
| H A D | cn23xx_pf_regs.h | 51 /* ############## BAR0 Registers ################ */ 104 /* Each Input Queue register is at a 16-byte Offset in BAR0 */ 221 /* Each Output Queue register is at a 16-byte Offset in BAR0 */
|
| /freebsd/sys/dev/jme/ |
| H A D | if_jmereg.h | 172 * Tx/Rx MAC registers 128 bytes BAR1 + 0x00 ~ BAR0 + 0x00 ~ 173 * BAR1 + 0x7F BAR0 + 0x7F 175 * PHY registers 128 bytes BAR2 + 0x00 ~ BAR0 + 0x400 ~ 176 * BAR2 + 0x7F BAR0 + 0x47F 178 * Misc registers 128 bytes BAR2 + 0x80 ~ BAR0 + 0x800 ~ 179 * BAR2 + 0x7F BAR0 + 0x87F
|
| /freebsd/usr.bin/sdiotool/ |
| H A D | sdiotool.c | 293 uint bar0 = *addr & ~SBSDIO_SB_OFT_ADDR_MASK; in brcmf_sdiod_addrprep() local 296 if (bar0 != sdiodev->sbwad) { in brcmf_sdiod_addrprep() 297 err = brcmf_sdiod_set_sbaddr_window(sdiodev, bar0); in brcmf_sdiod_addrprep() 301 sdiodev->sbwad = bar0; in brcmf_sdiod_addrprep()
|
| /freebsd/contrib/netbsd-tests/ipf/expected/ |
| H A D | n200 | 6 divert in on bar0 proto tcp from 0/0 to 0/0 -> src 127.0.0.1/32,10101 dst 127.0.0.1/32,10101 udp;
|
| /freebsd/sys/dev/mwl/ |
| H A D | if_mwl_pci.c | 73 struct resource *sc_sr0; /* BAR0 memory resource */ 141 device_printf(dev, "cannot map BAR0 register space\n"); in mwl_pci_attach()
|
| /freebsd/sys/arm/broadcom/bcm2835/ |
| H A D | bcm2835_clkman.h | 31 // Offset into BAR0 for unit
|
| /freebsd/sys/contrib/device-tree/Bindings/pci/ |
| H A D | pci-ep-bus.yaml | 43 through BAR0 and another through BAR1, and you don't want the two
|
| /freebsd/usr.sbin/pciconf/ |
| H A D | pciconf.8 | 63 bar0@pci0:0:5:0: class=0x000100 rev=0x00 hdr=0x00 vendor=0x88c1 device=0x5333 \ 118 bar0@pci0:0:5:0: 000100 00 00 88c1 5333 0000 0000
|
| /freebsd/sys/contrib/dev/athk/ath11k/ |
| H A D | pcic.h | 23 /* BAR0 + 4k is always accessible, and no
|