| /src/sys/arch/sun2/include/ |
| bus.h | 1 /* $NetBSD: bus.h,v 1.3 2001/06/14 13:16:03 fredette Exp $ */ 3 #include <sun68k/bus.h>
|
| /src/sys/arch/sun3/include/ |
| bus.h | 1 /* $NetBSD: bus.h,v 1.1 2006/10/01 03:53:27 tsutsui Exp $ */ 3 #include <sun68k/bus.h>
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/i2c/ |
| nouveau_nvkm_subdev_i2c_bit.c | 29 #include "bus.h" 37 nvkm_i2c_drive_scl(struct nvkm_i2c_bus *bus, int state) 39 bus->func->drive_scl(bus, state); 43 nvkm_i2c_drive_sda(struct nvkm_i2c_bus *bus, int state) 45 bus->func->drive_sda(bus, state); 49 nvkm_i2c_sense_scl(struct nvkm_i2c_bus *bus) 51 return bus->func->sense_scl(bus); [all...] |
| nouveau_nvkm_subdev_i2c_bus.c | 29 #include "bus.h" 42 struct nvkm_i2c_bus *bus = container_of(adap, typeof(*bus), i2c); local 43 return nvkm_i2c_bus_acquire(bus); 49 struct nvkm_i2c_bus *bus = container_of(adap, typeof(*bus), i2c); local 50 return nvkm_i2c_bus_release(bus); 56 struct nvkm_i2c_bus *bus = data; local 57 bus->func->drive_scl(bus, state) 63 struct nvkm_i2c_bus *bus = data; local 70 struct nvkm_i2c_bus *bus = data; local 77 struct nvkm_i2c_bus *bus = data; local 87 struct nvkm_i2c_bus *bus = container_of(adap, typeof(*bus), i2c); local 203 struct nvkm_i2c_bus *bus = *pbus; local [all...] |
| nouveau_nvkm_subdev_i2c_busnv50.c | 30 #include "bus.h" 43 struct nv50_i2c_bus *bus = nv50_i2c_bus(base); local 44 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 45 if (state) bus->data |= 0x01; 46 else bus->data &= 0xfe; 47 nvkm_wr32(device, bus->addr, bus->data); 53 struct nv50_i2c_bus *bus = nv50_i2c_bus(base); local 54 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 55 if (state) bus->data |= 0x02 63 struct nv50_i2c_bus *bus = nv50_i2c_bus(base); local 71 struct nv50_i2c_bus *bus = nv50_i2c_bus(base); local 79 struct nv50_i2c_bus *bus = nv50_i2c_bus(base); local 103 struct nv50_i2c_bus *bus; local [all...] |
| nouveau_nvkm_subdev_i2c_busgf119.c | 30 #include "bus.h" 40 struct gf119_i2c_bus *bus = gf119_i2c_bus(base); local 41 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 42 nvkm_mask(device, bus->addr, 0x00000001, state ? 0x00000001 : 0); 48 struct gf119_i2c_bus *bus = gf119_i2c_bus(base); local 49 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 50 nvkm_mask(device, bus->addr, 0x00000002, state ? 0x00000002 : 0); 56 struct gf119_i2c_bus *bus = gf119_i2c_bus(base); local 57 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 58 return !!(nvkm_rd32(device, bus->addr) & 0x00000010) 64 struct gf119_i2c_bus *bus = gf119_i2c_bus(base); local 72 struct gf119_i2c_bus *bus = gf119_i2c_bus(base); local 91 struct gf119_i2c_bus *bus; local [all...] |
| nouveau_nvkm_subdev_i2c_busnv4e.c | 30 #include "bus.h" 40 struct nv4e_i2c_bus *bus = nv4e_i2c_bus(base); local 41 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 42 nvkm_mask(device, bus->addr, 0x2f, state ? 0x21 : 0x01); 48 struct nv4e_i2c_bus *bus = nv4e_i2c_bus(base); local 49 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 50 nvkm_mask(device, bus->addr, 0x1f, state ? 0x11 : 0x01); 56 struct nv4e_i2c_bus *bus = nv4e_i2c_bus(base); local 57 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 58 return !!(nvkm_rd32(device, bus->addr) & 0x00040000) 64 struct nv4e_i2c_bus *bus = nv4e_i2c_bus(base); local 82 struct nv4e_i2c_bus *bus; local [all...] |
| nouveau_nvkm_subdev_i2c_busnv04.c | 30 #include "bus.h" 43 struct nv04_i2c_bus *bus = nv04_i2c_bus(base); local 44 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 45 u8 val = nvkm_rdvgac(device, 0, bus->drive); 48 nvkm_wrvgac(device, 0, bus->drive, val | 0x01); 54 struct nv04_i2c_bus *bus = nv04_i2c_bus(base); local 55 struct nvkm_device *device = bus->base.pad->i2c->subdev.device; 56 u8 val = nvkm_rdvgac(device, 0, bus->drive); 59 nvkm_wrvgac(device, 0, bus->drive, val | 0x01); 65 struct nv04_i2c_bus *bus = nv04_i2c_bus(base) local 73 struct nv04_i2c_bus *bus = nv04_i2c_bus(base); local 91 struct nv04_i2c_bus *bus; local [all...] |
| /src/sys/external/isc/libsodium/dist/test/default/ |
| sodium_utils3.exp | 1 Intentional segfault / bus error caught
|
| sodium_utils2.exp | 2 Intentional segfault / bus error caught
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bus/ |
| nouveau_nvkm_subdev_bus_base.c | 34 struct nvkm_bus *bus = nvkm_bus(subdev); local 35 bus->func->intr(bus); 41 struct nvkm_bus *bus = nvkm_bus(subdev); local 42 bus->func->init(bus); 63 struct nvkm_bus *bus; local 64 if (!(bus = *pbus = kzalloc(sizeof(*bus), GFP_KERNEL))) 66 nvkm_subdev_ctor(&nvkm_bus, device, index, &bus->subdev) [all...] |
| /src/sys/arch/amiga/dev/ |
| xshvar.h | 34 #include <sys/bus.h>
|
| xsurfvar.h | 34 #include <sys/bus.h>
|
| /src/sys/arch/ibmnws/include/ |
| bus.h | 1 /* $NetBSD: bus.h,v 1.3 2007/10/17 19:55:01 garbled Exp $ */ 7 #include <powerpc/bus.h>
|
| /src/sys/arch/sgimips/gio/ |
| grtwovar.h | 35 #include <sys/bus.h>
|
| lightvar.h | 30 #include <sys/bus.h>
|
| newportvar.h | 35 #include <sys/bus.h>
|
| /src/sys/arch/x86/x86/ |
| intel_busclock.c | 51 int bus, bus_clock = 0; local 54 bus = (msr >> 18) & 0x3; 55 switch (bus) { 94 int bus, bus_clock = 0; local 110 "unable to determine bus speed"); 113 bus = (msr >> 0) & 0x7; 114 switch (bus) { 120 "value %d", device_xname(ci->ci_dev), bus); 127 "unable to determine bus speed"); 130 bus = (msr >> 0) & 0x7 334 int bus, bus_clock = 0; local [all...] |
| /src/sys/arch/arm/cortex/ |
| pl310_var.h | 34 #include <sys/bus.h>
|
| /src/sys/arch/arm/imx/ |
| imx23_dma.c | 33 #include <sys/bus.h>
|
| /src/sys/arch/sandpoint/include/ |
| autoconf.h | 31 #include <sys/bus.h>
|
| /src/sys/arch/sandpoint/sandpoint/ |
| eumbvar.h | 32 #include <sys/bus.h>
|
| /src/sys/arch/sgimips/dev/ |
| crimevar.h | 35 #include <sys/bus.h>
|
| /src/external/bsd/pdisk/dist/ |
| ATA_media.h | 58 MEDIA open_ata_as_media(long bus, long device); 59 MEDIA open_atapi_as_media(long bus, long device); 62 char *linux_ata_name(long bus, long id);
|
| /src/lib/libarch/alpha/ |
| alpha_pci_conf.c | 35 * would go away in favor of a real bus space mapping framework. 43 alpha_pci_conf_read(u_int bus, u_int device, u_int func, u_int reg) 48 args.bus = bus; 60 alpha_pci_conf_write(u_int bus, u_int device, u_int func, u_int reg, 66 args.bus = bus;
|