Searched refs:dev (Results 126 - 150 of 6298) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/ntp/scripts/build/
H A DcheckChangeLog9 dev) ;;
17 dev---)
21 dev*)
/freebsd-11-stable/sys/dev/altera/avgen/
H A Daltera_avgen_nexus.c53 #include <dev/altera/avgen/altera_avgen.h>
56 altera_avgen_nexus_probe(device_t dev) argument
59 device_set_desc(dev, "Generic Altera Avalon device attachment");
64 altera_avgen_nexus_attach(device_t dev) argument
71 sc = device_get_softc(dev);
72 sc->avg_dev = dev;
73 sc->avg_unit = device_get_unit(dev);
84 error = resource_int_value(device_get_name(dev), device_get_unit(dev),
87 device_printf(dev, "invali
116 altera_avgen_nexus_detach(device_t dev) argument
[all...]
/freebsd-11-stable/etc/rc.d/
H A Dserial53 comcontrol /dev/tty${dc}${i} dtrwait 300 drainwait $drainwait
54 stty < /dev/tty${dc}${i}.init -clocal crtscts hupcl 9600 reprint ^R
55 stty < /dev/tty${dc}${i}.lock -clocal -crtscts -hupcl 0
56 stty < /dev/cua${dc}${i}.init -clocal crtscts hupcl 9600 reprint ^R
57 stty < /dev/cua${dc}${i}.lock -clocal -crtscts -hupcl 0
69 stty < /dev/tty${dc}${i}.init reprint undef
70 stty < /dev/cua${dc}${i}.init reprint undef
72 stty < /dev/tty${dc}${i}.lock clocal
75 stty < /dev/tty${dc}${i}.lock 300
76 stty < /dev/cu
[all...]
/freebsd-11-stable/gnu/usr.bin/grep/tests/
H A Doptions.sh16 echo "abababccccccd" | ${GREP} -E -e 'c{3}' > /dev/null 2>&1
23 echo "abababccccccd" | ${GREP} -G -e 'c\{3\}' > /dev/null 2>&1
30 echo "abababccccccd" | ${GREP} -F -e 'c\{3\}' > /dev/null 2>&1
/freebsd-11-stable/sys/dev/pci/
H A Dignore_pci.c41 #include <dev/pci/pcivar.h>
43 static int ignore_pci_probe(device_t dev);
63 ignore_pci_probe(device_t dev) argument
65 switch (pci_get_devid(dev)) {
67 device_set_desc(dev, "ignored");
68 device_quiet(dev);
H A Deisa_pci.c43 #include <dev/pci/pcivar.h>
44 #include <dev/pci/pcireg.h>
46 static int eisab_probe(device_t dev);
47 static int eisab_attach(device_t dev);
79 eisab_probe(device_t dev) argument
86 if ((pci_get_class(dev) == PCIC_BRIDGE) &&
87 (pci_get_subclass(dev) == PCIS_BRIDGE_EISA))
93 switch (pci_get_devid(dev)) {
102 device_set_desc(dev, "PCI-EISA bridge");
109 eisab_attach(device_t dev) argument
[all...]
/freebsd-11-stable/usr.sbin/bsdinstall/scripts/
H A Dumount41 umount $BSDINSTALL_CHROOT/dev 2>/dev/null
42 umount -F $TMP_FSTAB -a 2>/dev/null
/freebsd-11-stable/sys/dev/cm/
H A Dif_cm_isa.c4 __FBSDID("$FreeBSD: stable/11/sys/dev/cm/if_cm_isa.c 331882 2018-04-02 16:11:49Z brooks $");
52 #include <dev/cm/smc90cx6reg.h>
53 #include <dev/cm/smc90cx6var.h>
59 cm_isa_probe(dev)
60 device_t dev;
62 struct cm_softc *sc = device_get_softc(dev);
67 dev, SYS_RES_IOPORT, &rid, CM_IO_PORTS, RF_ACTIVE);
72 cm_release_resources(dev);
78 dev, SYS_RES_MEMORY, &rid, CM_MEM_SIZE, RF_ACTIVE);
80 cm_release_resources(dev);
124 cm_isa_detach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/arm/ti/am335x/
H A Dam335x_pmic.c45 #include <dev/iicbus/iicbus.h>
46 #include <dev/iicbus/iiconf.h>
48 #include <dev/ofw/openfirm.h>
49 #include <dev/ofw/ofw_bus.h>
50 #include <dev/ofw/ofw_bus_subr.h>
78 am335x_pmic_read(device_t dev, uint8_t addr, uint8_t *data, uint8_t size) argument
80 struct am335x_pmic_softc *sc = device_get_softc(dev);
85 return (iicbus_transfer(dev, msg, 2));
89 am335x_pmic_write(device_t dev, uint8_t address, uint8_t *data, uint8_t size) argument
92 struct am335x_pmic_softc *sc = device_get_softc(dev);
140 am335x_pmic_probe(device_t dev) argument
158 am335x_pmic_dump_chgconfig(device_t dev) argument
211 am335x_pmic_setvo(device_t dev, uint8_t vo) argument
224 device_t dev = (device_t)xdev; local
294 am335x_pmic_attach(device_t dev) argument
321 device_t dev; local
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_fops.c40 #include <dev/drm2/drmP.h>
43 DRM_STRUCTPROC *p, struct drm_device *dev);
45 static int drm_setup(struct drm_device * dev) argument
50 if (dev->driver->firstopen) {
51 ret = dev->driver->firstopen(dev);
56 atomic_set(&dev->ioctl_count, 0);
57 atomic_set(&dev->vma_count, 0);
59 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA) &&
60 !drm_core_check_feature(dev, DRIVER_MODESE
124 struct drm_device *dev = NULL; local
180 drm_open_helper(struct cdev *kdev, int flags, int fmt, DRM_STRUCTPROC *p, struct drm_device *dev) argument
290 drm_master_release(struct drm_device *dev, struct drm_file *file_priv) argument
303 struct drm_device *dev = file_priv->minor->dev; local
340 struct drm_device *dev = file_priv->minor->dev; local
502 struct drm_device *dev; local
547 struct drm_device *dev; local
561 struct drm_device *dev; local
592 struct drm_device *dev; local
[all...]
H A Ddrm_memory.c37 __FBSDID("$FreeBSD: stable/11/sys/dev/drm2/drm_memory.c 317008 2017-04-16 07:58:41Z mmel $");
39 #include <dev/drm2/drmP.h>
45 struct drm_device * dev)
95 struct drm_device * dev)
102 void drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev) argument
104 if (drm_core_has_AGP(dev) &&
105 dev->agp && dev->agp->cant_use_aperture && map->type == _DRM_AGP)
106 map->handle = agp_remap(map->offset, map->size, dev);
112 void drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev) argument
44 agp_remap(unsigned long offset, unsigned long size, struct drm_device * dev) argument
94 agp_remap(unsigned long offset, unsigned long size, struct drm_device * dev) argument
123 drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev) argument
[all...]
/freebsd-11-stable/sys/dev/bhnd/bcma/
H A Dbcma_bhndb.c38 #include <dev/bhnd/bhnd_ids.h>
39 #include <dev/bhnd/bhndb/bhndbvar.h>
40 #include <dev/bhnd/bhndb/bhndb_hwdata.h>
52 bcma_bhndb_probe(device_t dev) argument
57 cid = BHNDB_GET_CHIPID(device_get_parent(dev), dev);
62 return (bcma_probe(dev));
66 bcma_bhndb_attach(device_t dev) argument
74 sc = device_get_softc(dev);
77 cid = BHNDB_GET_CHIPID(device_get_parent(dev), de
108 bcma_bhndb_suspend_child(device_t dev, device_t child) argument
134 bcma_bhndb_resume_child(device_t dev, device_t child) argument
159 BHNDB_SUSPEND_RESOURCE(device_get_parent(dev), dev, local
[all...]
H A Dbcma_nexus.c45 #include <dev/bhnd/bhnd_ids.h>
46 #include <dev/bhnd/bhnd_nexusvar.h>
47 #include <dev/bhnd/cores/chipc/chipcreg.h>
65 bcma_nexus_probe(device_t dev) argument
70 sc = device_get_softc(dev);
74 if ((error = bhnd_nexus_read_chipid(dev, &sc->bcma_cid)))
80 if ((error = bcma_probe(dev)) > 0) {
81 device_printf(dev, "error %d in probe\n", error);
89 bcma_nexus_attach(device_t dev) argument
96 sc = device_get_softc(dev);
119 bcma_nexus_get_chipid(device_t dev, device_t child) argument
[all...]
/freebsd-11-stable/sys/dev/ata/
H A Data-isa.c45 #include <dev/ata/ata-all.h>
60 ata_isa_probe(device_t dev) argument
67 if (ISA_PNP_PROBE(device_get_parent(dev), dev, ata_ids) == ENXIO)
72 if (!(io = bus_alloc_resource_anywhere(dev, SYS_RES_IOPORT, &rid,
77 if (bus_get_resource(dev, SYS_RES_IOPORT, ATA_CTLADDR_RID, &tmp, &tmp)) {
78 bus_set_resource(dev, SYS_RES_IOPORT, ATA_CTLADDR_RID,
84 if (!(ctlio = bus_alloc_resource_anywhere(dev, SYS_RES_IOPORT, &rid,
86 bus_release_resource(dev, SYS_RES_IOPORT, ATA_IOADDR_RID, io);
91 bus_release_resource(dev, SYS_RES_IOPOR
99 ata_isa_attach(device_t dev) argument
148 ata_isa_detach(device_t dev) argument
167 ata_isa_suspend(device_t dev) argument
178 ata_isa_resume(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/ed/
H A Dif_ed_isa.c51 #include <dev/ed/if_edvar.h>
52 #include <dev/ed/if_edreg.h>
73 ed_isa_probe_Novell(device_t dev) argument
75 struct ed_softc *sc = device_get_softc(dev);
76 int flags = device_get_flags(dev);
79 err = ed_probe_Novell(dev, 0, flags);
97 ed_isa_probe(device_t dev) argument
99 struct ed_softc *sc = device_get_softc(dev);
100 int flags = device_get_flags(dev);
104 error = ISA_PNP_PROBE(device_get_parent(dev), de
161 ed_isa_attach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/sdhci/
H A Dsdhci_fdt_gpio.c32 __FBSDID("$FreeBSD: stable/11/sys/dev/sdhci/sdhci_fdt_gpio.c 325023 2017-10-26 22:19:28Z ian $");
41 #include <dev/gpio/gpiobusvar.h>
42 #include <dev/mmc/bridge.h>
43 #include <dev/ofw/ofw_bus.h>
44 #include <dev/ofw/ofw_bus_subr.h>
45 #include <dev/sdhci/sdhci.h>
46 #include <dev/sdhci/sdhci_fdt_gpio.h>
49 device_t dev; member in struct:sdhci_fdt_gpio
80 device_t dev; local
83 dev
176 device_t dev; local
199 sdhci_fdt_gpio_setup(device_t dev, struct sdhci_slot *slot) argument
[all...]
/freebsd-11-stable/sys/dev/altera/atse/
H A Dif_atse_nexus.c52 #include <dev/mii/mii.h>
53 #include <dev/mii/miivar.h>
55 #include <dev/altera/atse/if_atsereg.h>
68 atse_resource_int(device_t dev, const char *resname, int *v) argument
72 error = resource_int_value(device_get_name(dev), device_get_unit(dev),
76 device_printf(dev, "could not fetch '%s' hint\n", resname);
84 atse_resource_long(device_t dev, const char *resname, long *v) argument
88 error = resource_long_value(device_get_name(dev), device_get_unit(dev),
100 atse_probe_nexus(device_t dev) argument
137 atse_attach_nexus(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Di915_drv.h36 #include "dev/drm/drm_mm.h"
37 #include "dev/drm/i915_reg.h"
110 struct drm_device *dev; member in struct:drm_i915_private
420 extern void i915_kernel_lost_context(struct drm_device * dev);
423 extern int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv);
424 extern void i915_driver_lastclose(struct drm_device * dev);
425 extern void i915_driver_preclose(struct drm_device *dev,
427 extern void i915_driver_postclose(struct drm_device *dev,
429 extern int i915_driver_device_is_agp(struct drm_device * dev);
432 extern int i915_emit_box(struct drm_device *dev,
[all...]
H A Dmga_irq.c37 #include "dev/drm/drmP.h"
38 #include "dev/drm/drm.h"
39 #include "dev/drm/mga_drm.h"
40 #include "dev/drm/mga_drv.h"
42 u32 mga_get_vblank_counter(struct drm_device *dev, int crtc) argument
45 (drm_mga_private_t *) dev->dev_private;
58 struct drm_device *dev = (struct drm_device *) arg; local
59 drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
69 drm_handle_vblank(dev, 0);
98 int mga_enable_vblank(struct drm_device *dev, in argument
113 mga_disable_vblank(struct drm_device *dev, int crtc) argument
128 mga_driver_fence_wait(struct drm_device * dev, unsigned int *sequence) argument
150 mga_driver_irq_preinstall(struct drm_device * dev) argument
160 mga_driver_irq_postinstall(struct drm_device * dev) argument
173 mga_driver_irq_uninstall(struct drm_device * dev) argument
[all...]
H A Dr128_irq.c36 #include "dev/drm/drmP.h"
37 #include "dev/drm/drm.h"
38 #include "dev/drm/r128_drm.h"
39 #include "dev/drm/r128_drv.h"
41 u32 r128_get_vblank_counter(struct drm_device *dev, int crtc) argument
43 const drm_r128_private_t *dev_priv = dev->dev_private;
53 struct drm_device *dev = (struct drm_device *) arg; local
54 drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private;
63 drm_handle_vblank(dev, 0);
69 int r128_enable_vblank(struct drm_device *dev, in argument
82 r128_disable_vblank(struct drm_device *dev, int crtc) argument
96 r128_driver_irq_preinstall(struct drm_device * dev) argument
106 r128_driver_irq_postinstall(struct drm_device * dev) argument
111 r128_driver_irq_uninstall(struct drm_device * dev) argument
[all...]
/freebsd-11-stable/sys/mips/mediatek/
H A Dmtk_reset.c36 #include <dev/fdt/fdt_common.h>
37 #include <dev/ofw/openfirm.h>
38 #include <dev/ofw/ofw_bus.h>
39 #include <dev/ofw/ofw_bus_subr.h>
54 mtk_reset_probe(device_t dev) argument
57 if (!ofw_bus_status_okay(dev))
60 if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
63 device_set_desc(dev, "MTK Reset Controller");
69 mtk_reset_attach(device_t dev) argument
72 if (device_get_unit(dev) !
86 mtk_reset_set(device_t dev, int index, int value) argument
105 mtk_reset_assert(device_t dev, int index) argument
112 mtk_reset_deassert(device_t dev, int index) argument
[all...]
/freebsd-11-stable/sys/dev/smc/
H A Dif_smc_fdt.c46 #include <dev/smc/if_smcvar.h>
48 #include <dev/mii/mii.h>
49 #include <dev/mii/miivar.h>
51 #include <dev/fdt/fdt_common.h>
52 #include <dev/ofw/openfirm.h>
53 #include <dev/ofw/ofw_bus.h>
54 #include <dev/ofw/ofw_bus_subr.h>
63 smc_fdt_probe(device_t dev) argument
67 if (!ofw_bus_status_okay(dev))
70 if (ofw_bus_is_compatible(dev, "sms
85 smc_fdt_attach(device_t dev) argument
101 smc_fdt_detach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/usb/controller/
H A Dsaf1761_otg_boot.c1 /* $FreeBSD: stable/11/sys/dev/usb/controller/saf1761_otg_boot.c 308401 2016-11-07 08:36:06Z hselasky $ */
34 #include <dev/usb/controller/saf1761_otg.h>
35 #include <dev/usb/controller/saf1761_otg_reg.h>
65 saf1761_otg_fdt_probe(device_t dev) argument
67 if (device_get_unit(dev) != 0)
70 device_set_desc(dev, "ISP1761/SAF1761 DCI USB 2.0 Device Controller");
76 saf1761_otg_fdt_attach(device_t dev) argument
78 struct saf1761_otg_softc *sc = device_get_softc(dev);
85 sc->sc_bus.parent = dev;
91 if (usb_bus_mem_alloc_all(&sc->sc_bus, USB_GET_DMA_TAG(dev), NUL
124 saf1761_otg_fdt_detach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/aic/
H A Daic_cbus.c43 #include <dev/aic/aic6360reg.h>
44 #include <dev/aic/aicvar.h>
87 aic_isa_alloc_resources(device_t dev) argument
89 struct aic_isa_softc *sc = device_get_softc(dev);
93 if ((isa_get_logicalid(dev) == 0xa180a3b8) ||
94 (AIC_TYPE98(device_get_flags(dev)) == AIC98_NEC100))
102 sc->sc_port = isa_alloc_resourcev(dev, SYS_RES_IOPORT, &rid,
105 device_printf(dev, "I/O port allocation failed\n");
111 if (isa_get_irq(dev) != -1) {
113 sc->sc_irq = bus_alloc_resource_any(dev, SYS_RES_IR
139 aic_isa_release_resources(device_t dev) argument
154 aic_isa_probe(device_t dev) argument
198 aic_isa_attach(device_t dev) argument
228 aic_isa_detach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/xen/pci/
H A Dxen_acpi_pci.c37 #include <contrib/dev/acpica/include/acpi.h>
38 #include <contrib/dev/acpica/include/accommon.h>
40 #include <dev/acpica/acpivar.h>
41 #include <dev/acpica/acpi_pcivar.h>
44 #include <dev/pci/pcireg.h>
45 #include <dev/pci/pcivar.h>
46 #include <dev/pci/pci_private.h>
56 xen_acpi_pci_probe(device_t dev) argument
61 if (acpi_get_handle(dev) == NULL)
64 device_set_desc(dev, "Xe
70 xen_acpi_pci_child_added(device_t dev, device_t child) argument
[all...]

Completed in 290 milliseconds

1234567891011>>