Linux Audio

Check our new training course

Linux BSP upgrade and security maintenance

Need help to get security updates for your Linux BSP?
Loading...
Note: File does not exist in v4.17.
 1// SPDX-License-Identifier: MIT
 2/*
 3 * Copyright (C) 2013-2017 Oracle Corporation
 4 * This file is based on ast_ttm.c
 5 * Copyright 2012 Red Hat Inc.
 6 * Authors: Dave Airlie <airlied@redhat.com>
 7 *          Michael Thayer <michael.thayer@oracle.com>
 8 */
 9#include <linux/pci.h>
10#include <drm/drm_file.h>
11#include "vbox_drv.h"
12
13int vbox_mm_init(struct vbox_private *vbox)
14{
15	struct drm_vram_mm *vmm;
16	int ret;
17	struct drm_device *dev = &vbox->ddev;
18
19	vmm = drm_vram_helper_alloc_mm(dev, pci_resource_start(dev->pdev, 0),
20				       vbox->available_vram_size);
21	if (IS_ERR(vmm)) {
22		ret = PTR_ERR(vmm);
23		DRM_ERROR("Error initializing VRAM MM; %d\n", ret);
24		return ret;
25	}
26
27	vbox->fb_mtrr = arch_phys_wc_add(pci_resource_start(dev->pdev, 0),
28					 pci_resource_len(dev->pdev, 0));
29	return 0;
30}
31
32void vbox_mm_fini(struct vbox_private *vbox)
33{
34	arch_phys_wc_del(vbox->fb_mtrr);
35	drm_vram_helper_release_mm(&vbox->ddev);
36}