gem.h (db985cbd67c45f875ef43cb5febfaa8cbd203c27) gem.h (d9fc9413f97f5c615256a5657ec667c064c07a70)
1/*
2 * Tegra host1x GEM implementation
3 *
4 * Copyright (c) 2012-2013, NVIDIA Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef __HOST1X_GEM_H
12#define __HOST1X_GEM_H
13
14#include <linux/host1x.h>
15
16#include <drm/drm.h>
17#include <drm/drmP.h>
1/*
2 * Tegra host1x GEM implementation
3 *
4 * Copyright (c) 2012-2013, NVIDIA Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef __HOST1X_GEM_H
12#define __HOST1X_GEM_H
13
14#include <linux/host1x.h>
15
16#include <drm/drm.h>
17#include <drm/drmP.h>
18#include <drm/drm_gem.h>
18
19#define TEGRA_BO_BOTTOM_UP (1 << 0)
20
21enum tegra_bo_tiling_mode {
22 TEGRA_BO_TILING_MODE_PITCH,
23 TEGRA_BO_TILING_MODE_TILED,
24 TEGRA_BO_TILING_MODE_BLOCK,
25};

--- 46 unchanged lines hidden ---
19
20#define TEGRA_BO_BOTTOM_UP (1 << 0)
21
22enum tegra_bo_tiling_mode {
23 TEGRA_BO_TILING_MODE_PITCH,
24 TEGRA_BO_TILING_MODE_TILED,
25 TEGRA_BO_TILING_MODE_BLOCK,
26};

--- 46 unchanged lines hidden ---