Skip to content

Commit

Permalink
Merge tag 'topic/drmp-cleanup-2019-01-02' of git://anongit.freedeskto…
Browse files Browse the repository at this point in the history
…p.org/drm/drm-intel into drm-intel-next-queued

Make some drm headers self-contained with includes and forward
declarations.

This topic branch has already been merged to drm-misc-next as commit
1c95f66 ("Merge tag 'topic/drmp-cleanup-2019-01-02' of
git://anongit.freedesktop.org/drm/drm-intel into drm-misc-next"). Now
merge it to drm-intel-next-queued to unblock some further drmP.h cleanup
without having to wait for a backmerge.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
From: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/87pntfl6pa.fsf@intel.com
  • Loading branch information
Jani Nikula committed Jan 8, 2019
2 parents d58f008 + dd7ece7 commit 481975c
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 11 deletions.
11 changes: 11 additions & 0 deletions drivers/gpu/drm/drm_bufs.c
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,17 @@ int drm_legacy_addmap(struct drm_device *dev, resource_size_t offset,
}
EXPORT_SYMBOL(drm_legacy_addmap);

struct drm_local_map *drm_legacy_findmap(struct drm_device *dev,
unsigned int token)
{
struct drm_map_list *_entry;
list_for_each_entry(_entry, &dev->maplist, head)
if (_entry->user_token == token)
return _entry->map;
return NULL;
}
EXPORT_SYMBOL(drm_legacy_findmap);

/**
* Ioctl to specify a range of memory that is available for mapping by a
* non-root process.
Expand Down
1 change: 1 addition & 0 deletions include/drm/drm_file.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

#include <linux/types.h>
#include <linux/completion.h>
#include <linux/idr.h>

#include <uapi/drm/drm.h>

Expand Down
2 changes: 2 additions & 0 deletions include/drm/drm_hdcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
#ifndef _DRM_HDCP_H_INCLUDED_
#define _DRM_HDCP_H_INCLUDED_

#include <linux/types.h>

/* Period of hdcp checks (to ensure we're still authenticated) */
#define DRM_HDCP_CHECK_PERIOD_MS (128 * 16)

Expand Down
14 changes: 4 additions & 10 deletions include/drm/drm_legacy.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
#define __DRM_DRM_LEGACY_H__

#include <drm/drm_auth.h>
#include <drm/drm_hashtab.h>

struct drm_device;

/*
* Legacy driver interfaces for the Direct Rendering Manager
Expand Down Expand Up @@ -156,6 +159,7 @@ struct drm_map_list {
int drm_legacy_addmap(struct drm_device *d, resource_size_t offset,
unsigned int size, enum drm_map_type type,
enum drm_map_flags flags, struct drm_local_map **map_p);
struct drm_local_map *drm_legacy_findmap(struct drm_device *dev, unsigned int token);
void drm_legacy_rmmap(struct drm_device *d, struct drm_local_map *map);
int drm_legacy_rmmap_locked(struct drm_device *d, struct drm_local_map *map);
void drm_legacy_master_rmmaps(struct drm_device *dev,
Expand Down Expand Up @@ -194,14 +198,4 @@ void drm_legacy_ioremap(struct drm_local_map *map, struct drm_device *dev);
void drm_legacy_ioremap_wc(struct drm_local_map *map, struct drm_device *dev);
void drm_legacy_ioremapfree(struct drm_local_map *map, struct drm_device *dev);

static inline struct drm_local_map *drm_legacy_findmap(struct drm_device *dev,
unsigned int token)
{
struct drm_map_list *_entry;
list_for_each_entry(_entry, &dev->maplist, head)
if (_entry->user_token == token)
return _entry->map;
return NULL;
}

#endif /* __DRM_DRM_LEGACY_H__ */
4 changes: 3 additions & 1 deletion include/drm/drm_syncobj.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
#ifndef __DRM_SYNCOBJ_H__
#define __DRM_SYNCOBJ_H__

#include "linux/dma-fence.h"
#include <linux/dma-fence.h>

struct drm_file;

struct drm_syncobj_cb;

Expand Down
3 changes: 3 additions & 0 deletions include/drm/intel-gtt.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
#ifndef _DRM_INTEL_GTT_H
#define _DRM_INTEL_GTT_H

#include <linux/agp_backend.h>
#include <linux/kernel.h>

void intel_gtt_get(u64 *gtt_total,
phys_addr_t *mappable_base,
resource_size_t *mappable_end);
Expand Down

0 comments on commit 481975c

Please sign in to comment.