drm_atomic_helper.c 64 KB

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