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