18c2ecf20Sopenharmony_ci/* amdgpu_drv.h -- Private header for amdgpu driver -*- linux-c -*- 28c2ecf20Sopenharmony_ci * 38c2ecf20Sopenharmony_ci * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. 48c2ecf20Sopenharmony_ci * Copyright 2000 VA Linux Systems, Inc., Fremont, California. 58c2ecf20Sopenharmony_ci * All rights reserved. 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining a 88c2ecf20Sopenharmony_ci * copy of this software and associated documentation files (the "Software"), 98c2ecf20Sopenharmony_ci * to deal in the Software without restriction, including without limitation 108c2ecf20Sopenharmony_ci * the rights to use, copy, modify, merge, publish, distribute, sublicense, 118c2ecf20Sopenharmony_ci * and/or sell copies of the Software, and to permit persons to whom the 128c2ecf20Sopenharmony_ci * Software is furnished to do so, subject to the following conditions: 138c2ecf20Sopenharmony_ci * 148c2ecf20Sopenharmony_ci * The above copyright notice and this permission notice (including the next 158c2ecf20Sopenharmony_ci * paragraph) shall be included in all copies or substantial portions of the 168c2ecf20Sopenharmony_ci * Software. 178c2ecf20Sopenharmony_ci * 188c2ecf20Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 198c2ecf20Sopenharmony_ci * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 208c2ecf20Sopenharmony_ci * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 218c2ecf20Sopenharmony_ci * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 228c2ecf20Sopenharmony_ci * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 238c2ecf20Sopenharmony_ci * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 248c2ecf20Sopenharmony_ci * DEALINGS IN THE SOFTWARE. 258c2ecf20Sopenharmony_ci * 268c2ecf20Sopenharmony_ci */ 278c2ecf20Sopenharmony_ci 288c2ecf20Sopenharmony_ci#ifndef __AMDGPU_DRV_H__ 298c2ecf20Sopenharmony_ci#define __AMDGPU_DRV_H__ 308c2ecf20Sopenharmony_ci 318c2ecf20Sopenharmony_ci#include <linux/firmware.h> 328c2ecf20Sopenharmony_ci#include <linux/platform_device.h> 338c2ecf20Sopenharmony_ci 348c2ecf20Sopenharmony_ci#include "amd_shared.h" 358c2ecf20Sopenharmony_ci 368c2ecf20Sopenharmony_ci/* General customization: 378c2ecf20Sopenharmony_ci */ 388c2ecf20Sopenharmony_ci 398c2ecf20Sopenharmony_ci#define DRIVER_AUTHOR "AMD linux driver team" 408c2ecf20Sopenharmony_ci 418c2ecf20Sopenharmony_ci#define DRIVER_NAME "amdgpu" 428c2ecf20Sopenharmony_ci#define DRIVER_DESC "AMD GPU" 438c2ecf20Sopenharmony_ci#define DRIVER_DATE "20150101" 448c2ecf20Sopenharmony_ci 458c2ecf20Sopenharmony_cilong amdgpu_drm_ioctl(struct file *filp, 468c2ecf20Sopenharmony_ci unsigned int cmd, unsigned long arg); 478c2ecf20Sopenharmony_ci 488c2ecf20Sopenharmony_ci#endif 49