drm_atomic_helper.c 64 KB

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