radeon.h 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515
  1. /*
  2. * Copyright 2008 Advanced Micro Devices, Inc.
  3. * Copyright 2008 Red Hat Inc.
  4. * Copyright 2009 Jerome Glisse.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the "Software"),
  8. * to deal in the Software without restriction, including without limitation
  9. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. * and/or sell copies of the Software, and to permit persons to whom the
  11. * Software is furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  20. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  21. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  22. * OTHER DEALINGS IN THE SOFTWARE.
  23. *
  24. * Authors: Dave Airlie
  25. * Alex Deucher
  26. * Jerome Glisse
  27. */
  28. #ifndef __RADEON_H__
  29. #define __RADEON_H__
  30. /* TODO: Here are things that needs to be done :
  31. * - surface allocator & initializer : (bit like scratch reg) should
  32. * initialize HDP_ stuff on RS600, R600, R700 hw, well anythings
  33. * related to surface
  34. * - WB : write back stuff (do it bit like scratch reg things)
  35. * - Vblank : look at Jesse's rework and what we should do
  36. * - r600/r700: gart & cp
  37. * - cs : clean cs ioctl use bitmap & things like that.
  38. * - power management stuff
  39. * - Barrier in gart code
  40. * - Unmappabled vram ?
  41. * - TESTING, TESTING, TESTING
  42. */
  43. /* Initialization path:
  44. * We expect that acceleration initialization might fail for various
  45. * reasons even thought we work hard to make it works on most
  46. * configurations. In order to still have a working userspace in such
  47. * situation the init path must succeed up to the memory controller
  48. * initialization point. Failure before this point are considered as
  49. * fatal error. Here is the init callchain :
  50. * radeon_device_init perform common structure, mutex initialization
  51. * asic_init setup the GPU memory layout and perform all
  52. * one time initialization (failure in this
  53. * function are considered fatal)
  54. * asic_startup setup the GPU acceleration, in order to
  55. * follow guideline the first thing this
  56. * function should do is setting the GPU
  57. * memory controller (only MC setup failure
  58. * are considered as fatal)
  59. */
  60. #include <asm/atomic.h>
  61. #include <linux/wait.h>
  62. #include <linux/list.h>
  63. #include <linux/kref.h>
  64. #include <ttm/ttm_bo_api.h>
  65. #include <ttm/ttm_bo_driver.h>
  66. #include <ttm/ttm_placement.h>
  67. #include <ttm/ttm_module.h>
  68. #include <ttm/ttm_execbuf_util.h>
  69. #include "radeon_family.h"
  70. #include "radeon_mode.h"
  71. #include "radeon_reg.h"
  72. /*
  73. * Modules parameters.
  74. */
  75. extern int radeon_no_wb;
  76. extern int radeon_modeset;
  77. extern int radeon_dynclks;
  78. extern int radeon_r4xx_atom;
  79. extern int radeon_agpmode;
  80. extern int radeon_vram_limit;
  81. extern int radeon_gart_size;
  82. extern int radeon_benchmarking;
  83. extern int radeon_testing;
  84. extern int radeon_connector_table;
  85. extern int radeon_tv;
  86. extern int radeon_audio;
  87. extern int radeon_disp_priority;
  88. extern int radeon_hw_i2c;
  89. extern int radeon_pcie_gen2;
  90. /*
  91. * Copy from radeon_drv.h so we don't have to include both and have conflicting
  92. * symbol;
  93. */
  94. #define RADEON_MAX_USEC_TIMEOUT 100000 /* 100 ms */
  95. #define RADEON_FENCE_JIFFIES_TIMEOUT (HZ / 2)
  96. /* RADEON_IB_POOL_SIZE must be a power of 2 */
  97. #define RADEON_IB_POOL_SIZE 16
  98. #define RADEON_DEBUGFS_MAX_NUM_FILES 32
  99. #define RADEONFB_CONN_LIMIT 4
  100. #define RADEON_BIOS_NUM_SCRATCH 8
  101. /*
  102. * Errata workarounds.
  103. */
  104. enum radeon_pll_errata {
  105. CHIP_ERRATA_R300_CG = 0x00000001,
  106. CHIP_ERRATA_PLL_DUMMYREADS = 0x00000002,
  107. CHIP_ERRATA_PLL_DELAY = 0x00000004
  108. };
  109. struct radeon_device;
  110. /*
  111. * BIOS.
  112. */
  113. #define ATRM_BIOS_PAGE 4096
  114. #if defined(CONFIG_VGA_SWITCHEROO)
  115. bool radeon_atrm_supported(struct pci_dev *pdev);
  116. int radeon_atrm_get_bios_chunk(uint8_t *bios, int offset, int len);
  117. #else
  118. static inline bool radeon_atrm_supported(struct pci_dev *pdev)
  119. {
  120. return false;
  121. }
  122. static inline int radeon_atrm_get_bios_chunk(uint8_t *bios, int offset, int len){
  123. return -EINVAL;
  124. }
  125. #endif
  126. bool radeon_get_bios(struct radeon_device *rdev);
  127. /*
  128. * Dummy page
  129. */
  130. struct radeon_dummy_page {
  131. struct page *page;
  132. dma_addr_t addr;
  133. };
  134. int radeon_dummy_page_init(struct radeon_device *rdev);
  135. void radeon_dummy_page_fini(struct radeon_device *rdev);
  136. /*
  137. * Clocks
  138. */
  139. struct radeon_clock {
  140. struct radeon_pll p1pll;
  141. struct radeon_pll p2pll;
  142. struct radeon_pll dcpll;
  143. struct radeon_pll spll;
  144. struct radeon_pll mpll;
  145. /* 10 Khz units */
  146. uint32_t default_mclk;
  147. uint32_t default_sclk;
  148. uint32_t default_dispclk;
  149. uint32_t dp_extclk;
  150. };
  151. /*
  152. * Power management
  153. */
  154. int radeon_pm_init(struct radeon_device *rdev);
  155. void radeon_pm_fini(struct radeon_device *rdev);
  156. void radeon_pm_compute_clocks(struct radeon_device *rdev);
  157. void radeon_pm_suspend(struct radeon_device *rdev);
  158. void radeon_pm_resume(struct radeon_device *rdev);
  159. void radeon_combios_get_power_modes(struct radeon_device *rdev);
  160. void radeon_atombios_get_power_modes(struct radeon_device *rdev);
  161. void radeon_atom_set_voltage(struct radeon_device *rdev, u16 level);
  162. void rs690_pm_info(struct radeon_device *rdev);
  163. extern int rv6xx_get_temp(struct radeon_device *rdev);
  164. extern int rv770_get_temp(struct radeon_device *rdev);
  165. extern int evergreen_get_temp(struct radeon_device *rdev);
  166. extern int sumo_get_temp(struct radeon_device *rdev);
  167. /*
  168. * Fences.
  169. */
  170. struct radeon_fence_driver {
  171. uint32_t scratch_reg;
  172. atomic_t seq;
  173. uint32_t last_seq;
  174. unsigned long last_jiffies;
  175. unsigned long last_timeout;
  176. wait_queue_head_t queue;
  177. rwlock_t lock;
  178. struct list_head created;
  179. struct list_head emited;
  180. struct list_head signaled;
  181. bool initialized;
  182. };
  183. struct radeon_fence {
  184. struct radeon_device *rdev;
  185. struct kref kref;
  186. struct list_head list;
  187. /* protected by radeon_fence.lock */
  188. uint32_t seq;
  189. bool emited;
  190. bool signaled;
  191. };
  192. int radeon_fence_driver_init(struct radeon_device *rdev);
  193. void radeon_fence_driver_fini(struct radeon_device *rdev);
  194. int radeon_fence_create(struct radeon_device *rdev, struct radeon_fence **fence);
  195. int radeon_fence_emit(struct radeon_device *rdev, struct radeon_fence *fence);
  196. void radeon_fence_process(struct radeon_device *rdev);
  197. bool radeon_fence_signaled(struct radeon_fence *fence);
  198. int radeon_fence_wait(struct radeon_fence *fence, bool interruptible);
  199. int radeon_fence_wait_next(struct radeon_device *rdev);
  200. int radeon_fence_wait_last(struct radeon_device *rdev);
  201. struct radeon_fence *radeon_fence_ref(struct radeon_fence *fence);
  202. void radeon_fence_unref(struct radeon_fence **fence);
  203. /*
  204. * Tiling registers
  205. */
  206. struct radeon_surface_reg {
  207. struct radeon_bo *bo;
  208. };
  209. #define RADEON_GEM_MAX_SURFACES 8
  210. /*
  211. * TTM.
  212. */
  213. struct radeon_mman {
  214. struct ttm_bo_global_ref bo_global_ref;
  215. struct drm_global_reference mem_global_ref;
  216. struct ttm_bo_device bdev;
  217. bool mem_global_referenced;
  218. bool initialized;
  219. };
  220. struct radeon_bo {
  221. /* Protected by gem.mutex */
  222. struct list_head list;
  223. /* Protected by tbo.reserved */
  224. u32 placements[3];
  225. struct ttm_placement placement;
  226. struct ttm_buffer_object tbo;
  227. struct ttm_bo_kmap_obj kmap;
  228. unsigned pin_count;
  229. void *kptr;
  230. u32 tiling_flags;
  231. u32 pitch;
  232. int surface_reg;
  233. /* Constant after initialization */
  234. struct radeon_device *rdev;
  235. struct drm_gem_object gem_base;
  236. };
  237. #define gem_to_radeon_bo(gobj) container_of((gobj), struct radeon_bo, gem_base)
  238. struct radeon_bo_list {
  239. struct ttm_validate_buffer tv;
  240. struct radeon_bo *bo;
  241. uint64_t gpu_offset;
  242. unsigned rdomain;
  243. unsigned wdomain;
  244. u32 tiling_flags;
  245. };
  246. /*
  247. * GEM objects.
  248. */
  249. struct radeon_gem {
  250. struct mutex mutex;
  251. struct list_head objects;
  252. };
  253. int radeon_gem_init(struct radeon_device *rdev);
  254. void radeon_gem_fini(struct radeon_device *rdev);
  255. int radeon_gem_object_create(struct radeon_device *rdev, int size,
  256. int alignment, int initial_domain,
  257. bool discardable, bool kernel,
  258. struct drm_gem_object **obj);
  259. int radeon_gem_object_pin(struct drm_gem_object *obj, uint32_t pin_domain,
  260. uint64_t *gpu_addr);
  261. void radeon_gem_object_unpin(struct drm_gem_object *obj);
  262. int radeon_mode_dumb_create(struct drm_file *file_priv,
  263. struct drm_device *dev,
  264. struct drm_mode_create_dumb *args);
  265. int radeon_mode_dumb_mmap(struct drm_file *filp,
  266. struct drm_device *dev,
  267. uint32_t handle, uint64_t *offset_p);
  268. int radeon_mode_dumb_destroy(struct drm_file *file_priv,
  269. struct drm_device *dev,
  270. uint32_t handle);
  271. /*
  272. * GART structures, functions & helpers
  273. */
  274. struct radeon_mc;
  275. struct radeon_gart_table_ram {
  276. volatile uint32_t *ptr;
  277. };
  278. struct radeon_gart_table_vram {
  279. struct radeon_bo *robj;
  280. volatile uint32_t *ptr;
  281. };
  282. union radeon_gart_table {
  283. struct radeon_gart_table_ram ram;
  284. struct radeon_gart_table_vram vram;
  285. };
  286. #define RADEON_GPU_PAGE_SIZE 4096
  287. #define RADEON_GPU_PAGE_MASK (RADEON_GPU_PAGE_SIZE - 1)
  288. struct radeon_gart {
  289. dma_addr_t table_addr;
  290. unsigned num_gpu_pages;
  291. unsigned num_cpu_pages;
  292. unsigned table_size;
  293. union radeon_gart_table table;
  294. struct page **pages;
  295. dma_addr_t *pages_addr;
  296. bool *ttm_alloced;
  297. bool ready;
  298. };
  299. int radeon_gart_table_ram_alloc(struct radeon_device *rdev);
  300. void radeon_gart_table_ram_free(struct radeon_device *rdev);
  301. int radeon_gart_table_vram_alloc(struct radeon_device *rdev);
  302. void radeon_gart_table_vram_free(struct radeon_device *rdev);
  303. int radeon_gart_init(struct radeon_device *rdev);
  304. void radeon_gart_fini(struct radeon_device *rdev);
  305. void radeon_gart_unbind(struct radeon_device *rdev, unsigned offset,
  306. int pages);
  307. int radeon_gart_bind(struct radeon_device *rdev, unsigned offset,
  308. int pages, struct page **pagelist,
  309. dma_addr_t *dma_addr);
  310. /*
  311. * GPU MC structures, functions & helpers
  312. */
  313. struct radeon_mc {
  314. resource_size_t aper_size;
  315. resource_size_t aper_base;
  316. resource_size_t agp_base;
  317. /* for some chips with <= 32MB we need to lie
  318. * about vram size near mc fb location */
  319. u64 mc_vram_size;
  320. u64 visible_vram_size;
  321. u64 gtt_size;
  322. u64 gtt_start;
  323. u64 gtt_end;
  324. u64 vram_start;
  325. u64 vram_end;
  326. unsigned vram_width;
  327. u64 real_vram_size;
  328. int vram_mtrr;
  329. bool vram_is_ddr;
  330. bool igp_sideport_enabled;
  331. u64 gtt_base_align;
  332. };
  333. bool radeon_combios_sideport_present(struct radeon_device *rdev);
  334. bool radeon_atombios_sideport_present(struct radeon_device *rdev);
  335. /*
  336. * GPU scratch registers structures, functions & helpers
  337. */
  338. struct radeon_scratch {
  339. unsigned num_reg;
  340. uint32_t reg_base;
  341. bool free[32];
  342. uint32_t reg[32];
  343. };
  344. int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg);
  345. void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg);
  346. /*
  347. * IRQS.
  348. */
  349. struct radeon_unpin_work {
  350. struct work_struct work;
  351. struct radeon_device *rdev;
  352. int crtc_id;
  353. struct radeon_fence *fence;
  354. struct drm_pending_vblank_event *event;
  355. struct radeon_bo *old_rbo;
  356. u64 new_crtc_base;
  357. };
  358. struct r500_irq_stat_regs {
  359. u32 disp_int;
  360. };
  361. struct r600_irq_stat_regs {
  362. u32 disp_int;
  363. u32 disp_int_cont;
  364. u32 disp_int_cont2;
  365. u32 d1grph_int;
  366. u32 d2grph_int;
  367. };
  368. struct evergreen_irq_stat_regs {
  369. u32 disp_int;
  370. u32 disp_int_cont;
  371. u32 disp_int_cont2;
  372. u32 disp_int_cont3;
  373. u32 disp_int_cont4;
  374. u32 disp_int_cont5;
  375. u32 d1grph_int;
  376. u32 d2grph_int;
  377. u32 d3grph_int;
  378. u32 d4grph_int;
  379. u32 d5grph_int;
  380. u32 d6grph_int;
  381. };
  382. union radeon_irq_stat_regs {
  383. struct r500_irq_stat_regs r500;
  384. struct r600_irq_stat_regs r600;
  385. struct evergreen_irq_stat_regs evergreen;
  386. };
  387. struct radeon_irq {
  388. bool installed;
  389. bool sw_int;
  390. /* FIXME: use a define max crtc rather than hardcode it */
  391. bool crtc_vblank_int[6];
  392. bool pflip[6];
  393. wait_queue_head_t vblank_queue;
  394. /* FIXME: use defines for max hpd/dacs */
  395. bool hpd[6];
  396. bool gui_idle;
  397. bool gui_idle_acked;
  398. wait_queue_head_t idle_queue;
  399. /* FIXME: use defines for max HDMI blocks */
  400. bool hdmi[2];
  401. spinlock_t sw_lock;
  402. int sw_refcount;
  403. union radeon_irq_stat_regs stat_regs;
  404. spinlock_t pflip_lock[6];
  405. int pflip_refcount[6];
  406. };
  407. int radeon_irq_kms_init(struct radeon_device *rdev);
  408. void radeon_irq_kms_fini(struct radeon_device *rdev);
  409. void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev);
  410. void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev);
  411. void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc);
  412. void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc);
  413. /*
  414. * CP & ring.
  415. */
  416. struct radeon_ib {
  417. struct list_head list;
  418. unsigned idx;
  419. uint64_t gpu_addr;
  420. struct radeon_fence *fence;
  421. uint32_t *ptr;
  422. uint32_t length_dw;
  423. bool free;
  424. };
  425. /*
  426. * locking -
  427. * mutex protects scheduled_ibs, ready, alloc_bm
  428. */
  429. struct radeon_ib_pool {
  430. struct mutex mutex;
  431. struct radeon_bo *robj;
  432. struct list_head bogus_ib;
  433. struct radeon_ib ibs[RADEON_IB_POOL_SIZE];
  434. bool ready;
  435. unsigned head_id;
  436. };
  437. struct radeon_cp {
  438. struct radeon_bo *ring_obj;
  439. volatile uint32_t *ring;
  440. unsigned rptr;
  441. unsigned wptr;
  442. unsigned wptr_old;
  443. unsigned ring_size;
  444. unsigned ring_free_dw;
  445. int count_dw;
  446. uint64_t gpu_addr;
  447. uint32_t align_mask;
  448. uint32_t ptr_mask;
  449. struct mutex mutex;
  450. bool ready;
  451. };
  452. /*
  453. * R6xx+ IH ring
  454. */
  455. struct r600_ih {
  456. struct radeon_bo *ring_obj;
  457. volatile uint32_t *ring;
  458. unsigned rptr;
  459. unsigned wptr;
  460. unsigned wptr_old;
  461. unsigned ring_size;
  462. uint64_t gpu_addr;
  463. uint32_t ptr_mask;
  464. spinlock_t lock;
  465. bool enabled;
  466. };
  467. struct r600_blit {
  468. struct mutex mutex;
  469. struct radeon_bo *shader_obj;
  470. u64 shader_gpu_addr;
  471. u32 vs_offset, ps_offset;
  472. u32 state_offset;
  473. u32 state_len;
  474. u32 vb_used, vb_total;
  475. struct radeon_ib *vb_ib;
  476. };
  477. int radeon_ib_get(struct radeon_device *rdev, struct radeon_ib **ib);
  478. void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib **ib);
  479. int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib);
  480. int radeon_ib_pool_init(struct radeon_device *rdev);
  481. void radeon_ib_pool_fini(struct radeon_device *rdev);
  482. int radeon_ib_test(struct radeon_device *rdev);
  483. extern void radeon_ib_bogus_add(struct radeon_device *rdev, struct radeon_ib *ib);
  484. /* Ring access between begin & end cannot sleep */
  485. void radeon_ring_free_size(struct radeon_device *rdev);
  486. int radeon_ring_alloc(struct radeon_device *rdev, unsigned ndw);
  487. int radeon_ring_lock(struct radeon_device *rdev, unsigned ndw);
  488. void radeon_ring_commit(struct radeon_device *rdev);
  489. void radeon_ring_unlock_commit(struct radeon_device *rdev);
  490. void radeon_ring_unlock_undo(struct radeon_device *rdev);
  491. int radeon_ring_test(struct radeon_device *rdev);
  492. int radeon_ring_init(struct radeon_device *rdev, unsigned ring_size);
  493. void radeon_ring_fini(struct radeon_device *rdev);
  494. /*
  495. * CS.
  496. */
  497. struct radeon_cs_reloc {
  498. struct drm_gem_object *gobj;
  499. struct radeon_bo *robj;
  500. struct radeon_bo_list lobj;
  501. uint32_t handle;
  502. uint32_t flags;
  503. };
  504. struct radeon_cs_chunk {
  505. uint32_t chunk_id;
  506. uint32_t length_dw;
  507. int kpage_idx[2];
  508. uint32_t *kpage[2];
  509. uint32_t *kdata;
  510. void __user *user_ptr;
  511. int last_copied_page;
  512. int last_page_index;
  513. };
  514. struct radeon_cs_parser {
  515. struct device *dev;
  516. struct radeon_device *rdev;
  517. struct drm_file *filp;
  518. /* chunks */
  519. unsigned nchunks;
  520. struct radeon_cs_chunk *chunks;
  521. uint64_t *chunks_array;
  522. /* IB */
  523. unsigned idx;
  524. /* relocations */
  525. unsigned nrelocs;
  526. struct radeon_cs_reloc *relocs;
  527. struct radeon_cs_reloc **relocs_ptr;
  528. struct list_head validated;
  529. /* indices of various chunks */
  530. int chunk_ib_idx;
  531. int chunk_relocs_idx;
  532. struct radeon_ib *ib;
  533. void *track;
  534. unsigned family;
  535. int parser_error;
  536. };
  537. extern int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx);
  538. extern int radeon_cs_finish_pages(struct radeon_cs_parser *p);
  539. static inline u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx)
  540. {
  541. struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx];
  542. u32 pg_idx, pg_offset;
  543. u32 idx_value = 0;
  544. int new_page;
  545. pg_idx = (idx * 4) / PAGE_SIZE;
  546. pg_offset = (idx * 4) % PAGE_SIZE;
  547. if (ibc->kpage_idx[0] == pg_idx)
  548. return ibc->kpage[0][pg_offset/4];
  549. if (ibc->kpage_idx[1] == pg_idx)
  550. return ibc->kpage[1][pg_offset/4];
  551. new_page = radeon_cs_update_pages(p, pg_idx);
  552. if (new_page < 0) {
  553. p->parser_error = new_page;
  554. return 0;
  555. }
  556. idx_value = ibc->kpage[new_page][pg_offset/4];
  557. return idx_value;
  558. }
  559. struct radeon_cs_packet {
  560. unsigned idx;
  561. unsigned type;
  562. unsigned reg;
  563. unsigned opcode;
  564. int count;
  565. unsigned one_reg_wr;
  566. };
  567. typedef int (*radeon_packet0_check_t)(struct radeon_cs_parser *p,
  568. struct radeon_cs_packet *pkt,
  569. unsigned idx, unsigned reg);
  570. typedef int (*radeon_packet3_check_t)(struct radeon_cs_parser *p,
  571. struct radeon_cs_packet *pkt);
  572. /*
  573. * AGP
  574. */
  575. int radeon_agp_init(struct radeon_device *rdev);
  576. void radeon_agp_resume(struct radeon_device *rdev);
  577. void radeon_agp_suspend(struct radeon_device *rdev);
  578. void radeon_agp_fini(struct radeon_device *rdev);
  579. /*
  580. * Writeback
  581. */
  582. struct radeon_wb {
  583. struct radeon_bo *wb_obj;
  584. volatile uint32_t *wb;
  585. uint64_t gpu_addr;
  586. bool enabled;
  587. bool use_event;
  588. };
  589. #define RADEON_WB_SCRATCH_OFFSET 0
  590. #define RADEON_WB_CP_RPTR_OFFSET 1024
  591. #define RADEON_WB_CP1_RPTR_OFFSET 1280
  592. #define RADEON_WB_CP2_RPTR_OFFSET 1536
  593. #define R600_WB_IH_WPTR_OFFSET 2048
  594. #define R600_WB_EVENT_OFFSET 3072
  595. /**
  596. * struct radeon_pm - power management datas
  597. * @max_bandwidth: maximum bandwidth the gpu has (MByte/s)
  598. * @igp_sideport_mclk: sideport memory clock Mhz (rs690,rs740,rs780,rs880)
  599. * @igp_system_mclk: system clock Mhz (rs690,rs740,rs780,rs880)
  600. * @igp_ht_link_clk: ht link clock Mhz (rs690,rs740,rs780,rs880)
  601. * @igp_ht_link_width: ht link width in bits (rs690,rs740,rs780,rs880)
  602. * @k8_bandwidth: k8 bandwidth the gpu has (MByte/s) (IGP)
  603. * @sideport_bandwidth: sideport bandwidth the gpu has (MByte/s) (IGP)
  604. * @ht_bandwidth: ht bandwidth the gpu has (MByte/s) (IGP)
  605. * @core_bandwidth: core GPU bandwidth the gpu has (MByte/s) (IGP)
  606. * @sclk: GPU clock Mhz (core bandwith depends of this clock)
  607. * @needed_bandwidth: current bandwidth needs
  608. *
  609. * It keeps track of various data needed to take powermanagement decision.
  610. * Bandwith need is used to determine minimun clock of the GPU and memory.
  611. * Equation between gpu/memory clock and available bandwidth is hw dependent
  612. * (type of memory, bus size, efficiency, ...)
  613. */
  614. enum radeon_pm_method {
  615. PM_METHOD_PROFILE,
  616. PM_METHOD_DYNPM,
  617. };
  618. enum radeon_dynpm_state {
  619. DYNPM_STATE_DISABLED,
  620. DYNPM_STATE_MINIMUM,
  621. DYNPM_STATE_PAUSED,
  622. DYNPM_STATE_ACTIVE,
  623. DYNPM_STATE_SUSPENDED,
  624. };
  625. enum radeon_dynpm_action {
  626. DYNPM_ACTION_NONE,
  627. DYNPM_ACTION_MINIMUM,
  628. DYNPM_ACTION_DOWNCLOCK,
  629. DYNPM_ACTION_UPCLOCK,
  630. DYNPM_ACTION_DEFAULT
  631. };
  632. enum radeon_voltage_type {
  633. VOLTAGE_NONE = 0,
  634. VOLTAGE_GPIO,
  635. VOLTAGE_VDDC,
  636. VOLTAGE_SW
  637. };
  638. enum radeon_pm_state_type {
  639. POWER_STATE_TYPE_DEFAULT,
  640. POWER_STATE_TYPE_POWERSAVE,
  641. POWER_STATE_TYPE_BATTERY,
  642. POWER_STATE_TYPE_BALANCED,
  643. POWER_STATE_TYPE_PERFORMANCE,
  644. };
  645. enum radeon_pm_profile_type {
  646. PM_PROFILE_DEFAULT,
  647. PM_PROFILE_AUTO,
  648. PM_PROFILE_LOW,
  649. PM_PROFILE_MID,
  650. PM_PROFILE_HIGH,
  651. };
  652. #define PM_PROFILE_DEFAULT_IDX 0
  653. #define PM_PROFILE_LOW_SH_IDX 1
  654. #define PM_PROFILE_MID_SH_IDX 2
  655. #define PM_PROFILE_HIGH_SH_IDX 3
  656. #define PM_PROFILE_LOW_MH_IDX 4
  657. #define PM_PROFILE_MID_MH_IDX 5
  658. #define PM_PROFILE_HIGH_MH_IDX 6
  659. #define PM_PROFILE_MAX 7
  660. struct radeon_pm_profile {
  661. int dpms_off_ps_idx;
  662. int dpms_on_ps_idx;
  663. int dpms_off_cm_idx;
  664. int dpms_on_cm_idx;
  665. };
  666. enum radeon_int_thermal_type {
  667. THERMAL_TYPE_NONE,
  668. THERMAL_TYPE_RV6XX,
  669. THERMAL_TYPE_RV770,
  670. THERMAL_TYPE_EVERGREEN,
  671. THERMAL_TYPE_SUMO,
  672. THERMAL_TYPE_NI,
  673. };
  674. struct radeon_voltage {
  675. enum radeon_voltage_type type;
  676. /* gpio voltage */
  677. struct radeon_gpio_rec gpio;
  678. u32 delay; /* delay in usec from voltage drop to sclk change */
  679. bool active_high; /* voltage drop is active when bit is high */
  680. /* VDDC voltage */
  681. u8 vddc_id; /* index into vddc voltage table */
  682. u8 vddci_id; /* index into vddci voltage table */
  683. bool vddci_enabled;
  684. /* r6xx+ sw */
  685. u32 voltage;
  686. };
  687. /* clock mode flags */
  688. #define RADEON_PM_MODE_NO_DISPLAY (1 << 0)
  689. struct radeon_pm_clock_info {
  690. /* memory clock */
  691. u32 mclk;
  692. /* engine clock */
  693. u32 sclk;
  694. /* voltage info */
  695. struct radeon_voltage voltage;
  696. /* standardized clock flags */
  697. u32 flags;
  698. };
  699. /* state flags */
  700. #define RADEON_PM_STATE_SINGLE_DISPLAY_ONLY (1 << 0)
  701. struct radeon_power_state {
  702. enum radeon_pm_state_type type;
  703. /* XXX: use a define for num clock modes */
  704. struct radeon_pm_clock_info clock_info[8];
  705. /* number of valid clock modes in this power state */
  706. int num_clock_modes;
  707. struct radeon_pm_clock_info *default_clock_mode;
  708. /* standardized state flags */
  709. u32 flags;
  710. u32 misc; /* vbios specific flags */
  711. u32 misc2; /* vbios specific flags */
  712. int pcie_lanes; /* pcie lanes */
  713. };
  714. /*
  715. * Some modes are overclocked by very low value, accept them
  716. */
  717. #define RADEON_MODE_OVERCLOCK_MARGIN 500 /* 5 MHz */
  718. struct radeon_pm {
  719. struct mutex mutex;
  720. u32 active_crtcs;
  721. int active_crtc_count;
  722. int req_vblank;
  723. bool vblank_sync;
  724. bool gui_idle;
  725. fixed20_12 max_bandwidth;
  726. fixed20_12 igp_sideport_mclk;
  727. fixed20_12 igp_system_mclk;
  728. fixed20_12 igp_ht_link_clk;
  729. fixed20_12 igp_ht_link_width;
  730. fixed20_12 k8_bandwidth;
  731. fixed20_12 sideport_bandwidth;
  732. fixed20_12 ht_bandwidth;
  733. fixed20_12 core_bandwidth;
  734. fixed20_12 sclk;
  735. fixed20_12 mclk;
  736. fixed20_12 needed_bandwidth;
  737. struct radeon_power_state *power_state;
  738. /* number of valid power states */
  739. int num_power_states;
  740. int current_power_state_index;
  741. int current_clock_mode_index;
  742. int requested_power_state_index;
  743. int requested_clock_mode_index;
  744. int default_power_state_index;
  745. u32 current_sclk;
  746. u32 current_mclk;
  747. u32 current_vddc;
  748. u32 default_sclk;
  749. u32 default_mclk;
  750. u32 default_vddc;
  751. struct radeon_i2c_chan *i2c_bus;
  752. /* selected pm method */
  753. enum radeon_pm_method pm_method;
  754. /* dynpm power management */
  755. struct delayed_work dynpm_idle_work;
  756. enum radeon_dynpm_state dynpm_state;
  757. enum radeon_dynpm_action dynpm_planned_action;
  758. unsigned long dynpm_action_timeout;
  759. bool dynpm_can_upclock;
  760. bool dynpm_can_downclock;
  761. /* profile-based power management */
  762. enum radeon_pm_profile_type profile;
  763. int profile_index;
  764. struct radeon_pm_profile profiles[PM_PROFILE_MAX];
  765. /* internal thermal controller on rv6xx+ */
  766. enum radeon_int_thermal_type int_thermal_type;
  767. struct device *int_hwmon_dev;
  768. };
  769. /*
  770. * Benchmarking
  771. */
  772. void radeon_benchmark(struct radeon_device *rdev);
  773. /*
  774. * Testing
  775. */
  776. void radeon_test_moves(struct radeon_device *rdev);
  777. /*
  778. * Debugfs
  779. */
  780. int radeon_debugfs_add_files(struct radeon_device *rdev,
  781. struct drm_info_list *files,
  782. unsigned nfiles);
  783. int radeon_debugfs_fence_init(struct radeon_device *rdev);
  784. /*
  785. * ASIC specific functions.
  786. */
  787. struct radeon_asic {
  788. int (*init)(struct radeon_device *rdev);
  789. void (*fini)(struct radeon_device *rdev);
  790. int (*resume)(struct radeon_device *rdev);
  791. int (*suspend)(struct radeon_device *rdev);
  792. void (*vga_set_state)(struct radeon_device *rdev, bool state);
  793. bool (*gpu_is_lockup)(struct radeon_device *rdev);
  794. int (*asic_reset)(struct radeon_device *rdev);
  795. void (*gart_tlb_flush)(struct radeon_device *rdev);
  796. int (*gart_set_page)(struct radeon_device *rdev, int i, uint64_t addr);
  797. int (*cp_init)(struct radeon_device *rdev, unsigned ring_size);
  798. void (*cp_fini)(struct radeon_device *rdev);
  799. void (*cp_disable)(struct radeon_device *rdev);
  800. void (*cp_commit)(struct radeon_device *rdev);
  801. void (*ring_start)(struct radeon_device *rdev);
  802. int (*ring_test)(struct radeon_device *rdev);
  803. void (*ring_ib_execute)(struct radeon_device *rdev, struct radeon_ib *ib);
  804. int (*irq_set)(struct radeon_device *rdev);
  805. int (*irq_process)(struct radeon_device *rdev);
  806. u32 (*get_vblank_counter)(struct radeon_device *rdev, int crtc);
  807. void (*fence_ring_emit)(struct radeon_device *rdev, struct radeon_fence *fence);
  808. int (*cs_parse)(struct radeon_cs_parser *p);
  809. int (*copy_blit)(struct radeon_device *rdev,
  810. uint64_t src_offset,
  811. uint64_t dst_offset,
  812. unsigned num_pages,
  813. struct radeon_fence *fence);
  814. int (*copy_dma)(struct radeon_device *rdev,
  815. uint64_t src_offset,
  816. uint64_t dst_offset,
  817. unsigned num_pages,
  818. struct radeon_fence *fence);
  819. int (*copy)(struct radeon_device *rdev,
  820. uint64_t src_offset,
  821. uint64_t dst_offset,
  822. unsigned num_pages,
  823. struct radeon_fence *fence);
  824. uint32_t (*get_engine_clock)(struct radeon_device *rdev);
  825. void (*set_engine_clock)(struct radeon_device *rdev, uint32_t eng_clock);
  826. uint32_t (*get_memory_clock)(struct radeon_device *rdev);
  827. void (*set_memory_clock)(struct radeon_device *rdev, uint32_t mem_clock);
  828. int (*get_pcie_lanes)(struct radeon_device *rdev);
  829. void (*set_pcie_lanes)(struct radeon_device *rdev, int lanes);
  830. void (*set_clock_gating)(struct radeon_device *rdev, int enable);
  831. int (*set_surface_reg)(struct radeon_device *rdev, int reg,
  832. uint32_t tiling_flags, uint32_t pitch,
  833. uint32_t offset, uint32_t obj_size);
  834. void (*clear_surface_reg)(struct radeon_device *rdev, int reg);
  835. void (*bandwidth_update)(struct radeon_device *rdev);
  836. void (*hpd_init)(struct radeon_device *rdev);
  837. void (*hpd_fini)(struct radeon_device *rdev);
  838. bool (*hpd_sense)(struct radeon_device *rdev, enum radeon_hpd_id hpd);
  839. void (*hpd_set_polarity)(struct radeon_device *rdev, enum radeon_hpd_id hpd);
  840. /* ioctl hw specific callback. Some hw might want to perform special
  841. * operation on specific ioctl. For instance on wait idle some hw
  842. * might want to perform and HDP flush through MMIO as it seems that
  843. * some R6XX/R7XX hw doesn't take HDP flush into account if programmed
  844. * through ring.
  845. */
  846. void (*ioctl_wait_idle)(struct radeon_device *rdev, struct radeon_bo *bo);
  847. bool (*gui_idle)(struct radeon_device *rdev);
  848. /* power management */
  849. void (*pm_misc)(struct radeon_device *rdev);
  850. void (*pm_prepare)(struct radeon_device *rdev);
  851. void (*pm_finish)(struct radeon_device *rdev);
  852. void (*pm_init_profile)(struct radeon_device *rdev);
  853. void (*pm_get_dynpm_state)(struct radeon_device *rdev);
  854. /* pageflipping */
  855. void (*pre_page_flip)(struct radeon_device *rdev, int crtc);
  856. u32 (*page_flip)(struct radeon_device *rdev, int crtc, u64 crtc_base);
  857. void (*post_page_flip)(struct radeon_device *rdev, int crtc);
  858. };
  859. /*
  860. * Asic structures
  861. */
  862. struct r100_gpu_lockup {
  863. unsigned long last_jiffies;
  864. u32 last_cp_rptr;
  865. };
  866. struct r100_asic {
  867. const unsigned *reg_safe_bm;
  868. unsigned reg_safe_bm_size;
  869. u32 hdp_cntl;
  870. struct r100_gpu_lockup lockup;
  871. };
  872. struct r300_asic {
  873. const unsigned *reg_safe_bm;
  874. unsigned reg_safe_bm_size;
  875. u32 resync_scratch;
  876. u32 hdp_cntl;
  877. struct r100_gpu_lockup lockup;
  878. };
  879. struct r600_asic {
  880. unsigned max_pipes;
  881. unsigned max_tile_pipes;
  882. unsigned max_simds;
  883. unsigned max_backends;
  884. unsigned max_gprs;
  885. unsigned max_threads;
  886. unsigned max_stack_entries;
  887. unsigned max_hw_contexts;
  888. unsigned max_gs_threads;
  889. unsigned sx_max_export_size;
  890. unsigned sx_max_export_pos_size;
  891. unsigned sx_max_export_smx_size;
  892. unsigned sq_num_cf_insts;
  893. unsigned tiling_nbanks;
  894. unsigned tiling_npipes;
  895. unsigned tiling_group_size;
  896. unsigned tile_config;
  897. struct r100_gpu_lockup lockup;
  898. };
  899. struct rv770_asic {
  900. unsigned max_pipes;
  901. unsigned max_tile_pipes;
  902. unsigned max_simds;
  903. unsigned max_backends;
  904. unsigned max_gprs;
  905. unsigned max_threads;
  906. unsigned max_stack_entries;
  907. unsigned max_hw_contexts;
  908. unsigned max_gs_threads;
  909. unsigned sx_max_export_size;
  910. unsigned sx_max_export_pos_size;
  911. unsigned sx_max_export_smx_size;
  912. unsigned sq_num_cf_insts;
  913. unsigned sx_num_of_sets;
  914. unsigned sc_prim_fifo_size;
  915. unsigned sc_hiz_tile_fifo_size;
  916. unsigned sc_earlyz_tile_fifo_fize;
  917. unsigned tiling_nbanks;
  918. unsigned tiling_npipes;
  919. unsigned tiling_group_size;
  920. unsigned tile_config;
  921. struct r100_gpu_lockup lockup;
  922. };
  923. struct evergreen_asic {
  924. unsigned num_ses;
  925. unsigned max_pipes;
  926. unsigned max_tile_pipes;
  927. unsigned max_simds;
  928. unsigned max_backends;
  929. unsigned max_gprs;
  930. unsigned max_threads;
  931. unsigned max_stack_entries;
  932. unsigned max_hw_contexts;
  933. unsigned max_gs_threads;
  934. unsigned sx_max_export_size;
  935. unsigned sx_max_export_pos_size;
  936. unsigned sx_max_export_smx_size;
  937. unsigned sq_num_cf_insts;
  938. unsigned sx_num_of_sets;
  939. unsigned sc_prim_fifo_size;
  940. unsigned sc_hiz_tile_fifo_size;
  941. unsigned sc_earlyz_tile_fifo_size;
  942. unsigned tiling_nbanks;
  943. unsigned tiling_npipes;
  944. unsigned tiling_group_size;
  945. unsigned tile_config;
  946. struct r100_gpu_lockup lockup;
  947. };
  948. struct cayman_asic {
  949. unsigned max_shader_engines;
  950. unsigned max_pipes_per_simd;
  951. unsigned max_tile_pipes;
  952. unsigned max_simds_per_se;
  953. unsigned max_backends_per_se;
  954. unsigned max_texture_channel_caches;
  955. unsigned max_gprs;
  956. unsigned max_threads;
  957. unsigned max_gs_threads;
  958. unsigned max_stack_entries;
  959. unsigned sx_num_of_sets;
  960. unsigned sx_max_export_size;
  961. unsigned sx_max_export_pos_size;
  962. unsigned sx_max_export_smx_size;
  963. unsigned max_hw_contexts;
  964. unsigned sq_num_cf_insts;
  965. unsigned sc_prim_fifo_size;
  966. unsigned sc_hiz_tile_fifo_size;
  967. unsigned sc_earlyz_tile_fifo_size;
  968. unsigned num_shader_engines;
  969. unsigned num_shader_pipes_per_simd;
  970. unsigned num_tile_pipes;
  971. unsigned num_simds_per_se;
  972. unsigned num_backends_per_se;
  973. unsigned backend_disable_mask_per_asic;
  974. unsigned backend_map;
  975. unsigned num_texture_channel_caches;
  976. unsigned mem_max_burst_length_bytes;
  977. unsigned mem_row_size_in_kb;
  978. unsigned shader_engine_tile_size;
  979. unsigned num_gpus;
  980. unsigned multi_gpu_tile_size;
  981. unsigned tile_config;
  982. struct r100_gpu_lockup lockup;
  983. };
  984. union radeon_asic_config {
  985. struct r300_asic r300;
  986. struct r100_asic r100;
  987. struct r600_asic r600;
  988. struct rv770_asic rv770;
  989. struct evergreen_asic evergreen;
  990. struct cayman_asic cayman;
  991. };
  992. /*
  993. * asic initizalization from radeon_asic.c
  994. */
  995. void radeon_agp_disable(struct radeon_device *rdev);
  996. int radeon_asic_init(struct radeon_device *rdev);
  997. /*
  998. * IOCTL.
  999. */
  1000. int radeon_gem_info_ioctl(struct drm_device *dev, void *data,
  1001. struct drm_file *filp);
  1002. int radeon_gem_create_ioctl(struct drm_device *dev, void *data,
  1003. struct drm_file *filp);
  1004. int radeon_gem_pin_ioctl(struct drm_device *dev, void *data,
  1005. struct drm_file *file_priv);
  1006. int radeon_gem_unpin_ioctl(struct drm_device *dev, void *data,
  1007. struct drm_file *file_priv);
  1008. int radeon_gem_pwrite_ioctl(struct drm_device *dev, void *data,
  1009. struct drm_file *file_priv);
  1010. int radeon_gem_pread_ioctl(struct drm_device *dev, void *data,
  1011. struct drm_file *file_priv);
  1012. int radeon_gem_set_domain_ioctl(struct drm_device *dev, void *data,
  1013. struct drm_file *filp);
  1014. int radeon_gem_mmap_ioctl(struct drm_device *dev, void *data,
  1015. struct drm_file *filp);
  1016. int radeon_gem_busy_ioctl(struct drm_device *dev, void *data,
  1017. struct drm_file *filp);
  1018. int radeon_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
  1019. struct drm_file *filp);
  1020. int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
  1021. int radeon_gem_set_tiling_ioctl(struct drm_device *dev, void *data,
  1022. struct drm_file *filp);
  1023. int radeon_gem_get_tiling_ioctl(struct drm_device *dev, void *data,
  1024. struct drm_file *filp);
  1025. /* VRAM scratch page for HDP bug */
  1026. struct r700_vram_scratch {
  1027. struct radeon_bo *robj;
  1028. volatile uint32_t *ptr;
  1029. };
  1030. /*
  1031. * Core structure, functions and helpers.
  1032. */
  1033. typedef uint32_t (*radeon_rreg_t)(struct radeon_device*, uint32_t);
  1034. typedef void (*radeon_wreg_t)(struct radeon_device*, uint32_t, uint32_t);
  1035. struct radeon_device {
  1036. struct device *dev;
  1037. struct drm_device *ddev;
  1038. struct pci_dev *pdev;
  1039. /* ASIC */
  1040. union radeon_asic_config config;
  1041. enum radeon_family family;
  1042. unsigned long flags;
  1043. int usec_timeout;
  1044. enum radeon_pll_errata pll_errata;
  1045. int num_gb_pipes;
  1046. int num_z_pipes;
  1047. int disp_priority;
  1048. /* BIOS */
  1049. uint8_t *bios;
  1050. bool is_atom_bios;
  1051. uint16_t bios_header_start;
  1052. struct radeon_bo *stollen_vga_memory;
  1053. /* Register mmio */
  1054. resource_size_t rmmio_base;
  1055. resource_size_t rmmio_size;
  1056. void *rmmio;
  1057. radeon_rreg_t mc_rreg;
  1058. radeon_wreg_t mc_wreg;
  1059. radeon_rreg_t pll_rreg;
  1060. radeon_wreg_t pll_wreg;
  1061. uint32_t pcie_reg_mask;
  1062. radeon_rreg_t pciep_rreg;
  1063. radeon_wreg_t pciep_wreg;
  1064. /* io port */
  1065. void __iomem *rio_mem;
  1066. resource_size_t rio_mem_size;
  1067. struct radeon_clock clock;
  1068. struct radeon_mc mc;
  1069. struct radeon_gart gart;
  1070. struct radeon_mode_info mode_info;
  1071. struct radeon_scratch scratch;
  1072. struct radeon_mman mman;
  1073. struct radeon_fence_driver fence_drv;
  1074. struct radeon_cp cp;
  1075. /* cayman compute rings */
  1076. struct radeon_cp cp1;
  1077. struct radeon_cp cp2;
  1078. struct radeon_ib_pool ib_pool;
  1079. struct radeon_irq irq;
  1080. struct radeon_asic *asic;
  1081. struct radeon_gem gem;
  1082. struct radeon_pm pm;
  1083. uint32_t bios_scratch[RADEON_BIOS_NUM_SCRATCH];
  1084. struct mutex cs_mutex;
  1085. struct radeon_wb wb;
  1086. struct radeon_dummy_page dummy_page;
  1087. bool gpu_lockup;
  1088. bool shutdown;
  1089. bool suspend;
  1090. bool need_dma32;
  1091. bool accel_working;
  1092. struct radeon_surface_reg surface_regs[RADEON_GEM_MAX_SURFACES];
  1093. const struct firmware *me_fw; /* all family ME firmware */
  1094. const struct firmware *pfp_fw; /* r6/700 PFP firmware */
  1095. const struct firmware *rlc_fw; /* r6/700 RLC firmware */
  1096. const struct firmware *mc_fw; /* NI MC firmware */
  1097. struct r600_blit r600_blit;
  1098. struct r700_vram_scratch vram_scratch;
  1099. int msi_enabled; /* msi enabled */
  1100. struct r600_ih ih; /* r6/700 interrupt ring */
  1101. struct work_struct hotplug_work;
  1102. int num_crtc; /* number of crtcs */
  1103. struct mutex dc_hw_i2c_mutex; /* display controller hw i2c mutex */
  1104. struct mutex vram_mutex;
  1105. /* audio stuff */
  1106. bool audio_enabled;
  1107. struct timer_list audio_timer;
  1108. int audio_channels;
  1109. int audio_rate;
  1110. int audio_bits_per_sample;
  1111. uint8_t audio_status_bits;
  1112. uint8_t audio_category_code;
  1113. struct notifier_block acpi_nb;
  1114. /* only one userspace can use Hyperz features or CMASK at a time */
  1115. struct drm_file *hyperz_filp;
  1116. struct drm_file *cmask_filp;
  1117. /* i2c buses */
  1118. struct radeon_i2c_chan *i2c_bus[RADEON_MAX_I2C_BUS];
  1119. };
  1120. int radeon_device_init(struct radeon_device *rdev,
  1121. struct drm_device *ddev,
  1122. struct pci_dev *pdev,
  1123. uint32_t flags);
  1124. void radeon_device_fini(struct radeon_device *rdev);
  1125. int radeon_gpu_wait_for_idle(struct radeon_device *rdev);
  1126. static inline uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg)
  1127. {
  1128. if (reg < rdev->rmmio_size)
  1129. return readl(((void __iomem *)rdev->rmmio) + reg);
  1130. else {
  1131. writel(reg, ((void __iomem *)rdev->rmmio) + RADEON_MM_INDEX);
  1132. return readl(((void __iomem *)rdev->rmmio) + RADEON_MM_DATA);
  1133. }
  1134. }
  1135. static inline void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v)
  1136. {
  1137. if (reg < rdev->rmmio_size)
  1138. writel(v, ((void __iomem *)rdev->rmmio) + reg);
  1139. else {
  1140. writel(reg, ((void __iomem *)rdev->rmmio) + RADEON_MM_INDEX);
  1141. writel(v, ((void __iomem *)rdev->rmmio) + RADEON_MM_DATA);
  1142. }
  1143. }
  1144. static inline u32 r100_io_rreg(struct radeon_device *rdev, u32 reg)
  1145. {
  1146. if (reg < rdev->rio_mem_size)
  1147. return ioread32(rdev->rio_mem + reg);
  1148. else {
  1149. iowrite32(reg, rdev->rio_mem + RADEON_MM_INDEX);
  1150. return ioread32(rdev->rio_mem + RADEON_MM_DATA);
  1151. }
  1152. }
  1153. static inline void r100_io_wreg(struct radeon_device *rdev, u32 reg, u32 v)
  1154. {
  1155. if (reg < rdev->rio_mem_size)
  1156. iowrite32(v, rdev->rio_mem + reg);
  1157. else {
  1158. iowrite32(reg, rdev->rio_mem + RADEON_MM_INDEX);
  1159. iowrite32(v, rdev->rio_mem + RADEON_MM_DATA);
  1160. }
  1161. }
  1162. /*
  1163. * Cast helper
  1164. */
  1165. #define to_radeon_fence(p) ((struct radeon_fence *)(p))
  1166. /*
  1167. * Registers read & write functions.
  1168. */
  1169. #define RREG8(reg) readb(((void __iomem *)rdev->rmmio) + (reg))
  1170. #define WREG8(reg, v) writeb(v, ((void __iomem *)rdev->rmmio) + (reg))
  1171. #define RREG16(reg) readw(((void __iomem *)rdev->rmmio) + (reg))
  1172. #define WREG16(reg, v) writew(v, ((void __iomem *)rdev->rmmio) + (reg))
  1173. #define RREG32(reg) r100_mm_rreg(rdev, (reg))
  1174. #define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", r100_mm_rreg(rdev, (reg)))
  1175. #define WREG32(reg, v) r100_mm_wreg(rdev, (reg), (v))
  1176. #define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
  1177. #define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
  1178. #define RREG32_PLL(reg) rdev->pll_rreg(rdev, (reg))
  1179. #define WREG32_PLL(reg, v) rdev->pll_wreg(rdev, (reg), (v))
  1180. #define RREG32_MC(reg) rdev->mc_rreg(rdev, (reg))
  1181. #define WREG32_MC(reg, v) rdev->mc_wreg(rdev, (reg), (v))
  1182. #define RREG32_PCIE(reg) rv370_pcie_rreg(rdev, (reg))
  1183. #define WREG32_PCIE(reg, v) rv370_pcie_wreg(rdev, (reg), (v))
  1184. #define RREG32_PCIE_P(reg) rdev->pciep_rreg(rdev, (reg))
  1185. #define WREG32_PCIE_P(reg, v) rdev->pciep_wreg(rdev, (reg), (v))
  1186. #define WREG32_P(reg, val, mask) \
  1187. do { \
  1188. uint32_t tmp_ = RREG32(reg); \
  1189. tmp_ &= (mask); \
  1190. tmp_ |= ((val) & ~(mask)); \
  1191. WREG32(reg, tmp_); \
  1192. } while (0)
  1193. #define WREG32_PLL_P(reg, val, mask) \
  1194. do { \
  1195. uint32_t tmp_ = RREG32_PLL(reg); \
  1196. tmp_ &= (mask); \
  1197. tmp_ |= ((val) & ~(mask)); \
  1198. WREG32_PLL(reg, tmp_); \
  1199. } while (0)
  1200. #define DREG32_SYS(sqf, rdev, reg) seq_printf((sqf), #reg " : 0x%08X\n", r100_mm_rreg((rdev), (reg)))
  1201. #define RREG32_IO(reg) r100_io_rreg(rdev, (reg))
  1202. #define WREG32_IO(reg, v) r100_io_wreg(rdev, (reg), (v))
  1203. /*
  1204. * Indirect registers accessor
  1205. */
  1206. static inline uint32_t rv370_pcie_rreg(struct radeon_device *rdev, uint32_t reg)
  1207. {
  1208. uint32_t r;
  1209. WREG32(RADEON_PCIE_INDEX, ((reg) & rdev->pcie_reg_mask));
  1210. r = RREG32(RADEON_PCIE_DATA);
  1211. return r;
  1212. }
  1213. static inline void rv370_pcie_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v)
  1214. {
  1215. WREG32(RADEON_PCIE_INDEX, ((reg) & rdev->pcie_reg_mask));
  1216. WREG32(RADEON_PCIE_DATA, (v));
  1217. }
  1218. void r100_pll_errata_after_index(struct radeon_device *rdev);
  1219. /*
  1220. * ASICs helpers.
  1221. */
  1222. #define ASIC_IS_RN50(rdev) ((rdev->pdev->device == 0x515e) || \
  1223. (rdev->pdev->device == 0x5969))
  1224. #define ASIC_IS_RV100(rdev) ((rdev->family == CHIP_RV100) || \
  1225. (rdev->family == CHIP_RV200) || \
  1226. (rdev->family == CHIP_RS100) || \
  1227. (rdev->family == CHIP_RS200) || \
  1228. (rdev->family == CHIP_RV250) || \
  1229. (rdev->family == CHIP_RV280) || \
  1230. (rdev->family == CHIP_RS300))
  1231. #define ASIC_IS_R300(rdev) ((rdev->family == CHIP_R300) || \
  1232. (rdev->family == CHIP_RV350) || \
  1233. (rdev->family == CHIP_R350) || \
  1234. (rdev->family == CHIP_RV380) || \
  1235. (rdev->family == CHIP_R420) || \
  1236. (rdev->family == CHIP_R423) || \
  1237. (rdev->family == CHIP_RV410) || \
  1238. (rdev->family == CHIP_RS400) || \
  1239. (rdev->family == CHIP_RS480))
  1240. #define ASIC_IS_X2(rdev) ((rdev->ddev->pdev->device == 0x9441) || \
  1241. (rdev->ddev->pdev->device == 0x9443) || \
  1242. (rdev->ddev->pdev->device == 0x944B) || \
  1243. (rdev->ddev->pdev->device == 0x9506) || \
  1244. (rdev->ddev->pdev->device == 0x9509) || \
  1245. (rdev->ddev->pdev->device == 0x950F) || \
  1246. (rdev->ddev->pdev->device == 0x689C) || \
  1247. (rdev->ddev->pdev->device == 0x689D))
  1248. #define ASIC_IS_AVIVO(rdev) ((rdev->family >= CHIP_RS600))
  1249. #define ASIC_IS_DCE2(rdev) ((rdev->family == CHIP_RS600) || \
  1250. (rdev->family == CHIP_RS690) || \
  1251. (rdev->family == CHIP_RS740) || \
  1252. (rdev->family >= CHIP_R600))
  1253. #define ASIC_IS_DCE3(rdev) ((rdev->family >= CHIP_RV620))
  1254. #define ASIC_IS_DCE32(rdev) ((rdev->family >= CHIP_RV730))
  1255. #define ASIC_IS_DCE4(rdev) ((rdev->family >= CHIP_CEDAR))
  1256. #define ASIC_IS_DCE41(rdev) ((rdev->family >= CHIP_PALM) && \
  1257. (rdev->flags & RADEON_IS_IGP))
  1258. #define ASIC_IS_DCE5(rdev) ((rdev->family >= CHIP_BARTS))
  1259. /*
  1260. * BIOS helpers.
  1261. */
  1262. #define RBIOS8(i) (rdev->bios[i])
  1263. #define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
  1264. #define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
  1265. int radeon_combios_init(struct radeon_device *rdev);
  1266. void radeon_combios_fini(struct radeon_device *rdev);
  1267. int radeon_atombios_init(struct radeon_device *rdev);
  1268. void radeon_atombios_fini(struct radeon_device *rdev);
  1269. /*
  1270. * RING helpers.
  1271. */
  1272. static inline void radeon_ring_write(struct radeon_device *rdev, uint32_t v)
  1273. {
  1274. #if DRM_DEBUG_CODE
  1275. if (rdev->cp.count_dw <= 0) {
  1276. DRM_ERROR("radeon: writting more dword to ring than expected !\n");
  1277. }
  1278. #endif
  1279. rdev->cp.ring[rdev->cp.wptr++] = v;
  1280. rdev->cp.wptr &= rdev->cp.ptr_mask;
  1281. rdev->cp.count_dw--;
  1282. rdev->cp.ring_free_dw--;
  1283. }
  1284. /*
  1285. * ASICs macro.
  1286. */
  1287. #define radeon_init(rdev) (rdev)->asic->init((rdev))
  1288. #define radeon_fini(rdev) (rdev)->asic->fini((rdev))
  1289. #define radeon_resume(rdev) (rdev)->asic->resume((rdev))
  1290. #define radeon_suspend(rdev) (rdev)->asic->suspend((rdev))
  1291. #define radeon_cs_parse(p) rdev->asic->cs_parse((p))
  1292. #define radeon_vga_set_state(rdev, state) (rdev)->asic->vga_set_state((rdev), (state))
  1293. #define radeon_gpu_is_lockup(rdev) (rdev)->asic->gpu_is_lockup((rdev))
  1294. #define radeon_asic_reset(rdev) (rdev)->asic->asic_reset((rdev))
  1295. #define radeon_gart_tlb_flush(rdev) (rdev)->asic->gart_tlb_flush((rdev))
  1296. #define radeon_gart_set_page(rdev, i, p) (rdev)->asic->gart_set_page((rdev), (i), (p))
  1297. #define radeon_cp_commit(rdev) (rdev)->asic->cp_commit((rdev))
  1298. #define radeon_ring_start(rdev) (rdev)->asic->ring_start((rdev))
  1299. #define radeon_ring_test(rdev) (rdev)->asic->ring_test((rdev))
  1300. #define radeon_ring_ib_execute(rdev, ib) (rdev)->asic->ring_ib_execute((rdev), (ib))
  1301. #define radeon_irq_set(rdev) (rdev)->asic->irq_set((rdev))
  1302. #define radeon_irq_process(rdev) (rdev)->asic->irq_process((rdev))
  1303. #define radeon_get_vblank_counter(rdev, crtc) (rdev)->asic->get_vblank_counter((rdev), (crtc))
  1304. #define radeon_fence_ring_emit(rdev, fence) (rdev)->asic->fence_ring_emit((rdev), (fence))
  1305. #define radeon_copy_blit(rdev, s, d, np, f) (rdev)->asic->copy_blit((rdev), (s), (d), (np), (f))
  1306. #define radeon_copy_dma(rdev, s, d, np, f) (rdev)->asic->copy_dma((rdev), (s), (d), (np), (f))
  1307. #define radeon_copy(rdev, s, d, np, f) (rdev)->asic->copy((rdev), (s), (d), (np), (f))
  1308. #define radeon_get_engine_clock(rdev) (rdev)->asic->get_engine_clock((rdev))
  1309. #define radeon_set_engine_clock(rdev, e) (rdev)->asic->set_engine_clock((rdev), (e))
  1310. #define radeon_get_memory_clock(rdev) (rdev)->asic->get_memory_clock((rdev))
  1311. #define radeon_set_memory_clock(rdev, e) (rdev)->asic->set_memory_clock((rdev), (e))
  1312. #define radeon_get_pcie_lanes(rdev) (rdev)->asic->get_pcie_lanes((rdev))
  1313. #define radeon_set_pcie_lanes(rdev, l) (rdev)->asic->set_pcie_lanes((rdev), (l))
  1314. #define radeon_set_clock_gating(rdev, e) (rdev)->asic->set_clock_gating((rdev), (e))
  1315. #define radeon_set_surface_reg(rdev, r, f, p, o, s) ((rdev)->asic->set_surface_reg((rdev), (r), (f), (p), (o), (s)))
  1316. #define radeon_clear_surface_reg(rdev, r) ((rdev)->asic->clear_surface_reg((rdev), (r)))
  1317. #define radeon_bandwidth_update(rdev) (rdev)->asic->bandwidth_update((rdev))
  1318. #define radeon_hpd_init(rdev) (rdev)->asic->hpd_init((rdev))
  1319. #define radeon_hpd_fini(rdev) (rdev)->asic->hpd_fini((rdev))
  1320. #define radeon_hpd_sense(rdev, hpd) (rdev)->asic->hpd_sense((rdev), (hpd))
  1321. #define radeon_hpd_set_polarity(rdev, hpd) (rdev)->asic->hpd_set_polarity((rdev), (hpd))
  1322. #define radeon_gui_idle(rdev) (rdev)->asic->gui_idle((rdev))
  1323. #define radeon_pm_misc(rdev) (rdev)->asic->pm_misc((rdev))
  1324. #define radeon_pm_prepare(rdev) (rdev)->asic->pm_prepare((rdev))
  1325. #define radeon_pm_finish(rdev) (rdev)->asic->pm_finish((rdev))
  1326. #define radeon_pm_init_profile(rdev) (rdev)->asic->pm_init_profile((rdev))
  1327. #define radeon_pm_get_dynpm_state(rdev) (rdev)->asic->pm_get_dynpm_state((rdev))
  1328. #define radeon_pre_page_flip(rdev, crtc) rdev->asic->pre_page_flip((rdev), (crtc))
  1329. #define radeon_page_flip(rdev, crtc, base) rdev->asic->page_flip((rdev), (crtc), (base))
  1330. #define radeon_post_page_flip(rdev, crtc) rdev->asic->post_page_flip((rdev), (crtc))
  1331. /* Common functions */
  1332. /* AGP */
  1333. extern int radeon_gpu_reset(struct radeon_device *rdev);
  1334. extern void radeon_agp_disable(struct radeon_device *rdev);
  1335. extern int radeon_gart_table_vram_pin(struct radeon_device *rdev);
  1336. extern void radeon_gart_restore(struct radeon_device *rdev);
  1337. extern int radeon_modeset_init(struct radeon_device *rdev);
  1338. extern void radeon_modeset_fini(struct radeon_device *rdev);
  1339. extern bool radeon_card_posted(struct radeon_device *rdev);
  1340. extern void radeon_update_bandwidth_info(struct radeon_device *rdev);
  1341. extern void radeon_update_display_priority(struct radeon_device *rdev);
  1342. extern bool radeon_boot_test_post_card(struct radeon_device *rdev);
  1343. extern void radeon_scratch_init(struct radeon_device *rdev);
  1344. extern void radeon_wb_fini(struct radeon_device *rdev);
  1345. extern int radeon_wb_init(struct radeon_device *rdev);
  1346. extern void radeon_wb_disable(struct radeon_device *rdev);
  1347. extern void radeon_surface_init(struct radeon_device *rdev);
  1348. extern int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data);
  1349. extern void radeon_legacy_set_clock_gating(struct radeon_device *rdev, int enable);
  1350. extern void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable);
  1351. extern void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain);
  1352. extern bool radeon_ttm_bo_is_radeon_bo(struct ttm_buffer_object *bo);
  1353. extern void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base);
  1354. extern void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc);
  1355. extern int radeon_resume_kms(struct drm_device *dev);
  1356. extern int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
  1357. extern void radeon_ttm_set_active_vram_size(struct radeon_device *rdev, u64 size);
  1358. /*
  1359. * r600 functions used by radeon_encoder.c
  1360. */
  1361. extern void r600_hdmi_enable(struct drm_encoder *encoder);
  1362. extern void r600_hdmi_disable(struct drm_encoder *encoder);
  1363. extern void r600_hdmi_setmode(struct drm_encoder *encoder, struct drm_display_mode *mode);
  1364. extern int ni_init_microcode(struct radeon_device *rdev);
  1365. extern int ni_mc_load_microcode(struct radeon_device *rdev);
  1366. /* radeon_acpi.c */
  1367. #if defined(CONFIG_ACPI)
  1368. extern int radeon_acpi_init(struct radeon_device *rdev);
  1369. #else
  1370. static inline int radeon_acpi_init(struct radeon_device *rdev) { return 0; }
  1371. #endif
  1372. #include "radeon_object.h"
  1373. #endif