drm_atomic_helper.c 65 KB

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