nouveau_drv.h 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448
  1. /*
  2. * Copyright 2005 Stephane Marchesin.
  3. * All Rights Reserved.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a
  6. * copy of this software and associated documentation files (the "Software"),
  7. * to deal in the Software without restriction, including without limitation
  8. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. * and/or sell copies of the Software, and to permit persons to whom the
  10. * Software is furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice (including the next
  13. * paragraph) shall be included in all copies or substantial portions of the
  14. * 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. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS 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. #ifndef __NOUVEAU_DRV_H__
  25. #define __NOUVEAU_DRV_H__
  26. #define DRIVER_AUTHOR "Stephane Marchesin"
  27. #define DRIVER_EMAIL "nouveau@lists.freedesktop.org"
  28. #define DRIVER_NAME "nouveau"
  29. #define DRIVER_DESC "nVidia Riva/TNT/GeForce"
  30. #define DRIVER_DATE "20120316"
  31. #define DRIVER_MAJOR 1
  32. #define DRIVER_MINOR 0
  33. #define DRIVER_PATCHLEVEL 0
  34. #define NOUVEAU_FAMILY 0x0000FFFF
  35. #define NOUVEAU_FLAGS 0xFFFF0000
  36. #include "ttm/ttm_bo_api.h"
  37. #include "ttm/ttm_bo_driver.h"
  38. #include "ttm/ttm_placement.h"
  39. #include "ttm/ttm_memory.h"
  40. #include "ttm/ttm_module.h"
  41. #define XXX_THIS_IS_A_HACK
  42. #include <subdev/fb.h>
  43. enum blah {
  44. NV_MEM_TYPE_UNKNOWN = 0,
  45. NV_MEM_TYPE_STOLEN,
  46. NV_MEM_TYPE_SGRAM,
  47. NV_MEM_TYPE_SDRAM,
  48. NV_MEM_TYPE_DDR1,
  49. NV_MEM_TYPE_DDR2,
  50. NV_MEM_TYPE_DDR3,
  51. NV_MEM_TYPE_GDDR2,
  52. NV_MEM_TYPE_GDDR3,
  53. NV_MEM_TYPE_GDDR4,
  54. NV_MEM_TYPE_GDDR5
  55. };
  56. struct nouveau_fpriv {
  57. spinlock_t lock;
  58. struct list_head channels;
  59. struct nouveau_vm *vm;
  60. };
  61. static inline struct nouveau_fpriv *
  62. nouveau_fpriv(struct drm_file *file_priv)
  63. {
  64. return file_priv ? file_priv->driver_priv : NULL;
  65. }
  66. #define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
  67. #include <nouveau_drm.h>
  68. #include "nouveau_reg.h"
  69. #include <nouveau_bios.h>
  70. #include "nouveau_util.h"
  71. struct nouveau_grctx;
  72. struct nouveau_mem;
  73. #include <subdev/vm.h>
  74. #include <subdev/bios/pll.h>
  75. #include "nouveau_compat.h"
  76. #define MAX_NUM_DCB_ENTRIES 16
  77. #define NOUVEAU_MAX_CHANNEL_NR 4096
  78. #define NOUVEAU_MAX_TILE_NR 15
  79. struct nouveau_tile_reg {
  80. bool used;
  81. struct nouveau_fence *fence;
  82. };
  83. struct nouveau_bo {
  84. struct ttm_buffer_object bo;
  85. struct ttm_placement placement;
  86. u32 valid_domains;
  87. u32 placements[3];
  88. u32 busy_placements[3];
  89. struct ttm_bo_kmap_obj kmap;
  90. struct list_head head;
  91. /* protected by ttm_bo_reserve() */
  92. struct drm_file *reserved_by;
  93. struct list_head entry;
  94. int pbbo_index;
  95. bool validate_mapped;
  96. struct list_head vma_list;
  97. unsigned page_shift;
  98. uint32_t tile_mode;
  99. uint32_t tile_flags;
  100. struct nouveau_tile_reg *tile;
  101. struct drm_gem_object *gem;
  102. int pin_refcnt;
  103. struct ttm_bo_kmap_obj dma_buf_vmap;
  104. int vmapping_count;
  105. };
  106. #define nouveau_bo_tile_layout(nvbo) \
  107. ((nvbo)->tile_flags & NOUVEAU_GEM_TILE_LAYOUT_MASK)
  108. static inline struct nouveau_bo *
  109. nouveau_bo(struct ttm_buffer_object *bo)
  110. {
  111. return container_of(bo, struct nouveau_bo, bo);
  112. }
  113. static inline struct nouveau_bo *
  114. nouveau_gem_object(struct drm_gem_object *gem)
  115. {
  116. return gem ? gem->driver_private : NULL;
  117. }
  118. /* TODO: submit equivalent to TTM generic API upstream? */
  119. static inline void __iomem *
  120. nvbo_kmap_obj_iovirtual(struct nouveau_bo *nvbo)
  121. {
  122. bool is_iomem;
  123. void __iomem *ioptr = (void __force __iomem *)ttm_kmap_obj_virtual(
  124. &nvbo->kmap, &is_iomem);
  125. WARN_ON_ONCE(ioptr && !is_iomem);
  126. return ioptr;
  127. }
  128. enum nouveau_flags {
  129. NV_NFORCE = 0x10000000,
  130. NV_NFORCE2 = 0x20000000
  131. };
  132. #define NVOBJ_ENGINE_SW 0
  133. #define NVOBJ_ENGINE_GR 1
  134. #define NVOBJ_ENGINE_CRYPT 2
  135. #define NVOBJ_ENGINE_COPY0 3
  136. #define NVOBJ_ENGINE_COPY1 4
  137. #define NVOBJ_ENGINE_MPEG 5
  138. #define NVOBJ_ENGINE_PPP NVOBJ_ENGINE_MPEG
  139. #define NVOBJ_ENGINE_BSP 6
  140. #define NVOBJ_ENGINE_VP 7
  141. #define NVOBJ_ENGINE_FIFO 14
  142. #define NVOBJ_ENGINE_FENCE 15
  143. #define NVOBJ_ENGINE_NR 16
  144. #define NVOBJ_ENGINE_DISPLAY (NVOBJ_ENGINE_NR + 0) /*XXX*/
  145. #define NVOBJ_FLAG_DONT_MAP (1 << 0)
  146. #define NVOBJ_FLAG_ZERO_ALLOC (1 << 1)
  147. #define NVOBJ_FLAG_ZERO_FREE (1 << 2)
  148. #define NVOBJ_CINST_GLOBAL 0xdeadbeef
  149. struct nouveau_gpuobj {
  150. struct drm_device *dev;
  151. struct kref refcount;
  152. struct list_head list;
  153. void *node;
  154. u32 *suspend;
  155. uint32_t flags;
  156. u32 size;
  157. u32 pinst; /* PRAMIN BAR offset */
  158. u32 cinst; /* Channel offset */
  159. u64 vinst; /* VRAM address */
  160. uint32_t engine;
  161. uint32_t class;
  162. void (*dtor)(struct drm_device *, struct nouveau_gpuobj *);
  163. void *priv;
  164. };
  165. struct nouveau_page_flip_state {
  166. struct list_head head;
  167. struct drm_pending_vblank_event *event;
  168. int crtc, bpp, pitch, x, y;
  169. uint64_t offset;
  170. };
  171. enum nouveau_channel_mutex_class {
  172. NOUVEAU_UCHANNEL_MUTEX,
  173. NOUVEAU_KCHANNEL_MUTEX
  174. };
  175. struct nouveau_channel {
  176. struct drm_device *dev;
  177. struct list_head list;
  178. int id;
  179. /* references to the channel data structure */
  180. struct kref ref;
  181. /* users of the hardware channel resources, the hardware
  182. * context will be kicked off when it reaches zero. */
  183. atomic_t users;
  184. struct mutex mutex;
  185. /* owner of this fifo */
  186. struct drm_file *file_priv;
  187. /* mapping of the fifo itself */
  188. struct drm_local_map *map;
  189. /* mapping of the regs controlling the fifo */
  190. void __iomem *user;
  191. uint32_t user_get;
  192. uint32_t user_get_hi;
  193. uint32_t user_put;
  194. /* DMA push buffer */
  195. struct nouveau_gpuobj *pushbuf;
  196. struct nouveau_bo *pushbuf_bo;
  197. struct nouveau_vma pushbuf_vma;
  198. uint64_t pushbuf_base;
  199. /* Notifier memory */
  200. struct nouveau_bo *notifier_bo;
  201. struct nouveau_vma notifier_vma;
  202. struct drm_mm notifier_heap;
  203. /* PFIFO context */
  204. struct nouveau_gpuobj *engptr;
  205. struct nouveau_gpuobj *ramfc;
  206. /* Execution engine contexts */
  207. void *engctx[NVOBJ_ENGINE_NR];
  208. /* NV50 VM */
  209. struct nouveau_vm *vm;
  210. struct nouveau_gpuobj *vm_pd;
  211. /* Objects */
  212. struct nouveau_gpuobj *ramin; /* Private instmem */
  213. struct drm_mm ramin_heap; /* Private PRAMIN heap */
  214. struct nouveau_ramht *ramht; /* Hash table */
  215. /* GPU object info for stuff used in-kernel (mm_enabled) */
  216. uint32_t m2mf_ntfy;
  217. uint32_t vram_handle;
  218. uint32_t gart_handle;
  219. bool accel_done;
  220. /* Push buffer state (only for drm's channel on !mm_enabled) */
  221. struct {
  222. int max;
  223. int free;
  224. int cur;
  225. int put;
  226. /* access via pushbuf_bo */
  227. int ib_base;
  228. int ib_max;
  229. int ib_free;
  230. int ib_put;
  231. } dma;
  232. struct {
  233. bool active;
  234. char name[32];
  235. struct drm_info_list info;
  236. } debugfs;
  237. };
  238. struct nouveau_exec_engine {
  239. void (*destroy)(struct drm_device *, int engine);
  240. int (*init)(struct drm_device *, int engine);
  241. int (*fini)(struct drm_device *, int engine, bool suspend);
  242. int (*context_new)(struct nouveau_channel *, int engine);
  243. void (*context_del)(struct nouveau_channel *, int engine);
  244. int (*object_new)(struct nouveau_channel *, int engine,
  245. u32 handle, u16 class);
  246. void (*set_tile_region)(struct drm_device *dev, int i);
  247. void (*tlb_flush)(struct drm_device *, int engine);
  248. };
  249. struct nouveau_instmem_engine {
  250. void *priv;
  251. int (*init)(struct drm_device *dev);
  252. void (*takedown)(struct drm_device *dev);
  253. int (*suspend)(struct drm_device *dev);
  254. void (*resume)(struct drm_device *dev);
  255. int (*get)(struct nouveau_gpuobj *, struct nouveau_channel *,
  256. u32 size, u32 align);
  257. void (*put)(struct nouveau_gpuobj *);
  258. int (*map)(struct nouveau_gpuobj *);
  259. void (*unmap)(struct nouveau_gpuobj *);
  260. void (*flush)(struct drm_device *);
  261. };
  262. struct nouveau_display_engine {
  263. void *priv;
  264. int (*early_init)(struct drm_device *);
  265. void (*late_takedown)(struct drm_device *);
  266. int (*create)(struct drm_device *);
  267. void (*destroy)(struct drm_device *);
  268. int (*init)(struct drm_device *);
  269. void (*fini)(struct drm_device *);
  270. struct drm_property *dithering_mode;
  271. struct drm_property *dithering_depth;
  272. struct drm_property *underscan_property;
  273. struct drm_property *underscan_hborder_property;
  274. struct drm_property *underscan_vborder_property;
  275. /* not really hue and saturation: */
  276. struct drm_property *vibrant_hue_property;
  277. struct drm_property *color_vibrance_property;
  278. };
  279. struct nouveau_pm_voltage_level {
  280. u32 voltage; /* microvolts */
  281. u8 vid;
  282. };
  283. struct nouveau_pm_voltage {
  284. bool supported;
  285. u8 version;
  286. u8 vid_mask;
  287. struct nouveau_pm_voltage_level *level;
  288. int nr_level;
  289. };
  290. /* Exclusive upper limits */
  291. #define NV_MEM_CL_DDR2_MAX 8
  292. #define NV_MEM_WR_DDR2_MAX 9
  293. #define NV_MEM_CL_DDR3_MAX 17
  294. #define NV_MEM_WR_DDR3_MAX 17
  295. #define NV_MEM_CL_GDDR3_MAX 16
  296. #define NV_MEM_WR_GDDR3_MAX 18
  297. #define NV_MEM_CL_GDDR5_MAX 21
  298. #define NV_MEM_WR_GDDR5_MAX 20
  299. struct nouveau_pm_memtiming {
  300. int id;
  301. u32 reg[9];
  302. u32 mr[4];
  303. u8 tCWL;
  304. u8 odt;
  305. u8 drive_strength;
  306. };
  307. struct nouveau_pm_tbl_header {
  308. u8 version;
  309. u8 header_len;
  310. u8 entry_cnt;
  311. u8 entry_len;
  312. };
  313. struct nouveau_pm_tbl_entry {
  314. u8 tWR;
  315. u8 tWTR;
  316. u8 tCL;
  317. u8 tRC;
  318. u8 empty_4;
  319. u8 tRFC; /* Byte 5 */
  320. u8 empty_6;
  321. u8 tRAS; /* Byte 7 */
  322. u8 empty_8;
  323. u8 tRP; /* Byte 9 */
  324. u8 tRCDRD;
  325. u8 tRCDWR;
  326. u8 tRRD;
  327. u8 tUNK_13;
  328. u8 RAM_FT1; /* 14, a bitmask of random RAM features */
  329. u8 empty_15;
  330. u8 tUNK_16;
  331. u8 empty_17;
  332. u8 tUNK_18;
  333. u8 tCWL;
  334. u8 tUNK_20, tUNK_21;
  335. };
  336. struct nouveau_pm_profile;
  337. struct nouveau_pm_profile_func {
  338. void (*destroy)(struct nouveau_pm_profile *);
  339. void (*init)(struct nouveau_pm_profile *);
  340. void (*fini)(struct nouveau_pm_profile *);
  341. struct nouveau_pm_level *(*select)(struct nouveau_pm_profile *);
  342. };
  343. struct nouveau_pm_profile {
  344. const struct nouveau_pm_profile_func *func;
  345. struct list_head head;
  346. char name[8];
  347. };
  348. #define NOUVEAU_PM_MAX_LEVEL 8
  349. struct nouveau_pm_level {
  350. struct nouveau_pm_profile profile;
  351. struct device_attribute dev_attr;
  352. char name[32];
  353. int id;
  354. struct nouveau_pm_memtiming timing;
  355. u32 memory;
  356. u16 memscript;
  357. u32 core;
  358. u32 shader;
  359. u32 rop;
  360. u32 copy;
  361. u32 daemon;
  362. u32 vdec;
  363. u32 dom6;
  364. u32 unka0; /* nva3:nvc0 */
  365. u32 hub01; /* nvc0- */
  366. u32 hub06; /* nvc0- */
  367. u32 hub07; /* nvc0- */
  368. u32 volt_min; /* microvolts */
  369. u32 volt_max;
  370. u8 fanspeed;
  371. };
  372. struct nouveau_pm_temp_sensor_constants {
  373. u16 offset_constant;
  374. s16 offset_mult;
  375. s16 offset_div;
  376. s16 slope_mult;
  377. s16 slope_div;
  378. };
  379. struct nouveau_pm_threshold_temp {
  380. s16 critical;
  381. s16 down_clock;
  382. s16 fan_boost;
  383. };
  384. struct nouveau_pm_fan {
  385. u32 percent;
  386. u32 min_duty;
  387. u32 max_duty;
  388. u32 pwm_freq;
  389. u32 pwm_divisor;
  390. };
  391. struct nouveau_pm_engine {
  392. struct nouveau_pm_voltage voltage;
  393. struct nouveau_pm_level perflvl[NOUVEAU_PM_MAX_LEVEL];
  394. int nr_perflvl;
  395. struct nouveau_pm_temp_sensor_constants sensor_constants;
  396. struct nouveau_pm_threshold_temp threshold_temp;
  397. struct nouveau_pm_fan fan;
  398. struct nouveau_pm_profile *profile_ac;
  399. struct nouveau_pm_profile *profile_dc;
  400. struct nouveau_pm_profile *profile;
  401. struct list_head profiles;
  402. struct nouveau_pm_level boot;
  403. struct nouveau_pm_level *cur;
  404. struct device *hwmon;
  405. struct notifier_block acpi_nb;
  406. int (*clocks_get)(struct drm_device *, struct nouveau_pm_level *);
  407. void *(*clocks_pre)(struct drm_device *, struct nouveau_pm_level *);
  408. int (*clocks_set)(struct drm_device *, void *);
  409. int (*voltage_get)(struct drm_device *);
  410. int (*voltage_set)(struct drm_device *, int voltage);
  411. int (*pwm_get)(struct drm_device *, int line, u32*, u32*);
  412. int (*pwm_set)(struct drm_device *, int line, u32, u32);
  413. int (*temp_get)(struct drm_device *);
  414. };
  415. struct nouveau_engine {
  416. struct nouveau_instmem_engine instmem;
  417. struct nouveau_display_engine display;
  418. struct nouveau_pm_engine pm;
  419. };
  420. enum nv04_fp_display_regs {
  421. FP_DISPLAY_END,
  422. FP_TOTAL,
  423. FP_CRTC,
  424. FP_SYNC_START,
  425. FP_SYNC_END,
  426. FP_VALID_START,
  427. FP_VALID_END
  428. };
  429. struct nv04_crtc_reg {
  430. unsigned char MiscOutReg;
  431. uint8_t CRTC[0xa0];
  432. uint8_t CR58[0x10];
  433. uint8_t Sequencer[5];
  434. uint8_t Graphics[9];
  435. uint8_t Attribute[21];
  436. unsigned char DAC[768];
  437. /* PCRTC regs */
  438. uint32_t fb_start;
  439. uint32_t crtc_cfg;
  440. uint32_t cursor_cfg;
  441. uint32_t gpio_ext;
  442. uint32_t crtc_830;
  443. uint32_t crtc_834;
  444. uint32_t crtc_850;
  445. uint32_t crtc_eng_ctrl;
  446. /* PRAMDAC regs */
  447. uint32_t nv10_cursync;
  448. struct nouveau_pll_vals pllvals;
  449. uint32_t ramdac_gen_ctrl;
  450. uint32_t ramdac_630;
  451. uint32_t ramdac_634;
  452. uint32_t tv_setup;
  453. uint32_t tv_vtotal;
  454. uint32_t tv_vskew;
  455. uint32_t tv_vsync_delay;
  456. uint32_t tv_htotal;
  457. uint32_t tv_hskew;
  458. uint32_t tv_hsync_delay;
  459. uint32_t tv_hsync_delay2;
  460. uint32_t fp_horiz_regs[7];
  461. uint32_t fp_vert_regs[7];
  462. uint32_t dither;
  463. uint32_t fp_control;
  464. uint32_t dither_regs[6];
  465. uint32_t fp_debug_0;
  466. uint32_t fp_debug_1;
  467. uint32_t fp_debug_2;
  468. uint32_t fp_margin_color;
  469. uint32_t ramdac_8c0;
  470. uint32_t ramdac_a20;
  471. uint32_t ramdac_a24;
  472. uint32_t ramdac_a34;
  473. uint32_t ctv_regs[38];
  474. };
  475. struct nv04_output_reg {
  476. uint32_t output;
  477. int head;
  478. };
  479. struct nv04_mode_state {
  480. struct nv04_crtc_reg crtc_reg[2];
  481. uint32_t pllsel;
  482. uint32_t sel_clk;
  483. };
  484. enum nouveau_card_type {
  485. NV_04 = 0x04,
  486. NV_10 = 0x10,
  487. NV_20 = 0x20,
  488. NV_30 = 0x30,
  489. NV_40 = 0x40,
  490. NV_50 = 0x50,
  491. NV_C0 = 0xc0,
  492. NV_D0 = 0xd0,
  493. NV_E0 = 0xe0,
  494. };
  495. struct drm_nouveau_private {
  496. struct drm_device *dev;
  497. bool noaccel;
  498. void *newpriv;
  499. /* the card type, takes NV_* as values */
  500. enum nouveau_card_type card_type;
  501. /* exact chipset, derived from NV_PMC_BOOT_0 */
  502. int chipset;
  503. int flags;
  504. u32 crystal;
  505. spinlock_t ramin_lock;
  506. void __iomem *ramin;
  507. u32 ramin_size;
  508. u32 ramin_base;
  509. bool ramin_available;
  510. struct drm_mm ramin_heap;
  511. struct nouveau_exec_engine *eng[NVOBJ_ENGINE_NR];
  512. struct list_head gpuobj_list;
  513. struct list_head classes;
  514. struct nouveau_bo *vga_ram;
  515. /* interrupt handling */
  516. void (*irq_handler[32])(struct drm_device *);
  517. bool msi_enabled;
  518. struct {
  519. struct drm_global_reference mem_global_ref;
  520. struct ttm_bo_global_ref bo_global_ref;
  521. struct ttm_bo_device bdev;
  522. atomic_t validate_sequence;
  523. int (*move)(struct nouveau_channel *,
  524. struct ttm_buffer_object *,
  525. struct ttm_mem_reg *, struct ttm_mem_reg *);
  526. } ttm;
  527. struct {
  528. spinlock_t lock;
  529. struct drm_mm heap;
  530. struct nouveau_bo *bo;
  531. } fence;
  532. struct {
  533. spinlock_t lock;
  534. struct nouveau_channel *ptr[NOUVEAU_MAX_CHANNEL_NR];
  535. } channels;
  536. struct nouveau_engine engine;
  537. struct nouveau_channel *channel;
  538. /* For PFIFO and PGRAPH. */
  539. spinlock_t context_switch_lock;
  540. /* VM/PRAMIN flush, legacy PRAMIN aperture */
  541. spinlock_t vm_lock;
  542. /* RAMIN configuration, RAMFC, RAMHT and RAMRO offsets */
  543. struct nouveau_ramht *ramht;
  544. uint32_t ramin_rsvd_vram;
  545. struct {
  546. enum {
  547. NOUVEAU_GART_NONE = 0,
  548. NOUVEAU_GART_AGP, /* AGP */
  549. NOUVEAU_GART_PDMA, /* paged dma object */
  550. NOUVEAU_GART_HW /* on-chip gart/vm */
  551. } type;
  552. uint64_t aper_base;
  553. uint64_t aper_size;
  554. uint64_t aper_free;
  555. struct ttm_backend_func *func;
  556. struct {
  557. struct page *page;
  558. dma_addr_t addr;
  559. } dummy;
  560. struct nouveau_gpuobj *sg_ctxdma;
  561. } gart_info;
  562. /* nv10-nv40 tiling regions */
  563. struct {
  564. struct nouveau_tile_reg reg[NOUVEAU_MAX_TILE_NR];
  565. spinlock_t lock;
  566. } tile;
  567. uint64_t fb_available_size;
  568. uint64_t fb_mappable_pages;
  569. uint64_t fb_aper_free;
  570. int fb_mtrr;
  571. /* BAR control (NV50-) */
  572. struct nouveau_vm *bar1_vm;
  573. struct nouveau_vm *bar3_vm;
  574. /* G8x/G9x virtual address space */
  575. struct nouveau_vm *chan_vm;
  576. struct nvbios vbios;
  577. u8 *mxms;
  578. struct list_head i2c_ports;
  579. struct nv04_mode_state mode_reg;
  580. struct nv04_mode_state saved_reg;
  581. uint32_t saved_vga_font[4][16384];
  582. uint32_t crtc_owner;
  583. uint32_t dac_users[4];
  584. struct backlight_device *backlight;
  585. struct {
  586. struct dentry *channel_root;
  587. } debugfs;
  588. struct nouveau_fbdev *nfbdev;
  589. struct apertures_struct *apertures;
  590. };
  591. static inline struct drm_nouveau_private *
  592. nouveau_private(struct drm_device *dev)
  593. {
  594. return dev->dev_private;
  595. }
  596. static inline struct drm_nouveau_private *
  597. nouveau_bdev(struct ttm_bo_device *bd)
  598. {
  599. return container_of(bd, struct drm_nouveau_private, ttm.bdev);
  600. }
  601. static inline int
  602. nouveau_bo_ref(struct nouveau_bo *ref, struct nouveau_bo **pnvbo)
  603. {
  604. struct nouveau_bo *prev;
  605. if (!pnvbo)
  606. return -EINVAL;
  607. prev = *pnvbo;
  608. *pnvbo = ref ? nouveau_bo(ttm_bo_reference(&ref->bo)) : NULL;
  609. if (prev) {
  610. struct ttm_buffer_object *bo = &prev->bo;
  611. ttm_bo_unref(&bo);
  612. }
  613. return 0;
  614. }
  615. /* nouveau_drv.c */
  616. extern int nouveau_modeset;
  617. extern int nouveau_duallink;
  618. extern int nouveau_uscript_lvds;
  619. extern int nouveau_uscript_tmds;
  620. extern int nouveau_vram_pushbuf;
  621. extern int nouveau_vram_notify;
  622. extern char *nouveau_vram_type;
  623. extern int nouveau_fbpercrtc;
  624. extern int nouveau_tv_disable;
  625. extern char *nouveau_tv_norm;
  626. extern int nouveau_reg_debug;
  627. extern int nouveau_ignorelid;
  628. extern int nouveau_nofbaccel;
  629. extern int nouveau_noaccel;
  630. extern int nouveau_force_post;
  631. extern int nouveau_override_conntype;
  632. extern char *nouveau_perflvl;
  633. extern int nouveau_perflvl_wr;
  634. extern int nouveau_msi;
  635. extern int nouveau_ctxfw;
  636. extern int nouveau_mxmdcb;
  637. extern int nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state);
  638. extern int nouveau_pci_resume(struct pci_dev *pdev);
  639. /* nouveau_state.c */
  640. extern int nouveau_open(struct drm_device *, struct drm_file *);
  641. extern void nouveau_preclose(struct drm_device *dev, struct drm_file *);
  642. extern void nouveau_postclose(struct drm_device *, struct drm_file *);
  643. extern int nouveau_load(struct drm_device *, unsigned long flags);
  644. extern int nouveau_firstopen(struct drm_device *);
  645. extern void nouveau_lastclose(struct drm_device *);
  646. extern int nouveau_unload(struct drm_device *);
  647. extern bool nouveau_wait_for_idle(struct drm_device *);
  648. extern int nouveau_card_init(struct drm_device *);
  649. /* nouveau_mem.c */
  650. extern int nouveau_mem_vram_init(struct drm_device *);
  651. extern void nouveau_mem_vram_fini(struct drm_device *);
  652. extern int nouveau_mem_gart_init(struct drm_device *);
  653. extern void nouveau_mem_gart_fini(struct drm_device *);
  654. extern void nouveau_mem_close(struct drm_device *);
  655. extern bool nouveau_mem_flags_valid(struct drm_device *, u32 tile_flags);
  656. extern int nouveau_mem_timing_calc(struct drm_device *, u32 freq,
  657. struct nouveau_pm_memtiming *);
  658. extern void nouveau_mem_timing_read(struct drm_device *,
  659. struct nouveau_pm_memtiming *);
  660. extern int nouveau_mem_vbios_type(struct drm_device *);
  661. extern struct nouveau_tile_reg *nv10_mem_set_tiling(
  662. struct drm_device *dev, uint32_t addr, uint32_t size,
  663. uint32_t pitch, uint32_t flags);
  664. extern void nv10_mem_put_tile_region(struct drm_device *dev,
  665. struct nouveau_tile_reg *tile,
  666. struct nouveau_fence *fence);
  667. extern const struct ttm_mem_type_manager_func nouveau_vram_manager;
  668. extern const struct ttm_mem_type_manager_func nouveau_gart_manager;
  669. /* nouveau_notifier.c */
  670. extern int nouveau_notifier_init_channel(struct nouveau_channel *);
  671. extern void nouveau_notifier_takedown_channel(struct nouveau_channel *);
  672. extern int nouveau_notifier_alloc(struct nouveau_channel *, uint32_t handle,
  673. int cout, uint32_t start, uint32_t end,
  674. uint32_t *offset);
  675. /* nouveau_channel.c */
  676. extern void nouveau_channel_cleanup(struct drm_device *, struct drm_file *);
  677. extern int nouveau_channel_alloc(struct drm_device *dev,
  678. struct nouveau_channel **chan,
  679. struct drm_file *file_priv,
  680. uint32_t fb_ctxdma, uint32_t tt_ctxdma);
  681. extern struct nouveau_channel *
  682. nouveau_channel_get_unlocked(struct nouveau_channel *);
  683. extern struct nouveau_channel *
  684. nouveau_channel_get(struct drm_file *, int id);
  685. extern void nouveau_channel_put_unlocked(struct nouveau_channel **);
  686. extern void nouveau_channel_put(struct nouveau_channel **);
  687. extern void nouveau_channel_ref(struct nouveau_channel *chan,
  688. struct nouveau_channel **pchan);
  689. extern int nouveau_channel_idle(struct nouveau_channel *chan);
  690. /* nouveau_gpuobj.c */
  691. #define NVOBJ_ENGINE_ADD(d, e, p) do { \
  692. struct drm_nouveau_private *dev_priv = (d)->dev_private; \
  693. dev_priv->eng[NVOBJ_ENGINE_##e] = (p); \
  694. } while (0)
  695. #define NVOBJ_ENGINE_DEL(d, e) do { \
  696. struct drm_nouveau_private *dev_priv = (d)->dev_private; \
  697. dev_priv->eng[NVOBJ_ENGINE_##e] = NULL; \
  698. } while (0)
  699. #define NVOBJ_CLASS(d, c, e) do { \
  700. int ret = nouveau_gpuobj_class_new((d), (c), NVOBJ_ENGINE_##e); \
  701. if (ret) \
  702. return ret; \
  703. } while (0)
  704. #define NVOBJ_MTHD(d, c, m, e) do { \
  705. int ret = nouveau_gpuobj_mthd_new((d), (c), (m), (e)); \
  706. if (ret) \
  707. return ret; \
  708. } while (0)
  709. extern int nouveau_gpuobj_early_init(struct drm_device *);
  710. extern int nouveau_gpuobj_init(struct drm_device *);
  711. extern void nouveau_gpuobj_takedown(struct drm_device *);
  712. extern int nouveau_gpuobj_suspend(struct drm_device *dev);
  713. extern void nouveau_gpuobj_resume(struct drm_device *dev);
  714. extern int nouveau_gpuobj_class_new(struct drm_device *, u32 class, u32 eng);
  715. extern int nouveau_gpuobj_mthd_new(struct drm_device *, u32 class, u32 mthd,
  716. int (*exec)(struct nouveau_channel *,
  717. u32 class, u32 mthd, u32 data));
  718. extern int nouveau_gpuobj_mthd_call(struct nouveau_channel *, u32, u32, u32);
  719. extern int nouveau_gpuobj_mthd_call2(struct drm_device *, int, u32, u32, u32);
  720. extern int nouveau_gpuobj_channel_init(struct nouveau_channel *,
  721. uint32_t vram_h, uint32_t tt_h);
  722. extern void nouveau_gpuobj_channel_takedown(struct nouveau_channel *);
  723. extern int nouveau_gpuobj_new(struct drm_device *, struct nouveau_channel *,
  724. uint32_t size, int align, uint32_t flags,
  725. struct nouveau_gpuobj **);
  726. extern void nouveau_gpuobj_ref(struct nouveau_gpuobj *,
  727. struct nouveau_gpuobj **);
  728. extern int nouveau_gpuobj_dma_new(struct nouveau_channel *, int class,
  729. uint64_t offset, uint64_t size, int access,
  730. int target, struct nouveau_gpuobj **);
  731. extern int nouveau_gpuobj_gr_new(struct nouveau_channel *, u32 handle, int class);
  732. extern int nv50_gpuobj_dma_new(struct nouveau_channel *, int class, u64 base,
  733. u64 size, int target, int access, u32 type,
  734. u32 comp, struct nouveau_gpuobj **pobj);
  735. extern void nv50_gpuobj_dma_init(struct nouveau_gpuobj *, u32 offset,
  736. int class, u64 base, u64 size, int target,
  737. int access, u32 type, u32 comp);
  738. int nouveau_gpuobj_map_vm(struct nouveau_gpuobj *gpuobj, u32 flags,
  739. struct nouveau_vm *vm, struct nouveau_vma *vma);
  740. int nouveau_gpuobj_map_bar(struct nouveau_gpuobj *gpuobj, u32 flags,
  741. struct nouveau_vma *vma);
  742. void nouveau_gpuobj_unmap(struct nouveau_vma *vma);
  743. /* nouveau_irq.c */
  744. extern int nouveau_irq_init(struct drm_device *);
  745. extern void nouveau_irq_fini(struct drm_device *);
  746. extern irqreturn_t nouveau_irq_handler(DRM_IRQ_ARGS);
  747. extern void nouveau_irq_register(struct drm_device *, int status_bit,
  748. void (*)(struct drm_device *));
  749. extern void nouveau_irq_unregister(struct drm_device *, int status_bit);
  750. extern void nouveau_irq_preinstall(struct drm_device *);
  751. extern int nouveau_irq_postinstall(struct drm_device *);
  752. extern void nouveau_irq_uninstall(struct drm_device *);
  753. /* nouveau_sgdma.c */
  754. extern int nouveau_sgdma_init(struct drm_device *);
  755. extern void nouveau_sgdma_takedown(struct drm_device *);
  756. extern uint32_t nouveau_sgdma_get_physical(struct drm_device *,
  757. uint32_t offset);
  758. extern struct ttm_tt *nouveau_sgdma_create_ttm(struct ttm_bo_device *bdev,
  759. unsigned long size,
  760. uint32_t page_flags,
  761. struct page *dummy_read_page);
  762. /* nouveau_debugfs.c */
  763. #if defined(CONFIG_DRM_NOUVEAU_DEBUG)
  764. extern int nouveau_debugfs_init(struct drm_minor *);
  765. extern void nouveau_debugfs_takedown(struct drm_minor *);
  766. extern int nouveau_debugfs_channel_init(struct nouveau_channel *);
  767. extern void nouveau_debugfs_channel_fini(struct nouveau_channel *);
  768. #else
  769. static inline int
  770. nouveau_debugfs_init(struct drm_minor *minor)
  771. {
  772. return 0;
  773. }
  774. static inline void nouveau_debugfs_takedown(struct drm_minor *minor)
  775. {
  776. }
  777. static inline int
  778. nouveau_debugfs_channel_init(struct nouveau_channel *chan)
  779. {
  780. return 0;
  781. }
  782. static inline void
  783. nouveau_debugfs_channel_fini(struct nouveau_channel *chan)
  784. {
  785. }
  786. #endif
  787. /* nouveau_dma.c */
  788. extern void nouveau_dma_init(struct nouveau_channel *);
  789. extern int nouveau_dma_wait(struct nouveau_channel *, int slots, int size);
  790. /* nouveau_acpi.c */
  791. #define ROM_BIOS_PAGE 4096
  792. #if defined(CONFIG_ACPI)
  793. void nouveau_register_dsm_handler(void);
  794. void nouveau_unregister_dsm_handler(void);
  795. void nouveau_switcheroo_optimus_dsm(void);
  796. int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len);
  797. bool nouveau_acpi_rom_supported(struct pci_dev *pdev);
  798. int nouveau_acpi_edid(struct drm_device *, struct drm_connector *);
  799. #else
  800. static inline void nouveau_register_dsm_handler(void) {}
  801. static inline void nouveau_unregister_dsm_handler(void) {}
  802. static inline void nouveau_switcheroo_optimus_dsm(void) {}
  803. static inline bool nouveau_acpi_rom_supported(struct pci_dev *pdev) { return false; }
  804. static inline int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) { return -EINVAL; }
  805. static inline int nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector) { return -EINVAL; }
  806. #endif
  807. /* nouveau_backlight.c */
  808. #ifdef CONFIG_DRM_NOUVEAU_BACKLIGHT
  809. extern int nouveau_backlight_init(struct drm_device *);
  810. extern void nouveau_backlight_exit(struct drm_device *);
  811. #else
  812. static inline int nouveau_backlight_init(struct drm_device *dev)
  813. {
  814. return 0;
  815. }
  816. static inline void nouveau_backlight_exit(struct drm_device *dev) { }
  817. #endif
  818. /* nouveau_bios.c */
  819. extern int nouveau_bios_init(struct drm_device *);
  820. extern void nouveau_bios_takedown(struct drm_device *dev);
  821. extern int nouveau_run_vbios_init(struct drm_device *);
  822. extern struct dcb_connector_table_entry *
  823. nouveau_bios_connector_entry(struct drm_device *, int index);
  824. extern int nouveau_bios_run_display_table(struct drm_device *, u16 id, int clk,
  825. struct dcb_output *, int crtc);
  826. extern bool nouveau_bios_fp_mode(struct drm_device *, struct drm_display_mode *);
  827. extern uint8_t *nouveau_bios_embedded_edid(struct drm_device *);
  828. extern int nouveau_bios_parse_lvds_table(struct drm_device *, int pxclk,
  829. bool *dl, bool *if_is_24bit);
  830. extern int run_tmds_table(struct drm_device *, struct dcb_output *,
  831. int head, int pxclk);
  832. extern int call_lvds_script(struct drm_device *, struct dcb_output *, int head,
  833. enum LVDS_script, int pxclk);
  834. bool bios_encoder_match(struct dcb_output *, u32 hash);
  835. /* nouveau_mxm.c */
  836. int nouveau_mxm_init(struct drm_device *dev);
  837. void nouveau_mxm_fini(struct drm_device *dev);
  838. /* nouveau_ttm.c */
  839. int nouveau_ttm_global_init(struct drm_nouveau_private *);
  840. void nouveau_ttm_global_release(struct drm_nouveau_private *);
  841. int nouveau_ttm_mmap(struct file *, struct vm_area_struct *);
  842. /* nouveau_hdmi.c */
  843. void nouveau_hdmi_mode_set(struct drm_encoder *, struct drm_display_mode *);
  844. /* nv04_graph.c */
  845. extern int nv04_graph_create(struct drm_device *);
  846. extern int nv04_graph_object_new(struct nouveau_channel *, int, u32, u16);
  847. extern int nv04_graph_mthd_page_flip(struct nouveau_channel *chan,
  848. u32 class, u32 mthd, u32 data);
  849. extern struct nouveau_bitfield nv04_graph_nsource[];
  850. /* nv10_graph.c */
  851. extern int nv10_graph_create(struct drm_device *);
  852. extern struct nouveau_channel *nv10_graph_channel(struct drm_device *);
  853. extern struct nouveau_bitfield nv10_graph_intr[];
  854. extern struct nouveau_bitfield nv10_graph_nstatus[];
  855. /* nv20_graph.c */
  856. extern int nv20_graph_create(struct drm_device *);
  857. /* nv40_graph.c */
  858. extern int nv40_graph_create(struct drm_device *);
  859. extern void nv40_grctx_init(struct drm_device *, u32 *size);
  860. extern void nv40_grctx_fill(struct drm_device *, struct nouveau_gpuobj *);
  861. /* nv50_graph.c */
  862. extern int nv50_graph_create(struct drm_device *);
  863. extern struct nouveau_enum nv50_data_error_names[];
  864. extern int nv50_graph_isr_chid(struct drm_device *dev, u64 inst);
  865. extern int nv50_grctx_init(struct drm_device *, u32 *, u32, u32 *, u32 *);
  866. extern void nv50_grctx_fill(struct drm_device *, struct nouveau_gpuobj *);
  867. /* nvc0_graph.c */
  868. extern int nvc0_graph_create(struct drm_device *);
  869. extern int nvc0_graph_isr_chid(struct drm_device *dev, u64 inst);
  870. /* nve0_graph.c */
  871. extern int nve0_graph_create(struct drm_device *);
  872. /* nv84_crypt.c */
  873. extern int nv84_crypt_create(struct drm_device *);
  874. /* nv98_crypt.c */
  875. extern int nv98_crypt_create(struct drm_device *dev);
  876. /* nva3_copy.c */
  877. extern int nva3_copy_create(struct drm_device *dev);
  878. /* nvc0_copy.c */
  879. extern int nvc0_copy_create(struct drm_device *dev, int engine);
  880. /* nv31_mpeg.c */
  881. extern int nv31_mpeg_create(struct drm_device *dev);
  882. /* nv50_mpeg.c */
  883. extern int nv50_mpeg_create(struct drm_device *dev);
  884. /* nv84_bsp.c */
  885. /* nv98_bsp.c */
  886. extern int nv84_bsp_create(struct drm_device *dev);
  887. /* nv84_vp.c */
  888. /* nv98_vp.c */
  889. extern int nv84_vp_create(struct drm_device *dev);
  890. /* nv98_ppp.c */
  891. extern int nv98_ppp_create(struct drm_device *dev);
  892. /* nv04_instmem.c */
  893. extern int nv04_instmem_init(struct drm_device *);
  894. extern void nv04_instmem_takedown(struct drm_device *);
  895. extern int nv04_instmem_suspend(struct drm_device *);
  896. extern void nv04_instmem_resume(struct drm_device *);
  897. extern int nv04_instmem_get(struct nouveau_gpuobj *, struct nouveau_channel *,
  898. u32 size, u32 align);
  899. extern void nv04_instmem_put(struct nouveau_gpuobj *);
  900. extern int nv04_instmem_map(struct nouveau_gpuobj *);
  901. extern void nv04_instmem_unmap(struct nouveau_gpuobj *);
  902. extern void nv04_instmem_flush(struct drm_device *);
  903. /* nv40_instmem.c */
  904. extern int nv40_instmem_init(struct drm_device *);
  905. extern void nv40_instmem_takedown(struct drm_device *);
  906. extern int nv40_instmem_suspend(struct drm_device *);
  907. extern void nv40_instmem_resume(struct drm_device *);
  908. extern int nv40_instmem_get(struct nouveau_gpuobj *, struct nouveau_channel *,
  909. u32 size, u32 align);
  910. extern void nv40_instmem_put(struct nouveau_gpuobj *);
  911. extern int nv40_instmem_map(struct nouveau_gpuobj *);
  912. extern void nv40_instmem_unmap(struct nouveau_gpuobj *);
  913. extern void nv40_instmem_flush(struct drm_device *);
  914. /* nv50_instmem.c */
  915. extern int nv50_instmem_init(struct drm_device *);
  916. extern void nv50_instmem_takedown(struct drm_device *);
  917. extern int nv50_instmem_suspend(struct drm_device *);
  918. extern void nv50_instmem_resume(struct drm_device *);
  919. extern int nv50_instmem_get(struct nouveau_gpuobj *, struct nouveau_channel *,
  920. u32 size, u32 align);
  921. extern void nv50_instmem_put(struct nouveau_gpuobj *);
  922. extern int nv50_instmem_map(struct nouveau_gpuobj *);
  923. extern void nv50_instmem_unmap(struct nouveau_gpuobj *);
  924. extern void nv50_instmem_flush(struct drm_device *);
  925. extern void nv84_instmem_flush(struct drm_device *);
  926. /* nvc0_instmem.c */
  927. extern int nvc0_instmem_init(struct drm_device *);
  928. extern void nvc0_instmem_takedown(struct drm_device *);
  929. extern int nvc0_instmem_suspend(struct drm_device *);
  930. extern void nvc0_instmem_resume(struct drm_device *);
  931. extern long nouveau_compat_ioctl(struct file *file, unsigned int cmd,
  932. unsigned long arg);
  933. /* nv04_dac.c */
  934. extern int nv04_dac_create(struct drm_connector *, struct dcb_output *);
  935. extern uint32_t nv17_dac_sample_load(struct drm_encoder *encoder);
  936. extern int nv04_dac_output_offset(struct drm_encoder *encoder);
  937. extern void nv04_dac_update_dacclk(struct drm_encoder *encoder, bool enable);
  938. extern bool nv04_dac_in_use(struct drm_encoder *encoder);
  939. /* nv04_dfp.c */
  940. extern int nv04_dfp_create(struct drm_connector *, struct dcb_output *);
  941. extern int nv04_dfp_get_bound_head(struct drm_device *dev, struct dcb_output *dcbent);
  942. extern void nv04_dfp_bind_head(struct drm_device *dev, struct dcb_output *dcbent,
  943. int head, bool dl);
  944. extern void nv04_dfp_disable(struct drm_device *dev, int head);
  945. extern void nv04_dfp_update_fp_control(struct drm_encoder *encoder, int mode);
  946. /* nv04_tv.c */
  947. extern int nv04_tv_identify(struct drm_device *dev, int i2c_index);
  948. extern int nv04_tv_create(struct drm_connector *, struct dcb_output *);
  949. /* nv17_tv.c */
  950. extern int nv17_tv_create(struct drm_connector *, struct dcb_output *);
  951. /* nv04_display.c */
  952. extern int nv04_display_early_init(struct drm_device *);
  953. extern void nv04_display_late_takedown(struct drm_device *);
  954. extern int nv04_display_create(struct drm_device *);
  955. extern void nv04_display_destroy(struct drm_device *);
  956. extern int nv04_display_init(struct drm_device *);
  957. extern void nv04_display_fini(struct drm_device *);
  958. /* nvd0_display.c */
  959. extern int nvd0_display_create(struct drm_device *);
  960. extern void nvd0_display_destroy(struct drm_device *);
  961. extern int nvd0_display_init(struct drm_device *);
  962. extern void nvd0_display_fini(struct drm_device *);
  963. struct nouveau_bo *nvd0_display_crtc_sema(struct drm_device *, int crtc);
  964. void nvd0_display_flip_stop(struct drm_crtc *);
  965. int nvd0_display_flip_next(struct drm_crtc *, struct drm_framebuffer *,
  966. struct nouveau_channel *, u32 swap_interval);
  967. /* nv04_crtc.c */
  968. extern int nv04_crtc_create(struct drm_device *, int index);
  969. /* nouveau_bo.c */
  970. extern struct ttm_bo_driver nouveau_bo_driver;
  971. extern void nouveau_bo_move_init(struct nouveau_channel *);
  972. extern int nouveau_bo_new(struct drm_device *, int size, int align,
  973. uint32_t flags, uint32_t tile_mode,
  974. uint32_t tile_flags,
  975. struct sg_table *sg,
  976. struct nouveau_bo **);
  977. extern int nouveau_bo_pin(struct nouveau_bo *, uint32_t flags);
  978. extern int nouveau_bo_unpin(struct nouveau_bo *);
  979. extern int nouveau_bo_map(struct nouveau_bo *);
  980. extern void nouveau_bo_unmap(struct nouveau_bo *);
  981. extern void nouveau_bo_placement_set(struct nouveau_bo *, uint32_t type,
  982. uint32_t busy);
  983. extern u16 nouveau_bo_rd16(struct nouveau_bo *nvbo, unsigned index);
  984. extern void nouveau_bo_wr16(struct nouveau_bo *nvbo, unsigned index, u16 val);
  985. extern u32 nouveau_bo_rd32(struct nouveau_bo *nvbo, unsigned index);
  986. extern void nouveau_bo_wr32(struct nouveau_bo *nvbo, unsigned index, u32 val);
  987. extern void nouveau_bo_fence(struct nouveau_bo *, struct nouveau_fence *);
  988. extern int nouveau_bo_validate(struct nouveau_bo *, bool interruptible,
  989. bool no_wait_reserve, bool no_wait_gpu);
  990. extern struct nouveau_vma *
  991. nouveau_bo_vma_find(struct nouveau_bo *, struct nouveau_vm *);
  992. extern int nouveau_bo_vma_add(struct nouveau_bo *, struct nouveau_vm *,
  993. struct nouveau_vma *);
  994. extern void nouveau_bo_vma_del(struct nouveau_bo *, struct nouveau_vma *);
  995. /* nouveau_gem.c */
  996. extern int nouveau_gem_new(struct drm_device *, int size, int align,
  997. uint32_t domain, uint32_t tile_mode,
  998. uint32_t tile_flags, struct nouveau_bo **);
  999. extern int nouveau_gem_object_new(struct drm_gem_object *);
  1000. extern void nouveau_gem_object_del(struct drm_gem_object *);
  1001. extern int nouveau_gem_object_open(struct drm_gem_object *, struct drm_file *);
  1002. extern void nouveau_gem_object_close(struct drm_gem_object *,
  1003. struct drm_file *);
  1004. extern int nouveau_gem_ioctl_new(struct drm_device *, void *,
  1005. struct drm_file *);
  1006. extern int nouveau_gem_ioctl_pushbuf(struct drm_device *, void *,
  1007. struct drm_file *);
  1008. extern int nouveau_gem_ioctl_cpu_prep(struct drm_device *, void *,
  1009. struct drm_file *);
  1010. extern int nouveau_gem_ioctl_cpu_fini(struct drm_device *, void *,
  1011. struct drm_file *);
  1012. extern int nouveau_gem_ioctl_info(struct drm_device *, void *,
  1013. struct drm_file *);
  1014. extern struct dma_buf *nouveau_gem_prime_export(struct drm_device *dev,
  1015. struct drm_gem_object *obj, int flags);
  1016. extern struct drm_gem_object *nouveau_gem_prime_import(struct drm_device *dev,
  1017. struct dma_buf *dma_buf);
  1018. /* nouveau_display.c */
  1019. int nouveau_display_create(struct drm_device *dev);
  1020. void nouveau_display_destroy(struct drm_device *dev);
  1021. int nouveau_display_init(struct drm_device *dev);
  1022. void nouveau_display_fini(struct drm_device *dev);
  1023. int nouveau_vblank_enable(struct drm_device *dev, int crtc);
  1024. void nouveau_vblank_disable(struct drm_device *dev, int crtc);
  1025. int nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
  1026. struct drm_pending_vblank_event *event);
  1027. int nouveau_finish_page_flip(struct nouveau_channel *,
  1028. struct nouveau_page_flip_state *);
  1029. int nouveau_display_dumb_create(struct drm_file *, struct drm_device *,
  1030. struct drm_mode_create_dumb *args);
  1031. int nouveau_display_dumb_map_offset(struct drm_file *, struct drm_device *,
  1032. uint32_t handle, uint64_t *offset);
  1033. int nouveau_display_dumb_destroy(struct drm_file *, struct drm_device *,
  1034. uint32_t handle);
  1035. #ifndef ioread32_native
  1036. #ifdef __BIG_ENDIAN
  1037. #define ioread16_native ioread16be
  1038. #define iowrite16_native iowrite16be
  1039. #define ioread32_native ioread32be
  1040. #define iowrite32_native iowrite32be
  1041. #else /* def __BIG_ENDIAN */
  1042. #define ioread16_native ioread16
  1043. #define iowrite16_native iowrite16
  1044. #define ioread32_native ioread32
  1045. #define iowrite32_native iowrite32
  1046. #endif /* def __BIG_ENDIAN else */
  1047. #endif /* !ioread32_native */
  1048. /* channel control reg access */
  1049. static inline u32 nvchan_rd32(struct nouveau_channel *chan, unsigned reg)
  1050. {
  1051. return ioread32_native(chan->user + reg);
  1052. }
  1053. static inline void nvchan_wr32(struct nouveau_channel *chan,
  1054. unsigned reg, u32 val)
  1055. {
  1056. iowrite32_native(val, chan->user + reg);
  1057. }
  1058. /* register access */
  1059. #define nv_rd08 _nv_rd08
  1060. #define nv_wr08 _nv_wr08
  1061. #define nv_rd32 _nv_rd32
  1062. #define nv_wr32 _nv_wr32
  1063. #define nv_mask _nv_mask
  1064. #define nv_wait(dev, reg, mask, val) \
  1065. nouveau_wait_eq(dev, 2000000000ULL, (reg), (mask), (val))
  1066. #define nv_wait_ne(dev, reg, mask, val) \
  1067. nouveau_wait_ne(dev, 2000000000ULL, (reg), (mask), (val))
  1068. #define nv_wait_cb(dev, func, data) \
  1069. nouveau_wait_cb(dev, 2000000000ULL, (func), (data))
  1070. /* PRAMIN access */
  1071. static inline u32 nv_ri32(struct drm_device *dev, unsigned offset)
  1072. {
  1073. struct drm_nouveau_private *dev_priv = dev->dev_private;
  1074. return ioread32_native(dev_priv->ramin + offset);
  1075. }
  1076. static inline void nv_wi32(struct drm_device *dev, unsigned offset, u32 val)
  1077. {
  1078. struct drm_nouveau_private *dev_priv = dev->dev_private;
  1079. iowrite32_native(val, dev_priv->ramin + offset);
  1080. }
  1081. /* object access */
  1082. extern u32 nv_ro32(struct nouveau_gpuobj *, u32 offset);
  1083. extern void nv_wo32(struct nouveau_gpuobj *, u32 offset, u32 val);
  1084. /*
  1085. * Logging
  1086. * Argument d is (struct drm_device *).
  1087. */
  1088. #define NV_PRINTK(level, d, fmt, arg...) \
  1089. printk(level "[" DRM_NAME "] " DRIVER_NAME " %s: " fmt, \
  1090. pci_name(d->pdev), ##arg)
  1091. #ifndef NV_DEBUG_NOTRACE
  1092. #define NV_DEBUG(d, fmt, arg...) do { \
  1093. if (drm_debug & DRM_UT_DRIVER) { \
  1094. NV_PRINTK(KERN_DEBUG, d, "%s:%d - " fmt, __func__, \
  1095. __LINE__, ##arg); \
  1096. } \
  1097. } while (0)
  1098. #define NV_DEBUG_KMS(d, fmt, arg...) do { \
  1099. if (drm_debug & DRM_UT_KMS) { \
  1100. NV_PRINTK(KERN_DEBUG, d, "%s:%d - " fmt, __func__, \
  1101. __LINE__, ##arg); \
  1102. } \
  1103. } while (0)
  1104. #else
  1105. #define NV_DEBUG(d, fmt, arg...) do { \
  1106. if (drm_debug & DRM_UT_DRIVER) \
  1107. NV_PRINTK(KERN_DEBUG, d, fmt, ##arg); \
  1108. } while (0)
  1109. #define NV_DEBUG_KMS(d, fmt, arg...) do { \
  1110. if (drm_debug & DRM_UT_KMS) \
  1111. NV_PRINTK(KERN_DEBUG, d, fmt, ##arg); \
  1112. } while (0)
  1113. #endif
  1114. #define NV_ERROR(d, fmt, arg...) NV_PRINTK(KERN_ERR, d, fmt, ##arg)
  1115. #define NV_INFO(d, fmt, arg...) NV_PRINTK(KERN_INFO, d, fmt, ##arg)
  1116. #define NV_TRACEWARN(d, fmt, arg...) NV_PRINTK(KERN_NOTICE, d, fmt, ##arg)
  1117. #define NV_TRACE(d, fmt, arg...) NV_PRINTK(KERN_INFO, d, fmt, ##arg)
  1118. #define NV_WARN(d, fmt, arg...) NV_PRINTK(KERN_WARNING, d, fmt, ##arg)
  1119. #define NV_WARNONCE(d, fmt, arg...) do { \
  1120. static int _warned = 0; \
  1121. if (!_warned) { \
  1122. NV_WARN(d, fmt, ##arg); \
  1123. _warned = 1; \
  1124. } \
  1125. } while(0)
  1126. /* nouveau_reg_debug bitmask */
  1127. enum {
  1128. NOUVEAU_REG_DEBUG_MC = 0x1,
  1129. NOUVEAU_REG_DEBUG_VIDEO = 0x2,
  1130. NOUVEAU_REG_DEBUG_FB = 0x4,
  1131. NOUVEAU_REG_DEBUG_EXTDEV = 0x8,
  1132. NOUVEAU_REG_DEBUG_CRTC = 0x10,
  1133. NOUVEAU_REG_DEBUG_RAMDAC = 0x20,
  1134. NOUVEAU_REG_DEBUG_VGACRTC = 0x40,
  1135. NOUVEAU_REG_DEBUG_RMVIO = 0x80,
  1136. NOUVEAU_REG_DEBUG_VGAATTR = 0x100,
  1137. NOUVEAU_REG_DEBUG_EVO = 0x200,
  1138. NOUVEAU_REG_DEBUG_AUXCH = 0x400
  1139. };
  1140. #define NV_REG_DEBUG(type, dev, fmt, arg...) do { \
  1141. if (nouveau_reg_debug & NOUVEAU_REG_DEBUG_##type) \
  1142. NV_PRINTK(KERN_DEBUG, dev, "%s: " fmt, __func__, ##arg); \
  1143. } while (0)
  1144. static inline bool
  1145. nv_two_heads(struct drm_device *dev)
  1146. {
  1147. struct drm_nouveau_private *dev_priv = dev->dev_private;
  1148. const int impl = dev->pci_device & 0x0ff0;
  1149. if (dev_priv->card_type >= NV_10 && impl != 0x0100 &&
  1150. impl != 0x0150 && impl != 0x01a0 && impl != 0x0200)
  1151. return true;
  1152. return false;
  1153. }
  1154. static inline bool
  1155. nv_gf4_disp_arch(struct drm_device *dev)
  1156. {
  1157. return nv_two_heads(dev) && (dev->pci_device & 0x0ff0) != 0x0110;
  1158. }
  1159. static inline bool
  1160. nv_two_reg_pll(struct drm_device *dev)
  1161. {
  1162. struct drm_nouveau_private *dev_priv = dev->dev_private;
  1163. const int impl = dev->pci_device & 0x0ff0;
  1164. if (impl == 0x0310 || impl == 0x0340 || dev_priv->card_type >= NV_40)
  1165. return true;
  1166. return false;
  1167. }
  1168. static inline bool
  1169. nv_match_device(struct drm_device *dev, unsigned device,
  1170. unsigned sub_vendor, unsigned sub_device)
  1171. {
  1172. return dev->pdev->device == device &&
  1173. dev->pdev->subsystem_vendor == sub_vendor &&
  1174. dev->pdev->subsystem_device == sub_device;
  1175. }
  1176. static inline void *
  1177. nv_engine(struct drm_device *dev, int engine)
  1178. {
  1179. struct drm_nouveau_private *dev_priv = dev->dev_private;
  1180. return (void *)dev_priv->eng[engine];
  1181. }
  1182. /* returns 1 if device is one of the nv4x using the 0x4497 object class,
  1183. * helpful to determine a number of other hardware features
  1184. */
  1185. static inline int
  1186. nv44_graph_class(struct drm_device *dev)
  1187. {
  1188. struct drm_nouveau_private *dev_priv = dev->dev_private;
  1189. if ((dev_priv->chipset & 0xf0) == 0x60)
  1190. return 1;
  1191. return !(0x0baf & (1 << (dev_priv->chipset & 0x0f)));
  1192. }
  1193. /* memory type/access flags, do not match hardware values */
  1194. #define NV_MEM_ACCESS_RO 1
  1195. #define NV_MEM_ACCESS_WO 2
  1196. #define NV_MEM_ACCESS_RW (NV_MEM_ACCESS_RO | NV_MEM_ACCESS_WO)
  1197. #define NV_MEM_ACCESS_SYS 4
  1198. #define NV_MEM_ACCESS_VM 8
  1199. #define NV_MEM_ACCESS_NOSNOOP 16
  1200. #define NV_MEM_TARGET_VRAM 0
  1201. #define NV_MEM_TARGET_PCI 1
  1202. #define NV_MEM_TARGET_PCI_NOSNOOP 2
  1203. #define NV_MEM_TARGET_VM 3
  1204. #define NV_MEM_TARGET_GART 4
  1205. #define NV_MEM_TYPE_VM 0x7f
  1206. #define NV_MEM_COMP_VM 0x03
  1207. /* FIFO methods */
  1208. #define NV01_SUBCHAN_OBJECT 0x00000000
  1209. #define NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH 0x00000010
  1210. #define NV84_SUBCHAN_SEMAPHORE_ADDRESS_LOW 0x00000014
  1211. #define NV84_SUBCHAN_SEMAPHORE_SEQUENCE 0x00000018
  1212. #define NV84_SUBCHAN_SEMAPHORE_TRIGGER 0x0000001c
  1213. #define NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL 0x00000001
  1214. #define NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG 0x00000002
  1215. #define NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL 0x00000004
  1216. #define NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD 0x00001000
  1217. #define NV84_SUBCHAN_NOTIFY_INTR 0x00000020
  1218. #define NV84_SUBCHAN_WRCACHE_FLUSH 0x00000024
  1219. #define NV10_SUBCHAN_REF_CNT 0x00000050
  1220. #define NVSW_SUBCHAN_PAGE_FLIP 0x00000054
  1221. #define NV11_SUBCHAN_DMA_SEMAPHORE 0x00000060
  1222. #define NV11_SUBCHAN_SEMAPHORE_OFFSET 0x00000064
  1223. #define NV11_SUBCHAN_SEMAPHORE_ACQUIRE 0x00000068
  1224. #define NV11_SUBCHAN_SEMAPHORE_RELEASE 0x0000006c
  1225. #define NV40_SUBCHAN_YIELD 0x00000080
  1226. /* NV_SW object class */
  1227. #define NV_SW 0x0000506e
  1228. #define NV_SW_DMA_VBLSEM 0x0000018c
  1229. #define NV_SW_VBLSEM_OFFSET 0x00000400
  1230. #define NV_SW_VBLSEM_RELEASE_VALUE 0x00000404
  1231. #define NV_SW_VBLSEM_RELEASE 0x00000408
  1232. #define NV_SW_PAGE_FLIP 0x00000500
  1233. #endif /* __NOUVEAU_DRV_H__ */