summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/io/drm/drm_sysfs.c
blob: ac5980502b314d332e70cfe5a14206c4e0433205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
 * Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

/*
 * Copyright (c) 2012 Intel Corporation.  All rights reserved.
 */

#include <sys/types.h>
#include <sys/errno.h>
#include <sys/conf.h>
#include <sys/kmem.h>
#include <sys/visual_io.h>
#include <sys/fbio.h>
#include <sys/ddi.h>
#include <sys/sunddi.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <sys/open.h>
#include <sys/modctl.h>
#include <sys/pci.h>
#include <sys/kd.h>
#include <sys/ddi_impldefs.h>
#include <sys/sunldi.h>
#include <sys/mkdev.h>
#include "drmP.h"
#include <sys/agpgart.h>
#include <sys/agp/agpdefs.h>
#include <sys/agp/agpmaster_io.h>

/**
 * drm_sysfs_device_add - adds a class device to sysfs for a character driver
 * @dev: DRM device to be added
 * @head: DRM head in question
 *
 * Add a DRM device to the DRM's device model class.  We use @dev's PCI device
 * as the parent for the Linux device, and make sure it has a file containing
 * the driver we're using (for userspace compatibility).
 */
int drm_sysfs_device_add(struct drm_minor *minor)
{
	struct drm_device *dev = minor->dev;
	gfxp_vgatext_softc_ptr_t gfxp;
	int ret;

	switch (minor->type) {
	case DRM_MINOR_AGPMASTER:
		ret = agpmaster_attach(dev->devinfo, 
		    (agp_master_softc_t **)&minor->private,
		    dev->pdev->pci_cfg_acc_handle, minor->index);
		if (ret != DDI_SUCCESS) {
			DRM_ERROR("agpmaster_attach failed");
			return (ret);
		}
		return (0);

	case DRM_MINOR_VGATEXT:
		/* Generic graphics initialization */
		gfxp = gfxp_vgatext_softc_alloc();
		ret = gfxp_vgatext_attach(dev->devinfo, DDI_ATTACH, gfxp);
		if (ret != DDI_SUCCESS) {
			DRM_ERROR("gfxp_vgatext_attach failed");
			return (EFAULT);
		}
		minor->private = gfxp;

		ret = ddi_create_minor_node(dev->devinfo,
		    minor->name, S_IFCHR, minor->index, DDI_NT_DISPLAY, NULL);
		if (ret != DDI_SUCCESS) {
			DRM_ERROR("ddi_create_minor_node failed");
			return (EFAULT);
		}
		return (0);

	case DRM_MINOR_LEGACY:
	case DRM_MINOR_CONTROL:
	case DRM_MINOR_RENDER:
		ret = ddi_create_minor_node(dev->devinfo,
		    minor->name, S_IFCHR, minor->index, DDI_NT_DISPLAY_DRM, NULL);
		if (ret != DDI_SUCCESS) {
			DRM_ERROR("ddi_create_minor_node failed");
			return (EFAULT);
		}
		return (0);
	}

	return (ENOTSUP);
}

/**
 * drm_sysfs_device_remove - remove DRM device
 * @dev: DRM device to remove
 *
 * This call unregisters and cleans up a class device that was created with a
 * call to drm_sysfs_device_add()
 */
void drm_sysfs_device_remove(struct drm_minor *minor)
{
	switch (minor->type) {
	case DRM_MINOR_AGPMASTER:
		if (minor->private) {
			agpmaster_detach(
			    (agp_master_softc_t **)&minor->private);
			minor->private = NULL;
		}
		break;

	case DRM_MINOR_VGATEXT:
		if (minor->private) {
			(void) gfxp_vgatext_detach(minor->dev->devinfo,
			    DDI_DETACH, minor->private);
			gfxp_vgatext_softc_free(minor->private);
			minor->private = NULL;
		}

	/* LINTED */
	case DRM_MINOR_LEGACY:
	case DRM_MINOR_CONTROL:
	case DRM_MINOR_RENDER:	
		ddi_remove_minor_node(minor->dev->devinfo, minor->name);
	}
}