Home | History | Annotate | Line # | Download | only in i915drm
      1  1.25       nat /*	$NetBSD: intelfb.c,v 1.25 2023/05/22 22:36:53 nat Exp $	*/
      2   1.1  riastrad 
      3   1.1  riastrad /*-
      4   1.1  riastrad  * Copyright (c) 2014 The NetBSD Foundation, Inc.
      5   1.1  riastrad  * All rights reserved.
      6   1.1  riastrad  *
      7   1.1  riastrad  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1  riastrad  * by Taylor R. Campbell.
      9   1.1  riastrad  *
     10   1.1  riastrad  * Redistribution and use in source and binary forms, with or without
     11   1.1  riastrad  * modification, are permitted provided that the following conditions
     12   1.1  riastrad  * are met:
     13   1.1  riastrad  * 1. Redistributions of source code must retain the above copyright
     14   1.1  riastrad  *    notice, this list of conditions and the following disclaimer.
     15   1.1  riastrad  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  riastrad  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  riastrad  *    documentation and/or other materials provided with the distribution.
     18   1.1  riastrad  *
     19   1.1  riastrad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1  riastrad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1  riastrad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1  riastrad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1  riastrad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1  riastrad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1  riastrad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1  riastrad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1  riastrad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1  riastrad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1  riastrad  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1  riastrad  */
     31   1.1  riastrad 
     32   1.1  riastrad #include <sys/cdefs.h>
     33  1.25       nat __KERNEL_RCSID(0, "$NetBSD: intelfb.c,v 1.25 2023/05/22 22:36:53 nat Exp $");
     34   1.1  riastrad 
     35   1.1  riastrad #include <sys/types.h>
     36   1.1  riastrad #include <sys/bus.h>
     37   1.1  riastrad #include <sys/device.h>
     38   1.1  riastrad 
     39  1.19  riastrad #include <drm/drm_device.h>
     40  1.11  riastrad #include <drm/drmfb.h>
     41  1.11  riastrad #include <drm/drmfb_pci.h>
     42   1.1  riastrad 
     43  1.22  riastrad #include "display/intel_display_types.h"
     44  1.22  riastrad #include "display/intel_vga.h"
     45   1.1  riastrad #include "i915_drv.h"
     46   1.1  riastrad #include "i915_pci.h"
     47   1.1  riastrad #include "intelfb.h"
     48   1.1  riastrad 
     49  1.11  riastrad static int	intelfb_match(device_t, cfdata_t, void *);
     50  1.11  riastrad static void	intelfb_attach(device_t, device_t, void *);
     51  1.11  riastrad static int	intelfb_detach(device_t, int);
     52  1.11  riastrad 
     53  1.11  riastrad static void	intelfb_attach_task(struct i915drmkms_task *);
     54  1.11  riastrad 
     55  1.11  riastrad static bool	intelfb_shutdown(device_t, int);
     56  1.11  riastrad 
     57  1.11  riastrad static paddr_t	intelfb_drmfb_mmapfb(struct drmfb_softc *, off_t, int);
     58  1.11  riastrad 
     59  1.22  riastrad static void	intelfb_disable_vga(struct drm_device *);
     60  1.22  riastrad 
     61   1.1  riastrad struct intelfb_softc {
     62  1.11  riastrad 	struct drmfb_softc		sc_drmfb; /* XXX Must be first.  */
     63   1.1  riastrad 	device_t			sc_dev;
     64   1.1  riastrad 	struct intelfb_attach_args	sc_ifa;
     65   1.1  riastrad 	bus_space_handle_t		sc_fb_bsh;
     66  1.11  riastrad 	struct i915drmkms_task		sc_attach_task;
     67   1.1  riastrad 	bool				sc_attached:1;
     68   1.1  riastrad };
     69   1.1  riastrad 
     70  1.11  riastrad static const struct drmfb_params intelfb_drmfb_params = {
     71  1.11  riastrad 	.dp_mmapfb = intelfb_drmfb_mmapfb,
     72  1.11  riastrad 	.dp_mmap = drmfb_pci_mmap,
     73  1.11  riastrad 	.dp_ioctl = drmfb_pci_ioctl,
     74  1.12  riastrad 	.dp_is_vga_console = drmfb_pci_is_vga_console,
     75  1.22  riastrad 	.dp_disable_vga = intelfb_disable_vga,
     76   1.7  jmcneill };
     77   1.1  riastrad 
     78   1.1  riastrad CFATTACH_DECL_NEW(intelfb, sizeof(struct intelfb_softc),
     79   1.1  riastrad     intelfb_match, intelfb_attach, intelfb_detach, NULL);
     80   1.1  riastrad 
     81   1.1  riastrad static int
     82   1.1  riastrad intelfb_match(device_t parent, cfdata_t match, void *aux)
     83   1.1  riastrad {
     84   1.1  riastrad 
     85   1.1  riastrad 	return 1;
     86   1.1  riastrad }
     87   1.1  riastrad 
     88   1.1  riastrad static void
     89   1.1  riastrad intelfb_attach(device_t parent, device_t self, void *aux)
     90   1.1  riastrad {
     91   1.1  riastrad 	struct intelfb_softc *const sc = device_private(self);
     92   1.1  riastrad 	const struct intelfb_attach_args *const ifa = aux;
     93   1.1  riastrad 
     94   1.1  riastrad 	sc->sc_dev = self;
     95   1.1  riastrad 	sc->sc_ifa = *ifa;
     96   1.1  riastrad 	sc->sc_attached = false;
     97   1.1  riastrad 
     98   1.5  riastrad 	aprint_naive("\n");
     99   1.5  riastrad 	aprint_normal("\n");
    100   1.5  riastrad 
    101  1.11  riastrad 	i915drmkms_task_init(&sc->sc_attach_task, &intelfb_attach_task);
    102  1.24  riastrad 	i915drmkms_task_schedule(parent, &sc->sc_attach_task);
    103  1.18  riastrad 	config_pending_incr(self);
    104   1.1  riastrad }
    105   1.1  riastrad 
    106   1.1  riastrad static int
    107   1.1  riastrad intelfb_detach(device_t self, int flags)
    108   1.1  riastrad {
    109   1.1  riastrad 	struct intelfb_softc *const sc = device_private(self);
    110  1.11  riastrad 	int error;
    111   1.1  riastrad 
    112   1.1  riastrad 	if (sc->sc_attached) {
    113  1.11  riastrad 		pmf_device_deregister(self);
    114  1.11  riastrad 		error = drmfb_detach(&sc->sc_drmfb, flags);
    115  1.11  riastrad 		if (error) {
    116  1.11  riastrad 			/* XXX Ugh.  */
    117  1.11  riastrad 			(void)pmf_device_register1(self, NULL, NULL,
    118  1.11  riastrad 			    &intelfb_shutdown);
    119  1.11  riastrad 			return error;
    120  1.11  riastrad 		}
    121   1.1  riastrad 		sc->sc_attached = false;
    122   1.1  riastrad 	}
    123   1.1  riastrad 
    124   1.1  riastrad 	return 0;
    125   1.1  riastrad }
    126   1.1  riastrad 
    127   1.1  riastrad static void
    128  1.11  riastrad intelfb_attach_task(struct i915drmkms_task *task)
    129   1.1  riastrad {
    130   1.1  riastrad 	struct intelfb_softc *const sc = container_of(task,
    131  1.11  riastrad 	    struct intelfb_softc, sc_attach_task);
    132   1.1  riastrad 	const struct intelfb_attach_args *const ifa = &sc->sc_ifa;
    133  1.11  riastrad 	const struct drmfb_attach_args da = {
    134  1.11  riastrad 		.da_dev = sc->sc_dev,
    135  1.11  riastrad 		.da_fb_helper = ifa->ifa_fb_helper,
    136  1.11  riastrad 		.da_fb_sizes = &ifa->ifa_fb_sizes,
    137  1.21  riastrad 		.da_fb_vaddr = ifa->ifa_fb_vaddr,
    138  1.17       rin 		.da_fb_linebytes = ifa->ifa_fb_helper->fb->pitches[0],
    139  1.11  riastrad 		.da_params = &intelfb_drmfb_params,
    140  1.11  riastrad 	};
    141   1.1  riastrad 	int error;
    142   1.1  riastrad 
    143  1.11  riastrad 	error = drmfb_attach(&sc->sc_drmfb, &da);
    144   1.1  riastrad 	if (error) {
    145  1.11  riastrad 		aprint_error_dev(sc->sc_dev, "failed to attach drmfb: %d\n",
    146   1.1  riastrad 		    error);
    147  1.16   msaitoh 		goto out;
    148   1.1  riastrad 	}
    149   1.1  riastrad 
    150  1.13  jmcneill 	if (!pmf_device_register1(sc->sc_dev, NULL, NULL, &intelfb_shutdown))
    151  1.11  riastrad 		aprint_error_dev(sc->sc_dev,
    152  1.11  riastrad 		    "failed to register shutdown handler\n");
    153   1.8  jmcneill 
    154  1.11  riastrad 	sc->sc_attached = true;
    155  1.16   msaitoh out:
    156  1.18  riastrad 	config_pending_decr(sc->sc_dev);
    157   1.1  riastrad }
    158   1.1  riastrad 
    159  1.11  riastrad static bool
    160  1.11  riastrad intelfb_shutdown(device_t self, int flags)
    161   1.1  riastrad {
    162  1.11  riastrad 	struct intelfb_softc *const sc = device_private(self);
    163   1.1  riastrad 
    164  1.11  riastrad 	return drmfb_shutdown(&sc->sc_drmfb, flags);
    165   1.1  riastrad }
    166   1.1  riastrad 
    167   1.1  riastrad static paddr_t
    168  1.11  riastrad intelfb_drmfb_mmapfb(struct drmfb_softc *drmfb, off_t offset, int prot)
    169   1.1  riastrad {
    170  1.11  riastrad 	struct intelfb_softc *const sc = container_of(drmfb,
    171  1.11  riastrad 	    struct intelfb_softc, sc_drmfb);
    172   1.1  riastrad 	struct drm_fb_helper *const helper = sc->sc_ifa.ifa_fb_helper;
    173   1.1  riastrad 	struct intel_fbdev *const fbdev = container_of(helper,
    174   1.1  riastrad 	    struct intel_fbdev, helper);
    175   1.1  riastrad 	struct drm_device *const dev = helper->dev;
    176  1.22  riastrad 	struct drm_i915_private *const i915 =
    177  1.22  riastrad 	    container_of(dev, struct drm_i915_private, drm);
    178  1.22  riastrad 	struct i915_ggtt *const ggtt = &i915->ggtt;
    179  1.22  riastrad 	struct i915_vma *const vma = fbdev->vma;
    180   1.1  riastrad 
    181  1.11  riastrad 	KASSERT(0 <= offset);
    182  1.22  riastrad 	KASSERT(offset < vma->node.size);
    183   1.7  jmcneill 
    184  1.25       nat 	return bus_space_mmap(dev->bst, ggtt->gmadr.start,
    185  1.25       nat 	    vma->node.start + offset, prot, BUS_SPACE_MAP_PREFETCHABLE);
    186   1.7  jmcneill }
    187  1.22  riastrad 
    188  1.22  riastrad static void
    189  1.22  riastrad intelfb_disable_vga(struct drm_device *dev)
    190  1.22  riastrad {
    191  1.22  riastrad 	struct drm_i915_private *i915 =
    192  1.22  riastrad 	    container_of(dev, struct drm_i915_private, drm);
    193  1.22  riastrad 
    194  1.22  riastrad 	intel_vga_disable(i915);
    195  1.22  riastrad }
    196