HomeSort by: relevance | last modified time | path
    Searched refs:bridge (Results 1 - 25 of 124) sorted by relevancy

1 2 3 4 5

  /src/sys/external/bsd/drm2/dist/drm/
drm_bridge.c 45 * A bridge is always attached to a single &drm_encoder at a time, but can be
46 * either connected to it directly, or through an intermediate bridge::
48 * encoder ---> bridge B ---> bridge A
50 * Here, the output of the encoder feeds to bridge B, and that furthers feeds to
51 * bridge A.
53 * The driver using the bridge is responsible to make the associations between
88 * drm_bridge_add - add the given bridge to the global bridge list
90 * @bridge: bridge control structur
552 struct drm_bridge *bridge; local in function:of_drm_find_bridge
    [all...]
drm_agpsupport.c 127 dev->agp->bridge = agp_backend_acquire(dev->pdev);
128 if (!dev->agp->bridge)
165 agp_backend_release(dev->agp->bridge);
193 agp_enable(dev->agp->bridge, mode.mode);
234 memory = agp_allocate_memory(dev->agp->bridge, pages, type);
255 agp_memory_info(dev->agp->bridge, memory, &info);
319 ret = drm_unbind_agp(dev->agp->bridge, entry->memory);
364 if ((retcode = drm_bind_agp(dev->agp->bridge, entry->memory, page)))
412 drm_unbind_agp(dev->agp->bridge, entry->memory);
420 drm_free_agp(dev->agp->bridge, entry->memory, entry->pages)
    [all...]
drm_encoder.c 169 struct drm_bridge *bridge, *next; local in function:drm_encoder_cleanup
176 list_for_each_entry_safe(bridge, next, &encoder->bridge_chain,
178 drm_bridge_detach(bridge);
  /src/tests/sbin/ifconfig/
t_bridge.sh 35 atf_set "descr" "Test creating many, many bridge(4)'s"
42 while read bridge; do
44 ifconfig "bridge$bridge" >/dev/null 2>&1
47 echo "Skipping existing bridge$bridge"
51 ifconfig "bridge$bridge" create
52 echo "Created bridge$bridge"
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_bridge.h 45 * This callback is invoked whenever our bridge is being attached to a
54 int (*attach)(struct drm_bridge *bridge);
59 * This callback is invoked whenever our bridge is being detached from a
64 void (*detach)(struct drm_bridge *bridge);
70 * bridge. This should be implemented if the bridge has some sort of
71 * restriction in the modes it can display. For example, a given bridge
97 enum drm_mode_status (*mode_valid)(struct drm_bridge *bridge,
106 * &drm_bridge. The parameter adjusted_mode is the input mode the bridge
110 * This is the only hook that allows a bridge to reject a modeset. I
    [all...]
  /src/sys/external/bsd/drm2/include/drm/
drm_agp_netbsd.h 77 * XXX How do we find the agp bridge attached to this
87 struct agp_bridge_data *const bridge = agp_find_bridge(pdev); local in function:agp_backend_acquire
89 if (bridge == NULL)
93 if (agp_acquire(&bridge->abd_sc) != 0)
96 return bridge;
100 agp_backend_release(struct agp_bridge_data *bridge)
104 (void)agp_release(&bridge->abd_sc);
115 agp_enable(struct agp_bridge_data *bridge)
122 agp_allocate_memory(struct agp_bridge_data *bridge, size_t npages,
125 return agp_alloc_memory(&bridge->abd_sc, (npages << AGP_PAGE_SHIFT)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
nouveau_nvkm_subdev_fb_ramnv1a.c 37 struct pci_dev *bridge;
48 bridge = pci_get_domain_bus_and_slot(domain, 0, PCI_DEVFN(0, 1));
49 if (!bridge) {
50 nvkm_error(&fb->subdev, "no bridge device\n");
55 pci_read_config_dword(bridge, 0x7c, &mem);
58 pci_read_config_dword(bridge, 0x84, &mem);
  /src/sbin/brconfig/
brconfig.c 41 * Configuration utility for the bridge(4) driver.
166 char *bridge; local in function:main
200 bridge = argv[0];
202 if (is_bridge(bridge) == 0)
203 errx(1, "%s is not a bridge", bridge);
206 strlcpy(g_ifr.ifr_name, bridge, sizeof(g_ifr.ifr_name));
214 status(sock, bridge);
234 (*cmd->cmd_func)(cmd, sock, bridge, argv);
252 "<bridge>",
    [all...]
  /src/tests/usr.sbin/tcpdump/
t_tcpdump.sh 46 bridge*)
  /src/usr.bin/scmdctl/
responses.h 39 bool bridge[17]; member in struct:scmd_motor_response
printscmd.c 111 (r->bridge[n / 2] == true ? "(bridged)" : "(not bridged)")
  /src/tests/net/if_bridge/
Makefile 9 .for name in bridge rtable
  /src/sys/external/bsd/drm2/dist/drm/ttm/
ttm_agp_backend.c 53 struct agp_bridge_data *bridge; member in struct:ttm_agp_backend
65 mem = agp_allocate_memory(agp_be->bridge, ttm->num_pages, AGP_USER_MEMORY);
120 struct agp_bridge_data *bridge,
130 agp_be->bridge = bridge;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pci/
nouveau_nvkm_subdev_pci_agp.c 52 agp_backend_release(pci->agp.bridge);
68 * enabled in the AGP bridge and we disable the card's AGP
73 agp_enable(pci->agp.bridge, mode);
97 agp_enable(pci->agp.bridge, pci->agp.mode);
132 /* acquire bridge temporarily, so that we can copy its info */
133 if (!(pci->agp.bridge = agp_backend_acquire(pci->pdev))) {
137 agp_copy_info(pci->agp.bridge, &info);
138 agp_backend_release(pci->agp.bridge);
153 /* determine if bridge + chipset combination needs a workaround */
185 pci->agp.bridge = NULL
    [all...]
  /src/sys/dev/i2c/
anxedp.c 269 anxedp_bridge_attach(struct drm_bridge *bridge)
271 struct anxedp_softc * const sc = bridge->driver_private;
282 drm_connector_init(bridge->dev, connector, &anxedp_connector_funcs,
286 error = drm_connector_attach_encoder(connector, bridge->encoder);
294 anxedp_bridge_enable(struct drm_bridge *bridge)
299 anxedp_bridge_pre_enable(struct drm_bridge *bridge)
304 anxedp_bridge_disable(struct drm_bridge *bridge)
309 anxedp_bridge_post_disable(struct drm_bridge *bridge)
314 anxedp_bridge_mode_set(struct drm_bridge *bridge,
318 struct anxedp_softc * const sc = bridge->driver_private
346 struct drm_bridge *bridge; local in function:anxedp_ep_activate
    [all...]
tda19988.c 757 tda19988_bridge_attach(struct drm_bridge *bridge)
759 struct tda19988_softc *sc = bridge->driver_private;
770 drm_connector_init(bridge->dev, connector, &tda19988_connector_funcs,
774 error = drm_connector_attach_encoder(connector, bridge->encoder);
782 tda19988_bridge_enable(struct drm_bridge *bridge)
784 struct tda19988_softc * const sc = bridge->driver_private;
790 tda19988_bridge_pre_enable(struct drm_bridge *bridge)
795 tda19988_bridge_disable(struct drm_bridge *bridge)
797 struct tda19988_softc * const sc = bridge->driver_private;
803 tda19988_bridge_post_disable(struct drm_bridge *bridge)
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
bcm4709-netgear-r8000.dts 135 bridge@0,0,0 {
152 bridge@1,0,0 {
158 bridge@1,1,0 {
164 bridge@1,2,2 {
imx6q-b850v3.dts 224 bridge@1,0 {
232 bridge@2,1 {
247 bridge@2,2 {
bcm947189acdbmr.dts 79 bridge@0,0,0 {
  /src/sys/arch/x86/pci/
pci_bus_fixup.c 51 /* this array lists the pcitag to program each bridge */
61 int device, maxdevs, function, nfuncs, bridge, bus_max, bus_sub; local in function:pci_bus_fixup
72 /* Reset bridge configuration on this bus */
116 /* Assign the bridge #. */
117 bridge = bridge_cnt++;
119 /* Assign the bridge's secondary bus #. */
132 /* Configure the bridge. */
143 aprint_debug("PCI bridge %d: primary %d, "
145 bridge, bus, bus_max, bus_sub);
147 /* Next bridge's secondary bus #. *
    [all...]
  /src/sys/dev/ieee1394/
fwphyreg.h 72 bridge:2, member in struct:phyreg_base
102 bridge:2,
  /src/sys/arch/arm/apple/
apple_platform.c 166 int bridge, len; local in function:apple_platform_get_mac_address
174 /* Convert PCI tag to encoding of phys.hi for PCI-PCI bridge regs */
178 for (bridge = OF_child(pcie); bridge; bridge = OF_peer(bridge)) {
180 of_find_firstchild_byname(bridge, "ethernet");
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/
pci.h 26 struct agp_bridge_data *bridge; member in struct:nvkm_pci::__anonc8b4be080108
  /src/sys/dev/ic/
dw_hdmi.c 621 dwhdmi_bridge_attach(struct drm_bridge *bridge)
623 struct dwhdmi_softc * const sc = bridge->driver_private;
634 drm_connector_init(bridge->dev, connector, &dwhdmi_connector_funcs,
638 error = drm_connector_attach_encoder(connector, bridge->encoder);
646 dwhdmi_bridge_enable(struct drm_bridge *bridge)
648 struct dwhdmi_softc * const sc = bridge->driver_private;
664 dwhdmi_bridge_pre_enable(struct drm_bridge *bridge)
669 dwhdmi_bridge_disable(struct drm_bridge *bridge)
671 struct dwhdmi_softc * const sc = bridge->driver_private;
680 dwhdmi_bridge_post_disable(struct drm_bridge *bridge)
    [all...]
  /src/sys/dev/pci/
pci_resource.c 111 bool pd_ppb; /* PCI-PCI bridge */
122 struct pci_device *pb_bridge; /* Parent bridge, or NULL */
270 pci_new_bus(struct pci_resources *pr, uint8_t busno, struct pci_device *bridge)
277 pb->pb_bridge = bridge;
278 if (bridge == NULL) {
287 * bridge forwarding settings.
289 ranges = bridge->pd_bridge.ranges;
340 DPRINT(" (bridge %u -> %u-%u)\n",
350 " [bridge] window io "
363 " [bridge] window mem
866 struct pci_device *pd, *bridge; local in function:pci_resource_init_bus
    [all...]

Completed in 24 milliseconds

1 2 3 4 5