Lines Matching refs:ofdrm_device
282 struct ofdrm_device;
285 void __iomem *(*cmap_ioremap)(struct ofdrm_device *odev,
288 void (*cmap_write)(struct ofdrm_device *odev, unsigned char index,
292 struct ofdrm_device { struct
315 static struct ofdrm_device *ofdrm_device_of_dev(struct drm_device *dev) in ofdrm_device_of_dev() argument
317 return container_of(dev, struct ofdrm_device, dev); in ofdrm_device_of_dev()
355 static int ofdrm_device_init_pci(struct ofdrm_device *odev) in ofdrm_device_init_pci()
387 static int ofdrm_device_init_pci(struct ofdrm_device *odev) in ofdrm_device_init_pci()
397 static struct resource *ofdrm_find_fb_resource(struct ofdrm_device *odev, in ofdrm_find_fb_resource()
423 static void __iomem *get_cmap_address_of(struct ofdrm_device *odev, struct device_node *of_node, in get_cmap_address_of()
455 static void __iomem *ofdrm_mach64_cmap_ioremap(struct ofdrm_device *odev, in ofdrm_mach64_cmap_ioremap()
473 static void ofdrm_mach64_cmap_write(struct ofdrm_device *odev, unsigned char index, in ofdrm_mach64_cmap_write()
485 static void __iomem *ofdrm_rage128_cmap_ioremap(struct ofdrm_device *odev, in ofdrm_rage128_cmap_ioremap()
492 static void ofdrm_rage128_cmap_write(struct ofdrm_device *odev, unsigned char index, in ofdrm_rage128_cmap_write()
503 static void __iomem *ofdrm_rage_m3a_cmap_ioremap(struct ofdrm_device *odev, in ofdrm_rage_m3a_cmap_ioremap()
510 static void ofdrm_rage_m3a_cmap_write(struct ofdrm_device *odev, unsigned char index, in ofdrm_rage_m3a_cmap_write()
529 static void __iomem *ofdrm_rage_m3b_cmap_ioremap(struct ofdrm_device *odev, in ofdrm_rage_m3b_cmap_ioremap()
536 static void ofdrm_rage_m3b_cmap_write(struct ofdrm_device *odev, unsigned char index, in ofdrm_rage_m3b_cmap_write()
555 static void __iomem *ofdrm_radeon_cmap_ioremap(struct ofdrm_device *odev, in ofdrm_radeon_cmap_ioremap()
562 static void __iomem *ofdrm_gxt2000_cmap_ioremap(struct ofdrm_device *odev, in ofdrm_gxt2000_cmap_ioremap()
569 static void ofdrm_gxt2000_cmap_write(struct ofdrm_device *odev, unsigned char index, in ofdrm_gxt2000_cmap_write()
578 static void __iomem *ofdrm_avivo_cmap_ioremap(struct ofdrm_device *odev, in ofdrm_avivo_cmap_ioremap()
592 static void ofdrm_avivo_cmap_write(struct ofdrm_device *odev, unsigned char index, in ofdrm_avivo_cmap_write()
611 static void __iomem *ofdrm_qemu_cmap_ioremap(struct ofdrm_device *odev, in ofdrm_qemu_cmap_ioremap()
636 static void ofdrm_qemu_cmap_write(struct ofdrm_device *odev, unsigned char index, in ofdrm_qemu_cmap_write()
648 static void ofdrm_device_set_gamma_linear(struct ofdrm_device *odev, in ofdrm_device_set_gamma_linear()
686 static void ofdrm_device_set_gamma(struct ofdrm_device *odev, in ofdrm_device_set_gamma()
761 struct ofdrm_device *odev = ofdrm_device_of_dev(dev); in ofdrm_primary_plane_helper_atomic_check()
805 struct ofdrm_device *odev = ofdrm_device_of_dev(dev); in ofdrm_primary_plane_helper_atomic_update()
845 struct ofdrm_device *odev = ofdrm_device_of_dev(dev); in ofdrm_primary_plane_helper_atomic_disable()
892 struct ofdrm_device *odev = ofdrm_device_of_dev(crtc->dev); in ofdrm_crtc_helper_mode_valid()
927 struct ofdrm_device *odev = ofdrm_device_of_dev(crtc->dev); in ofdrm_crtc_helper_atomic_flush()
1005 struct ofdrm_device *odev = ofdrm_device_of_dev(connector->dev); in ofdrm_connector_helper_get_modes()
1090 static struct ofdrm_device *ofdrm_device_create(struct drm_driver *drv, in ofdrm_device_create()
1094 struct ofdrm_device *odev; in ofdrm_device_create()
1112 odev = devm_drm_dev_alloc(&pdev->dev, drv, struct ofdrm_device, dev); in ofdrm_device_create()
1362 struct ofdrm_device *odev; in ofdrm_probe()