rv770.c 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. /*
  2. * Copyright 2008 Advanced Micro Devices, Inc.
  3. * Copyright 2008 Red Hat Inc.
  4. * Copyright 2009 Jerome Glisse.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the "Software"),
  8. * to deal in the Software without restriction, including without limitation
  9. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. * and/or sell copies of the Software, and to permit persons to whom the
  11. * Software is furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  20. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  21. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  22. * OTHER DEALINGS IN THE SOFTWARE.
  23. *
  24. * Authors: Dave Airlie
  25. * Alex Deucher
  26. * Jerome Glisse
  27. */
  28. #include <linux/firmware.h>
  29. #include <linux/platform_device.h>
  30. #include <linux/slab.h>
  31. #include <drm/drmP.h>
  32. #include "radeon.h"
  33. #include "radeon_asic.h"
  34. #include <drm/radeon_drm.h>
  35. #include "rv770d.h"
  36. #include "atom.h"
  37. #include "avivod.h"
  38. #define R700_PFP_UCODE_SIZE 848
  39. #define R700_PM4_UCODE_SIZE 1360
  40. static void rv770_gpu_init(struct radeon_device *rdev);
  41. void rv770_fini(struct radeon_device *rdev);
  42. static void rv770_pcie_gen2_enable(struct radeon_device *rdev);
  43. int evergreen_set_uvd_clocks(struct radeon_device *rdev, u32 vclk, u32 dclk);
  44. int rv770_set_uvd_clocks(struct radeon_device *rdev, u32 vclk, u32 dclk)
  45. {
  46. unsigned fb_div = 0, vclk_div = 0, dclk_div = 0;
  47. int r;
  48. /* RV740 uses evergreen uvd clk programming */
  49. if (rdev->family == CHIP_RV740)
  50. return evergreen_set_uvd_clocks(rdev, vclk, dclk);
  51. /* bypass vclk and dclk with bclk */
  52. WREG32_P(CG_UPLL_FUNC_CNTL_2,
  53. VCLK_SRC_SEL(1) | DCLK_SRC_SEL(1),
  54. ~(VCLK_SRC_SEL_MASK | DCLK_SRC_SEL_MASK));
  55. if (!vclk || !dclk) {
  56. /* keep the Bypass mode, put PLL to sleep */
  57. WREG32_P(CG_UPLL_FUNC_CNTL, UPLL_SLEEP_MASK, ~UPLL_SLEEP_MASK);
  58. return 0;
  59. }
  60. r = radeon_uvd_calc_upll_dividers(rdev, vclk, dclk, 50000, 160000,
  61. 43663, 0x03FFFFFE, 1, 30, ~0,
  62. &fb_div, &vclk_div, &dclk_div);
  63. if (r)
  64. return r;
  65. fb_div |= 1;
  66. vclk_div -= 1;
  67. dclk_div -= 1;
  68. /* set UPLL_FB_DIV to 0x50000 */
  69. WREG32_P(CG_UPLL_FUNC_CNTL_3, UPLL_FB_DIV(0x50000), ~UPLL_FB_DIV_MASK);
  70. /* deassert UPLL_RESET and UPLL_SLEEP */
  71. WREG32_P(CG_UPLL_FUNC_CNTL, 0, ~(UPLL_RESET_MASK | UPLL_SLEEP_MASK));
  72. /* assert BYPASS EN and FB_DIV[0] <- ??? why? */
  73. WREG32_P(CG_UPLL_FUNC_CNTL, UPLL_BYPASS_EN_MASK, ~UPLL_BYPASS_EN_MASK);
  74. WREG32_P(CG_UPLL_FUNC_CNTL_3, UPLL_FB_DIV(1), ~UPLL_FB_DIV(1));
  75. r = radeon_uvd_send_upll_ctlreq(rdev, CG_UPLL_FUNC_CNTL);
  76. if (r)
  77. return r;
  78. /* assert PLL_RESET */
  79. WREG32_P(CG_UPLL_FUNC_CNTL, UPLL_RESET_MASK, ~UPLL_RESET_MASK);
  80. /* set the required FB_DIV, REF_DIV, Post divder values */
  81. WREG32_P(CG_UPLL_FUNC_CNTL, UPLL_REF_DIV(1), ~UPLL_REF_DIV_MASK);
  82. WREG32_P(CG_UPLL_FUNC_CNTL_2,
  83. UPLL_SW_HILEN(vclk_div >> 1) |
  84. UPLL_SW_LOLEN((vclk_div >> 1) + (vclk_div & 1)) |
  85. UPLL_SW_HILEN2(dclk_div >> 1) |
  86. UPLL_SW_LOLEN2((dclk_div >> 1) + (dclk_div & 1)),
  87. ~UPLL_SW_MASK);
  88. WREG32_P(CG_UPLL_FUNC_CNTL_3, UPLL_FB_DIV(fb_div),
  89. ~UPLL_FB_DIV_MASK);
  90. /* give the PLL some time to settle */
  91. mdelay(15);
  92. /* deassert PLL_RESET */
  93. WREG32_P(CG_UPLL_FUNC_CNTL, 0, ~UPLL_RESET_MASK);
  94. mdelay(15);
  95. /* deassert BYPASS EN and FB_DIV[0] <- ??? why? */
  96. WREG32_P(CG_UPLL_FUNC_CNTL, 0, ~UPLL_BYPASS_EN_MASK);
  97. WREG32_P(CG_UPLL_FUNC_CNTL_3, 0, ~UPLL_FB_DIV(1));
  98. r = radeon_uvd_send_upll_ctlreq(rdev, CG_UPLL_FUNC_CNTL);
  99. if (r)
  100. return r;
  101. /* switch VCLK and DCLK selection */
  102. WREG32_P(CG_UPLL_FUNC_CNTL_2,
  103. VCLK_SRC_SEL(2) | DCLK_SRC_SEL(2),
  104. ~(VCLK_SRC_SEL_MASK | DCLK_SRC_SEL_MASK));
  105. mdelay(100);
  106. return 0;
  107. }
  108. static const u32 r7xx_golden_registers[] =
  109. {
  110. 0x8d00, 0xffffffff, 0x0e0e0074,
  111. 0x8d04, 0xffffffff, 0x013a2b34,
  112. 0x9508, 0xffffffff, 0x00000002,
  113. 0x8b20, 0xffffffff, 0,
  114. 0x88c4, 0xffffffff, 0x000000c2,
  115. 0x28350, 0xffffffff, 0,
  116. 0x9058, 0xffffffff, 0x0fffc40f,
  117. 0x240c, 0xffffffff, 0x00000380,
  118. 0x733c, 0xffffffff, 0x00000002,
  119. 0x2650, 0x00040000, 0,
  120. 0x20bc, 0x00040000, 0,
  121. 0x7300, 0xffffffff, 0x001000f0
  122. };
  123. static const u32 r7xx_golden_dyn_gpr_registers[] =
  124. {
  125. 0x8db0, 0xffffffff, 0x98989898,
  126. 0x8db4, 0xffffffff, 0x98989898,
  127. 0x8db8, 0xffffffff, 0x98989898,
  128. 0x8dbc, 0xffffffff, 0x98989898,
  129. 0x8dc0, 0xffffffff, 0x98989898,
  130. 0x8dc4, 0xffffffff, 0x98989898,
  131. 0x8dc8, 0xffffffff, 0x98989898,
  132. 0x8dcc, 0xffffffff, 0x98989898,
  133. 0x88c4, 0xffffffff, 0x00000082
  134. };
  135. static const u32 rv770_golden_registers[] =
  136. {
  137. 0x562c, 0xffffffff, 0,
  138. 0x3f90, 0xffffffff, 0,
  139. 0x9148, 0xffffffff, 0,
  140. 0x3f94, 0xffffffff, 0,
  141. 0x914c, 0xffffffff, 0,
  142. 0x9698, 0x18000000, 0x18000000
  143. };
  144. static const u32 rv770ce_golden_registers[] =
  145. {
  146. 0x562c, 0xffffffff, 0,
  147. 0x3f90, 0xffffffff, 0x00cc0000,
  148. 0x9148, 0xffffffff, 0x00cc0000,
  149. 0x3f94, 0xffffffff, 0x00cc0000,
  150. 0x914c, 0xffffffff, 0x00cc0000,
  151. 0x9b7c, 0xffffffff, 0x00fa0000,
  152. 0x3f8c, 0xffffffff, 0x00fa0000,
  153. 0x9698, 0x18000000, 0x18000000
  154. };
  155. static const u32 rv770_mgcg_init[] =
  156. {
  157. 0x8bcc, 0xffffffff, 0x130300f9,
  158. 0x5448, 0xffffffff, 0x100,
  159. 0x55e4, 0xffffffff, 0x100,
  160. 0x160c, 0xffffffff, 0x100,
  161. 0x5644, 0xffffffff, 0x100,
  162. 0xc164, 0xffffffff, 0x100,
  163. 0x8a18, 0xffffffff, 0x100,
  164. 0x897c, 0xffffffff, 0x8000100,
  165. 0x8b28, 0xffffffff, 0x3c000100,
  166. 0x9144, 0xffffffff, 0x100,
  167. 0x9a1c, 0xffffffff, 0x10000,
  168. 0x9a50, 0xffffffff, 0x100,
  169. 0x9a1c, 0xffffffff, 0x10001,
  170. 0x9a50, 0xffffffff, 0x100,
  171. 0x9a1c, 0xffffffff, 0x10002,
  172. 0x9a50, 0xffffffff, 0x100,
  173. 0x9a1c, 0xffffffff, 0x10003,
  174. 0x9a50, 0xffffffff, 0x100,
  175. 0x9a1c, 0xffffffff, 0x0,
  176. 0x9870, 0xffffffff, 0x100,
  177. 0x8d58, 0xffffffff, 0x100,
  178. 0x9500, 0xffffffff, 0x0,
  179. 0x9510, 0xffffffff, 0x100,
  180. 0x9500, 0xffffffff, 0x1,
  181. 0x9510, 0xffffffff, 0x100,
  182. 0x9500, 0xffffffff, 0x2,
  183. 0x9510, 0xffffffff, 0x100,
  184. 0x9500, 0xffffffff, 0x3,
  185. 0x9510, 0xffffffff, 0x100,
  186. 0x9500, 0xffffffff, 0x4,
  187. 0x9510, 0xffffffff, 0x100,
  188. 0x9500, 0xffffffff, 0x5,
  189. 0x9510, 0xffffffff, 0x100,
  190. 0x9500, 0xffffffff, 0x6,
  191. 0x9510, 0xffffffff, 0x100,
  192. 0x9500, 0xffffffff, 0x7,
  193. 0x9510, 0xffffffff, 0x100,
  194. 0x9500, 0xffffffff, 0x8,
  195. 0x9510, 0xffffffff, 0x100,
  196. 0x9500, 0xffffffff, 0x9,
  197. 0x9510, 0xffffffff, 0x100,
  198. 0x9500, 0xffffffff, 0x8000,
  199. 0x9490, 0xffffffff, 0x0,
  200. 0x949c, 0xffffffff, 0x100,
  201. 0x9490, 0xffffffff, 0x1,
  202. 0x949c, 0xffffffff, 0x100,
  203. 0x9490, 0xffffffff, 0x2,
  204. 0x949c, 0xffffffff, 0x100,
  205. 0x9490, 0xffffffff, 0x3,
  206. 0x949c, 0xffffffff, 0x100,
  207. 0x9490, 0xffffffff, 0x4,
  208. 0x949c, 0xffffffff, 0x100,
  209. 0x9490, 0xffffffff, 0x5,
  210. 0x949c, 0xffffffff, 0x100,
  211. 0x9490, 0xffffffff, 0x6,
  212. 0x949c, 0xffffffff, 0x100,
  213. 0x9490, 0xffffffff, 0x7,
  214. 0x949c, 0xffffffff, 0x100,
  215. 0x9490, 0xffffffff, 0x8,
  216. 0x949c, 0xffffffff, 0x100,
  217. 0x9490, 0xffffffff, 0x9,
  218. 0x949c, 0xffffffff, 0x100,
  219. 0x9490, 0xffffffff, 0x8000,
  220. 0x9604, 0xffffffff, 0x0,
  221. 0x9654, 0xffffffff, 0x100,
  222. 0x9604, 0xffffffff, 0x1,
  223. 0x9654, 0xffffffff, 0x100,
  224. 0x9604, 0xffffffff, 0x2,
  225. 0x9654, 0xffffffff, 0x100,
  226. 0x9604, 0xffffffff, 0x3,
  227. 0x9654, 0xffffffff, 0x100,
  228. 0x9604, 0xffffffff, 0x4,
  229. 0x9654, 0xffffffff, 0x100,
  230. 0x9604, 0xffffffff, 0x5,
  231. 0x9654, 0xffffffff, 0x100,
  232. 0x9604, 0xffffffff, 0x6,
  233. 0x9654, 0xffffffff, 0x100,
  234. 0x9604, 0xffffffff, 0x7,
  235. 0x9654, 0xffffffff, 0x100,
  236. 0x9604, 0xffffffff, 0x8,
  237. 0x9654, 0xffffffff, 0x100,
  238. 0x9604, 0xffffffff, 0x9,
  239. 0x9654, 0xffffffff, 0x100,
  240. 0x9604, 0xffffffff, 0x80000000,
  241. 0x9030, 0xffffffff, 0x100,
  242. 0x9034, 0xffffffff, 0x100,
  243. 0x9038, 0xffffffff, 0x100,
  244. 0x903c, 0xffffffff, 0x100,
  245. 0x9040, 0xffffffff, 0x100,
  246. 0xa200, 0xffffffff, 0x100,
  247. 0xa204, 0xffffffff, 0x100,
  248. 0xa208, 0xffffffff, 0x100,
  249. 0xa20c, 0xffffffff, 0x100,
  250. 0x971c, 0xffffffff, 0x100,
  251. 0x915c, 0xffffffff, 0x00020001,
  252. 0x9160, 0xffffffff, 0x00040003,
  253. 0x916c, 0xffffffff, 0x00060005,
  254. 0x9170, 0xffffffff, 0x00080007,
  255. 0x9174, 0xffffffff, 0x000a0009,
  256. 0x9178, 0xffffffff, 0x000c000b,
  257. 0x917c, 0xffffffff, 0x000e000d,
  258. 0x9180, 0xffffffff, 0x0010000f,
  259. 0x918c, 0xffffffff, 0x00120011,
  260. 0x9190, 0xffffffff, 0x00140013,
  261. 0x9194, 0xffffffff, 0x00020001,
  262. 0x9198, 0xffffffff, 0x00040003,
  263. 0x919c, 0xffffffff, 0x00060005,
  264. 0x91a8, 0xffffffff, 0x00080007,
  265. 0x91ac, 0xffffffff, 0x000a0009,
  266. 0x91b0, 0xffffffff, 0x000c000b,
  267. 0x91b4, 0xffffffff, 0x000e000d,
  268. 0x91b8, 0xffffffff, 0x0010000f,
  269. 0x91c4, 0xffffffff, 0x00120011,
  270. 0x91c8, 0xffffffff, 0x00140013,
  271. 0x91cc, 0xffffffff, 0x00020001,
  272. 0x91d0, 0xffffffff, 0x00040003,
  273. 0x91d4, 0xffffffff, 0x00060005,
  274. 0x91e0, 0xffffffff, 0x00080007,
  275. 0x91e4, 0xffffffff, 0x000a0009,
  276. 0x91e8, 0xffffffff, 0x000c000b,
  277. 0x91ec, 0xffffffff, 0x00020001,
  278. 0x91f0, 0xffffffff, 0x00040003,
  279. 0x91f4, 0xffffffff, 0x00060005,
  280. 0x9200, 0xffffffff, 0x00080007,
  281. 0x9204, 0xffffffff, 0x000a0009,
  282. 0x9208, 0xffffffff, 0x000c000b,
  283. 0x920c, 0xffffffff, 0x000e000d,
  284. 0x9210, 0xffffffff, 0x0010000f,
  285. 0x921c, 0xffffffff, 0x00120011,
  286. 0x9220, 0xffffffff, 0x00140013,
  287. 0x9224, 0xffffffff, 0x00020001,
  288. 0x9228, 0xffffffff, 0x00040003,
  289. 0x922c, 0xffffffff, 0x00060005,
  290. 0x9238, 0xffffffff, 0x00080007,
  291. 0x923c, 0xffffffff, 0x000a0009,
  292. 0x9240, 0xffffffff, 0x000c000b,
  293. 0x9244, 0xffffffff, 0x000e000d,
  294. 0x9248, 0xffffffff, 0x0010000f,
  295. 0x9254, 0xffffffff, 0x00120011,
  296. 0x9258, 0xffffffff, 0x00140013,
  297. 0x925c, 0xffffffff, 0x00020001,
  298. 0x9260, 0xffffffff, 0x00040003,
  299. 0x9264, 0xffffffff, 0x00060005,
  300. 0x9270, 0xffffffff, 0x00080007,
  301. 0x9274, 0xffffffff, 0x000a0009,
  302. 0x9278, 0xffffffff, 0x000c000b,
  303. 0x927c, 0xffffffff, 0x000e000d,
  304. 0x9280, 0xffffffff, 0x0010000f,
  305. 0x928c, 0xffffffff, 0x00120011,
  306. 0x9290, 0xffffffff, 0x00140013,
  307. 0x9294, 0xffffffff, 0x00020001,
  308. 0x929c, 0xffffffff, 0x00040003,
  309. 0x92a0, 0xffffffff, 0x00060005,
  310. 0x92a4, 0xffffffff, 0x00080007
  311. };
  312. static const u32 rv710_golden_registers[] =
  313. {
  314. 0x3f90, 0x00ff0000, 0x00fc0000,
  315. 0x9148, 0x00ff0000, 0x00fc0000,
  316. 0x3f94, 0x00ff0000, 0x00fc0000,
  317. 0x914c, 0x00ff0000, 0x00fc0000,
  318. 0xb4c, 0x00000020, 0x00000020,
  319. 0xa180, 0xffffffff, 0x00003f3f
  320. };
  321. static const u32 rv710_mgcg_init[] =
  322. {
  323. 0x8bcc, 0xffffffff, 0x13030040,
  324. 0x5448, 0xffffffff, 0x100,
  325. 0x55e4, 0xffffffff, 0x100,
  326. 0x160c, 0xffffffff, 0x100,
  327. 0x5644, 0xffffffff, 0x100,
  328. 0xc164, 0xffffffff, 0x100,
  329. 0x8a18, 0xffffffff, 0x100,
  330. 0x897c, 0xffffffff, 0x8000100,
  331. 0x8b28, 0xffffffff, 0x3c000100,
  332. 0x9144, 0xffffffff, 0x100,
  333. 0x9a1c, 0xffffffff, 0x10000,
  334. 0x9a50, 0xffffffff, 0x100,
  335. 0x9a1c, 0xffffffff, 0x0,
  336. 0x9870, 0xffffffff, 0x100,
  337. 0x8d58, 0xffffffff, 0x100,
  338. 0x9500, 0xffffffff, 0x0,
  339. 0x9510, 0xffffffff, 0x100,
  340. 0x9500, 0xffffffff, 0x1,
  341. 0x9510, 0xffffffff, 0x100,
  342. 0x9500, 0xffffffff, 0x8000,
  343. 0x9490, 0xffffffff, 0x0,
  344. 0x949c, 0xffffffff, 0x100,
  345. 0x9490, 0xffffffff, 0x1,
  346. 0x949c, 0xffffffff, 0x100,
  347. 0x9490, 0xffffffff, 0x8000,
  348. 0x9604, 0xffffffff, 0x0,
  349. 0x9654, 0xffffffff, 0x100,
  350. 0x9604, 0xffffffff, 0x1,
  351. 0x9654, 0xffffffff, 0x100,
  352. 0x9604, 0xffffffff, 0x80000000,
  353. 0x9030, 0xffffffff, 0x100,
  354. 0x9034, 0xffffffff, 0x100,
  355. 0x9038, 0xffffffff, 0x100,
  356. 0x903c, 0xffffffff, 0x100,
  357. 0x9040, 0xffffffff, 0x100,
  358. 0xa200, 0xffffffff, 0x100,
  359. 0xa204, 0xffffffff, 0x100,
  360. 0xa208, 0xffffffff, 0x100,
  361. 0xa20c, 0xffffffff, 0x100,
  362. 0x971c, 0xffffffff, 0x100,
  363. 0x915c, 0xffffffff, 0x00020001,
  364. 0x9174, 0xffffffff, 0x00000003,
  365. 0x9178, 0xffffffff, 0x00050001,
  366. 0x917c, 0xffffffff, 0x00030002,
  367. 0x918c, 0xffffffff, 0x00000004,
  368. 0x9190, 0xffffffff, 0x00070006,
  369. 0x9194, 0xffffffff, 0x00050001,
  370. 0x9198, 0xffffffff, 0x00030002,
  371. 0x91a8, 0xffffffff, 0x00000004,
  372. 0x91ac, 0xffffffff, 0x00070006,
  373. 0x91e8, 0xffffffff, 0x00000001,
  374. 0x9294, 0xffffffff, 0x00000001,
  375. 0x929c, 0xffffffff, 0x00000002,
  376. 0x92a0, 0xffffffff, 0x00040003,
  377. 0x9150, 0xffffffff, 0x4d940000
  378. };
  379. static const u32 rv730_golden_registers[] =
  380. {
  381. 0x3f90, 0x00ff0000, 0x00f00000,
  382. 0x9148, 0x00ff0000, 0x00f00000,
  383. 0x3f94, 0x00ff0000, 0x00f00000,
  384. 0x914c, 0x00ff0000, 0x00f00000,
  385. 0x900c, 0xffffffff, 0x003b033f,
  386. 0xb4c, 0x00000020, 0x00000020,
  387. 0xa180, 0xffffffff, 0x00003f3f
  388. };
  389. static const u32 rv730_mgcg_init[] =
  390. {
  391. 0x8bcc, 0xffffffff, 0x130300f9,
  392. 0x5448, 0xffffffff, 0x100,
  393. 0x55e4, 0xffffffff, 0x100,
  394. 0x160c, 0xffffffff, 0x100,
  395. 0x5644, 0xffffffff, 0x100,
  396. 0xc164, 0xffffffff, 0x100,
  397. 0x8a18, 0xffffffff, 0x100,
  398. 0x897c, 0xffffffff, 0x8000100,
  399. 0x8b28, 0xffffffff, 0x3c000100,
  400. 0x9144, 0xffffffff, 0x100,
  401. 0x9a1c, 0xffffffff, 0x10000,
  402. 0x9a50, 0xffffffff, 0x100,
  403. 0x9a1c, 0xffffffff, 0x10001,
  404. 0x9a50, 0xffffffff, 0x100,
  405. 0x9a1c, 0xffffffff, 0x0,
  406. 0x9870, 0xffffffff, 0x100,
  407. 0x8d58, 0xffffffff, 0x100,
  408. 0x9500, 0xffffffff, 0x0,
  409. 0x9510, 0xffffffff, 0x100,
  410. 0x9500, 0xffffffff, 0x1,
  411. 0x9510, 0xffffffff, 0x100,
  412. 0x9500, 0xffffffff, 0x2,
  413. 0x9510, 0xffffffff, 0x100,
  414. 0x9500, 0xffffffff, 0x3,
  415. 0x9510, 0xffffffff, 0x100,
  416. 0x9500, 0xffffffff, 0x4,
  417. 0x9510, 0xffffffff, 0x100,
  418. 0x9500, 0xffffffff, 0x5,
  419. 0x9510, 0xffffffff, 0x100,
  420. 0x9500, 0xffffffff, 0x6,
  421. 0x9510, 0xffffffff, 0x100,
  422. 0x9500, 0xffffffff, 0x7,
  423. 0x9510, 0xffffffff, 0x100,
  424. 0x9500, 0xffffffff, 0x8000,
  425. 0x9490, 0xffffffff, 0x0,
  426. 0x949c, 0xffffffff, 0x100,
  427. 0x9490, 0xffffffff, 0x1,
  428. 0x949c, 0xffffffff, 0x100,
  429. 0x9490, 0xffffffff, 0x2,
  430. 0x949c, 0xffffffff, 0x100,
  431. 0x9490, 0xffffffff, 0x3,
  432. 0x949c, 0xffffffff, 0x100,
  433. 0x9490, 0xffffffff, 0x4,
  434. 0x949c, 0xffffffff, 0x100,
  435. 0x9490, 0xffffffff, 0x5,
  436. 0x949c, 0xffffffff, 0x100,
  437. 0x9490, 0xffffffff, 0x6,
  438. 0x949c, 0xffffffff, 0x100,
  439. 0x9490, 0xffffffff, 0x7,
  440. 0x949c, 0xffffffff, 0x100,
  441. 0x9490, 0xffffffff, 0x8000,
  442. 0x9604, 0xffffffff, 0x0,
  443. 0x9654, 0xffffffff, 0x100,
  444. 0x9604, 0xffffffff, 0x1,
  445. 0x9654, 0xffffffff, 0x100,
  446. 0x9604, 0xffffffff, 0x2,
  447. 0x9654, 0xffffffff, 0x100,
  448. 0x9604, 0xffffffff, 0x3,
  449. 0x9654, 0xffffffff, 0x100,
  450. 0x9604, 0xffffffff, 0x4,
  451. 0x9654, 0xffffffff, 0x100,
  452. 0x9604, 0xffffffff, 0x5,
  453. 0x9654, 0xffffffff, 0x100,
  454. 0x9604, 0xffffffff, 0x6,
  455. 0x9654, 0xffffffff, 0x100,
  456. 0x9604, 0xffffffff, 0x7,
  457. 0x9654, 0xffffffff, 0x100,
  458. 0x9604, 0xffffffff, 0x80000000,
  459. 0x9030, 0xffffffff, 0x100,
  460. 0x9034, 0xffffffff, 0x100,
  461. 0x9038, 0xffffffff, 0x100,
  462. 0x903c, 0xffffffff, 0x100,
  463. 0x9040, 0xffffffff, 0x100,
  464. 0xa200, 0xffffffff, 0x100,
  465. 0xa204, 0xffffffff, 0x100,
  466. 0xa208, 0xffffffff, 0x100,
  467. 0xa20c, 0xffffffff, 0x100,
  468. 0x971c, 0xffffffff, 0x100,
  469. 0x915c, 0xffffffff, 0x00020001,
  470. 0x916c, 0xffffffff, 0x00040003,
  471. 0x9170, 0xffffffff, 0x00000005,
  472. 0x9178, 0xffffffff, 0x00050001,
  473. 0x917c, 0xffffffff, 0x00030002,
  474. 0x918c, 0xffffffff, 0x00000004,
  475. 0x9190, 0xffffffff, 0x00070006,
  476. 0x9194, 0xffffffff, 0x00050001,
  477. 0x9198, 0xffffffff, 0x00030002,
  478. 0x91a8, 0xffffffff, 0x00000004,
  479. 0x91ac, 0xffffffff, 0x00070006,
  480. 0x91b0, 0xffffffff, 0x00050001,
  481. 0x91b4, 0xffffffff, 0x00030002,
  482. 0x91c4, 0xffffffff, 0x00000004,
  483. 0x91c8, 0xffffffff, 0x00070006,
  484. 0x91cc, 0xffffffff, 0x00050001,
  485. 0x91d0, 0xffffffff, 0x00030002,
  486. 0x91e0, 0xffffffff, 0x00000004,
  487. 0x91e4, 0xffffffff, 0x00070006,
  488. 0x91e8, 0xffffffff, 0x00000001,
  489. 0x91ec, 0xffffffff, 0x00050001,
  490. 0x91f0, 0xffffffff, 0x00030002,
  491. 0x9200, 0xffffffff, 0x00000004,
  492. 0x9204, 0xffffffff, 0x00070006,
  493. 0x9208, 0xffffffff, 0x00050001,
  494. 0x920c, 0xffffffff, 0x00030002,
  495. 0x921c, 0xffffffff, 0x00000004,
  496. 0x9220, 0xffffffff, 0x00070006,
  497. 0x9224, 0xffffffff, 0x00050001,
  498. 0x9228, 0xffffffff, 0x00030002,
  499. 0x9238, 0xffffffff, 0x00000004,
  500. 0x923c, 0xffffffff, 0x00070006,
  501. 0x9240, 0xffffffff, 0x00050001,
  502. 0x9244, 0xffffffff, 0x00030002,
  503. 0x9254, 0xffffffff, 0x00000004,
  504. 0x9258, 0xffffffff, 0x00070006,
  505. 0x9294, 0xffffffff, 0x00000001,
  506. 0x929c, 0xffffffff, 0x00000002,
  507. 0x92a0, 0xffffffff, 0x00040003,
  508. 0x92a4, 0xffffffff, 0x00000005
  509. };
  510. static const u32 rv740_golden_registers[] =
  511. {
  512. 0x88c4, 0xffffffff, 0x00000082,
  513. 0x28a50, 0xfffffffc, 0x00000004,
  514. 0x2650, 0x00040000, 0,
  515. 0x20bc, 0x00040000, 0,
  516. 0x733c, 0xffffffff, 0x00000002,
  517. 0x7300, 0xffffffff, 0x001000f0,
  518. 0x3f90, 0x00ff0000, 0,
  519. 0x9148, 0x00ff0000, 0,
  520. 0x3f94, 0x00ff0000, 0,
  521. 0x914c, 0x00ff0000, 0,
  522. 0x240c, 0xffffffff, 0x00000380,
  523. 0x8a14, 0x00000007, 0x00000007,
  524. 0x8b24, 0xffffffff, 0x00ff0fff,
  525. 0x28a4c, 0xffffffff, 0x00004000,
  526. 0xa180, 0xffffffff, 0x00003f3f,
  527. 0x8d00, 0xffffffff, 0x0e0e003a,
  528. 0x8d04, 0xffffffff, 0x013a0e2a,
  529. 0x8c00, 0xffffffff, 0xe400000f,
  530. 0x8db0, 0xffffffff, 0x98989898,
  531. 0x8db4, 0xffffffff, 0x98989898,
  532. 0x8db8, 0xffffffff, 0x98989898,
  533. 0x8dbc, 0xffffffff, 0x98989898,
  534. 0x8dc0, 0xffffffff, 0x98989898,
  535. 0x8dc4, 0xffffffff, 0x98989898,
  536. 0x8dc8, 0xffffffff, 0x98989898,
  537. 0x8dcc, 0xffffffff, 0x98989898,
  538. 0x9058, 0xffffffff, 0x0fffc40f,
  539. 0x900c, 0xffffffff, 0x003b033f,
  540. 0x28350, 0xffffffff, 0,
  541. 0x8cf0, 0x1fffffff, 0x08e00420,
  542. 0x9508, 0xffffffff, 0x00000002,
  543. 0x88c4, 0xffffffff, 0x000000c2,
  544. 0x9698, 0x18000000, 0x18000000
  545. };
  546. static const u32 rv740_mgcg_init[] =
  547. {
  548. 0x8bcc, 0xffffffff, 0x13030100,
  549. 0x5448, 0xffffffff, 0x100,
  550. 0x55e4, 0xffffffff, 0x100,
  551. 0x160c, 0xffffffff, 0x100,
  552. 0x5644, 0xffffffff, 0x100,
  553. 0xc164, 0xffffffff, 0x100,
  554. 0x8a18, 0xffffffff, 0x100,
  555. 0x897c, 0xffffffff, 0x100,
  556. 0x8b28, 0xffffffff, 0x100,
  557. 0x9144, 0xffffffff, 0x100,
  558. 0x9a1c, 0xffffffff, 0x10000,
  559. 0x9a50, 0xffffffff, 0x100,
  560. 0x9a1c, 0xffffffff, 0x10001,
  561. 0x9a50, 0xffffffff, 0x100,
  562. 0x9a1c, 0xffffffff, 0x10002,
  563. 0x9a50, 0xffffffff, 0x100,
  564. 0x9a1c, 0xffffffff, 0x10003,
  565. 0x9a50, 0xffffffff, 0x100,
  566. 0x9a1c, 0xffffffff, 0x0,
  567. 0x9870, 0xffffffff, 0x100,
  568. 0x8d58, 0xffffffff, 0x100,
  569. 0x9500, 0xffffffff, 0x0,
  570. 0x9510, 0xffffffff, 0x100,
  571. 0x9500, 0xffffffff, 0x1,
  572. 0x9510, 0xffffffff, 0x100,
  573. 0x9500, 0xffffffff, 0x2,
  574. 0x9510, 0xffffffff, 0x100,
  575. 0x9500, 0xffffffff, 0x3,
  576. 0x9510, 0xffffffff, 0x100,
  577. 0x9500, 0xffffffff, 0x4,
  578. 0x9510, 0xffffffff, 0x100,
  579. 0x9500, 0xffffffff, 0x5,
  580. 0x9510, 0xffffffff, 0x100,
  581. 0x9500, 0xffffffff, 0x6,
  582. 0x9510, 0xffffffff, 0x100,
  583. 0x9500, 0xffffffff, 0x7,
  584. 0x9510, 0xffffffff, 0x100,
  585. 0x9500, 0xffffffff, 0x8000,
  586. 0x9490, 0xffffffff, 0x0,
  587. 0x949c, 0xffffffff, 0x100,
  588. 0x9490, 0xffffffff, 0x1,
  589. 0x949c, 0xffffffff, 0x100,
  590. 0x9490, 0xffffffff, 0x2,
  591. 0x949c, 0xffffffff, 0x100,
  592. 0x9490, 0xffffffff, 0x3,
  593. 0x949c, 0xffffffff, 0x100,
  594. 0x9490, 0xffffffff, 0x4,
  595. 0x949c, 0xffffffff, 0x100,
  596. 0x9490, 0xffffffff, 0x5,
  597. 0x949c, 0xffffffff, 0x100,
  598. 0x9490, 0xffffffff, 0x6,
  599. 0x949c, 0xffffffff, 0x100,
  600. 0x9490, 0xffffffff, 0x7,
  601. 0x949c, 0xffffffff, 0x100,
  602. 0x9490, 0xffffffff, 0x8000,
  603. 0x9604, 0xffffffff, 0x0,
  604. 0x9654, 0xffffffff, 0x100,
  605. 0x9604, 0xffffffff, 0x1,
  606. 0x9654, 0xffffffff, 0x100,
  607. 0x9604, 0xffffffff, 0x2,
  608. 0x9654, 0xffffffff, 0x100,
  609. 0x9604, 0xffffffff, 0x3,
  610. 0x9654, 0xffffffff, 0x100,
  611. 0x9604, 0xffffffff, 0x4,
  612. 0x9654, 0xffffffff, 0x100,
  613. 0x9604, 0xffffffff, 0x5,
  614. 0x9654, 0xffffffff, 0x100,
  615. 0x9604, 0xffffffff, 0x6,
  616. 0x9654, 0xffffffff, 0x100,
  617. 0x9604, 0xffffffff, 0x7,
  618. 0x9654, 0xffffffff, 0x100,
  619. 0x9604, 0xffffffff, 0x80000000,
  620. 0x9030, 0xffffffff, 0x100,
  621. 0x9034, 0xffffffff, 0x100,
  622. 0x9038, 0xffffffff, 0x100,
  623. 0x903c, 0xffffffff, 0x100,
  624. 0x9040, 0xffffffff, 0x100,
  625. 0xa200, 0xffffffff, 0x100,
  626. 0xa204, 0xffffffff, 0x100,
  627. 0xa208, 0xffffffff, 0x100,
  628. 0xa20c, 0xffffffff, 0x100,
  629. 0x971c, 0xffffffff, 0x100,
  630. 0x915c, 0xffffffff, 0x00020001,
  631. 0x9160, 0xffffffff, 0x00040003,
  632. 0x916c, 0xffffffff, 0x00060005,
  633. 0x9170, 0xffffffff, 0x00080007,
  634. 0x9174, 0xffffffff, 0x000a0009,
  635. 0x9178, 0xffffffff, 0x000c000b,
  636. 0x917c, 0xffffffff, 0x000e000d,
  637. 0x9180, 0xffffffff, 0x0010000f,
  638. 0x918c, 0xffffffff, 0x00120011,
  639. 0x9190, 0xffffffff, 0x00140013,
  640. 0x9194, 0xffffffff, 0x00020001,
  641. 0x9198, 0xffffffff, 0x00040003,
  642. 0x919c, 0xffffffff, 0x00060005,
  643. 0x91a8, 0xffffffff, 0x00080007,
  644. 0x91ac, 0xffffffff, 0x000a0009,
  645. 0x91b0, 0xffffffff, 0x000c000b,
  646. 0x91b4, 0xffffffff, 0x000e000d,
  647. 0x91b8, 0xffffffff, 0x0010000f,
  648. 0x91c4, 0xffffffff, 0x00120011,
  649. 0x91c8, 0xffffffff, 0x00140013,
  650. 0x91cc, 0xffffffff, 0x00020001,
  651. 0x91d0, 0xffffffff, 0x00040003,
  652. 0x91d4, 0xffffffff, 0x00060005,
  653. 0x91e0, 0xffffffff, 0x00080007,
  654. 0x91e4, 0xffffffff, 0x000a0009,
  655. 0x91e8, 0xffffffff, 0x000c000b,
  656. 0x91ec, 0xffffffff, 0x00020001,
  657. 0x91f0, 0xffffffff, 0x00040003,
  658. 0x91f4, 0xffffffff, 0x00060005,
  659. 0x9200, 0xffffffff, 0x00080007,
  660. 0x9204, 0xffffffff, 0x000a0009,
  661. 0x9208, 0xffffffff, 0x000c000b,
  662. 0x920c, 0xffffffff, 0x000e000d,
  663. 0x9210, 0xffffffff, 0x0010000f,
  664. 0x921c, 0xffffffff, 0x00120011,
  665. 0x9220, 0xffffffff, 0x00140013,
  666. 0x9224, 0xffffffff, 0x00020001,
  667. 0x9228, 0xffffffff, 0x00040003,
  668. 0x922c, 0xffffffff, 0x00060005,
  669. 0x9238, 0xffffffff, 0x00080007,
  670. 0x923c, 0xffffffff, 0x000a0009,
  671. 0x9240, 0xffffffff, 0x000c000b,
  672. 0x9244, 0xffffffff, 0x000e000d,
  673. 0x9248, 0xffffffff, 0x0010000f,
  674. 0x9254, 0xffffffff, 0x00120011,
  675. 0x9258, 0xffffffff, 0x00140013,
  676. 0x9294, 0xffffffff, 0x00020001,
  677. 0x929c, 0xffffffff, 0x00040003,
  678. 0x92a0, 0xffffffff, 0x00060005,
  679. 0x92a4, 0xffffffff, 0x00080007
  680. };
  681. static void rv770_init_golden_registers(struct radeon_device *rdev)
  682. {
  683. switch (rdev->family) {
  684. case CHIP_RV770:
  685. radeon_program_register_sequence(rdev,
  686. r7xx_golden_registers,
  687. (const u32)ARRAY_SIZE(r7xx_golden_registers));
  688. radeon_program_register_sequence(rdev,
  689. r7xx_golden_dyn_gpr_registers,
  690. (const u32)ARRAY_SIZE(r7xx_golden_dyn_gpr_registers));
  691. if (rdev->pdev->device == 0x994e)
  692. radeon_program_register_sequence(rdev,
  693. rv770ce_golden_registers,
  694. (const u32)ARRAY_SIZE(rv770ce_golden_registers));
  695. else
  696. radeon_program_register_sequence(rdev,
  697. rv770_golden_registers,
  698. (const u32)ARRAY_SIZE(rv770_golden_registers));
  699. radeon_program_register_sequence(rdev,
  700. rv770_mgcg_init,
  701. (const u32)ARRAY_SIZE(rv770_mgcg_init));
  702. break;
  703. case CHIP_RV730:
  704. radeon_program_register_sequence(rdev,
  705. r7xx_golden_registers,
  706. (const u32)ARRAY_SIZE(r7xx_golden_registers));
  707. radeon_program_register_sequence(rdev,
  708. r7xx_golden_dyn_gpr_registers,
  709. (const u32)ARRAY_SIZE(r7xx_golden_dyn_gpr_registers));
  710. radeon_program_register_sequence(rdev,
  711. rv730_golden_registers,
  712. (const u32)ARRAY_SIZE(rv770_golden_registers));
  713. radeon_program_register_sequence(rdev,
  714. rv730_mgcg_init,
  715. (const u32)ARRAY_SIZE(rv770_mgcg_init));
  716. break;
  717. case CHIP_RV710:
  718. radeon_program_register_sequence(rdev,
  719. r7xx_golden_registers,
  720. (const u32)ARRAY_SIZE(r7xx_golden_registers));
  721. radeon_program_register_sequence(rdev,
  722. r7xx_golden_dyn_gpr_registers,
  723. (const u32)ARRAY_SIZE(r7xx_golden_dyn_gpr_registers));
  724. radeon_program_register_sequence(rdev,
  725. rv710_golden_registers,
  726. (const u32)ARRAY_SIZE(rv770_golden_registers));
  727. radeon_program_register_sequence(rdev,
  728. rv710_mgcg_init,
  729. (const u32)ARRAY_SIZE(rv770_mgcg_init));
  730. break;
  731. case CHIP_RV740:
  732. radeon_program_register_sequence(rdev,
  733. rv740_golden_registers,
  734. (const u32)ARRAY_SIZE(rv770_golden_registers));
  735. radeon_program_register_sequence(rdev,
  736. rv740_mgcg_init,
  737. (const u32)ARRAY_SIZE(rv770_mgcg_init));
  738. break;
  739. default:
  740. break;
  741. }
  742. }
  743. #define PCIE_BUS_CLK 10000
  744. #define TCLK (PCIE_BUS_CLK / 10)
  745. /**
  746. * rv770_get_xclk - get the xclk
  747. *
  748. * @rdev: radeon_device pointer
  749. *
  750. * Returns the reference clock used by the gfx engine
  751. * (r7xx-cayman).
  752. */
  753. u32 rv770_get_xclk(struct radeon_device *rdev)
  754. {
  755. u32 reference_clock = rdev->clock.spll.reference_freq;
  756. u32 tmp = RREG32(CG_CLKPIN_CNTL);
  757. if (tmp & MUX_TCLK_TO_XCLK)
  758. return TCLK;
  759. if (tmp & XTALIN_DIVIDE)
  760. return reference_clock / 4;
  761. return reference_clock;
  762. }
  763. int rv770_uvd_resume(struct radeon_device *rdev)
  764. {
  765. uint64_t addr;
  766. uint32_t chip_id, size;
  767. int r;
  768. r = radeon_uvd_resume(rdev);
  769. if (r)
  770. return r;
  771. /* programm the VCPU memory controller bits 0-27 */
  772. addr = rdev->uvd.gpu_addr >> 3;
  773. size = RADEON_GPU_PAGE_ALIGN(rdev->uvd_fw->size + 4) >> 3;
  774. WREG32(UVD_VCPU_CACHE_OFFSET0, addr);
  775. WREG32(UVD_VCPU_CACHE_SIZE0, size);
  776. addr += size;
  777. size = RADEON_UVD_STACK_SIZE >> 3;
  778. WREG32(UVD_VCPU_CACHE_OFFSET1, addr);
  779. WREG32(UVD_VCPU_CACHE_SIZE1, size);
  780. addr += size;
  781. size = RADEON_UVD_HEAP_SIZE >> 3;
  782. WREG32(UVD_VCPU_CACHE_OFFSET2, addr);
  783. WREG32(UVD_VCPU_CACHE_SIZE2, size);
  784. /* bits 28-31 */
  785. addr = (rdev->uvd.gpu_addr >> 28) & 0xF;
  786. WREG32(UVD_LMI_ADDR_EXT, (addr << 12) | (addr << 0));
  787. /* bits 32-39 */
  788. addr = (rdev->uvd.gpu_addr >> 32) & 0xFF;
  789. WREG32(UVD_LMI_EXT40_ADDR, addr | (0x9 << 16) | (0x1 << 31));
  790. /* tell firmware which hardware it is running on */
  791. switch (rdev->family) {
  792. default:
  793. return -EINVAL;
  794. case CHIP_RV710:
  795. chip_id = 0x01000005;
  796. break;
  797. case CHIP_RV730:
  798. chip_id = 0x01000006;
  799. break;
  800. case CHIP_RV740:
  801. chip_id = 0x01000007;
  802. break;
  803. case CHIP_CYPRESS:
  804. case CHIP_HEMLOCK:
  805. chip_id = 0x01000008;
  806. break;
  807. case CHIP_JUNIPER:
  808. chip_id = 0x01000009;
  809. break;
  810. case CHIP_REDWOOD:
  811. chip_id = 0x0100000a;
  812. break;
  813. case CHIP_CEDAR:
  814. chip_id = 0x0100000b;
  815. break;
  816. case CHIP_SUMO:
  817. chip_id = 0x0100000c;
  818. break;
  819. case CHIP_SUMO2:
  820. chip_id = 0x0100000d;
  821. break;
  822. case CHIP_PALM:
  823. chip_id = 0x0100000e;
  824. break;
  825. case CHIP_CAYMAN:
  826. chip_id = 0x0100000f;
  827. break;
  828. case CHIP_BARTS:
  829. chip_id = 0x01000010;
  830. break;
  831. case CHIP_TURKS:
  832. chip_id = 0x01000011;
  833. break;
  834. case CHIP_CAICOS:
  835. chip_id = 0x01000012;
  836. break;
  837. case CHIP_TAHITI:
  838. chip_id = 0x01000014;
  839. break;
  840. case CHIP_VERDE:
  841. chip_id = 0x01000015;
  842. break;
  843. case CHIP_PITCAIRN:
  844. chip_id = 0x01000016;
  845. break;
  846. case CHIP_ARUBA:
  847. chip_id = 0x01000017;
  848. break;
  849. }
  850. WREG32(UVD_VCPU_CHIP_ID, chip_id);
  851. return 0;
  852. }
  853. u32 rv770_page_flip(struct radeon_device *rdev, int crtc_id, u64 crtc_base)
  854. {
  855. struct radeon_crtc *radeon_crtc = rdev->mode_info.crtcs[crtc_id];
  856. u32 tmp = RREG32(AVIVO_D1GRPH_UPDATE + radeon_crtc->crtc_offset);
  857. int i;
  858. /* Lock the graphics update lock */
  859. tmp |= AVIVO_D1GRPH_UPDATE_LOCK;
  860. WREG32(AVIVO_D1GRPH_UPDATE + radeon_crtc->crtc_offset, tmp);
  861. /* update the scanout addresses */
  862. if (radeon_crtc->crtc_id) {
  863. WREG32(D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(crtc_base));
  864. WREG32(D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(crtc_base));
  865. } else {
  866. WREG32(D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(crtc_base));
  867. WREG32(D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(crtc_base));
  868. }
  869. WREG32(D1GRPH_SECONDARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
  870. (u32)crtc_base);
  871. WREG32(D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
  872. (u32)crtc_base);
  873. /* Wait for update_pending to go high. */
  874. for (i = 0; i < rdev->usec_timeout; i++) {
  875. if (RREG32(AVIVO_D1GRPH_UPDATE + radeon_crtc->crtc_offset) & AVIVO_D1GRPH_SURFACE_UPDATE_PENDING)
  876. break;
  877. udelay(1);
  878. }
  879. DRM_DEBUG("Update pending now high. Unlocking vupdate_lock.\n");
  880. /* Unlock the lock, so double-buffering can take place inside vblank */
  881. tmp &= ~AVIVO_D1GRPH_UPDATE_LOCK;
  882. WREG32(AVIVO_D1GRPH_UPDATE + radeon_crtc->crtc_offset, tmp);
  883. /* Return current update_pending status: */
  884. return RREG32(AVIVO_D1GRPH_UPDATE + radeon_crtc->crtc_offset) & AVIVO_D1GRPH_SURFACE_UPDATE_PENDING;
  885. }
  886. /* get temperature in millidegrees */
  887. int rv770_get_temp(struct radeon_device *rdev)
  888. {
  889. u32 temp = (RREG32(CG_MULT_THERMAL_STATUS) & ASIC_T_MASK) >>
  890. ASIC_T_SHIFT;
  891. int actual_temp;
  892. if (temp & 0x400)
  893. actual_temp = -256;
  894. else if (temp & 0x200)
  895. actual_temp = 255;
  896. else if (temp & 0x100) {
  897. actual_temp = temp & 0x1ff;
  898. actual_temp |= ~0x1ff;
  899. } else
  900. actual_temp = temp & 0xff;
  901. return (actual_temp * 1000) / 2;
  902. }
  903. void rv770_pm_misc(struct radeon_device *rdev)
  904. {
  905. int req_ps_idx = rdev->pm.requested_power_state_index;
  906. int req_cm_idx = rdev->pm.requested_clock_mode_index;
  907. struct radeon_power_state *ps = &rdev->pm.power_state[req_ps_idx];
  908. struct radeon_voltage *voltage = &ps->clock_info[req_cm_idx].voltage;
  909. if ((voltage->type == VOLTAGE_SW) && voltage->voltage) {
  910. /* 0xff01 is a flag rather then an actual voltage */
  911. if (voltage->voltage == 0xff01)
  912. return;
  913. if (voltage->voltage != rdev->pm.current_vddc) {
  914. radeon_atom_set_voltage(rdev, voltage->voltage, SET_VOLTAGE_TYPE_ASIC_VDDC);
  915. rdev->pm.current_vddc = voltage->voltage;
  916. DRM_DEBUG("Setting: v: %d\n", voltage->voltage);
  917. }
  918. }
  919. }
  920. /*
  921. * GART
  922. */
  923. static int rv770_pcie_gart_enable(struct radeon_device *rdev)
  924. {
  925. u32 tmp;
  926. int r, i;
  927. if (rdev->gart.robj == NULL) {
  928. dev_err(rdev->dev, "No VRAM object for PCIE GART.\n");
  929. return -EINVAL;
  930. }
  931. r = radeon_gart_table_vram_pin(rdev);
  932. if (r)
  933. return r;
  934. radeon_gart_restore(rdev);
  935. /* Setup L2 cache */
  936. WREG32(VM_L2_CNTL, ENABLE_L2_CACHE | ENABLE_L2_FRAGMENT_PROCESSING |
  937. ENABLE_L2_PTE_CACHE_LRU_UPDATE_BY_WRITE |
  938. EFFECTIVE_L2_QUEUE_SIZE(7));
  939. WREG32(VM_L2_CNTL2, 0);
  940. WREG32(VM_L2_CNTL3, BANK_SELECT(0) | CACHE_UPDATE_MODE(2));
  941. /* Setup TLB control */
  942. tmp = ENABLE_L1_TLB | ENABLE_L1_FRAGMENT_PROCESSING |
  943. SYSTEM_ACCESS_MODE_NOT_IN_SYS |
  944. SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU |
  945. EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5);
  946. WREG32(MC_VM_MD_L1_TLB0_CNTL, tmp);
  947. WREG32(MC_VM_MD_L1_TLB1_CNTL, tmp);
  948. WREG32(MC_VM_MD_L1_TLB2_CNTL, tmp);
  949. if (rdev->family == CHIP_RV740)
  950. WREG32(MC_VM_MD_L1_TLB3_CNTL, tmp);
  951. WREG32(MC_VM_MB_L1_TLB0_CNTL, tmp);
  952. WREG32(MC_VM_MB_L1_TLB1_CNTL, tmp);
  953. WREG32(MC_VM_MB_L1_TLB2_CNTL, tmp);
  954. WREG32(MC_VM_MB_L1_TLB3_CNTL, tmp);
  955. WREG32(VM_CONTEXT0_PAGE_TABLE_START_ADDR, rdev->mc.gtt_start >> 12);
  956. WREG32(VM_CONTEXT0_PAGE_TABLE_END_ADDR, rdev->mc.gtt_end >> 12);
  957. WREG32(VM_CONTEXT0_PAGE_TABLE_BASE_ADDR, rdev->gart.table_addr >> 12);
  958. WREG32(VM_CONTEXT0_CNTL, ENABLE_CONTEXT | PAGE_TABLE_DEPTH(0) |
  959. RANGE_PROTECTION_FAULT_ENABLE_DEFAULT);
  960. WREG32(VM_CONTEXT0_PROTECTION_FAULT_DEFAULT_ADDR,
  961. (u32)(rdev->dummy_page.addr >> 12));
  962. for (i = 1; i < 7; i++)
  963. WREG32(VM_CONTEXT0_CNTL + (i * 4), 0);
  964. r600_pcie_gart_tlb_flush(rdev);
  965. DRM_INFO("PCIE GART of %uM enabled (table at 0x%016llX).\n",
  966. (unsigned)(rdev->mc.gtt_size >> 20),
  967. (unsigned long long)rdev->gart.table_addr);
  968. rdev->gart.ready = true;
  969. return 0;
  970. }
  971. static void rv770_pcie_gart_disable(struct radeon_device *rdev)
  972. {
  973. u32 tmp;
  974. int i;
  975. /* Disable all tables */
  976. for (i = 0; i < 7; i++)
  977. WREG32(VM_CONTEXT0_CNTL + (i * 4), 0);
  978. /* Setup L2 cache */
  979. WREG32(VM_L2_CNTL, ENABLE_L2_FRAGMENT_PROCESSING |
  980. EFFECTIVE_L2_QUEUE_SIZE(7));
  981. WREG32(VM_L2_CNTL2, 0);
  982. WREG32(VM_L2_CNTL3, BANK_SELECT(0) | CACHE_UPDATE_MODE(2));
  983. /* Setup TLB control */
  984. tmp = EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5);
  985. WREG32(MC_VM_MD_L1_TLB0_CNTL, tmp);
  986. WREG32(MC_VM_MD_L1_TLB1_CNTL, tmp);
  987. WREG32(MC_VM_MD_L1_TLB2_CNTL, tmp);
  988. WREG32(MC_VM_MB_L1_TLB0_CNTL, tmp);
  989. WREG32(MC_VM_MB_L1_TLB1_CNTL, tmp);
  990. WREG32(MC_VM_MB_L1_TLB2_CNTL, tmp);
  991. WREG32(MC_VM_MB_L1_TLB3_CNTL, tmp);
  992. radeon_gart_table_vram_unpin(rdev);
  993. }
  994. static void rv770_pcie_gart_fini(struct radeon_device *rdev)
  995. {
  996. radeon_gart_fini(rdev);
  997. rv770_pcie_gart_disable(rdev);
  998. radeon_gart_table_vram_free(rdev);
  999. }
  1000. static void rv770_agp_enable(struct radeon_device *rdev)
  1001. {
  1002. u32 tmp;
  1003. int i;
  1004. /* Setup L2 cache */
  1005. WREG32(VM_L2_CNTL, ENABLE_L2_CACHE | ENABLE_L2_FRAGMENT_PROCESSING |
  1006. ENABLE_L2_PTE_CACHE_LRU_UPDATE_BY_WRITE |
  1007. EFFECTIVE_L2_QUEUE_SIZE(7));
  1008. WREG32(VM_L2_CNTL2, 0);
  1009. WREG32(VM_L2_CNTL3, BANK_SELECT(0) | CACHE_UPDATE_MODE(2));
  1010. /* Setup TLB control */
  1011. tmp = ENABLE_L1_TLB | ENABLE_L1_FRAGMENT_PROCESSING |
  1012. SYSTEM_ACCESS_MODE_NOT_IN_SYS |
  1013. SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU |
  1014. EFFECTIVE_L1_TLB_SIZE(5) | EFFECTIVE_L1_QUEUE_SIZE(5);
  1015. WREG32(MC_VM_MD_L1_TLB0_CNTL, tmp);
  1016. WREG32(MC_VM_MD_L1_TLB1_CNTL, tmp);
  1017. WREG32(MC_VM_MD_L1_TLB2_CNTL, tmp);
  1018. WREG32(MC_VM_MB_L1_TLB0_CNTL, tmp);
  1019. WREG32(MC_VM_MB_L1_TLB1_CNTL, tmp);
  1020. WREG32(MC_VM_MB_L1_TLB2_CNTL, tmp);
  1021. WREG32(MC_VM_MB_L1_TLB3_CNTL, tmp);
  1022. for (i = 0; i < 7; i++)
  1023. WREG32(VM_CONTEXT0_CNTL + (i * 4), 0);
  1024. }
  1025. static void rv770_mc_program(struct radeon_device *rdev)
  1026. {
  1027. struct rv515_mc_save save;
  1028. u32 tmp;
  1029. int i, j;
  1030. /* Initialize HDP */
  1031. for (i = 0, j = 0; i < 32; i++, j += 0x18) {
  1032. WREG32((0x2c14 + j), 0x00000000);
  1033. WREG32((0x2c18 + j), 0x00000000);
  1034. WREG32((0x2c1c + j), 0x00000000);
  1035. WREG32((0x2c20 + j), 0x00000000);
  1036. WREG32((0x2c24 + j), 0x00000000);
  1037. }
  1038. /* r7xx hw bug. Read from HDP_DEBUG1 rather
  1039. * than writing to HDP_REG_COHERENCY_FLUSH_CNTL
  1040. */
  1041. tmp = RREG32(HDP_DEBUG1);
  1042. rv515_mc_stop(rdev, &save);
  1043. if (r600_mc_wait_for_idle(rdev)) {
  1044. dev_warn(rdev->dev, "Wait for MC idle timedout !\n");
  1045. }
  1046. /* Lockout access through VGA aperture*/
  1047. WREG32(VGA_HDP_CONTROL, VGA_MEMORY_DISABLE);
  1048. /* Update configuration */
  1049. if (rdev->flags & RADEON_IS_AGP) {
  1050. if (rdev->mc.vram_start < rdev->mc.gtt_start) {
  1051. /* VRAM before AGP */
  1052. WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR,
  1053. rdev->mc.vram_start >> 12);
  1054. WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR,
  1055. rdev->mc.gtt_end >> 12);
  1056. } else {
  1057. /* VRAM after AGP */
  1058. WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR,
  1059. rdev->mc.gtt_start >> 12);
  1060. WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR,
  1061. rdev->mc.vram_end >> 12);
  1062. }
  1063. } else {
  1064. WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR,
  1065. rdev->mc.vram_start >> 12);
  1066. WREG32(MC_VM_SYSTEM_APERTURE_HIGH_ADDR,
  1067. rdev->mc.vram_end >> 12);
  1068. }
  1069. WREG32(MC_VM_SYSTEM_APERTURE_DEFAULT_ADDR, rdev->vram_scratch.gpu_addr >> 12);
  1070. tmp = ((rdev->mc.vram_end >> 24) & 0xFFFF) << 16;
  1071. tmp |= ((rdev->mc.vram_start >> 24) & 0xFFFF);
  1072. WREG32(MC_VM_FB_LOCATION, tmp);
  1073. WREG32(HDP_NONSURFACE_BASE, (rdev->mc.vram_start >> 8));
  1074. WREG32(HDP_NONSURFACE_INFO, (2 << 7));
  1075. WREG32(HDP_NONSURFACE_SIZE, 0x3FFFFFFF);
  1076. if (rdev->flags & RADEON_IS_AGP) {
  1077. WREG32(MC_VM_AGP_TOP, rdev->mc.gtt_end >> 16);
  1078. WREG32(MC_VM_AGP_BOT, rdev->mc.gtt_start >> 16);
  1079. WREG32(MC_VM_AGP_BASE, rdev->mc.agp_base >> 22);
  1080. } else {
  1081. WREG32(MC_VM_AGP_BASE, 0);
  1082. WREG32(MC_VM_AGP_TOP, 0x0FFFFFFF);
  1083. WREG32(MC_VM_AGP_BOT, 0x0FFFFFFF);
  1084. }
  1085. if (r600_mc_wait_for_idle(rdev)) {
  1086. dev_warn(rdev->dev, "Wait for MC idle timedout !\n");
  1087. }
  1088. rv515_mc_resume(rdev, &save);
  1089. /* we need to own VRAM, so turn off the VGA renderer here
  1090. * to stop it overwriting our objects */
  1091. rv515_vga_render_disable(rdev);
  1092. }
  1093. /*
  1094. * CP.
  1095. */
  1096. void r700_cp_stop(struct radeon_device *rdev)
  1097. {
  1098. radeon_ttm_set_active_vram_size(rdev, rdev->mc.visible_vram_size);
  1099. WREG32(CP_ME_CNTL, (CP_ME_HALT | CP_PFP_HALT));
  1100. WREG32(SCRATCH_UMSK, 0);
  1101. rdev->ring[RADEON_RING_TYPE_GFX_INDEX].ready = false;
  1102. }
  1103. static int rv770_cp_load_microcode(struct radeon_device *rdev)
  1104. {
  1105. const __be32 *fw_data;
  1106. int i;
  1107. if (!rdev->me_fw || !rdev->pfp_fw)
  1108. return -EINVAL;
  1109. r700_cp_stop(rdev);
  1110. WREG32(CP_RB_CNTL,
  1111. #ifdef __BIG_ENDIAN
  1112. BUF_SWAP_32BIT |
  1113. #endif
  1114. RB_NO_UPDATE | RB_BLKSZ(15) | RB_BUFSZ(3));
  1115. /* Reset cp */
  1116. WREG32(GRBM_SOFT_RESET, SOFT_RESET_CP);
  1117. RREG32(GRBM_SOFT_RESET);
  1118. mdelay(15);
  1119. WREG32(GRBM_SOFT_RESET, 0);
  1120. fw_data = (const __be32 *)rdev->pfp_fw->data;
  1121. WREG32(CP_PFP_UCODE_ADDR, 0);
  1122. for (i = 0; i < R700_PFP_UCODE_SIZE; i++)
  1123. WREG32(CP_PFP_UCODE_DATA, be32_to_cpup(fw_data++));
  1124. WREG32(CP_PFP_UCODE_ADDR, 0);
  1125. fw_data = (const __be32 *)rdev->me_fw->data;
  1126. WREG32(CP_ME_RAM_WADDR, 0);
  1127. for (i = 0; i < R700_PM4_UCODE_SIZE; i++)
  1128. WREG32(CP_ME_RAM_DATA, be32_to_cpup(fw_data++));
  1129. WREG32(CP_PFP_UCODE_ADDR, 0);
  1130. WREG32(CP_ME_RAM_WADDR, 0);
  1131. WREG32(CP_ME_RAM_RADDR, 0);
  1132. return 0;
  1133. }
  1134. void r700_cp_fini(struct radeon_device *rdev)
  1135. {
  1136. struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
  1137. r700_cp_stop(rdev);
  1138. radeon_ring_fini(rdev, ring);
  1139. radeon_scratch_free(rdev, ring->rptr_save_reg);
  1140. }
  1141. /*
  1142. * Core functions
  1143. */
  1144. static void rv770_gpu_init(struct radeon_device *rdev)
  1145. {
  1146. int i, j, num_qd_pipes;
  1147. u32 ta_aux_cntl;
  1148. u32 sx_debug_1;
  1149. u32 smx_dc_ctl0;
  1150. u32 db_debug3;
  1151. u32 num_gs_verts_per_thread;
  1152. u32 vgt_gs_per_es;
  1153. u32 gs_prim_buffer_depth = 0;
  1154. u32 sq_ms_fifo_sizes;
  1155. u32 sq_config;
  1156. u32 sq_thread_resource_mgmt;
  1157. u32 hdp_host_path_cntl;
  1158. u32 sq_dyn_gpr_size_simd_ab_0;
  1159. u32 gb_tiling_config = 0;
  1160. u32 cc_rb_backend_disable = 0;
  1161. u32 cc_gc_shader_pipe_config = 0;
  1162. u32 mc_arb_ramcfg;
  1163. u32 db_debug4, tmp;
  1164. u32 inactive_pipes, shader_pipe_config;
  1165. u32 disabled_rb_mask;
  1166. unsigned active_number;
  1167. /* setup chip specs */
  1168. rdev->config.rv770.tiling_group_size = 256;
  1169. switch (rdev->family) {
  1170. case CHIP_RV770:
  1171. rdev->config.rv770.max_pipes = 4;
  1172. rdev->config.rv770.max_tile_pipes = 8;
  1173. rdev->config.rv770.max_simds = 10;
  1174. rdev->config.rv770.max_backends = 4;
  1175. rdev->config.rv770.max_gprs = 256;
  1176. rdev->config.rv770.max_threads = 248;
  1177. rdev->config.rv770.max_stack_entries = 512;
  1178. rdev->config.rv770.max_hw_contexts = 8;
  1179. rdev->config.rv770.max_gs_threads = 16 * 2;
  1180. rdev->config.rv770.sx_max_export_size = 128;
  1181. rdev->config.rv770.sx_max_export_pos_size = 16;
  1182. rdev->config.rv770.sx_max_export_smx_size = 112;
  1183. rdev->config.rv770.sq_num_cf_insts = 2;
  1184. rdev->config.rv770.sx_num_of_sets = 7;
  1185. rdev->config.rv770.sc_prim_fifo_size = 0xF9;
  1186. rdev->config.rv770.sc_hiz_tile_fifo_size = 0x30;
  1187. rdev->config.rv770.sc_earlyz_tile_fifo_fize = 0x130;
  1188. break;
  1189. case CHIP_RV730:
  1190. rdev->config.rv770.max_pipes = 2;
  1191. rdev->config.rv770.max_tile_pipes = 4;
  1192. rdev->config.rv770.max_simds = 8;
  1193. rdev->config.rv770.max_backends = 2;
  1194. rdev->config.rv770.max_gprs = 128;
  1195. rdev->config.rv770.max_threads = 248;
  1196. rdev->config.rv770.max_stack_entries = 256;
  1197. rdev->config.rv770.max_hw_contexts = 8;
  1198. rdev->config.rv770.max_gs_threads = 16 * 2;
  1199. rdev->config.rv770.sx_max_export_size = 256;
  1200. rdev->config.rv770.sx_max_export_pos_size = 32;
  1201. rdev->config.rv770.sx_max_export_smx_size = 224;
  1202. rdev->config.rv770.sq_num_cf_insts = 2;
  1203. rdev->config.rv770.sx_num_of_sets = 7;
  1204. rdev->config.rv770.sc_prim_fifo_size = 0xf9;
  1205. rdev->config.rv770.sc_hiz_tile_fifo_size = 0x30;
  1206. rdev->config.rv770.sc_earlyz_tile_fifo_fize = 0x130;
  1207. if (rdev->config.rv770.sx_max_export_pos_size > 16) {
  1208. rdev->config.rv770.sx_max_export_pos_size -= 16;
  1209. rdev->config.rv770.sx_max_export_smx_size += 16;
  1210. }
  1211. break;
  1212. case CHIP_RV710:
  1213. rdev->config.rv770.max_pipes = 2;
  1214. rdev->config.rv770.max_tile_pipes = 2;
  1215. rdev->config.rv770.max_simds = 2;
  1216. rdev->config.rv770.max_backends = 1;
  1217. rdev->config.rv770.max_gprs = 256;
  1218. rdev->config.rv770.max_threads = 192;
  1219. rdev->config.rv770.max_stack_entries = 256;
  1220. rdev->config.rv770.max_hw_contexts = 4;
  1221. rdev->config.rv770.max_gs_threads = 8 * 2;
  1222. rdev->config.rv770.sx_max_export_size = 128;
  1223. rdev->config.rv770.sx_max_export_pos_size = 16;
  1224. rdev->config.rv770.sx_max_export_smx_size = 112;
  1225. rdev->config.rv770.sq_num_cf_insts = 1;
  1226. rdev->config.rv770.sx_num_of_sets = 7;
  1227. rdev->config.rv770.sc_prim_fifo_size = 0x40;
  1228. rdev->config.rv770.sc_hiz_tile_fifo_size = 0x30;
  1229. rdev->config.rv770.sc_earlyz_tile_fifo_fize = 0x130;
  1230. break;
  1231. case CHIP_RV740:
  1232. rdev->config.rv770.max_pipes = 4;
  1233. rdev->config.rv770.max_tile_pipes = 4;
  1234. rdev->config.rv770.max_simds = 8;
  1235. rdev->config.rv770.max_backends = 4;
  1236. rdev->config.rv770.max_gprs = 256;
  1237. rdev->config.rv770.max_threads = 248;
  1238. rdev->config.rv770.max_stack_entries = 512;
  1239. rdev->config.rv770.max_hw_contexts = 8;
  1240. rdev->config.rv770.max_gs_threads = 16 * 2;
  1241. rdev->config.rv770.sx_max_export_size = 256;
  1242. rdev->config.rv770.sx_max_export_pos_size = 32;
  1243. rdev->config.rv770.sx_max_export_smx_size = 224;
  1244. rdev->config.rv770.sq_num_cf_insts = 2;
  1245. rdev->config.rv770.sx_num_of_sets = 7;
  1246. rdev->config.rv770.sc_prim_fifo_size = 0x100;
  1247. rdev->config.rv770.sc_hiz_tile_fifo_size = 0x30;
  1248. rdev->config.rv770.sc_earlyz_tile_fifo_fize = 0x130;
  1249. if (rdev->config.rv770.sx_max_export_pos_size > 16) {
  1250. rdev->config.rv770.sx_max_export_pos_size -= 16;
  1251. rdev->config.rv770.sx_max_export_smx_size += 16;
  1252. }
  1253. break;
  1254. default:
  1255. break;
  1256. }
  1257. /* Initialize HDP */
  1258. j = 0;
  1259. for (i = 0; i < 32; i++) {
  1260. WREG32((0x2c14 + j), 0x00000000);
  1261. WREG32((0x2c18 + j), 0x00000000);
  1262. WREG32((0x2c1c + j), 0x00000000);
  1263. WREG32((0x2c20 + j), 0x00000000);
  1264. WREG32((0x2c24 + j), 0x00000000);
  1265. j += 0x18;
  1266. }
  1267. WREG32(GRBM_CNTL, GRBM_READ_TIMEOUT(0xff));
  1268. /* setup tiling, simd, pipe config */
  1269. mc_arb_ramcfg = RREG32(MC_ARB_RAMCFG);
  1270. shader_pipe_config = RREG32(CC_GC_SHADER_PIPE_CONFIG);
  1271. inactive_pipes = (shader_pipe_config & INACTIVE_QD_PIPES_MASK) >> INACTIVE_QD_PIPES_SHIFT;
  1272. for (i = 0, tmp = 1, active_number = 0; i < R7XX_MAX_PIPES; i++) {
  1273. if (!(inactive_pipes & tmp)) {
  1274. active_number++;
  1275. }
  1276. tmp <<= 1;
  1277. }
  1278. if (active_number == 1) {
  1279. WREG32(SPI_CONFIG_CNTL, DISABLE_INTERP_1);
  1280. } else {
  1281. WREG32(SPI_CONFIG_CNTL, 0);
  1282. }
  1283. cc_rb_backend_disable = RREG32(CC_RB_BACKEND_DISABLE) & 0x00ff0000;
  1284. tmp = R7XX_MAX_BACKENDS - r600_count_pipe_bits(cc_rb_backend_disable >> 16);
  1285. if (tmp < rdev->config.rv770.max_backends) {
  1286. rdev->config.rv770.max_backends = tmp;
  1287. }
  1288. cc_gc_shader_pipe_config = RREG32(CC_GC_SHADER_PIPE_CONFIG) & 0xffffff00;
  1289. tmp = R7XX_MAX_PIPES - r600_count_pipe_bits((cc_gc_shader_pipe_config >> 8) & R7XX_MAX_PIPES_MASK);
  1290. if (tmp < rdev->config.rv770.max_pipes) {
  1291. rdev->config.rv770.max_pipes = tmp;
  1292. }
  1293. tmp = R7XX_MAX_SIMDS - r600_count_pipe_bits((cc_gc_shader_pipe_config >> 16) & R7XX_MAX_SIMDS_MASK);
  1294. if (tmp < rdev->config.rv770.max_simds) {
  1295. rdev->config.rv770.max_simds = tmp;
  1296. }
  1297. switch (rdev->config.rv770.max_tile_pipes) {
  1298. case 1:
  1299. default:
  1300. gb_tiling_config = PIPE_TILING(0);
  1301. break;
  1302. case 2:
  1303. gb_tiling_config = PIPE_TILING(1);
  1304. break;
  1305. case 4:
  1306. gb_tiling_config = PIPE_TILING(2);
  1307. break;
  1308. case 8:
  1309. gb_tiling_config = PIPE_TILING(3);
  1310. break;
  1311. }
  1312. rdev->config.rv770.tiling_npipes = rdev->config.rv770.max_tile_pipes;
  1313. disabled_rb_mask = (RREG32(CC_RB_BACKEND_DISABLE) >> 16) & R7XX_MAX_BACKENDS_MASK;
  1314. tmp = (gb_tiling_config & PIPE_TILING__MASK) >> PIPE_TILING__SHIFT;
  1315. tmp = r6xx_remap_render_backend(rdev, tmp, rdev->config.rv770.max_backends,
  1316. R7XX_MAX_BACKENDS, disabled_rb_mask);
  1317. gb_tiling_config |= tmp << 16;
  1318. rdev->config.rv770.backend_map = tmp;
  1319. if (rdev->family == CHIP_RV770)
  1320. gb_tiling_config |= BANK_TILING(1);
  1321. else {
  1322. if ((mc_arb_ramcfg & NOOFBANK_MASK) >> NOOFBANK_SHIFT)
  1323. gb_tiling_config |= BANK_TILING(1);
  1324. else
  1325. gb_tiling_config |= BANK_TILING(0);
  1326. }
  1327. rdev->config.rv770.tiling_nbanks = 4 << ((gb_tiling_config >> 4) & 0x3);
  1328. gb_tiling_config |= GROUP_SIZE((mc_arb_ramcfg & BURSTLENGTH_MASK) >> BURSTLENGTH_SHIFT);
  1329. if (((mc_arb_ramcfg & NOOFROWS_MASK) >> NOOFROWS_SHIFT) > 3) {
  1330. gb_tiling_config |= ROW_TILING(3);
  1331. gb_tiling_config |= SAMPLE_SPLIT(3);
  1332. } else {
  1333. gb_tiling_config |=
  1334. ROW_TILING(((mc_arb_ramcfg & NOOFROWS_MASK) >> NOOFROWS_SHIFT));
  1335. gb_tiling_config |=
  1336. SAMPLE_SPLIT(((mc_arb_ramcfg & NOOFROWS_MASK) >> NOOFROWS_SHIFT));
  1337. }
  1338. gb_tiling_config |= BANK_SWAPS(1);
  1339. rdev->config.rv770.tile_config = gb_tiling_config;
  1340. WREG32(GB_TILING_CONFIG, gb_tiling_config);
  1341. WREG32(DCP_TILING_CONFIG, (gb_tiling_config & 0xffff));
  1342. WREG32(HDP_TILING_CONFIG, (gb_tiling_config & 0xffff));
  1343. WREG32(DMA_TILING_CONFIG, (gb_tiling_config & 0xffff));
  1344. WREG32(DMA_TILING_CONFIG2, (gb_tiling_config & 0xffff));
  1345. if (rdev->family == CHIP_RV730) {
  1346. WREG32(UVD_UDEC_DB_TILING_CONFIG, (gb_tiling_config & 0xffff));
  1347. WREG32(UVD_UDEC_DBW_TILING_CONFIG, (gb_tiling_config & 0xffff));
  1348. WREG32(UVD_UDEC_TILING_CONFIG, (gb_tiling_config & 0xffff));
  1349. }
  1350. WREG32(CGTS_SYS_TCC_DISABLE, 0);
  1351. WREG32(CGTS_TCC_DISABLE, 0);
  1352. WREG32(CGTS_USER_SYS_TCC_DISABLE, 0);
  1353. WREG32(CGTS_USER_TCC_DISABLE, 0);
  1354. num_qd_pipes = R7XX_MAX_PIPES - r600_count_pipe_bits((cc_gc_shader_pipe_config & INACTIVE_QD_PIPES_MASK) >> 8);
  1355. WREG32(VGT_OUT_DEALLOC_CNTL, (num_qd_pipes * 4) & DEALLOC_DIST_MASK);
  1356. WREG32(VGT_VERTEX_REUSE_BLOCK_CNTL, ((num_qd_pipes * 4) - 2) & VTX_REUSE_DEPTH_MASK);
  1357. /* set HW defaults for 3D engine */
  1358. WREG32(CP_QUEUE_THRESHOLDS, (ROQ_IB1_START(0x16) |
  1359. ROQ_IB2_START(0x2b)));
  1360. WREG32(CP_MEQ_THRESHOLDS, STQ_SPLIT(0x30));
  1361. ta_aux_cntl = RREG32(TA_CNTL_AUX);
  1362. WREG32(TA_CNTL_AUX, ta_aux_cntl | DISABLE_CUBE_ANISO);
  1363. sx_debug_1 = RREG32(SX_DEBUG_1);
  1364. sx_debug_1 |= ENABLE_NEW_SMX_ADDRESS;
  1365. WREG32(SX_DEBUG_1, sx_debug_1);
  1366. smx_dc_ctl0 = RREG32(SMX_DC_CTL0);
  1367. smx_dc_ctl0 &= ~CACHE_DEPTH(0x1ff);
  1368. smx_dc_ctl0 |= CACHE_DEPTH((rdev->config.rv770.sx_num_of_sets * 64) - 1);
  1369. WREG32(SMX_DC_CTL0, smx_dc_ctl0);
  1370. if (rdev->family != CHIP_RV740)
  1371. WREG32(SMX_EVENT_CTL, (ES_FLUSH_CTL(4) |
  1372. GS_FLUSH_CTL(4) |
  1373. ACK_FLUSH_CTL(3) |
  1374. SYNC_FLUSH_CTL));
  1375. if (rdev->family != CHIP_RV770)
  1376. WREG32(SMX_SAR_CTL0, 0x00003f3f);
  1377. db_debug3 = RREG32(DB_DEBUG3);
  1378. db_debug3 &= ~DB_CLK_OFF_DELAY(0x1f);
  1379. switch (rdev->family) {
  1380. case CHIP_RV770:
  1381. case CHIP_RV740:
  1382. db_debug3 |= DB_CLK_OFF_DELAY(0x1f);
  1383. break;
  1384. case CHIP_RV710:
  1385. case CHIP_RV730:
  1386. default:
  1387. db_debug3 |= DB_CLK_OFF_DELAY(2);
  1388. break;
  1389. }
  1390. WREG32(DB_DEBUG3, db_debug3);
  1391. if (rdev->family != CHIP_RV770) {
  1392. db_debug4 = RREG32(DB_DEBUG4);
  1393. db_debug4 |= DISABLE_TILE_COVERED_FOR_PS_ITER;
  1394. WREG32(DB_DEBUG4, db_debug4);
  1395. }
  1396. WREG32(SX_EXPORT_BUFFER_SIZES, (COLOR_BUFFER_SIZE((rdev->config.rv770.sx_max_export_size / 4) - 1) |
  1397. POSITION_BUFFER_SIZE((rdev->config.rv770.sx_max_export_pos_size / 4) - 1) |
  1398. SMX_BUFFER_SIZE((rdev->config.rv770.sx_max_export_smx_size / 4) - 1)));
  1399. WREG32(PA_SC_FIFO_SIZE, (SC_PRIM_FIFO_SIZE(rdev->config.rv770.sc_prim_fifo_size) |
  1400. SC_HIZ_TILE_FIFO_SIZE(rdev->config.rv770.sc_hiz_tile_fifo_size) |
  1401. SC_EARLYZ_TILE_FIFO_SIZE(rdev->config.rv770.sc_earlyz_tile_fifo_fize)));
  1402. WREG32(PA_SC_MULTI_CHIP_CNTL, 0);
  1403. WREG32(VGT_NUM_INSTANCES, 1);
  1404. WREG32(SPI_CONFIG_CNTL_1, VTX_DONE_DELAY(4));
  1405. WREG32(CP_PERFMON_CNTL, 0);
  1406. sq_ms_fifo_sizes = (CACHE_FIFO_SIZE(16 * rdev->config.rv770.sq_num_cf_insts) |
  1407. DONE_FIFO_HIWATER(0xe0) |
  1408. ALU_UPDATE_FIFO_HIWATER(0x8));
  1409. switch (rdev->family) {
  1410. case CHIP_RV770:
  1411. case CHIP_RV730:
  1412. case CHIP_RV710:
  1413. sq_ms_fifo_sizes |= FETCH_FIFO_HIWATER(0x1);
  1414. break;
  1415. case CHIP_RV740:
  1416. default:
  1417. sq_ms_fifo_sizes |= FETCH_FIFO_HIWATER(0x4);
  1418. break;
  1419. }
  1420. WREG32(SQ_MS_FIFO_SIZES, sq_ms_fifo_sizes);
  1421. /* SQ_CONFIG, SQ_GPR_RESOURCE_MGMT, SQ_THREAD_RESOURCE_MGMT, SQ_STACK_RESOURCE_MGMT
  1422. * should be adjusted as needed by the 2D/3D drivers. This just sets default values
  1423. */
  1424. sq_config = RREG32(SQ_CONFIG);
  1425. sq_config &= ~(PS_PRIO(3) |
  1426. VS_PRIO(3) |
  1427. GS_PRIO(3) |
  1428. ES_PRIO(3));
  1429. sq_config |= (DX9_CONSTS |
  1430. VC_ENABLE |
  1431. EXPORT_SRC_C |
  1432. PS_PRIO(0) |
  1433. VS_PRIO(1) |
  1434. GS_PRIO(2) |
  1435. ES_PRIO(3));
  1436. if (rdev->family == CHIP_RV710)
  1437. /* no vertex cache */
  1438. sq_config &= ~VC_ENABLE;
  1439. WREG32(SQ_CONFIG, sq_config);
  1440. WREG32(SQ_GPR_RESOURCE_MGMT_1, (NUM_PS_GPRS((rdev->config.rv770.max_gprs * 24)/64) |
  1441. NUM_VS_GPRS((rdev->config.rv770.max_gprs * 24)/64) |
  1442. NUM_CLAUSE_TEMP_GPRS(((rdev->config.rv770.max_gprs * 24)/64)/2)));
  1443. WREG32(SQ_GPR_RESOURCE_MGMT_2, (NUM_GS_GPRS((rdev->config.rv770.max_gprs * 7)/64) |
  1444. NUM_ES_GPRS((rdev->config.rv770.max_gprs * 7)/64)));
  1445. sq_thread_resource_mgmt = (NUM_PS_THREADS((rdev->config.rv770.max_threads * 4)/8) |
  1446. NUM_VS_THREADS((rdev->config.rv770.max_threads * 2)/8) |
  1447. NUM_ES_THREADS((rdev->config.rv770.max_threads * 1)/8));
  1448. if (((rdev->config.rv770.max_threads * 1) / 8) > rdev->config.rv770.max_gs_threads)
  1449. sq_thread_resource_mgmt |= NUM_GS_THREADS(rdev->config.rv770.max_gs_threads);
  1450. else
  1451. sq_thread_resource_mgmt |= NUM_GS_THREADS((rdev->config.rv770.max_gs_threads * 1)/8);
  1452. WREG32(SQ_THREAD_RESOURCE_MGMT, sq_thread_resource_mgmt);
  1453. WREG32(SQ_STACK_RESOURCE_MGMT_1, (NUM_PS_STACK_ENTRIES((rdev->config.rv770.max_stack_entries * 1)/4) |
  1454. NUM_VS_STACK_ENTRIES((rdev->config.rv770.max_stack_entries * 1)/4)));
  1455. WREG32(SQ_STACK_RESOURCE_MGMT_2, (NUM_GS_STACK_ENTRIES((rdev->config.rv770.max_stack_entries * 1)/4) |
  1456. NUM_ES_STACK_ENTRIES((rdev->config.rv770.max_stack_entries * 1)/4)));
  1457. sq_dyn_gpr_size_simd_ab_0 = (SIMDA_RING0((rdev->config.rv770.max_gprs * 38)/64) |
  1458. SIMDA_RING1((rdev->config.rv770.max_gprs * 38)/64) |
  1459. SIMDB_RING0((rdev->config.rv770.max_gprs * 38)/64) |
  1460. SIMDB_RING1((rdev->config.rv770.max_gprs * 38)/64));
  1461. WREG32(SQ_DYN_GPR_SIZE_SIMD_AB_0, sq_dyn_gpr_size_simd_ab_0);
  1462. WREG32(SQ_DYN_GPR_SIZE_SIMD_AB_1, sq_dyn_gpr_size_simd_ab_0);
  1463. WREG32(SQ_DYN_GPR_SIZE_SIMD_AB_2, sq_dyn_gpr_size_simd_ab_0);
  1464. WREG32(SQ_DYN_GPR_SIZE_SIMD_AB_3, sq_dyn_gpr_size_simd_ab_0);
  1465. WREG32(SQ_DYN_GPR_SIZE_SIMD_AB_4, sq_dyn_gpr_size_simd_ab_0);
  1466. WREG32(SQ_DYN_GPR_SIZE_SIMD_AB_5, sq_dyn_gpr_size_simd_ab_0);
  1467. WREG32(SQ_DYN_GPR_SIZE_SIMD_AB_6, sq_dyn_gpr_size_simd_ab_0);
  1468. WREG32(SQ_DYN_GPR_SIZE_SIMD_AB_7, sq_dyn_gpr_size_simd_ab_0);
  1469. WREG32(PA_SC_FORCE_EOV_MAX_CNTS, (FORCE_EOV_MAX_CLK_CNT(4095) |
  1470. FORCE_EOV_MAX_REZ_CNT(255)));
  1471. if (rdev->family == CHIP_RV710)
  1472. WREG32(VGT_CACHE_INVALIDATION, (CACHE_INVALIDATION(TC_ONLY) |
  1473. AUTO_INVLD_EN(ES_AND_GS_AUTO)));
  1474. else
  1475. WREG32(VGT_CACHE_INVALIDATION, (CACHE_INVALIDATION(VC_AND_TC) |
  1476. AUTO_INVLD_EN(ES_AND_GS_AUTO)));
  1477. switch (rdev->family) {
  1478. case CHIP_RV770:
  1479. case CHIP_RV730:
  1480. case CHIP_RV740:
  1481. gs_prim_buffer_depth = 384;
  1482. break;
  1483. case CHIP_RV710:
  1484. gs_prim_buffer_depth = 128;
  1485. break;
  1486. default:
  1487. break;
  1488. }
  1489. num_gs_verts_per_thread = rdev->config.rv770.max_pipes * 16;
  1490. vgt_gs_per_es = gs_prim_buffer_depth + num_gs_verts_per_thread;
  1491. /* Max value for this is 256 */
  1492. if (vgt_gs_per_es > 256)
  1493. vgt_gs_per_es = 256;
  1494. WREG32(VGT_ES_PER_GS, 128);
  1495. WREG32(VGT_GS_PER_ES, vgt_gs_per_es);
  1496. WREG32(VGT_GS_PER_VS, 2);
  1497. /* more default values. 2D/3D driver should adjust as needed */
  1498. WREG32(VGT_GS_VERTEX_REUSE, 16);
  1499. WREG32(PA_SC_LINE_STIPPLE_STATE, 0);
  1500. WREG32(VGT_STRMOUT_EN, 0);
  1501. WREG32(SX_MISC, 0);
  1502. WREG32(PA_SC_MODE_CNTL, 0);
  1503. WREG32(PA_SC_EDGERULE, 0xaaaaaaaa);
  1504. WREG32(PA_SC_AA_CONFIG, 0);
  1505. WREG32(PA_SC_CLIPRECT_RULE, 0xffff);
  1506. WREG32(PA_SC_LINE_STIPPLE, 0);
  1507. WREG32(SPI_INPUT_Z, 0);
  1508. WREG32(SPI_PS_IN_CONTROL_0, NUM_INTERP(2));
  1509. WREG32(CB_COLOR7_FRAG, 0);
  1510. /* clear render buffer base addresses */
  1511. WREG32(CB_COLOR0_BASE, 0);
  1512. WREG32(CB_COLOR1_BASE, 0);
  1513. WREG32(CB_COLOR2_BASE, 0);
  1514. WREG32(CB_COLOR3_BASE, 0);
  1515. WREG32(CB_COLOR4_BASE, 0);
  1516. WREG32(CB_COLOR5_BASE, 0);
  1517. WREG32(CB_COLOR6_BASE, 0);
  1518. WREG32(CB_COLOR7_BASE, 0);
  1519. WREG32(TCP_CNTL, 0);
  1520. hdp_host_path_cntl = RREG32(HDP_HOST_PATH_CNTL);
  1521. WREG32(HDP_HOST_PATH_CNTL, hdp_host_path_cntl);
  1522. WREG32(PA_SC_MULTI_CHIP_CNTL, 0);
  1523. WREG32(PA_CL_ENHANCE, (CLIP_VTX_REORDER_ENA |
  1524. NUM_CLIP_SEQ(3)));
  1525. WREG32(VC_ENHANCE, 0);
  1526. }
  1527. void r700_vram_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc)
  1528. {
  1529. u64 size_bf, size_af;
  1530. if (mc->mc_vram_size > 0xE0000000) {
  1531. /* leave room for at least 512M GTT */
  1532. dev_warn(rdev->dev, "limiting VRAM\n");
  1533. mc->real_vram_size = 0xE0000000;
  1534. mc->mc_vram_size = 0xE0000000;
  1535. }
  1536. if (rdev->flags & RADEON_IS_AGP) {
  1537. size_bf = mc->gtt_start;
  1538. size_af = mc->mc_mask - mc->gtt_end;
  1539. if (size_bf > size_af) {
  1540. if (mc->mc_vram_size > size_bf) {
  1541. dev_warn(rdev->dev, "limiting VRAM\n");
  1542. mc->real_vram_size = size_bf;
  1543. mc->mc_vram_size = size_bf;
  1544. }
  1545. mc->vram_start = mc->gtt_start - mc->mc_vram_size;
  1546. } else {
  1547. if (mc->mc_vram_size > size_af) {
  1548. dev_warn(rdev->dev, "limiting VRAM\n");
  1549. mc->real_vram_size = size_af;
  1550. mc->mc_vram_size = size_af;
  1551. }
  1552. mc->vram_start = mc->gtt_end + 1;
  1553. }
  1554. mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
  1555. dev_info(rdev->dev, "VRAM: %lluM 0x%08llX - 0x%08llX (%lluM used)\n",
  1556. mc->mc_vram_size >> 20, mc->vram_start,
  1557. mc->vram_end, mc->real_vram_size >> 20);
  1558. } else {
  1559. radeon_vram_location(rdev, &rdev->mc, 0);
  1560. rdev->mc.gtt_base_align = 0;
  1561. radeon_gtt_location(rdev, mc);
  1562. }
  1563. }
  1564. static int rv770_mc_init(struct radeon_device *rdev)
  1565. {
  1566. u32 tmp;
  1567. int chansize, numchan;
  1568. /* Get VRAM informations */
  1569. rdev->mc.vram_is_ddr = true;
  1570. tmp = RREG32(MC_ARB_RAMCFG);
  1571. if (tmp & CHANSIZE_OVERRIDE) {
  1572. chansize = 16;
  1573. } else if (tmp & CHANSIZE_MASK) {
  1574. chansize = 64;
  1575. } else {
  1576. chansize = 32;
  1577. }
  1578. tmp = RREG32(MC_SHARED_CHMAP);
  1579. switch ((tmp & NOOFCHAN_MASK) >> NOOFCHAN_SHIFT) {
  1580. case 0:
  1581. default:
  1582. numchan = 1;
  1583. break;
  1584. case 1:
  1585. numchan = 2;
  1586. break;
  1587. case 2:
  1588. numchan = 4;
  1589. break;
  1590. case 3:
  1591. numchan = 8;
  1592. break;
  1593. }
  1594. rdev->mc.vram_width = numchan * chansize;
  1595. /* Could aper size report 0 ? */
  1596. rdev->mc.aper_base = pci_resource_start(rdev->pdev, 0);
  1597. rdev->mc.aper_size = pci_resource_len(rdev->pdev, 0);
  1598. /* Setup GPU memory space */
  1599. rdev->mc.mc_vram_size = RREG32(CONFIG_MEMSIZE);
  1600. rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE);
  1601. rdev->mc.visible_vram_size = rdev->mc.aper_size;
  1602. r700_vram_gtt_location(rdev, &rdev->mc);
  1603. radeon_update_bandwidth_info(rdev);
  1604. return 0;
  1605. }
  1606. /**
  1607. * rv770_copy_dma - copy pages using the DMA engine
  1608. *
  1609. * @rdev: radeon_device pointer
  1610. * @src_offset: src GPU address
  1611. * @dst_offset: dst GPU address
  1612. * @num_gpu_pages: number of GPU pages to xfer
  1613. * @fence: radeon fence object
  1614. *
  1615. * Copy GPU paging using the DMA engine (r7xx).
  1616. * Used by the radeon ttm implementation to move pages if
  1617. * registered as the asic copy callback.
  1618. */
  1619. int rv770_copy_dma(struct radeon_device *rdev,
  1620. uint64_t src_offset, uint64_t dst_offset,
  1621. unsigned num_gpu_pages,
  1622. struct radeon_fence **fence)
  1623. {
  1624. struct radeon_semaphore *sem = NULL;
  1625. int ring_index = rdev->asic->copy.dma_ring_index;
  1626. struct radeon_ring *ring = &rdev->ring[ring_index];
  1627. u32 size_in_dw, cur_size_in_dw;
  1628. int i, num_loops;
  1629. int r = 0;
  1630. r = radeon_semaphore_create(rdev, &sem);
  1631. if (r) {
  1632. DRM_ERROR("radeon: moving bo (%d).\n", r);
  1633. return r;
  1634. }
  1635. size_in_dw = (num_gpu_pages << RADEON_GPU_PAGE_SHIFT) / 4;
  1636. num_loops = DIV_ROUND_UP(size_in_dw, 0xFFFF);
  1637. r = radeon_ring_lock(rdev, ring, num_loops * 5 + 8);
  1638. if (r) {
  1639. DRM_ERROR("radeon: moving bo (%d).\n", r);
  1640. radeon_semaphore_free(rdev, &sem, NULL);
  1641. return r;
  1642. }
  1643. if (radeon_fence_need_sync(*fence, ring->idx)) {
  1644. radeon_semaphore_sync_rings(rdev, sem, (*fence)->ring,
  1645. ring->idx);
  1646. radeon_fence_note_sync(*fence, ring->idx);
  1647. } else {
  1648. radeon_semaphore_free(rdev, &sem, NULL);
  1649. }
  1650. for (i = 0; i < num_loops; i++) {
  1651. cur_size_in_dw = size_in_dw;
  1652. if (cur_size_in_dw > 0xFFFF)
  1653. cur_size_in_dw = 0xFFFF;
  1654. size_in_dw -= cur_size_in_dw;
  1655. radeon_ring_write(ring, DMA_PACKET(DMA_PACKET_COPY, 0, 0, cur_size_in_dw));
  1656. radeon_ring_write(ring, dst_offset & 0xfffffffc);
  1657. radeon_ring_write(ring, src_offset & 0xfffffffc);
  1658. radeon_ring_write(ring, upper_32_bits(dst_offset) & 0xff);
  1659. radeon_ring_write(ring, upper_32_bits(src_offset) & 0xff);
  1660. src_offset += cur_size_in_dw * 4;
  1661. dst_offset += cur_size_in_dw * 4;
  1662. }
  1663. r = radeon_fence_emit(rdev, fence, ring->idx);
  1664. if (r) {
  1665. radeon_ring_unlock_undo(rdev, ring);
  1666. return r;
  1667. }
  1668. radeon_ring_unlock_commit(rdev, ring);
  1669. radeon_semaphore_free(rdev, &sem, *fence);
  1670. return r;
  1671. }
  1672. static int rv770_startup(struct radeon_device *rdev)
  1673. {
  1674. struct radeon_ring *ring;
  1675. int r;
  1676. /* enable pcie gen2 link */
  1677. rv770_pcie_gen2_enable(rdev);
  1678. if (!rdev->me_fw || !rdev->pfp_fw || !rdev->rlc_fw) {
  1679. r = r600_init_microcode(rdev);
  1680. if (r) {
  1681. DRM_ERROR("Failed to load firmware!\n");
  1682. return r;
  1683. }
  1684. }
  1685. r = r600_vram_scratch_init(rdev);
  1686. if (r)
  1687. return r;
  1688. rv770_mc_program(rdev);
  1689. if (rdev->flags & RADEON_IS_AGP) {
  1690. rv770_agp_enable(rdev);
  1691. } else {
  1692. r = rv770_pcie_gart_enable(rdev);
  1693. if (r)
  1694. return r;
  1695. }
  1696. rv770_gpu_init(rdev);
  1697. r = r600_blit_init(rdev);
  1698. if (r) {
  1699. r600_blit_fini(rdev);
  1700. rdev->asic->copy.copy = NULL;
  1701. dev_warn(rdev->dev, "failed blitter (%d) falling back to memcpy\n", r);
  1702. }
  1703. /* allocate wb buffer */
  1704. r = radeon_wb_init(rdev);
  1705. if (r)
  1706. return r;
  1707. r = radeon_fence_driver_start_ring(rdev, RADEON_RING_TYPE_GFX_INDEX);
  1708. if (r) {
  1709. dev_err(rdev->dev, "failed initializing CP fences (%d).\n", r);
  1710. return r;
  1711. }
  1712. r = radeon_fence_driver_start_ring(rdev, R600_RING_TYPE_DMA_INDEX);
  1713. if (r) {
  1714. dev_err(rdev->dev, "failed initializing DMA fences (%d).\n", r);
  1715. return r;
  1716. }
  1717. r = rv770_uvd_resume(rdev);
  1718. if (!r) {
  1719. r = radeon_fence_driver_start_ring(rdev,
  1720. R600_RING_TYPE_UVD_INDEX);
  1721. if (r)
  1722. dev_err(rdev->dev, "UVD fences init error (%d).\n", r);
  1723. }
  1724. if (r)
  1725. rdev->ring[R600_RING_TYPE_UVD_INDEX].ring_size = 0;
  1726. /* Enable IRQ */
  1727. r = r600_irq_init(rdev);
  1728. if (r) {
  1729. DRM_ERROR("radeon: IH init failed (%d).\n", r);
  1730. radeon_irq_kms_fini(rdev);
  1731. return r;
  1732. }
  1733. r600_irq_set(rdev);
  1734. ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
  1735. r = radeon_ring_init(rdev, ring, ring->ring_size, RADEON_WB_CP_RPTR_OFFSET,
  1736. R600_CP_RB_RPTR, R600_CP_RB_WPTR,
  1737. 0, 0xfffff, RADEON_CP_PACKET2);
  1738. if (r)
  1739. return r;
  1740. ring = &rdev->ring[R600_RING_TYPE_DMA_INDEX];
  1741. r = radeon_ring_init(rdev, ring, ring->ring_size, R600_WB_DMA_RPTR_OFFSET,
  1742. DMA_RB_RPTR, DMA_RB_WPTR,
  1743. 2, 0x3fffc, DMA_PACKET(DMA_PACKET_NOP, 0, 0, 0));
  1744. if (r)
  1745. return r;
  1746. r = rv770_cp_load_microcode(rdev);
  1747. if (r)
  1748. return r;
  1749. r = r600_cp_resume(rdev);
  1750. if (r)
  1751. return r;
  1752. r = r600_dma_resume(rdev);
  1753. if (r)
  1754. return r;
  1755. ring = &rdev->ring[R600_RING_TYPE_UVD_INDEX];
  1756. if (ring->ring_size) {
  1757. r = radeon_ring_init(rdev, ring, ring->ring_size,
  1758. R600_WB_UVD_RPTR_OFFSET,
  1759. UVD_RBC_RB_RPTR, UVD_RBC_RB_WPTR,
  1760. 0, 0xfffff, RADEON_CP_PACKET2);
  1761. if (!r)
  1762. r = r600_uvd_init(rdev);
  1763. if (r)
  1764. DRM_ERROR("radeon: failed initializing UVD (%d).\n", r);
  1765. }
  1766. r = radeon_ib_pool_init(rdev);
  1767. if (r) {
  1768. dev_err(rdev->dev, "IB initialization failed (%d).\n", r);
  1769. return r;
  1770. }
  1771. r = r600_audio_init(rdev);
  1772. if (r) {
  1773. DRM_ERROR("radeon: audio init failed\n");
  1774. return r;
  1775. }
  1776. return 0;
  1777. }
  1778. int rv770_resume(struct radeon_device *rdev)
  1779. {
  1780. int r;
  1781. /* Do not reset GPU before posting, on rv770 hw unlike on r500 hw,
  1782. * posting will perform necessary task to bring back GPU into good
  1783. * shape.
  1784. */
  1785. /* post card */
  1786. atom_asic_init(rdev->mode_info.atom_context);
  1787. /* init golden registers */
  1788. rv770_init_golden_registers(rdev);
  1789. rdev->accel_working = true;
  1790. r = rv770_startup(rdev);
  1791. if (r) {
  1792. DRM_ERROR("r600 startup failed on resume\n");
  1793. rdev->accel_working = false;
  1794. return r;
  1795. }
  1796. return r;
  1797. }
  1798. int rv770_suspend(struct radeon_device *rdev)
  1799. {
  1800. r600_audio_fini(rdev);
  1801. radeon_uvd_suspend(rdev);
  1802. r700_cp_stop(rdev);
  1803. r600_dma_stop(rdev);
  1804. r600_irq_suspend(rdev);
  1805. radeon_wb_disable(rdev);
  1806. rv770_pcie_gart_disable(rdev);
  1807. return 0;
  1808. }
  1809. /* Plan is to move initialization in that function and use
  1810. * helper function so that radeon_device_init pretty much
  1811. * do nothing more than calling asic specific function. This
  1812. * should also allow to remove a bunch of callback function
  1813. * like vram_info.
  1814. */
  1815. int rv770_init(struct radeon_device *rdev)
  1816. {
  1817. int r;
  1818. /* Read BIOS */
  1819. if (!radeon_get_bios(rdev)) {
  1820. if (ASIC_IS_AVIVO(rdev))
  1821. return -EINVAL;
  1822. }
  1823. /* Must be an ATOMBIOS */
  1824. if (!rdev->is_atom_bios) {
  1825. dev_err(rdev->dev, "Expecting atombios for R600 GPU\n");
  1826. return -EINVAL;
  1827. }
  1828. r = radeon_atombios_init(rdev);
  1829. if (r)
  1830. return r;
  1831. /* Post card if necessary */
  1832. if (!radeon_card_posted(rdev)) {
  1833. if (!rdev->bios) {
  1834. dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n");
  1835. return -EINVAL;
  1836. }
  1837. DRM_INFO("GPU not posted. posting now...\n");
  1838. atom_asic_init(rdev->mode_info.atom_context);
  1839. }
  1840. /* init golden registers */
  1841. rv770_init_golden_registers(rdev);
  1842. /* Initialize scratch registers */
  1843. r600_scratch_init(rdev);
  1844. /* Initialize surface registers */
  1845. radeon_surface_init(rdev);
  1846. /* Initialize clocks */
  1847. radeon_get_clock_info(rdev->ddev);
  1848. /* Fence driver */
  1849. r = radeon_fence_driver_init(rdev);
  1850. if (r)
  1851. return r;
  1852. /* initialize AGP */
  1853. if (rdev->flags & RADEON_IS_AGP) {
  1854. r = radeon_agp_init(rdev);
  1855. if (r)
  1856. radeon_agp_disable(rdev);
  1857. }
  1858. r = rv770_mc_init(rdev);
  1859. if (r)
  1860. return r;
  1861. /* Memory manager */
  1862. r = radeon_bo_init(rdev);
  1863. if (r)
  1864. return r;
  1865. r = radeon_irq_kms_init(rdev);
  1866. if (r)
  1867. return r;
  1868. rdev->ring[RADEON_RING_TYPE_GFX_INDEX].ring_obj = NULL;
  1869. r600_ring_init(rdev, &rdev->ring[RADEON_RING_TYPE_GFX_INDEX], 1024 * 1024);
  1870. rdev->ring[R600_RING_TYPE_DMA_INDEX].ring_obj = NULL;
  1871. r600_ring_init(rdev, &rdev->ring[R600_RING_TYPE_DMA_INDEX], 64 * 1024);
  1872. r = radeon_uvd_init(rdev);
  1873. if (!r) {
  1874. rdev->ring[R600_RING_TYPE_UVD_INDEX].ring_obj = NULL;
  1875. r600_ring_init(rdev, &rdev->ring[R600_RING_TYPE_UVD_INDEX],
  1876. 4096);
  1877. }
  1878. rdev->ih.ring_obj = NULL;
  1879. r600_ih_ring_init(rdev, 64 * 1024);
  1880. r = r600_pcie_gart_init(rdev);
  1881. if (r)
  1882. return r;
  1883. rdev->accel_working = true;
  1884. r = rv770_startup(rdev);
  1885. if (r) {
  1886. dev_err(rdev->dev, "disabling GPU acceleration\n");
  1887. r700_cp_fini(rdev);
  1888. r600_dma_fini(rdev);
  1889. r600_irq_fini(rdev);
  1890. radeon_wb_fini(rdev);
  1891. radeon_ib_pool_fini(rdev);
  1892. radeon_irq_kms_fini(rdev);
  1893. rv770_pcie_gart_fini(rdev);
  1894. rdev->accel_working = false;
  1895. }
  1896. return 0;
  1897. }
  1898. void rv770_fini(struct radeon_device *rdev)
  1899. {
  1900. r600_blit_fini(rdev);
  1901. r700_cp_fini(rdev);
  1902. r600_dma_fini(rdev);
  1903. r600_irq_fini(rdev);
  1904. radeon_wb_fini(rdev);
  1905. radeon_ib_pool_fini(rdev);
  1906. radeon_irq_kms_fini(rdev);
  1907. rv770_pcie_gart_fini(rdev);
  1908. radeon_uvd_fini(rdev);
  1909. r600_vram_scratch_fini(rdev);
  1910. radeon_gem_fini(rdev);
  1911. radeon_fence_driver_fini(rdev);
  1912. radeon_agp_fini(rdev);
  1913. radeon_bo_fini(rdev);
  1914. radeon_atombios_fini(rdev);
  1915. kfree(rdev->bios);
  1916. rdev->bios = NULL;
  1917. }
  1918. static void rv770_pcie_gen2_enable(struct radeon_device *rdev)
  1919. {
  1920. u32 link_width_cntl, lanes, speed_cntl, tmp;
  1921. u16 link_cntl2;
  1922. u32 mask;
  1923. int ret;
  1924. if (radeon_pcie_gen2 == 0)
  1925. return;
  1926. if (rdev->flags & RADEON_IS_IGP)
  1927. return;
  1928. if (!(rdev->flags & RADEON_IS_PCIE))
  1929. return;
  1930. /* x2 cards have a special sequence */
  1931. if (ASIC_IS_X2(rdev))
  1932. return;
  1933. ret = drm_pcie_get_speed_cap_mask(rdev->ddev, &mask);
  1934. if (ret != 0)
  1935. return;
  1936. if (!(mask & DRM_PCIE_SPEED_50))
  1937. return;
  1938. DRM_INFO("enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0\n");
  1939. /* advertise upconfig capability */
  1940. link_width_cntl = RREG32_PCIE_PORT(PCIE_LC_LINK_WIDTH_CNTL);
  1941. link_width_cntl &= ~LC_UPCONFIGURE_DIS;
  1942. WREG32_PCIE_PORT(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl);
  1943. link_width_cntl = RREG32_PCIE_PORT(PCIE_LC_LINK_WIDTH_CNTL);
  1944. if (link_width_cntl & LC_RENEGOTIATION_SUPPORT) {
  1945. lanes = (link_width_cntl & LC_LINK_WIDTH_RD_MASK) >> LC_LINK_WIDTH_RD_SHIFT;
  1946. link_width_cntl &= ~(LC_LINK_WIDTH_MASK |
  1947. LC_RECONFIG_ARC_MISSING_ESCAPE);
  1948. link_width_cntl |= lanes | LC_RECONFIG_NOW |
  1949. LC_RENEGOTIATE_EN | LC_UPCONFIGURE_SUPPORT;
  1950. WREG32_PCIE_PORT(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl);
  1951. } else {
  1952. link_width_cntl |= LC_UPCONFIGURE_DIS;
  1953. WREG32_PCIE_PORT(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl);
  1954. }
  1955. speed_cntl = RREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL);
  1956. if ((speed_cntl & LC_OTHER_SIDE_EVER_SENT_GEN2) &&
  1957. (speed_cntl & LC_OTHER_SIDE_SUPPORTS_GEN2)) {
  1958. tmp = RREG32(0x541c);
  1959. WREG32(0x541c, tmp | 0x8);
  1960. WREG32(MM_CFGREGS_CNTL, MM_WR_TO_CFG_EN);
  1961. link_cntl2 = RREG16(0x4088);
  1962. link_cntl2 &= ~TARGET_LINK_SPEED_MASK;
  1963. link_cntl2 |= 0x2;
  1964. WREG16(0x4088, link_cntl2);
  1965. WREG32(MM_CFGREGS_CNTL, 0);
  1966. speed_cntl = RREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL);
  1967. speed_cntl &= ~LC_TARGET_LINK_SPEED_OVERRIDE_EN;
  1968. WREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL, speed_cntl);
  1969. speed_cntl = RREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL);
  1970. speed_cntl |= LC_CLR_FAILED_SPD_CHANGE_CNT;
  1971. WREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL, speed_cntl);
  1972. speed_cntl = RREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL);
  1973. speed_cntl &= ~LC_CLR_FAILED_SPD_CHANGE_CNT;
  1974. WREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL, speed_cntl);
  1975. speed_cntl = RREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL);
  1976. speed_cntl |= LC_GEN2_EN_STRAP;
  1977. WREG32_PCIE_PORT(PCIE_LC_SPEED_CNTL, speed_cntl);
  1978. } else {
  1979. link_width_cntl = RREG32_PCIE_PORT(PCIE_LC_LINK_WIDTH_CNTL);
  1980. /* XXX: only disable it if gen1 bridge vendor == 0x111d or 0x1106 */
  1981. if (1)
  1982. link_width_cntl |= LC_UPCONFIGURE_DIS;
  1983. else
  1984. link_width_cntl &= ~LC_UPCONFIGURE_DIS;
  1985. WREG32_PCIE_PORT(PCIE_LC_LINK_WIDTH_CNTL, link_width_cntl);
  1986. }
  1987. }