drm_atomic_helper.c 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232
  1. /*
  2. * Copyright (C) 2014 Red Hat
  3. * Copyright (C) 2014 Intel Corp.
  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 shall be included in
  13. * all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  19. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  20. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  21. * OTHER DEALINGS IN THE SOFTWARE.
  22. *
  23. * Authors:
  24. * Rob Clark <robdclark@gmail.com>
  25. * Daniel Vetter <daniel.vetter@ffwll.ch>
  26. */
  27. #include <drm/drmP.h>
  28. #include <drm/drm_atomic.h>
  29. #include <drm/drm_plane_helper.h>
  30. #include <drm/drm_crtc_helper.h>
  31. #include <drm/drm_atomic_helper.h>
  32. #include <linux/fence.h>
  33. /**
  34. * DOC: overview
  35. *
  36. * This helper library provides implementations of check and commit functions on
  37. * top of the CRTC modeset helper callbacks and the plane helper callbacks. It
  38. * also provides convenience implementations for the atomic state handling
  39. * callbacks for drivers which don't need to subclass the drm core structures to
  40. * add their own additional internal state.
  41. *
  42. * This library also provides default implementations for the check callback in
  43. * drm_atomic_helper_check and for the commit callback with
  44. * drm_atomic_helper_commit. But the individual stages and callbacks are expose
  45. * to allow drivers to mix and match and e.g. use the plane helpers only
  46. * together with a driver private modeset implementation.
  47. *
  48. * This library also provides implementations for all the legacy driver
  49. * interfaces on top of the atomic interface. See drm_atomic_helper_set_config,
  50. * drm_atomic_helper_disable_plane, drm_atomic_helper_disable_plane and the
  51. * various functions to implement set_property callbacks. New drivers must not
  52. * implement these functions themselves but must use the provided helpers.
  53. */
  54. static void
  55. drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
  56. struct drm_plane_state *plane_state,
  57. struct drm_plane *plane)
  58. {
  59. struct drm_crtc_state *crtc_state;
  60. if (plane->state->crtc) {
  61. crtc_state = state->crtc_states[drm_crtc_index(plane->state->crtc)];
  62. if (WARN_ON(!crtc_state))
  63. return;
  64. crtc_state->planes_changed = true;
  65. }
  66. if (plane_state->crtc) {
  67. crtc_state =
  68. state->crtc_states[drm_crtc_index(plane_state->crtc)];
  69. if (WARN_ON(!crtc_state))
  70. return;
  71. crtc_state->planes_changed = true;
  72. }
  73. }
  74. static struct drm_crtc *
  75. get_current_crtc_for_encoder(struct drm_device *dev,
  76. struct drm_encoder *encoder)
  77. {
  78. struct drm_mode_config *config = &dev->mode_config;
  79. struct drm_connector *connector;
  80. WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
  81. list_for_each_entry(connector, &config->connector_list, head) {
  82. if (connector->state->best_encoder != encoder)
  83. continue;
  84. return connector->state->crtc;
  85. }
  86. return NULL;
  87. }
  88. static int
  89. steal_encoder(struct drm_atomic_state *state,
  90. struct drm_encoder *encoder,
  91. struct drm_crtc *encoder_crtc)
  92. {
  93. struct drm_mode_config *config = &state->dev->mode_config;
  94. struct drm_crtc_state *crtc_state;
  95. struct drm_connector *connector;
  96. struct drm_connector_state *connector_state;
  97. int ret;
  98. /*
  99. * We can only steal an encoder coming from a connector, which means we
  100. * must already hold the connection_mutex.
  101. */
  102. WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
  103. DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] in use on [CRTC:%d], stealing it\n",
  104. encoder->base.id, encoder->name,
  105. encoder_crtc->base.id);
  106. crtc_state = drm_atomic_get_crtc_state(state, encoder_crtc);
  107. if (IS_ERR(crtc_state))
  108. return PTR_ERR(crtc_state);
  109. crtc_state->mode_changed = true;
  110. list_for_each_entry(connector, &config->connector_list, head) {
  111. if (connector->state->best_encoder != encoder)
  112. continue;
  113. DRM_DEBUG_ATOMIC("Stealing encoder from [CONNECTOR:%d:%s]\n",
  114. connector->base.id,
  115. connector->name);
  116. connector_state = drm_atomic_get_connector_state(state,
  117. connector);
  118. if (IS_ERR(connector_state))
  119. return PTR_ERR(connector_state);
  120. ret = drm_atomic_set_crtc_for_connector(connector_state, NULL);
  121. if (ret)
  122. return ret;
  123. connector_state->best_encoder = NULL;
  124. }
  125. return 0;
  126. }
  127. static int
  128. update_connector_routing(struct drm_atomic_state *state, int conn_idx)
  129. {
  130. const struct drm_connector_helper_funcs *funcs;
  131. struct drm_encoder *new_encoder;
  132. struct drm_crtc *encoder_crtc;
  133. struct drm_connector *connector;
  134. struct drm_connector_state *connector_state;
  135. struct drm_crtc_state *crtc_state;
  136. int idx, ret;
  137. connector = state->connectors[conn_idx];
  138. connector_state = state->connector_states[conn_idx];
  139. if (!connector)
  140. return 0;
  141. DRM_DEBUG_ATOMIC("Updating routing for [CONNECTOR:%d:%s]\n",
  142. connector->base.id,
  143. connector->name);
  144. if (connector->state->crtc != connector_state->crtc) {
  145. if (connector->state->crtc) {
  146. idx = drm_crtc_index(connector->state->crtc);
  147. crtc_state = state->crtc_states[idx];
  148. crtc_state->mode_changed = true;
  149. }
  150. if (connector_state->crtc) {
  151. idx = drm_crtc_index(connector_state->crtc);
  152. crtc_state = state->crtc_states[idx];
  153. crtc_state->mode_changed = true;
  154. }
  155. }
  156. if (!connector_state->crtc) {
  157. DRM_DEBUG_ATOMIC("Disabling [CONNECTOR:%d:%s]\n",
  158. connector->base.id,
  159. connector->name);
  160. connector_state->best_encoder = NULL;
  161. return 0;
  162. }
  163. funcs = connector->helper_private;
  164. new_encoder = funcs->best_encoder(connector);
  165. if (!new_encoder) {
  166. DRM_DEBUG_ATOMIC("No suitable encoder found for [CONNECTOR:%d:%s]\n",
  167. connector->base.id,
  168. connector->name);
  169. return -EINVAL;
  170. }
  171. if (new_encoder == connector_state->best_encoder) {
  172. DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] keeps [ENCODER:%d:%s], now on [CRTC:%d]\n",
  173. connector->base.id,
  174. connector->name,
  175. new_encoder->base.id,
  176. new_encoder->name,
  177. connector_state->crtc->base.id);
  178. return 0;
  179. }
  180. encoder_crtc = get_current_crtc_for_encoder(state->dev,
  181. new_encoder);
  182. if (encoder_crtc) {
  183. ret = steal_encoder(state, new_encoder, encoder_crtc);
  184. if (ret) {
  185. DRM_DEBUG_ATOMIC("Encoder stealing failed for [CONNECTOR:%d:%s]\n",
  186. connector->base.id,
  187. connector->name);
  188. return ret;
  189. }
  190. }
  191. connector_state->best_encoder = new_encoder;
  192. idx = drm_crtc_index(connector_state->crtc);
  193. crtc_state = state->crtc_states[idx];
  194. crtc_state->mode_changed = true;
  195. DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] using [ENCODER:%d:%s] on [CRTC:%d]\n",
  196. connector->base.id,
  197. connector->name,
  198. new_encoder->base.id,
  199. new_encoder->name,
  200. connector_state->crtc->base.id);
  201. return 0;
  202. }
  203. static int
  204. mode_fixup(struct drm_atomic_state *state)
  205. {
  206. struct drm_crtc *crtc;
  207. struct drm_crtc_state *crtc_state;
  208. struct drm_connector *connector;
  209. struct drm_connector_state *conn_state;
  210. int i;
  211. bool ret;
  212. for_each_crtc_in_state(state, crtc, crtc_state, i) {
  213. if (!crtc_state->mode_changed)
  214. continue;
  215. drm_mode_copy(&crtc_state->adjusted_mode, &crtc_state->mode);
  216. }
  217. for_each_connector_in_state(state, connector, conn_state, i) {
  218. const struct drm_encoder_helper_funcs *funcs;
  219. struct drm_encoder *encoder;
  220. WARN_ON(!!conn_state->best_encoder != !!conn_state->crtc);
  221. if (!conn_state->crtc || !conn_state->best_encoder)
  222. continue;
  223. crtc_state =
  224. state->crtc_states[drm_crtc_index(conn_state->crtc)];
  225. /*
  226. * Each encoder has at most one connector (since we always steal
  227. * it away), so we won't call ->mode_fixup twice.
  228. */
  229. encoder = conn_state->best_encoder;
  230. funcs = encoder->helper_private;
  231. if (encoder->bridge && encoder->bridge->funcs->mode_fixup) {
  232. ret = encoder->bridge->funcs->mode_fixup(
  233. encoder->bridge, &crtc_state->mode,
  234. &crtc_state->adjusted_mode);
  235. if (!ret) {
  236. DRM_DEBUG_ATOMIC("Bridge fixup failed\n");
  237. return -EINVAL;
  238. }
  239. }
  240. if (funcs->atomic_check) {
  241. ret = funcs->atomic_check(encoder, crtc_state,
  242. conn_state);
  243. if (ret) {
  244. DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] check failed\n",
  245. encoder->base.id, encoder->name);
  246. return ret;
  247. }
  248. } else {
  249. ret = funcs->mode_fixup(encoder, &crtc_state->mode,
  250. &crtc_state->adjusted_mode);
  251. if (!ret) {
  252. DRM_DEBUG_ATOMIC("[ENCODER:%d:%s] fixup failed\n",
  253. encoder->base.id, encoder->name);
  254. return -EINVAL;
  255. }
  256. }
  257. }
  258. for_each_crtc_in_state(state, crtc, crtc_state, i) {
  259. const struct drm_crtc_helper_funcs *funcs;
  260. if (!crtc_state->mode_changed)
  261. continue;
  262. funcs = crtc->helper_private;
  263. ret = funcs->mode_fixup(crtc, &crtc_state->mode,
  264. &crtc_state->adjusted_mode);
  265. if (!ret) {
  266. DRM_DEBUG_ATOMIC("[CRTC:%d] fixup failed\n",
  267. crtc->base.id);
  268. return -EINVAL;
  269. }
  270. }
  271. return 0;
  272. }
  273. static bool
  274. needs_modeset(struct drm_crtc_state *state)
  275. {
  276. return state->mode_changed || state->active_changed;
  277. }
  278. /**
  279. * drm_atomic_helper_check - validate state object for modeset changes
  280. * @dev: DRM device
  281. * @state: the driver state object
  282. *
  283. * Check the state object to see if the requested state is physically possible.
  284. * This does all the crtc and connector related computations for an atomic
  285. * update. It computes and updates crtc_state->mode_changed, adds any additional
  286. * connectors needed for full modesets and calls down into ->mode_fixup
  287. * functions of the driver backend.
  288. *
  289. * IMPORTANT:
  290. *
  291. * Drivers which update ->mode_changed (e.g. in their ->atomic_check hooks if a
  292. * plane update can't be done without a full modeset) _must_ call this function
  293. * afterwards after that change. It is permitted to call this function multiple
  294. * times for the same update, e.g. when the ->atomic_check functions depend upon
  295. * the adjusted dotclock for fifo space allocation and watermark computation.
  296. *
  297. * RETURNS
  298. * Zero for success or -errno
  299. */
  300. int
  301. drm_atomic_helper_check_modeset(struct drm_device *dev,
  302. struct drm_atomic_state *state)
  303. {
  304. struct drm_crtc *crtc;
  305. struct drm_crtc_state *crtc_state;
  306. struct drm_connector *connector;
  307. struct drm_connector_state *connector_state;
  308. int i, ret;
  309. for_each_crtc_in_state(state, crtc, crtc_state, i) {
  310. if (!drm_mode_equal(&crtc->state->mode, &crtc_state->mode)) {
  311. DRM_DEBUG_ATOMIC("[CRTC:%d] mode changed\n",
  312. crtc->base.id);
  313. crtc_state->mode_changed = true;
  314. }
  315. if (crtc->state->enable != crtc_state->enable) {
  316. DRM_DEBUG_ATOMIC("[CRTC:%d] enable changed\n",
  317. crtc->base.id);
  318. crtc_state->mode_changed = true;
  319. }
  320. }
  321. for_each_connector_in_state(state, connector, connector_state, i) {
  322. /*
  323. * This only sets crtc->mode_changed for routing changes,
  324. * drivers must set crtc->mode_changed themselves when connector
  325. * properties need to be updated.
  326. */
  327. ret = update_connector_routing(state, i);
  328. if (ret)
  329. return ret;
  330. }
  331. /*
  332. * After all the routing has been prepared we need to add in any
  333. * connector which is itself unchanged, but who's crtc changes it's
  334. * configuration. This must be done before calling mode_fixup in case a
  335. * crtc only changed its mode but has the same set of connectors.
  336. */
  337. for_each_crtc_in_state(state, crtc, crtc_state, i) {
  338. int num_connectors;
  339. /*
  340. * We must set ->active_changed after walking connectors for
  341. * otherwise an update that only changes active would result in
  342. * a full modeset because update_connector_routing force that.
  343. */
  344. if (crtc->state->active != crtc_state->active) {
  345. DRM_DEBUG_ATOMIC("[CRTC:%d] active changed\n",
  346. crtc->base.id);
  347. crtc_state->active_changed = true;
  348. }
  349. if (!needs_modeset(crtc_state))
  350. continue;
  351. DRM_DEBUG_ATOMIC("[CRTC:%d] needs all connectors, enable: %c, active: %c\n",
  352. crtc->base.id,
  353. crtc_state->enable ? 'y' : 'n',
  354. crtc_state->active ? 'y' : 'n');
  355. ret = drm_atomic_add_affected_connectors(state, crtc);
  356. if (ret != 0)
  357. return ret;
  358. num_connectors = drm_atomic_connectors_for_crtc(state,
  359. crtc);
  360. if (crtc_state->enable != !!num_connectors) {
  361. DRM_DEBUG_ATOMIC("[CRTC:%d] enabled/connectors mismatch\n",
  362. crtc->base.id);
  363. return -EINVAL;
  364. }
  365. }
  366. return mode_fixup(state);
  367. }
  368. EXPORT_SYMBOL(drm_atomic_helper_check_modeset);
  369. /**
  370. * drm_atomic_helper_check - validate state object for modeset changes
  371. * @dev: DRM device
  372. * @state: the driver state object
  373. *
  374. * Check the state object to see if the requested state is physically possible.
  375. * This does all the plane update related checks using by calling into the
  376. * ->atomic_check hooks provided by the driver.
  377. *
  378. * RETURNS
  379. * Zero for success or -errno
  380. */
  381. int
  382. drm_atomic_helper_check_planes(struct drm_device *dev,
  383. struct drm_atomic_state *state)
  384. {
  385. struct drm_crtc *crtc;
  386. struct drm_crtc_state *crtc_state;
  387. struct drm_plane *plane;
  388. struct drm_plane_state *plane_state;
  389. int i, ret = 0;
  390. for_each_plane_in_state(state, plane, plane_state, i) {
  391. const struct drm_plane_helper_funcs *funcs;
  392. funcs = plane->helper_private;
  393. drm_atomic_helper_plane_changed(state, plane_state, plane);
  394. if (!funcs || !funcs->atomic_check)
  395. continue;
  396. ret = funcs->atomic_check(plane, plane_state);
  397. if (ret) {
  398. DRM_DEBUG_ATOMIC("[PLANE:%d] atomic driver check failed\n",
  399. plane->base.id);
  400. return ret;
  401. }
  402. }
  403. for_each_crtc_in_state(state, crtc, crtc_state, i) {
  404. const struct drm_crtc_helper_funcs *funcs;
  405. funcs = crtc->helper_private;
  406. if (!funcs || !funcs->atomic_check)
  407. continue;
  408. ret = funcs->atomic_check(crtc, state->crtc_states[i]);
  409. if (ret) {
  410. DRM_DEBUG_ATOMIC("[CRTC:%d] atomic driver check failed\n",
  411. crtc->base.id);
  412. return ret;
  413. }
  414. }
  415. return ret;
  416. }
  417. EXPORT_SYMBOL(drm_atomic_helper_check_planes);
  418. /**
  419. * drm_atomic_helper_check - validate state object
  420. * @dev: DRM device
  421. * @state: the driver state object
  422. *
  423. * Check the state object to see if the requested state is physically possible.
  424. * Only crtcs and planes have check callbacks, so for any additional (global)
  425. * checking that a driver needs it can simply wrap that around this function.
  426. * Drivers without such needs can directly use this as their ->atomic_check()
  427. * callback.
  428. *
  429. * This just wraps the two parts of the state checking for planes and modeset
  430. * state in the default order: First it calls drm_atomic_helper_check_modeset()
  431. * and then drm_atomic_helper_check_planes(). The assumption is that the
  432. * ->atomic_check functions depend upon an updated adjusted_mode.clock to
  433. * e.g. properly compute watermarks.
  434. *
  435. * RETURNS
  436. * Zero for success or -errno
  437. */
  438. int drm_atomic_helper_check(struct drm_device *dev,
  439. struct drm_atomic_state *state)
  440. {
  441. int ret;
  442. ret = drm_atomic_helper_check_modeset(dev, state);
  443. if (ret)
  444. return ret;
  445. ret = drm_atomic_helper_check_planes(dev, state);
  446. if (ret)
  447. return ret;
  448. return ret;
  449. }
  450. EXPORT_SYMBOL(drm_atomic_helper_check);
  451. static void
  452. disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
  453. {
  454. struct drm_connector *connector;
  455. struct drm_connector_state *old_conn_state;
  456. struct drm_crtc *crtc;
  457. struct drm_crtc_state *old_crtc_state;
  458. int i;
  459. for_each_connector_in_state(old_state, connector, old_conn_state, i) {
  460. const struct drm_encoder_helper_funcs *funcs;
  461. struct drm_encoder *encoder;
  462. struct drm_crtc_state *old_crtc_state;
  463. /* Shut down everything that's in the changeset and currently
  464. * still on. So need to check the old, saved state. */
  465. if (!old_conn_state->crtc)
  466. continue;
  467. old_crtc_state = old_state->crtc_states[drm_crtc_index(old_conn_state->crtc)];
  468. if (!old_crtc_state->active)
  469. continue;
  470. encoder = old_conn_state->best_encoder;
  471. /* We shouldn't get this far if we didn't previously have
  472. * an encoder.. but WARN_ON() rather than explode.
  473. */
  474. if (WARN_ON(!encoder))
  475. continue;
  476. funcs = encoder->helper_private;
  477. DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
  478. encoder->base.id, encoder->name);
  479. /*
  480. * Each encoder has at most one connector (since we always steal
  481. * it away), so we won't call call disable hooks twice.
  482. */
  483. if (encoder->bridge)
  484. encoder->bridge->funcs->disable(encoder->bridge);
  485. /* Right function depends upon target state. */
  486. if (connector->state->crtc && funcs->prepare)
  487. funcs->prepare(encoder);
  488. else if (funcs->disable)
  489. funcs->disable(encoder);
  490. else
  491. funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
  492. if (encoder->bridge)
  493. encoder->bridge->funcs->post_disable(encoder->bridge);
  494. }
  495. for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
  496. const struct drm_crtc_helper_funcs *funcs;
  497. /* Shut down everything that needs a full modeset. */
  498. if (!needs_modeset(crtc->state))
  499. continue;
  500. if (!old_crtc_state->active)
  501. continue;
  502. funcs = crtc->helper_private;
  503. DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n",
  504. crtc->base.id);
  505. /* Right function depends upon target state. */
  506. if (crtc->state->enable && funcs->prepare)
  507. funcs->prepare(crtc);
  508. else if (funcs->disable)
  509. funcs->disable(crtc);
  510. else
  511. funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
  512. }
  513. }
  514. static void
  515. set_routing_links(struct drm_device *dev, struct drm_atomic_state *old_state)
  516. {
  517. struct drm_connector *connector;
  518. struct drm_connector_state *old_conn_state;
  519. struct drm_crtc *crtc;
  520. struct drm_crtc_state *old_crtc_state;
  521. int i;
  522. /* clear out existing links */
  523. for_each_connector_in_state(old_state, connector, old_conn_state, i) {
  524. if (!connector->encoder)
  525. continue;
  526. WARN_ON(!connector->encoder->crtc);
  527. connector->encoder->crtc = NULL;
  528. connector->encoder = NULL;
  529. }
  530. /* set new links */
  531. for_each_connector_in_state(old_state, connector, old_conn_state, i) {
  532. if (!connector->state->crtc)
  533. continue;
  534. if (WARN_ON(!connector->state->best_encoder))
  535. continue;
  536. connector->encoder = connector->state->best_encoder;
  537. connector->encoder->crtc = connector->state->crtc;
  538. }
  539. /* set legacy state in the crtc structure */
  540. for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
  541. crtc->mode = crtc->state->mode;
  542. crtc->enabled = crtc->state->enable;
  543. crtc->x = crtc->primary->state->src_x >> 16;
  544. crtc->y = crtc->primary->state->src_y >> 16;
  545. }
  546. }
  547. static void
  548. crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
  549. {
  550. struct drm_crtc *crtc;
  551. struct drm_crtc_state *old_crtc_state;
  552. struct drm_connector *connector;
  553. struct drm_connector_state *old_conn_state;
  554. int i;
  555. for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
  556. const struct drm_crtc_helper_funcs *funcs;
  557. if (!crtc->state->mode_changed)
  558. continue;
  559. funcs = crtc->helper_private;
  560. if (crtc->state->enable && funcs->mode_set_nofb) {
  561. DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n",
  562. crtc->base.id);
  563. funcs->mode_set_nofb(crtc);
  564. }
  565. }
  566. for_each_connector_in_state(old_state, connector, old_conn_state, i) {
  567. const struct drm_encoder_helper_funcs *funcs;
  568. struct drm_crtc_state *new_crtc_state;
  569. struct drm_encoder *encoder;
  570. struct drm_display_mode *mode, *adjusted_mode;
  571. if (!connector->state->best_encoder)
  572. continue;
  573. encoder = connector->state->best_encoder;
  574. funcs = encoder->helper_private;
  575. new_crtc_state = connector->state->crtc->state;
  576. mode = &new_crtc_state->mode;
  577. adjusted_mode = &new_crtc_state->adjusted_mode;
  578. if (!new_crtc_state->mode_changed)
  579. continue;
  580. DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
  581. encoder->base.id, encoder->name);
  582. /*
  583. * Each encoder has at most one connector (since we always steal
  584. * it away), so we won't call call mode_set hooks twice.
  585. */
  586. if (funcs->mode_set)
  587. funcs->mode_set(encoder, mode, adjusted_mode);
  588. if (encoder->bridge && encoder->bridge->funcs->mode_set)
  589. encoder->bridge->funcs->mode_set(encoder->bridge,
  590. mode, adjusted_mode);
  591. }
  592. }
  593. /**
  594. * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
  595. * @dev: DRM device
  596. * @old_state: atomic state object with old state structures
  597. *
  598. * This function shuts down all the outputs that need to be shut down and
  599. * prepares them (if required) with the new mode.
  600. *
  601. * For compatability with legacy crtc helpers this should be called before
  602. * drm_atomic_helper_commit_planes(), which is what the default commit function
  603. * does. But drivers with different needs can group the modeset commits together
  604. * and do the plane commits at the end. This is useful for drivers doing runtime
  605. * PM since planes updates then only happen when the CRTC is actually enabled.
  606. */
  607. void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
  608. struct drm_atomic_state *old_state)
  609. {
  610. disable_outputs(dev, old_state);
  611. set_routing_links(dev, old_state);
  612. crtc_set_mode(dev, old_state);
  613. }
  614. EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_disables);
  615. /**
  616. * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
  617. * @dev: DRM device
  618. * @old_state: atomic state object with old state structures
  619. *
  620. * This function enables all the outputs with the new configuration which had to
  621. * be turned off for the update.
  622. *
  623. * For compatability with legacy crtc helpers this should be called after
  624. * drm_atomic_helper_commit_planes(), which is what the default commit function
  625. * does. But drivers with different needs can group the modeset commits together
  626. * and do the plane commits at the end. This is useful for drivers doing runtime
  627. * PM since planes updates then only happen when the CRTC is actually enabled.
  628. */
  629. void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
  630. struct drm_atomic_state *old_state)
  631. {
  632. struct drm_crtc *crtc;
  633. struct drm_crtc_state *old_crtc_state;
  634. struct drm_connector *connector;
  635. struct drm_connector_state *old_conn_state;
  636. int i;
  637. for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
  638. const struct drm_crtc_helper_funcs *funcs;
  639. /* Need to filter out CRTCs where only planes change. */
  640. if (!needs_modeset(crtc->state))
  641. continue;
  642. if (!crtc->state->active)
  643. continue;
  644. funcs = crtc->helper_private;
  645. if (crtc->state->enable) {
  646. DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n",
  647. crtc->base.id);
  648. if (funcs->enable)
  649. funcs->enable(crtc);
  650. else
  651. funcs->commit(crtc);
  652. }
  653. }
  654. for_each_connector_in_state(old_state, connector, old_conn_state, i) {
  655. const struct drm_encoder_helper_funcs *funcs;
  656. struct drm_encoder *encoder;
  657. if (!connector->state->best_encoder)
  658. continue;
  659. if (!connector->state->crtc->state->active)
  660. continue;
  661. encoder = connector->state->best_encoder;
  662. funcs = encoder->helper_private;
  663. DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
  664. encoder->base.id, encoder->name);
  665. /*
  666. * Each encoder has at most one connector (since we always steal
  667. * it away), so we won't call call enable hooks twice.
  668. */
  669. if (encoder->bridge)
  670. encoder->bridge->funcs->pre_enable(encoder->bridge);
  671. if (funcs->enable)
  672. funcs->enable(encoder);
  673. else
  674. funcs->commit(encoder);
  675. if (encoder->bridge)
  676. encoder->bridge->funcs->enable(encoder->bridge);
  677. }
  678. }
  679. EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
  680. static void wait_for_fences(struct drm_device *dev,
  681. struct drm_atomic_state *state)
  682. {
  683. struct drm_plane *plane;
  684. struct drm_plane_state *plane_state;
  685. int i;
  686. for_each_plane_in_state(state, plane, plane_state, i) {
  687. if (!plane->state->fence)
  688. continue;
  689. WARN_ON(!plane->state->fb);
  690. fence_wait(plane->state->fence, false);
  691. fence_put(plane->state->fence);
  692. plane->state->fence = NULL;
  693. }
  694. }
  695. static bool framebuffer_changed(struct drm_device *dev,
  696. struct drm_atomic_state *old_state,
  697. struct drm_crtc *crtc)
  698. {
  699. struct drm_plane *plane;
  700. struct drm_plane_state *old_plane_state;
  701. int i;
  702. for_each_plane_in_state(old_state, plane, old_plane_state, i) {
  703. if (plane->state->crtc != crtc &&
  704. old_plane_state->crtc != crtc)
  705. continue;
  706. if (plane->state->fb != old_plane_state->fb)
  707. return true;
  708. }
  709. return false;
  710. }
  711. /**
  712. * drm_atomic_helper_wait_for_vblanks - wait for vblank on crtcs
  713. * @dev: DRM device
  714. * @old_state: atomic state object with old state structures
  715. *
  716. * Helper to, after atomic commit, wait for vblanks on all effected
  717. * crtcs (ie. before cleaning up old framebuffers using
  718. * drm_atomic_helper_cleanup_planes()). It will only wait on crtcs where the
  719. * framebuffers have actually changed to optimize for the legacy cursor and
  720. * plane update use-case.
  721. */
  722. void
  723. drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
  724. struct drm_atomic_state *old_state)
  725. {
  726. struct drm_crtc *crtc;
  727. struct drm_crtc_state *old_crtc_state;
  728. int i, ret;
  729. for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
  730. /* No one cares about the old state, so abuse it for tracking
  731. * and store whether we hold a vblank reference (and should do a
  732. * vblank wait) in the ->enable boolean. */
  733. old_crtc_state->enable = false;
  734. if (!crtc->state->enable)
  735. continue;
  736. /* Legacy cursor ioctls are completely unsynced, and userspace
  737. * relies on that (by doing tons of cursor updates). */
  738. if (old_state->legacy_cursor_update)
  739. continue;
  740. if (!framebuffer_changed(dev, old_state, crtc))
  741. continue;
  742. ret = drm_crtc_vblank_get(crtc);
  743. if (ret != 0)
  744. continue;
  745. old_crtc_state->enable = true;
  746. old_crtc_state->last_vblank_count = drm_vblank_count(dev, i);
  747. }
  748. for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
  749. if (!old_crtc_state->enable)
  750. continue;
  751. ret = wait_event_timeout(dev->vblank[i].queue,
  752. old_crtc_state->last_vblank_count !=
  753. drm_vblank_count(dev, i),
  754. msecs_to_jiffies(50));
  755. drm_crtc_vblank_put(crtc);
  756. }
  757. }
  758. EXPORT_SYMBOL(drm_atomic_helper_wait_for_vblanks);
  759. /**
  760. * drm_atomic_helper_commit - commit validated state object
  761. * @dev: DRM device
  762. * @state: the driver state object
  763. * @async: asynchronous commit
  764. *
  765. * This function commits a with drm_atomic_helper_check() pre-validated state
  766. * object. This can still fail when e.g. the framebuffer reservation fails. For
  767. * now this doesn't implement asynchronous commits.
  768. *
  769. * RETURNS
  770. * Zero for success or -errno.
  771. */
  772. int drm_atomic_helper_commit(struct drm_device *dev,
  773. struct drm_atomic_state *state,
  774. bool async)
  775. {
  776. int ret;
  777. if (async)
  778. return -EBUSY;
  779. ret = drm_atomic_helper_prepare_planes(dev, state);
  780. if (ret)
  781. return ret;
  782. /*
  783. * This is the point of no return - everything below never fails except
  784. * when the hw goes bonghits. Which means we can commit the new state on
  785. * the software side now.
  786. */
  787. drm_atomic_helper_swap_state(dev, state);
  788. /*
  789. * Everything below can be run asynchronously without the need to grab
  790. * any modeset locks at all under one conditions: It must be guaranteed
  791. * that the asynchronous work has either been cancelled (if the driver
  792. * supports it, which at least requires that the framebuffers get
  793. * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
  794. * before the new state gets committed on the software side with
  795. * drm_atomic_helper_swap_state().
  796. *
  797. * This scheme allows new atomic state updates to be prepared and
  798. * checked in parallel to the asynchronous completion of the previous
  799. * update. Which is important since compositors need to figure out the
  800. * composition of the next frame right after having submitted the
  801. * current layout.
  802. */
  803. wait_for_fences(dev, state);
  804. drm_atomic_helper_commit_modeset_disables(dev, state);
  805. drm_atomic_helper_commit_planes(dev, state);
  806. drm_atomic_helper_commit_modeset_enables(dev, state);
  807. drm_atomic_helper_wait_for_vblanks(dev, state);
  808. drm_atomic_helper_cleanup_planes(dev, state);
  809. drm_atomic_state_free(state);
  810. return 0;
  811. }
  812. EXPORT_SYMBOL(drm_atomic_helper_commit);
  813. /**
  814. * DOC: implementing async commit
  815. *
  816. * For now the atomic helpers don't support async commit directly. If there is
  817. * real need it could be added though, using the dma-buf fence infrastructure
  818. * for generic synchronization with outstanding rendering.
  819. *
  820. * For now drivers have to implement async commit themselves, with the following
  821. * sequence being the recommended one:
  822. *
  823. * 1. Run drm_atomic_helper_prepare_planes() first. This is the only function
  824. * which commit needs to call which can fail, so we want to run it first and
  825. * synchronously.
  826. *
  827. * 2. Synchronize with any outstanding asynchronous commit worker threads which
  828. * might be affected the new state update. This can be done by either cancelling
  829. * or flushing the work items, depending upon whether the driver can deal with
  830. * cancelled updates. Note that it is important to ensure that the framebuffer
  831. * cleanup is still done when cancelling.
  832. *
  833. * For sufficient parallelism it is recommended to have a work item per crtc
  834. * (for updates which don't touch global state) and a global one. Then we only
  835. * need to synchronize with the crtc work items for changed crtcs and the global
  836. * work item, which allows nice concurrent updates on disjoint sets of crtcs.
  837. *
  838. * 3. The software state is updated synchronously with
  839. * drm_atomic_helper_swap_state. Doing this under the protection of all modeset
  840. * locks means concurrent callers never see inconsistent state. And doing this
  841. * while it's guaranteed that no relevant async worker runs means that async
  842. * workers do not need grab any locks. Actually they must not grab locks, for
  843. * otherwise the work flushing will deadlock.
  844. *
  845. * 4. Schedule a work item to do all subsequent steps, using the split-out
  846. * commit helpers: a) pre-plane commit b) plane commit c) post-plane commit and
  847. * then cleaning up the framebuffers after the old framebuffer is no longer
  848. * being displayed.
  849. */
  850. /**
  851. * drm_atomic_helper_prepare_planes - prepare plane resources after commit
  852. * @dev: DRM device
  853. * @state: atomic state object with old state structures
  854. *
  855. * This function prepares plane state, specifically framebuffers, for the new
  856. * configuration. If any failure is encountered this function will call
  857. * ->cleanup_fb on any already successfully prepared framebuffer.
  858. *
  859. * Returns:
  860. * 0 on success, negative error code on failure.
  861. */
  862. int drm_atomic_helper_prepare_planes(struct drm_device *dev,
  863. struct drm_atomic_state *state)
  864. {
  865. int nplanes = dev->mode_config.num_total_plane;
  866. int ret, i;
  867. for (i = 0; i < nplanes; i++) {
  868. const struct drm_plane_helper_funcs *funcs;
  869. struct drm_plane *plane = state->planes[i];
  870. struct drm_framebuffer *fb;
  871. if (!plane)
  872. continue;
  873. funcs = plane->helper_private;
  874. fb = state->plane_states[i]->fb;
  875. if (fb && funcs->prepare_fb) {
  876. ret = funcs->prepare_fb(plane, fb);
  877. if (ret)
  878. goto fail;
  879. }
  880. }
  881. return 0;
  882. fail:
  883. for (i--; i >= 0; i--) {
  884. const struct drm_plane_helper_funcs *funcs;
  885. struct drm_plane *plane = state->planes[i];
  886. struct drm_framebuffer *fb;
  887. if (!plane)
  888. continue;
  889. funcs = plane->helper_private;
  890. fb = state->plane_states[i]->fb;
  891. if (fb && funcs->cleanup_fb)
  892. funcs->cleanup_fb(plane, fb);
  893. }
  894. return ret;
  895. }
  896. EXPORT_SYMBOL(drm_atomic_helper_prepare_planes);
  897. /**
  898. * drm_atomic_helper_commit_planes - commit plane state
  899. * @dev: DRM device
  900. * @old_state: atomic state object with old state structures
  901. *
  902. * This function commits the new plane state using the plane and atomic helper
  903. * functions for planes and crtcs. It assumes that the atomic state has already
  904. * been pushed into the relevant object state pointers, since this step can no
  905. * longer fail.
  906. *
  907. * It still requires the global state object @old_state to know which planes and
  908. * crtcs need to be updated though.
  909. */
  910. void drm_atomic_helper_commit_planes(struct drm_device *dev,
  911. struct drm_atomic_state *old_state)
  912. {
  913. struct drm_crtc *crtc;
  914. struct drm_crtc_state *old_crtc_state;
  915. struct drm_plane *plane;
  916. struct drm_plane_state *old_plane_state;
  917. int i;
  918. for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
  919. const struct drm_crtc_helper_funcs *funcs;
  920. funcs = crtc->helper_private;
  921. if (!funcs || !funcs->atomic_begin)
  922. continue;
  923. funcs->atomic_begin(crtc);
  924. }
  925. for_each_plane_in_state(old_state, plane, old_plane_state, i) {
  926. const struct drm_plane_helper_funcs *funcs;
  927. funcs = plane->helper_private;
  928. if (!funcs)
  929. continue;
  930. old_plane_state = old_state->plane_states[i];
  931. /*
  932. * Special-case disabling the plane if drivers support it.
  933. */
  934. if (drm_atomic_plane_disabling(plane, old_plane_state) &&
  935. funcs->atomic_disable)
  936. funcs->atomic_disable(plane, old_plane_state);
  937. else
  938. funcs->atomic_update(plane, old_plane_state);
  939. }
  940. for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
  941. const struct drm_crtc_helper_funcs *funcs;
  942. funcs = crtc->helper_private;
  943. if (!funcs || !funcs->atomic_flush)
  944. continue;
  945. funcs->atomic_flush(crtc);
  946. }
  947. }
  948. EXPORT_SYMBOL(drm_atomic_helper_commit_planes);
  949. /**
  950. * drm_atomic_helper_cleanup_planes - cleanup plane resources after commit
  951. * @dev: DRM device
  952. * @old_state: atomic state object with old state structures
  953. *
  954. * This function cleans up plane state, specifically framebuffers, from the old
  955. * configuration. Hence the old configuration must be perserved in @old_state to
  956. * be able to call this function.
  957. *
  958. * This function must also be called on the new state when the atomic update
  959. * fails at any point after calling drm_atomic_helper_prepare_planes().
  960. */
  961. void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
  962. struct drm_atomic_state *old_state)
  963. {
  964. struct drm_plane *plane;
  965. struct drm_plane_state *plane_state;
  966. int i;
  967. for_each_plane_in_state(old_state, plane, plane_state, i) {
  968. const struct drm_plane_helper_funcs *funcs;
  969. struct drm_framebuffer *old_fb;
  970. funcs = plane->helper_private;
  971. old_fb = old_state->plane_states[i]->fb;
  972. if (old_fb && funcs->cleanup_fb)
  973. funcs->cleanup_fb(plane, old_fb);
  974. }
  975. }
  976. EXPORT_SYMBOL(drm_atomic_helper_cleanup_planes);
  977. /**
  978. * drm_atomic_helper_swap_state - store atomic state into current sw state
  979. * @dev: DRM device
  980. * @state: atomic state
  981. *
  982. * This function stores the atomic state into the current state pointers in all
  983. * driver objects. It should be called after all failing steps have been done
  984. * and succeeded, but before the actual hardware state is committed.
  985. *
  986. * For cleanup and error recovery the current state for all changed objects will
  987. * be swaped into @state.
  988. *
  989. * With that sequence it fits perfectly into the plane prepare/cleanup sequence:
  990. *
  991. * 1. Call drm_atomic_helper_prepare_planes() with the staged atomic state.
  992. *
  993. * 2. Do any other steps that might fail.
  994. *
  995. * 3. Put the staged state into the current state pointers with this function.
  996. *
  997. * 4. Actually commit the hardware state.
  998. *
  999. * 5. Call drm_atomic_helper_cleanup_planes with @state, which since step 3
  1000. * contains the old state. Also do any other cleanup required with that state.
  1001. */
  1002. void drm_atomic_helper_swap_state(struct drm_device *dev,
  1003. struct drm_atomic_state *state)
  1004. {
  1005. int i;
  1006. for (i = 0; i < dev->mode_config.num_connector; i++) {
  1007. struct drm_connector *connector = state->connectors[i];
  1008. if (!connector)
  1009. continue;
  1010. connector->state->state = state;
  1011. swap(state->connector_states[i], connector->state);
  1012. connector->state->state = NULL;
  1013. }
  1014. for (i = 0; i < dev->mode_config.num_crtc; i++) {
  1015. struct drm_crtc *crtc = state->crtcs[i];
  1016. if (!crtc)
  1017. continue;
  1018. crtc->state->state = state;
  1019. swap(state->crtc_states[i], crtc->state);
  1020. crtc->state->state = NULL;
  1021. }
  1022. for (i = 0; i < dev->mode_config.num_total_plane; i++) {
  1023. struct drm_plane *plane = state->planes[i];
  1024. if (!plane)
  1025. continue;
  1026. plane->state->state = state;
  1027. swap(state->plane_states[i], plane->state);
  1028. plane->state->state = NULL;
  1029. }
  1030. }
  1031. EXPORT_SYMBOL(drm_atomic_helper_swap_state);
  1032. /**
  1033. * drm_atomic_helper_update_plane - Helper for primary plane update using atomic
  1034. * @plane: plane object to update
  1035. * @crtc: owning CRTC of owning plane
  1036. * @fb: framebuffer to flip onto plane
  1037. * @crtc_x: x offset of primary plane on crtc
  1038. * @crtc_y: y offset of primary plane on crtc
  1039. * @crtc_w: width of primary plane rectangle on crtc
  1040. * @crtc_h: height of primary plane rectangle on crtc
  1041. * @src_x: x offset of @fb for panning
  1042. * @src_y: y offset of @fb for panning
  1043. * @src_w: width of source rectangle in @fb
  1044. * @src_h: height of source rectangle in @fb
  1045. *
  1046. * Provides a default plane update handler using the atomic driver interface.
  1047. *
  1048. * RETURNS:
  1049. * Zero on success, error code on failure
  1050. */
  1051. int drm_atomic_helper_update_plane(struct drm_plane *plane,
  1052. struct drm_crtc *crtc,
  1053. struct drm_framebuffer *fb,
  1054. int crtc_x, int crtc_y,
  1055. unsigned int crtc_w, unsigned int crtc_h,
  1056. uint32_t src_x, uint32_t src_y,
  1057. uint32_t src_w, uint32_t src_h)
  1058. {
  1059. struct drm_atomic_state *state;
  1060. struct drm_plane_state *plane_state;
  1061. int ret = 0;
  1062. state = drm_atomic_state_alloc(plane->dev);
  1063. if (!state)
  1064. return -ENOMEM;
  1065. state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
  1066. retry:
  1067. plane_state = drm_atomic_get_plane_state(state, plane);
  1068. if (IS_ERR(plane_state)) {
  1069. ret = PTR_ERR(plane_state);
  1070. goto fail;
  1071. }
  1072. ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
  1073. if (ret != 0)
  1074. goto fail;
  1075. drm_atomic_set_fb_for_plane(plane_state, fb);
  1076. plane_state->crtc_x = crtc_x;
  1077. plane_state->crtc_y = crtc_y;
  1078. plane_state->crtc_h = crtc_h;
  1079. plane_state->crtc_w = crtc_w;
  1080. plane_state->src_x = src_x;
  1081. plane_state->src_y = src_y;
  1082. plane_state->src_h = src_h;
  1083. plane_state->src_w = src_w;
  1084. if (plane == crtc->cursor)
  1085. state->legacy_cursor_update = true;
  1086. ret = drm_atomic_commit(state);
  1087. if (ret != 0)
  1088. goto fail;
  1089. /* Driver takes ownership of state on successful commit. */
  1090. return 0;
  1091. fail:
  1092. if (ret == -EDEADLK)
  1093. goto backoff;
  1094. drm_atomic_state_free(state);
  1095. return ret;
  1096. backoff:
  1097. drm_atomic_state_clear(state);
  1098. drm_atomic_legacy_backoff(state);
  1099. /*
  1100. * Someone might have exchanged the framebuffer while we dropped locks
  1101. * in the backoff code. We need to fix up the fb refcount tracking the
  1102. * core does for us.
  1103. */
  1104. plane->old_fb = plane->fb;
  1105. goto retry;
  1106. }
  1107. EXPORT_SYMBOL(drm_atomic_helper_update_plane);
  1108. /**
  1109. * drm_atomic_helper_disable_plane - Helper for primary plane disable using * atomic
  1110. * @plane: plane to disable
  1111. *
  1112. * Provides a default plane disable handler using the atomic driver interface.
  1113. *
  1114. * RETURNS:
  1115. * Zero on success, error code on failure
  1116. */
  1117. int drm_atomic_helper_disable_plane(struct drm_plane *plane)
  1118. {
  1119. struct drm_atomic_state *state;
  1120. struct drm_plane_state *plane_state;
  1121. int ret = 0;
  1122. /*
  1123. * FIXME: Without plane->crtc set we can't get at the implicit legacy
  1124. * acquire context. The real fix will be to wire the acquire ctx through
  1125. * everywhere we need it, but meanwhile prevent chaos by just skipping
  1126. * this noop. The critical case is the cursor ioctls which a) only grab
  1127. * crtc/cursor-plane locks (so we need the crtc to get at the right
  1128. * acquire context) and b) can try to disable the plane multiple times.
  1129. */
  1130. if (!plane->crtc)
  1131. return 0;
  1132. state = drm_atomic_state_alloc(plane->dev);
  1133. if (!state)
  1134. return -ENOMEM;
  1135. state->acquire_ctx = drm_modeset_legacy_acquire_ctx(plane->crtc);
  1136. retry:
  1137. plane_state = drm_atomic_get_plane_state(state, plane);
  1138. if (IS_ERR(plane_state)) {
  1139. ret = PTR_ERR(plane_state);
  1140. goto fail;
  1141. }
  1142. ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
  1143. if (ret != 0)
  1144. goto fail;
  1145. drm_atomic_set_fb_for_plane(plane_state, NULL);
  1146. plane_state->crtc_x = 0;
  1147. plane_state->crtc_y = 0;
  1148. plane_state->crtc_h = 0;
  1149. plane_state->crtc_w = 0;
  1150. plane_state->src_x = 0;
  1151. plane_state->src_y = 0;
  1152. plane_state->src_h = 0;
  1153. plane_state->src_w = 0;
  1154. if (plane == plane->crtc->cursor)
  1155. state->legacy_cursor_update = true;
  1156. ret = drm_atomic_commit(state);
  1157. if (ret != 0)
  1158. goto fail;
  1159. /* Driver takes ownership of state on successful commit. */
  1160. return 0;
  1161. fail:
  1162. if (ret == -EDEADLK)
  1163. goto backoff;
  1164. drm_atomic_state_free(state);
  1165. return ret;
  1166. backoff:
  1167. drm_atomic_state_clear(state);
  1168. drm_atomic_legacy_backoff(state);
  1169. /*
  1170. * Someone might have exchanged the framebuffer while we dropped locks
  1171. * in the backoff code. We need to fix up the fb refcount tracking the
  1172. * core does for us.
  1173. */
  1174. plane->old_fb = plane->fb;
  1175. goto retry;
  1176. }
  1177. EXPORT_SYMBOL(drm_atomic_helper_disable_plane);
  1178. static int update_output_state(struct drm_atomic_state *state,
  1179. struct drm_mode_set *set)
  1180. {
  1181. struct drm_device *dev = set->crtc->dev;
  1182. struct drm_crtc *crtc;
  1183. struct drm_crtc_state *crtc_state;
  1184. struct drm_connector *connector;
  1185. struct drm_connector_state *conn_state;
  1186. int ret, i, j;
  1187. ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
  1188. state->acquire_ctx);
  1189. if (ret)
  1190. return ret;
  1191. /* First grab all affected connector/crtc states. */
  1192. for (i = 0; i < set->num_connectors; i++) {
  1193. conn_state = drm_atomic_get_connector_state(state,
  1194. set->connectors[i]);
  1195. if (IS_ERR(conn_state))
  1196. return PTR_ERR(conn_state);
  1197. }
  1198. for_each_crtc_in_state(state, crtc, crtc_state, i) {
  1199. ret = drm_atomic_add_affected_connectors(state, crtc);
  1200. if (ret)
  1201. return ret;
  1202. }
  1203. /* Then recompute connector->crtc links and crtc enabling state. */
  1204. for_each_connector_in_state(state, connector, conn_state, i) {
  1205. if (conn_state->crtc == set->crtc) {
  1206. ret = drm_atomic_set_crtc_for_connector(conn_state,
  1207. NULL);
  1208. if (ret)
  1209. return ret;
  1210. }
  1211. for (j = 0; j < set->num_connectors; j++) {
  1212. if (set->connectors[j] == connector) {
  1213. ret = drm_atomic_set_crtc_for_connector(conn_state,
  1214. set->crtc);
  1215. if (ret)
  1216. return ret;
  1217. break;
  1218. }
  1219. }
  1220. }
  1221. for_each_crtc_in_state(state, crtc, crtc_state, i) {
  1222. /* Don't update ->enable for the CRTC in the set_config request,
  1223. * since a mismatch would indicate a bug in the upper layers.
  1224. * The actual modeset code later on will catch any
  1225. * inconsistencies here. */
  1226. if (crtc == set->crtc)
  1227. continue;
  1228. crtc_state->enable =
  1229. drm_atomic_connectors_for_crtc(state, crtc);
  1230. }
  1231. return 0;
  1232. }
  1233. /**
  1234. * drm_atomic_helper_set_config - set a new config from userspace
  1235. * @set: mode set configuration
  1236. *
  1237. * Provides a default crtc set_config handler using the atomic driver interface.
  1238. *
  1239. * Returns:
  1240. * Returns 0 on success, negative errno numbers on failure.
  1241. */
  1242. int drm_atomic_helper_set_config(struct drm_mode_set *set)
  1243. {
  1244. struct drm_atomic_state *state;
  1245. struct drm_crtc *crtc = set->crtc;
  1246. struct drm_crtc_state *crtc_state;
  1247. struct drm_plane_state *primary_state;
  1248. int ret = 0;
  1249. state = drm_atomic_state_alloc(crtc->dev);
  1250. if (!state)
  1251. return -ENOMEM;
  1252. state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
  1253. retry:
  1254. crtc_state = drm_atomic_get_crtc_state(state, crtc);
  1255. if (IS_ERR(crtc_state)) {
  1256. ret = PTR_ERR(crtc_state);
  1257. goto fail;
  1258. }
  1259. primary_state = drm_atomic_get_plane_state(state, crtc->primary);
  1260. if (IS_ERR(primary_state)) {
  1261. ret = PTR_ERR(primary_state);
  1262. goto fail;
  1263. }
  1264. if (!set->mode) {
  1265. WARN_ON(set->fb);
  1266. WARN_ON(set->num_connectors);
  1267. ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
  1268. if (ret != 0)
  1269. goto fail;
  1270. crtc_state->active = false;
  1271. ret = drm_atomic_set_crtc_for_plane(primary_state, NULL);
  1272. if (ret != 0)
  1273. goto fail;
  1274. drm_atomic_set_fb_for_plane(primary_state, NULL);
  1275. goto commit;
  1276. }
  1277. WARN_ON(!set->fb);
  1278. WARN_ON(!set->num_connectors);
  1279. ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode);
  1280. if (ret != 0)
  1281. goto fail;
  1282. crtc_state->active = true;
  1283. ret = drm_atomic_set_crtc_for_plane(primary_state, crtc);
  1284. if (ret != 0)
  1285. goto fail;
  1286. drm_atomic_set_fb_for_plane(primary_state, set->fb);
  1287. primary_state->crtc_x = 0;
  1288. primary_state->crtc_y = 0;
  1289. primary_state->crtc_h = set->mode->vdisplay;
  1290. primary_state->crtc_w = set->mode->hdisplay;
  1291. primary_state->src_x = set->x << 16;
  1292. primary_state->src_y = set->y << 16;
  1293. primary_state->src_h = set->mode->vdisplay << 16;
  1294. primary_state->src_w = set->mode->hdisplay << 16;
  1295. commit:
  1296. ret = update_output_state(state, set);
  1297. if (ret)
  1298. goto fail;
  1299. ret = drm_atomic_commit(state);
  1300. if (ret != 0)
  1301. goto fail;
  1302. /* Driver takes ownership of state on successful commit. */
  1303. return 0;
  1304. fail:
  1305. if (ret == -EDEADLK)
  1306. goto backoff;
  1307. drm_atomic_state_free(state);
  1308. return ret;
  1309. backoff:
  1310. drm_atomic_state_clear(state);
  1311. drm_atomic_legacy_backoff(state);
  1312. /*
  1313. * Someone might have exchanged the framebuffer while we dropped locks
  1314. * in the backoff code. We need to fix up the fb refcount tracking the
  1315. * core does for us.
  1316. */
  1317. crtc->primary->old_fb = crtc->primary->fb;
  1318. goto retry;
  1319. }
  1320. EXPORT_SYMBOL(drm_atomic_helper_set_config);
  1321. /**
  1322. * drm_atomic_helper_crtc_set_property - helper for crtc prorties
  1323. * @crtc: DRM crtc
  1324. * @property: DRM property
  1325. * @val: value of property
  1326. *
  1327. * Provides a default plane disablle handler using the atomic driver interface.
  1328. *
  1329. * RETURNS:
  1330. * Zero on success, error code on failure
  1331. */
  1332. int
  1333. drm_atomic_helper_crtc_set_property(struct drm_crtc *crtc,
  1334. struct drm_property *property,
  1335. uint64_t val)
  1336. {
  1337. struct drm_atomic_state *state;
  1338. struct drm_crtc_state *crtc_state;
  1339. int ret = 0;
  1340. state = drm_atomic_state_alloc(crtc->dev);
  1341. if (!state)
  1342. return -ENOMEM;
  1343. /* ->set_property is always called with all locks held. */
  1344. state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
  1345. retry:
  1346. crtc_state = drm_atomic_get_crtc_state(state, crtc);
  1347. if (IS_ERR(crtc_state)) {
  1348. ret = PTR_ERR(crtc_state);
  1349. goto fail;
  1350. }
  1351. ret = drm_atomic_crtc_set_property(crtc, crtc_state,
  1352. property, val);
  1353. if (ret)
  1354. goto fail;
  1355. ret = drm_atomic_commit(state);
  1356. if (ret != 0)
  1357. goto fail;
  1358. /* Driver takes ownership of state on successful commit. */
  1359. return 0;
  1360. fail:
  1361. if (ret == -EDEADLK)
  1362. goto backoff;
  1363. drm_atomic_state_free(state);
  1364. return ret;
  1365. backoff:
  1366. drm_atomic_state_clear(state);
  1367. drm_atomic_legacy_backoff(state);
  1368. goto retry;
  1369. }
  1370. EXPORT_SYMBOL(drm_atomic_helper_crtc_set_property);
  1371. /**
  1372. * drm_atomic_helper_plane_set_property - helper for plane prorties
  1373. * @plane: DRM plane
  1374. * @property: DRM property
  1375. * @val: value of property
  1376. *
  1377. * Provides a default plane disable handler using the atomic driver interface.
  1378. *
  1379. * RETURNS:
  1380. * Zero on success, error code on failure
  1381. */
  1382. int
  1383. drm_atomic_helper_plane_set_property(struct drm_plane *plane,
  1384. struct drm_property *property,
  1385. uint64_t val)
  1386. {
  1387. struct drm_atomic_state *state;
  1388. struct drm_plane_state *plane_state;
  1389. int ret = 0;
  1390. state = drm_atomic_state_alloc(plane->dev);
  1391. if (!state)
  1392. return -ENOMEM;
  1393. /* ->set_property is always called with all locks held. */
  1394. state->acquire_ctx = plane->dev->mode_config.acquire_ctx;
  1395. retry:
  1396. plane_state = drm_atomic_get_plane_state(state, plane);
  1397. if (IS_ERR(plane_state)) {
  1398. ret = PTR_ERR(plane_state);
  1399. goto fail;
  1400. }
  1401. ret = drm_atomic_plane_set_property(plane, plane_state,
  1402. property, val);
  1403. if (ret)
  1404. goto fail;
  1405. ret = drm_atomic_commit(state);
  1406. if (ret != 0)
  1407. goto fail;
  1408. /* Driver takes ownership of state on successful commit. */
  1409. return 0;
  1410. fail:
  1411. if (ret == -EDEADLK)
  1412. goto backoff;
  1413. drm_atomic_state_free(state);
  1414. return ret;
  1415. backoff:
  1416. drm_atomic_state_clear(state);
  1417. drm_atomic_legacy_backoff(state);
  1418. goto retry;
  1419. }
  1420. EXPORT_SYMBOL(drm_atomic_helper_plane_set_property);
  1421. /**
  1422. * drm_atomic_helper_connector_set_property - helper for connector prorties
  1423. * @connector: DRM connector
  1424. * @property: DRM property
  1425. * @val: value of property
  1426. *
  1427. * Provides a default plane disablle handler using the atomic driver interface.
  1428. *
  1429. * RETURNS:
  1430. * Zero on success, error code on failure
  1431. */
  1432. int
  1433. drm_atomic_helper_connector_set_property(struct drm_connector *connector,
  1434. struct drm_property *property,
  1435. uint64_t val)
  1436. {
  1437. struct drm_atomic_state *state;
  1438. struct drm_connector_state *connector_state;
  1439. int ret = 0;
  1440. state = drm_atomic_state_alloc(connector->dev);
  1441. if (!state)
  1442. return -ENOMEM;
  1443. /* ->set_property is always called with all locks held. */
  1444. state->acquire_ctx = connector->dev->mode_config.acquire_ctx;
  1445. retry:
  1446. connector_state = drm_atomic_get_connector_state(state, connector);
  1447. if (IS_ERR(connector_state)) {
  1448. ret = PTR_ERR(connector_state);
  1449. goto fail;
  1450. }
  1451. ret = drm_atomic_connector_set_property(connector, connector_state,
  1452. property, val);
  1453. if (ret)
  1454. goto fail;
  1455. ret = drm_atomic_commit(state);
  1456. if (ret != 0)
  1457. goto fail;
  1458. /* Driver takes ownership of state on successful commit. */
  1459. return 0;
  1460. fail:
  1461. if (ret == -EDEADLK)
  1462. goto backoff;
  1463. drm_atomic_state_free(state);
  1464. return ret;
  1465. backoff:
  1466. drm_atomic_state_clear(state);
  1467. drm_atomic_legacy_backoff(state);
  1468. goto retry;
  1469. }
  1470. EXPORT_SYMBOL(drm_atomic_helper_connector_set_property);
  1471. /**
  1472. * drm_atomic_helper_page_flip - execute a legacy page flip
  1473. * @crtc: DRM crtc
  1474. * @fb: DRM framebuffer
  1475. * @event: optional DRM event to signal upon completion
  1476. * @flags: flip flags for non-vblank sync'ed updates
  1477. *
  1478. * Provides a default page flip implementation using the atomic driver interface.
  1479. *
  1480. * Note that for now so called async page flips (i.e. updates which are not
  1481. * synchronized to vblank) are not supported, since the atomic interfaces have
  1482. * no provisions for this yet.
  1483. *
  1484. * Returns:
  1485. * Returns 0 on success, negative errno numbers on failure.
  1486. */
  1487. int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
  1488. struct drm_framebuffer *fb,
  1489. struct drm_pending_vblank_event *event,
  1490. uint32_t flags)
  1491. {
  1492. struct drm_plane *plane = crtc->primary;
  1493. struct drm_atomic_state *state;
  1494. struct drm_plane_state *plane_state;
  1495. struct drm_crtc_state *crtc_state;
  1496. int ret = 0;
  1497. if (flags & DRM_MODE_PAGE_FLIP_ASYNC)
  1498. return -EINVAL;
  1499. state = drm_atomic_state_alloc(plane->dev);
  1500. if (!state)
  1501. return -ENOMEM;
  1502. state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
  1503. retry:
  1504. crtc_state = drm_atomic_get_crtc_state(state, crtc);
  1505. if (IS_ERR(crtc_state)) {
  1506. ret = PTR_ERR(crtc_state);
  1507. goto fail;
  1508. }
  1509. crtc_state->event = event;
  1510. plane_state = drm_atomic_get_plane_state(state, plane);
  1511. if (IS_ERR(plane_state)) {
  1512. ret = PTR_ERR(plane_state);
  1513. goto fail;
  1514. }
  1515. ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
  1516. if (ret != 0)
  1517. goto fail;
  1518. drm_atomic_set_fb_for_plane(plane_state, fb);
  1519. ret = drm_atomic_async_commit(state);
  1520. if (ret != 0)
  1521. goto fail;
  1522. /* TODO: ->page_flip is the only driver callback where the core
  1523. * doesn't update plane->fb. For now patch it up here. */
  1524. plane->fb = plane->state->fb;
  1525. /* Driver takes ownership of state on successful async commit. */
  1526. return 0;
  1527. fail:
  1528. if (ret == -EDEADLK)
  1529. goto backoff;
  1530. drm_atomic_state_free(state);
  1531. return ret;
  1532. backoff:
  1533. drm_atomic_state_clear(state);
  1534. drm_atomic_legacy_backoff(state);
  1535. /*
  1536. * Someone might have exchanged the framebuffer while we dropped locks
  1537. * in the backoff code. We need to fix up the fb refcount tracking the
  1538. * core does for us.
  1539. */
  1540. plane->old_fb = plane->fb;
  1541. goto retry;
  1542. }
  1543. EXPORT_SYMBOL(drm_atomic_helper_page_flip);
  1544. /**
  1545. * drm_atomic_helper_connector_dpms() - connector dpms helper implementation
  1546. * @connector: affected connector
  1547. * @mode: DPMS mode
  1548. *
  1549. * This is the main helper function provided by the atomic helper framework for
  1550. * implementing the legacy DPMS connector interface. It computes the new desired
  1551. * ->active state for the corresponding CRTC (if the connector is enabled) and
  1552. * updates it.
  1553. */
  1554. void drm_atomic_helper_connector_dpms(struct drm_connector *connector,
  1555. int mode)
  1556. {
  1557. struct drm_mode_config *config = &connector->dev->mode_config;
  1558. struct drm_atomic_state *state;
  1559. struct drm_crtc_state *crtc_state;
  1560. struct drm_crtc *crtc;
  1561. struct drm_connector *tmp_connector;
  1562. int ret;
  1563. bool active = false;
  1564. if (mode != DRM_MODE_DPMS_ON)
  1565. mode = DRM_MODE_DPMS_OFF;
  1566. connector->dpms = mode;
  1567. crtc = connector->state->crtc;
  1568. if (!crtc)
  1569. return;
  1570. /* FIXME: ->dpms has no return value so can't forward the -ENOMEM. */
  1571. state = drm_atomic_state_alloc(connector->dev);
  1572. if (!state)
  1573. return;
  1574. state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
  1575. retry:
  1576. crtc_state = drm_atomic_get_crtc_state(state, crtc);
  1577. if (IS_ERR(crtc_state))
  1578. return;
  1579. WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
  1580. list_for_each_entry(tmp_connector, &config->connector_list, head) {
  1581. if (connector->state->crtc != crtc)
  1582. continue;
  1583. if (connector->dpms == DRM_MODE_DPMS_ON) {
  1584. active = true;
  1585. break;
  1586. }
  1587. }
  1588. crtc_state->active = active;
  1589. ret = drm_atomic_commit(state);
  1590. if (ret != 0)
  1591. goto fail;
  1592. /* Driver takes ownership of state on successful async commit. */
  1593. return;
  1594. fail:
  1595. if (ret == -EDEADLK)
  1596. goto backoff;
  1597. drm_atomic_state_free(state);
  1598. WARN(1, "Driver bug: Changing ->active failed with ret=%i\n", ret);
  1599. return;
  1600. backoff:
  1601. drm_atomic_state_clear(state);
  1602. drm_atomic_legacy_backoff(state);
  1603. goto retry;
  1604. }
  1605. EXPORT_SYMBOL(drm_atomic_helper_connector_dpms);
  1606. /**
  1607. * DOC: atomic state reset and initialization
  1608. *
  1609. * Both the drm core and the atomic helpers assume that there is always the full
  1610. * and correct atomic software state for all connectors, CRTCs and planes
  1611. * available. Which is a bit a problem on driver load and also after system
  1612. * suspend. One way to solve this is to have a hardware state read-out
  1613. * infrastructure which reconstructs the full software state (e.g. the i915
  1614. * driver).
  1615. *
  1616. * The simpler solution is to just reset the software state to everything off,
  1617. * which is easiest to do by calling drm_mode_config_reset(). To facilitate this
  1618. * the atomic helpers provide default reset implementations for all hooks.
  1619. */
  1620. /**
  1621. * drm_atomic_helper_crtc_reset - default ->reset hook for CRTCs
  1622. * @crtc: drm CRTC
  1623. *
  1624. * Resets the atomic state for @crtc by freeing the state pointer (which might
  1625. * be NULL, e.g. at driver load time) and allocating a new empty state object.
  1626. */
  1627. void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc)
  1628. {
  1629. if (crtc->state && crtc->state->mode_blob)
  1630. drm_property_unreference_blob(crtc->state->mode_blob);
  1631. kfree(crtc->state);
  1632. crtc->state = kzalloc(sizeof(*crtc->state), GFP_KERNEL);
  1633. if (crtc->state)
  1634. crtc->state->crtc = crtc;
  1635. }
  1636. EXPORT_SYMBOL(drm_atomic_helper_crtc_reset);
  1637. /**
  1638. * __drm_atomic_helper_crtc_duplicate_state - copy atomic CRTC state
  1639. * @crtc: CRTC object
  1640. * @state: atomic CRTC state
  1641. *
  1642. * Copies atomic state from a CRTC's current state and resets inferred values.
  1643. * This is useful for drivers that subclass the CRTC state.
  1644. */
  1645. void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
  1646. struct drm_crtc_state *state)
  1647. {
  1648. memcpy(state, crtc->state, sizeof(*state));
  1649. if (state->mode_blob)
  1650. drm_property_reference_blob(state->mode_blob);
  1651. state->mode_changed = false;
  1652. state->active_changed = false;
  1653. state->planes_changed = false;
  1654. state->event = NULL;
  1655. }
  1656. EXPORT_SYMBOL(__drm_atomic_helper_crtc_duplicate_state);
  1657. /**
  1658. * drm_atomic_helper_crtc_duplicate_state - default state duplicate hook
  1659. * @crtc: drm CRTC
  1660. *
  1661. * Default CRTC state duplicate hook for drivers which don't have their own
  1662. * subclassed CRTC state structure.
  1663. */
  1664. struct drm_crtc_state *
  1665. drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc)
  1666. {
  1667. struct drm_crtc_state *state;
  1668. if (WARN_ON(!crtc->state))
  1669. return NULL;
  1670. state = kmalloc(sizeof(*state), GFP_KERNEL);
  1671. if (state)
  1672. __drm_atomic_helper_crtc_duplicate_state(crtc, state);
  1673. return state;
  1674. }
  1675. EXPORT_SYMBOL(drm_atomic_helper_crtc_duplicate_state);
  1676. /**
  1677. * __drm_atomic_helper_crtc_destroy_state - release CRTC state
  1678. * @crtc: CRTC object
  1679. * @state: CRTC state object to release
  1680. *
  1681. * Releases all resources stored in the CRTC state without actually freeing
  1682. * the memory of the CRTC state. This is useful for drivers that subclass the
  1683. * CRTC state.
  1684. */
  1685. void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
  1686. struct drm_crtc_state *state)
  1687. {
  1688. if (state->mode_blob)
  1689. drm_property_unreference_blob(state->mode_blob);
  1690. }
  1691. EXPORT_SYMBOL(__drm_atomic_helper_crtc_destroy_state);
  1692. /**
  1693. * drm_atomic_helper_crtc_destroy_state - default state destroy hook
  1694. * @crtc: drm CRTC
  1695. * @state: CRTC state object to release
  1696. *
  1697. * Default CRTC state destroy hook for drivers which don't have their own
  1698. * subclassed CRTC state structure.
  1699. */
  1700. void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
  1701. struct drm_crtc_state *state)
  1702. {
  1703. __drm_atomic_helper_crtc_destroy_state(crtc, state);
  1704. kfree(state);
  1705. }
  1706. EXPORT_SYMBOL(drm_atomic_helper_crtc_destroy_state);
  1707. /**
  1708. * drm_atomic_helper_plane_reset - default ->reset hook for planes
  1709. * @plane: drm plane
  1710. *
  1711. * Resets the atomic state for @plane by freeing the state pointer (which might
  1712. * be NULL, e.g. at driver load time) and allocating a new empty state object.
  1713. */
  1714. void drm_atomic_helper_plane_reset(struct drm_plane *plane)
  1715. {
  1716. if (plane->state && plane->state->fb)
  1717. drm_framebuffer_unreference(plane->state->fb);
  1718. kfree(plane->state);
  1719. plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
  1720. if (plane->state)
  1721. plane->state->plane = plane;
  1722. }
  1723. EXPORT_SYMBOL(drm_atomic_helper_plane_reset);
  1724. /**
  1725. * __drm_atomic_helper_plane_duplicate_state - copy atomic plane state
  1726. * @plane: plane object
  1727. * @state: atomic plane state
  1728. *
  1729. * Copies atomic state from a plane's current state. This is useful for
  1730. * drivers that subclass the plane state.
  1731. */
  1732. void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
  1733. struct drm_plane_state *state)
  1734. {
  1735. memcpy(state, plane->state, sizeof(*state));
  1736. if (state->fb)
  1737. drm_framebuffer_reference(state->fb);
  1738. }
  1739. EXPORT_SYMBOL(__drm_atomic_helper_plane_duplicate_state);
  1740. /**
  1741. * drm_atomic_helper_plane_duplicate_state - default state duplicate hook
  1742. * @plane: drm plane
  1743. *
  1744. * Default plane state duplicate hook for drivers which don't have their own
  1745. * subclassed plane state structure.
  1746. */
  1747. struct drm_plane_state *
  1748. drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane)
  1749. {
  1750. struct drm_plane_state *state;
  1751. if (WARN_ON(!plane->state))
  1752. return NULL;
  1753. state = kmalloc(sizeof(*state), GFP_KERNEL);
  1754. if (state)
  1755. __drm_atomic_helper_plane_duplicate_state(plane, state);
  1756. return state;
  1757. }
  1758. EXPORT_SYMBOL(drm_atomic_helper_plane_duplicate_state);
  1759. /**
  1760. * __drm_atomic_helper_plane_destroy_state - release plane state
  1761. * @plane: plane object
  1762. * @state: plane state object to release
  1763. *
  1764. * Releases all resources stored in the plane state without actually freeing
  1765. * the memory of the plane state. This is useful for drivers that subclass the
  1766. * plane state.
  1767. */
  1768. void __drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
  1769. struct drm_plane_state *state)
  1770. {
  1771. if (state->fb)
  1772. drm_framebuffer_unreference(state->fb);
  1773. }
  1774. EXPORT_SYMBOL(__drm_atomic_helper_plane_destroy_state);
  1775. /**
  1776. * drm_atomic_helper_plane_destroy_state - default state destroy hook
  1777. * @plane: drm plane
  1778. * @state: plane state object to release
  1779. *
  1780. * Default plane state destroy hook for drivers which don't have their own
  1781. * subclassed plane state structure.
  1782. */
  1783. void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
  1784. struct drm_plane_state *state)
  1785. {
  1786. __drm_atomic_helper_plane_destroy_state(plane, state);
  1787. kfree(state);
  1788. }
  1789. EXPORT_SYMBOL(drm_atomic_helper_plane_destroy_state);
  1790. /**
  1791. * drm_atomic_helper_connector_reset - default ->reset hook for connectors
  1792. * @connector: drm connector
  1793. *
  1794. * Resets the atomic state for @connector by freeing the state pointer (which
  1795. * might be NULL, e.g. at driver load time) and allocating a new empty state
  1796. * object.
  1797. */
  1798. void drm_atomic_helper_connector_reset(struct drm_connector *connector)
  1799. {
  1800. kfree(connector->state);
  1801. connector->state = kzalloc(sizeof(*connector->state), GFP_KERNEL);
  1802. if (connector->state)
  1803. connector->state->connector = connector;
  1804. }
  1805. EXPORT_SYMBOL(drm_atomic_helper_connector_reset);
  1806. /**
  1807. * __drm_atomic_helper_connector_duplicate_state - copy atomic connector state
  1808. * @connector: connector object
  1809. * @state: atomic connector state
  1810. *
  1811. * Copies atomic state from a connector's current state. This is useful for
  1812. * drivers that subclass the connector state.
  1813. */
  1814. void
  1815. __drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
  1816. struct drm_connector_state *state)
  1817. {
  1818. memcpy(state, connector->state, sizeof(*state));
  1819. }
  1820. EXPORT_SYMBOL(__drm_atomic_helper_connector_duplicate_state);
  1821. /**
  1822. * drm_atomic_helper_connector_duplicate_state - default state duplicate hook
  1823. * @connector: drm connector
  1824. *
  1825. * Default connector state duplicate hook for drivers which don't have their own
  1826. * subclassed connector state structure.
  1827. */
  1828. struct drm_connector_state *
  1829. drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector)
  1830. {
  1831. struct drm_connector_state *state;
  1832. if (WARN_ON(!connector->state))
  1833. return NULL;
  1834. state = kmalloc(sizeof(*state), GFP_KERNEL);
  1835. if (state)
  1836. __drm_atomic_helper_connector_duplicate_state(connector, state);
  1837. return state;
  1838. }
  1839. EXPORT_SYMBOL(drm_atomic_helper_connector_duplicate_state);
  1840. /**
  1841. * __drm_atomic_helper_connector_destroy_state - release connector state
  1842. * @connector: connector object
  1843. * @state: connector state object to release
  1844. *
  1845. * Releases all resources stored in the connector state without actually
  1846. * freeing the memory of the connector state. This is useful for drivers that
  1847. * subclass the connector state.
  1848. */
  1849. void
  1850. __drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
  1851. struct drm_connector_state *state)
  1852. {
  1853. /*
  1854. * This is currently a placeholder so that drivers that subclass the
  1855. * state will automatically do the right thing if code is ever added
  1856. * to this function.
  1857. */
  1858. }
  1859. EXPORT_SYMBOL(__drm_atomic_helper_connector_destroy_state);
  1860. /**
  1861. * drm_atomic_helper_connector_destroy_state - default state destroy hook
  1862. * @connector: drm connector
  1863. * @state: connector state object to release
  1864. *
  1865. * Default connector state destroy hook for drivers which don't have their own
  1866. * subclassed connector state structure.
  1867. */
  1868. void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
  1869. struct drm_connector_state *state)
  1870. {
  1871. __drm_atomic_helper_connector_destroy_state(connector, state);
  1872. kfree(state);
  1873. }
  1874. EXPORT_SYMBOL(drm_atomic_helper_connector_destroy_state);