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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_hwmon.h 31 struct drm_device *dev;
36 nouveau_hwmon(struct drm_device *dev)
42 int nouveau_hwmon_init(struct drm_device *dev);
43 void nouveau_hwmon_fini(struct drm_device *dev);
nv50_display.h 35 int nv50_display_create(struct drm_device *);
nouveau_led.h 35 struct drm_device *dev;
43 nouveau_led(struct drm_device *dev)
50 int nouveau_led_init(struct drm_device *dev);
51 void nouveau_led_suspend(struct drm_device *dev);
52 void nouveau_led_resume(struct drm_device *dev);
53 void nouveau_led_fini(struct drm_device *dev);
55 static inline int nouveau_led_init(struct drm_device *dev) { return 0; };
56 static inline void nouveau_led_suspend(struct drm_device *dev) { };
57 static inline void nouveau_led_resume(struct drm_device *dev) { };
58 static inline void nouveau_led_fini(struct drm_device *dev) { }
    [all...]
nouveau_vga.h 8 struct drm_device;
12 void nouveau_vga_lastclose(struct drm_device *dev);
nouveau_display.h 30 int nouveau_framebuffer_new(struct drm_device *,
36 void (*dtor)(struct drm_device *);
37 int (*init)(struct drm_device *, bool resume, bool runtime);
38 void (*fini)(struct drm_device *, bool suspend);
55 nouveau_display(struct drm_device *dev)
60 int nouveau_display_create(struct drm_device *dev);
61 void nouveau_display_destroy(struct drm_device *dev);
62 int nouveau_display_init(struct drm_device *dev, bool resume, bool runtime);
63 void nouveau_display_fini(struct drm_device *dev, bool suspend, bool runtime);
64 int nouveau_display_suspend(struct drm_device *dev, bool runtime)
    [all...]
nouveau_bios.h 51 int bit_table(struct drm_device *, u8 id, struct bit_entry *);
79 struct drm_device *dev;
158 void *olddcb_table(struct drm_device *);
159 void *olddcb_outp(struct drm_device *, u8 idx);
160 int olddcb_outp_foreach(struct drm_device *, void *data,
161 int (*)(struct drm_device *, void *, int idx, u8 *outp));
162 u8 *olddcb_conntab(struct drm_device *);
163 u8 *olddcb_conn(struct drm_device *, u8 idx);
165 int nouveau_bios_init(struct drm_device *);
166 void nouveau_bios_takedown(struct drm_device *dev)
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_irq.h 33 struct drm_device;
36 int drm_irq_install(struct drm_device *dev);
38 int drm_irq_install(struct drm_device *dev, int irq);
41 int drm_irq_uninstall(struct drm_device *dev);
drm_modeset_helper.h 30 struct drm_device;
34 void drm_helper_move_panel_connectors_to_head(struct drm_device *);
36 void drm_helper_mode_fill_fb_struct(struct drm_device *dev,
40 int drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc,
43 int drm_mode_config_helper_suspend(struct drm_device *dev);
44 int drm_mode_config_helper_resume(struct drm_device *dev);
drm_probe_helper.h 11 struct drm_device;
20 void drm_kms_helper_poll_init(struct drm_device *dev);
21 void drm_kms_helper_poll_fini(struct drm_device *dev);
22 bool drm_helper_hpd_irq_event(struct drm_device *dev);
23 void drm_kms_helper_hotplug_event(struct drm_device *dev);
25 void drm_kms_helper_poll_disable(struct drm_device *dev);
26 void drm_kms_helper_poll_enable(struct drm_device *dev);
drm_agpsupport.h 19 struct drm_device;
26 (*agph_init)(struct drm_device *);
27 void (*agph_clear)(struct drm_device *);
28 int (*agph_acquire)(struct drm_device *);
29 int (*agph_release)(struct drm_device *);
30 int (*agph_enable)(struct drm_device *, struct drm_agp_mode);
31 int (*agph_info)(struct drm_device *, struct drm_agp_info *);
32 int (*agph_alloc)(struct drm_device *, struct drm_agp_buffer *);
33 int (*agph_free)(struct drm_device *, struct drm_agp_buffer *);
34 int (*agph_bind)(struct drm_device *, struct drm_agp_binding *)
    [all...]
drm_pci.h 40 struct drm_device;
46 struct drm_dma_handle *drm_pci_alloc(struct drm_device *dev, size_t size,
48 void drm_pci_free(struct drm_device *dev, struct drm_dma_handle * dmah);
56 static inline struct drm_dma_handle *drm_pci_alloc(struct drm_device *dev,
62 static inline void drm_pci_free(struct drm_device *dev,
77 int drm_pci_request_irq(struct drm_device *, int);
78 void drm_pci_free_irq(struct drm_device *);
79 int drm_pci_attach(struct drm_device *, struct pci_dev *);
80 void drm_pci_detach(struct drm_device *);
drm_drv.h 36 #include <drm/drm_device.h>
50 * See &drm_driver.driver_features, drm_device.driver_features and
160 * one &struct drm_device for each card present in this family. It contains lots
175 * race-free way to set up a &struct drm_device.
183 int (*load) (struct drm_device *, unsigned long flags);
194 * one &struct drm_file (see &drm_file.is_master and &drm_device.master)
203 int (*open) (struct drm_device *, struct drm_file *);
213 * one &struct drm_file (see &drm_file.is_master and &drm_device.master)
217 void (*postclose) (struct drm_device *, struct drm_file *);
223 * currently no userspace client for the &struct drm_device
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_fbdev.h 13 struct drm_device;
17 int intel_fbdev_init(struct drm_device *dev);
18 void intel_fbdev_initial_config_async(struct drm_device *dev);
21 void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous);
22 void intel_fbdev_output_poll_changed(struct drm_device *dev);
23 void intel_fbdev_restore_mode(struct drm_device *dev);
25 static inline int intel_fbdev_init(struct drm_device *dev)
30 static inline void intel_fbdev_initial_config_async(struct drm_device *dev)
42 static inline void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous)
46 static inline void intel_fbdev_output_poll_changed(struct drm_device *dev
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_query.h 12 struct drm_device;
15 int i915_query_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
  /src/sys/external/bsd/drm2/include/drm/
drm_sysfs.h 33 struct drm_device;
36 void drm_sysfs_hotplug_event(struct drm_device *);
drm_lease.h 37 struct drm_device;
41 int drm_mode_create_lease_ioctl(struct drm_device *, void *,
43 int drm_mode_get_lease_ioctl(struct drm_device *, void *,
45 int drm_mode_list_lessees_ioctl(struct drm_device *, void *,
47 int drm_mode_revoke_lease_ioctl(struct drm_device *, void *,
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_ioctls.h 12 struct drm_device;
15 int i915_gem_busy_ioctl(struct drm_device *dev, void *data,
17 int i915_gem_create_ioctl(struct drm_device *dev, void *data,
19 int i915_gem_execbuffer_ioctl(struct drm_device *dev, void *data,
21 int i915_gem_execbuffer2_ioctl(struct drm_device *dev, void *data,
23 int i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
25 int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
27 int i915_gem_get_tiling_ioctl(struct drm_device *dev, void *data,
29 int i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
31 int i915_gem_mmap_ioctl(struct drm_device *dev, void *data
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_sched.h 32 struct drm_device;
36 int amdgpu_sched_ioctl(struct drm_device *dev, void *data,
amdgpu_gem.h 56 struct drm_device *dev,
59 struct drm_device *dev,
62 int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
64 int amdgpu_gem_info_ioctl(struct drm_device *dev, void *data,
66 int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
68 int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
70 int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
73 int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
75 int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
78 int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_legacy.h 36 #include <drm/drm_device.h>
40 struct drm_device;
52 void drm_legacy_ctxbitmap_init(struct drm_device *dev);
53 void drm_legacy_ctxbitmap_cleanup(struct drm_device *dev);
54 void drm_legacy_ctxbitmap_flush(struct drm_device *dev, struct drm_file *file);
56 static inline void drm_legacy_ctxbitmap_init(struct drm_device *dev) {}
57 static inline void drm_legacy_ctxbitmap_cleanup(struct drm_device *dev) {}
58 static inline void drm_legacy_ctxbitmap_flush(struct drm_device *dev, struct drm_file *file) {}
61 void drm_legacy_ctxbitmap_free(struct drm_device *dev, int ctx_handle);
64 int drm_legacy_resctx(struct drm_device *d, void *v, struct drm_file *f)
    [all...]
drm_crtc_internal.h 47 struct drm_device;
71 int drm_crtc_register_all(struct drm_device *dev);
72 void drm_crtc_unregister_all(struct drm_device *dev);
78 int drm_mode_getcrtc(struct drm_device *dev,
80 int drm_mode_setcrtc(struct drm_device *dev,
85 int drm_modeset_register_all(struct drm_device *dev);
86 void drm_modeset_unregister_all(struct drm_device *dev);
92 int drm_mode_getresources(struct drm_device *dev,
97 int drm_mode_create_dumb(struct drm_device *dev,
100 int drm_mode_destroy_dumb(struct drm_device *dev, u32 handle
    [all...]
drm_internal.h 49 void drm_lastclose(struct drm_device *dev);
54 int drm_irq_by_busid(struct drm_device *dev, void *data,
56 void drm_pci_agp_destroy(struct drm_device *dev);
57 int drm_pci_set_busid(struct drm_device *dev, struct drm_master *master);
61 static inline int drm_irq_by_busid(struct drm_device *dev, void *data,
67 static inline void drm_pci_agp_destroy(struct drm_device *dev)
71 static inline int drm_pci_set_busid(struct drm_device *dev,
80 int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
82 int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
101 void drm_vblank_disable_and_save(struct drm_device *dev, unsigned int pipe)
    [all...]
  /src/sys/external/bsd/drm2/i915drm/
intelfb.h 39 struct drm_device;
42 struct drm_device *ifa_drm_dev;
  /src/sys/external/bsd/drm2/include/
amdgpufb.h 39 struct drm_device;
42 struct drm_device *afa_drm_dev;
  /src/sys/external/bsd/drm2/nouveau/
nouveaufb.h 39 struct drm_device;
42 struct drm_device *nfa_drm_dev;

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>