drm_fb_helper.c 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410
  1. /*
  2. * Copyright (c) 2006-2009 Red Hat Inc.
  3. * Copyright (c) 2006-2008 Intel Corporation
  4. * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
  5. *
  6. * DRM framebuffer helper functions
  7. *
  8. * Permission to use, copy, modify, distribute, and sell this software and its
  9. * documentation for any purpose is hereby granted without fee, provided that
  10. * the above copyright notice appear in all copies and that both that copyright
  11. * notice and this permission notice appear in supporting documentation, and
  12. * that the name of the copyright holders not be used in advertising or
  13. * publicity pertaining to distribution of the software without specific,
  14. * written prior permission. The copyright holders make no representations
  15. * about the suitability of this software for any purpose. It is provided "as
  16. * is" without express or implied warranty.
  17. *
  18. * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  19. * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  20. * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  21. * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  22. * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  23. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  24. * OF THIS SOFTWARE.
  25. *
  26. * Authors:
  27. * Dave Airlie <airlied@linux.ie>
  28. * Jesse Barnes <jesse.barnes@intel.com>
  29. */
  30. #include <linux/kernel.h>
  31. #include <linux/sysrq.h>
  32. #include <linux/slab.h>
  33. #include <linux/fb.h>
  34. #include <linux/module.h>
  35. #include "drmP.h"
  36. #include "drm_crtc.h"
  37. #include "drm_fb_helper.h"
  38. #include "drm_crtc_helper.h"
  39. MODULE_AUTHOR("David Airlie, Jesse Barnes");
  40. MODULE_DESCRIPTION("DRM KMS helper");
  41. MODULE_LICENSE("GPL and additional rights");
  42. static LIST_HEAD(kernel_fb_helper_list);
  43. /* simple single crtc case helper function */
  44. int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper *fb_helper)
  45. {
  46. struct drm_device *dev = fb_helper->dev;
  47. struct drm_connector *connector;
  48. int i;
  49. list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
  50. struct drm_fb_helper_connector *fb_helper_connector;
  51. fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL);
  52. if (!fb_helper_connector)
  53. goto fail;
  54. fb_helper_connector->connector = connector;
  55. fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector;
  56. }
  57. return 0;
  58. fail:
  59. for (i = 0; i < fb_helper->connector_count; i++) {
  60. kfree(fb_helper->connector_info[i]);
  61. fb_helper->connector_info[i] = NULL;
  62. }
  63. fb_helper->connector_count = 0;
  64. return -ENOMEM;
  65. }
  66. EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors);
  67. static int drm_fb_helper_parse_command_line(struct drm_fb_helper *fb_helper)
  68. {
  69. struct drm_fb_helper_connector *fb_helper_conn;
  70. int i;
  71. for (i = 0; i < fb_helper->connector_count; i++) {
  72. struct drm_cmdline_mode *mode;
  73. struct drm_connector *connector;
  74. char *option = NULL;
  75. fb_helper_conn = fb_helper->connector_info[i];
  76. connector = fb_helper_conn->connector;
  77. mode = &fb_helper_conn->cmdline_mode;
  78. /* do something on return - turn off connector maybe */
  79. if (fb_get_options(drm_get_connector_name(connector), &option))
  80. continue;
  81. if (drm_mode_parse_command_line_for_connector(option,
  82. connector,
  83. mode)) {
  84. if (mode->force) {
  85. const char *s;
  86. switch (mode->force) {
  87. case DRM_FORCE_OFF: s = "OFF"; break;
  88. case DRM_FORCE_ON_DIGITAL: s = "ON - dig"; break;
  89. default:
  90. case DRM_FORCE_ON: s = "ON"; break;
  91. }
  92. DRM_INFO("forcing %s connector %s\n",
  93. drm_get_connector_name(connector), s);
  94. connector->force = mode->force;
  95. }
  96. DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
  97. drm_get_connector_name(connector),
  98. mode->xres, mode->yres,
  99. mode->refresh_specified ? mode->refresh : 60,
  100. mode->rb ? " reduced blanking" : "",
  101. mode->margins ? " with margins" : "",
  102. mode->interlace ? " interlaced" : "");
  103. }
  104. }
  105. return 0;
  106. }
  107. static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper)
  108. {
  109. uint16_t *r_base, *g_base, *b_base;
  110. int i;
  111. r_base = crtc->gamma_store;
  112. g_base = r_base + crtc->gamma_size;
  113. b_base = g_base + crtc->gamma_size;
  114. for (i = 0; i < crtc->gamma_size; i++)
  115. helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
  116. }
  117. static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc)
  118. {
  119. uint16_t *r_base, *g_base, *b_base;
  120. r_base = crtc->gamma_store;
  121. g_base = r_base + crtc->gamma_size;
  122. b_base = g_base + crtc->gamma_size;
  123. crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
  124. }
  125. int drm_fb_helper_debug_enter(struct fb_info *info)
  126. {
  127. struct drm_fb_helper *helper = info->par;
  128. struct drm_crtc_helper_funcs *funcs;
  129. int i;
  130. if (list_empty(&kernel_fb_helper_list))
  131. return false;
  132. list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
  133. for (i = 0; i < helper->crtc_count; i++) {
  134. struct drm_mode_set *mode_set =
  135. &helper->crtc_info[i].mode_set;
  136. if (!mode_set->crtc->enabled)
  137. continue;
  138. funcs = mode_set->crtc->helper_private;
  139. drm_fb_helper_save_lut_atomic(mode_set->crtc, helper);
  140. funcs->mode_set_base_atomic(mode_set->crtc,
  141. mode_set->fb,
  142. mode_set->x,
  143. mode_set->y,
  144. ENTER_ATOMIC_MODE_SET);
  145. }
  146. }
  147. return 0;
  148. }
  149. EXPORT_SYMBOL(drm_fb_helper_debug_enter);
  150. /* Find the real fb for a given fb helper CRTC */
  151. static struct drm_framebuffer *drm_mode_config_fb(struct drm_crtc *crtc)
  152. {
  153. struct drm_device *dev = crtc->dev;
  154. struct drm_crtc *c;
  155. list_for_each_entry(c, &dev->mode_config.crtc_list, head) {
  156. if (crtc->base.id == c->base.id)
  157. return c->fb;
  158. }
  159. return NULL;
  160. }
  161. int drm_fb_helper_debug_leave(struct fb_info *info)
  162. {
  163. struct drm_fb_helper *helper = info->par;
  164. struct drm_crtc *crtc;
  165. struct drm_crtc_helper_funcs *funcs;
  166. struct drm_framebuffer *fb;
  167. int i;
  168. for (i = 0; i < helper->crtc_count; i++) {
  169. struct drm_mode_set *mode_set = &helper->crtc_info[i].mode_set;
  170. crtc = mode_set->crtc;
  171. funcs = crtc->helper_private;
  172. fb = drm_mode_config_fb(crtc);
  173. if (!crtc->enabled)
  174. continue;
  175. if (!fb) {
  176. DRM_ERROR("no fb to restore??\n");
  177. continue;
  178. }
  179. drm_fb_helper_restore_lut_atomic(mode_set->crtc);
  180. funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
  181. crtc->y, LEAVE_ATOMIC_MODE_SET);
  182. }
  183. return 0;
  184. }
  185. EXPORT_SYMBOL(drm_fb_helper_debug_leave);
  186. bool drm_fb_helper_restore_fbdev_mode(struct drm_fb_helper *fb_helper)
  187. {
  188. bool error = false;
  189. int i, ret;
  190. for (i = 0; i < fb_helper->crtc_count; i++) {
  191. struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
  192. ret = drm_crtc_helper_set_config(mode_set);
  193. if (ret)
  194. error = true;
  195. }
  196. return error;
  197. }
  198. EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode);
  199. bool drm_fb_helper_force_kernel_mode(void)
  200. {
  201. bool ret, error = false;
  202. struct drm_fb_helper *helper;
  203. if (list_empty(&kernel_fb_helper_list))
  204. return false;
  205. list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
  206. if (helper->dev->switch_power_state == DRM_SWITCH_POWER_OFF)
  207. continue;
  208. ret = drm_fb_helper_restore_fbdev_mode(helper);
  209. if (ret)
  210. error = true;
  211. }
  212. return error;
  213. }
  214. int drm_fb_helper_panic(struct notifier_block *n, unsigned long ununsed,
  215. void *panic_str)
  216. {
  217. /*
  218. * It's a waste of time and effort to switch back to text console
  219. * if the kernel should reboot before panic messages can be seen.
  220. */
  221. if (panic_timeout < 0)
  222. return 0;
  223. printk(KERN_ERR "panic occurred, switching back to text console\n");
  224. return drm_fb_helper_force_kernel_mode();
  225. }
  226. EXPORT_SYMBOL(drm_fb_helper_panic);
  227. static struct notifier_block paniced = {
  228. .notifier_call = drm_fb_helper_panic,
  229. };
  230. /**
  231. * drm_fb_helper_restore - restore the framebuffer console (kernel) config
  232. *
  233. * Restore's the kernel's fbcon mode, used for lastclose & panic paths.
  234. */
  235. void drm_fb_helper_restore(void)
  236. {
  237. bool ret;
  238. ret = drm_fb_helper_force_kernel_mode();
  239. if (ret == true)
  240. DRM_ERROR("Failed to restore crtc configuration\n");
  241. }
  242. EXPORT_SYMBOL(drm_fb_helper_restore);
  243. #ifdef CONFIG_MAGIC_SYSRQ
  244. static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
  245. {
  246. drm_fb_helper_restore();
  247. }
  248. static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
  249. static void drm_fb_helper_sysrq(int dummy1)
  250. {
  251. schedule_work(&drm_fb_helper_restore_work);
  252. }
  253. static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = {
  254. .handler = drm_fb_helper_sysrq,
  255. .help_msg = "force-fb(V)",
  256. .action_msg = "Restore framebuffer console",
  257. };
  258. #else
  259. static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
  260. #endif
  261. static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
  262. {
  263. struct drm_fb_helper *fb_helper = info->par;
  264. struct drm_device *dev = fb_helper->dev;
  265. struct drm_connector *connector;
  266. struct drm_mode_set *modeset;
  267. int i, j;
  268. /*
  269. * For each CRTC in this fb, turn the connectors on/off.
  270. */
  271. mutex_lock(&dev->mode_config.mutex);
  272. for (i = 0; i < fb_helper->crtc_count; i++) {
  273. modeset = &fb_helper->crtc_info[i].mode_set;
  274. if (!modeset->crtc->enabled)
  275. continue;
  276. for (j = 0; j < modeset->num_connectors; j++) {
  277. connector = modeset->connectors[j];
  278. drm_helper_connector_dpms(connector, dpms_mode);
  279. drm_connector_property_set_value(connector,
  280. dev->mode_config.dpms_property, dpms_mode);
  281. }
  282. }
  283. mutex_unlock(&dev->mode_config.mutex);
  284. }
  285. int drm_fb_helper_blank(int blank, struct fb_info *info)
  286. {
  287. switch (blank) {
  288. /* Display: On; HSync: On, VSync: On */
  289. case FB_BLANK_UNBLANK:
  290. drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
  291. break;
  292. /* Display: Off; HSync: On, VSync: On */
  293. case FB_BLANK_NORMAL:
  294. drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
  295. break;
  296. /* Display: Off; HSync: Off, VSync: On */
  297. case FB_BLANK_HSYNC_SUSPEND:
  298. drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
  299. break;
  300. /* Display: Off; HSync: On, VSync: Off */
  301. case FB_BLANK_VSYNC_SUSPEND:
  302. drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
  303. break;
  304. /* Display: Off; HSync: Off, VSync: Off */
  305. case FB_BLANK_POWERDOWN:
  306. drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
  307. break;
  308. }
  309. return 0;
  310. }
  311. EXPORT_SYMBOL(drm_fb_helper_blank);
  312. static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper)
  313. {
  314. int i;
  315. for (i = 0; i < helper->connector_count; i++)
  316. kfree(helper->connector_info[i]);
  317. kfree(helper->connector_info);
  318. for (i = 0; i < helper->crtc_count; i++) {
  319. kfree(helper->crtc_info[i].mode_set.connectors);
  320. if (helper->crtc_info[i].mode_set.mode)
  321. drm_mode_destroy(helper->dev, helper->crtc_info[i].mode_set.mode);
  322. }
  323. kfree(helper->crtc_info);
  324. }
  325. int drm_fb_helper_init(struct drm_device *dev,
  326. struct drm_fb_helper *fb_helper,
  327. int crtc_count, int max_conn_count)
  328. {
  329. struct drm_crtc *crtc;
  330. int ret = 0;
  331. int i;
  332. fb_helper->dev = dev;
  333. INIT_LIST_HEAD(&fb_helper->kernel_fb_list);
  334. fb_helper->crtc_info = kcalloc(crtc_count, sizeof(struct drm_fb_helper_crtc), GFP_KERNEL);
  335. if (!fb_helper->crtc_info)
  336. return -ENOMEM;
  337. fb_helper->crtc_count = crtc_count;
  338. fb_helper->connector_info = kcalloc(dev->mode_config.num_connector, sizeof(struct drm_fb_helper_connector *), GFP_KERNEL);
  339. if (!fb_helper->connector_info) {
  340. kfree(fb_helper->crtc_info);
  341. return -ENOMEM;
  342. }
  343. fb_helper->connector_count = 0;
  344. for (i = 0; i < crtc_count; i++) {
  345. fb_helper->crtc_info[i].mode_set.connectors =
  346. kcalloc(max_conn_count,
  347. sizeof(struct drm_connector *),
  348. GFP_KERNEL);
  349. if (!fb_helper->crtc_info[i].mode_set.connectors) {
  350. ret = -ENOMEM;
  351. goto out_free;
  352. }
  353. fb_helper->crtc_info[i].mode_set.num_connectors = 0;
  354. }
  355. i = 0;
  356. list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
  357. fb_helper->crtc_info[i].mode_set.crtc = crtc;
  358. i++;
  359. }
  360. return 0;
  361. out_free:
  362. drm_fb_helper_crtc_free(fb_helper);
  363. return -ENOMEM;
  364. }
  365. EXPORT_SYMBOL(drm_fb_helper_init);
  366. void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
  367. {
  368. if (!list_empty(&fb_helper->kernel_fb_list)) {
  369. list_del(&fb_helper->kernel_fb_list);
  370. if (list_empty(&kernel_fb_helper_list)) {
  371. printk(KERN_INFO "drm: unregistered panic notifier\n");
  372. atomic_notifier_chain_unregister(&panic_notifier_list,
  373. &paniced);
  374. unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
  375. }
  376. }
  377. drm_fb_helper_crtc_free(fb_helper);
  378. }
  379. EXPORT_SYMBOL(drm_fb_helper_fini);
  380. static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green,
  381. u16 blue, u16 regno, struct fb_info *info)
  382. {
  383. struct drm_fb_helper *fb_helper = info->par;
  384. struct drm_framebuffer *fb = fb_helper->fb;
  385. int pindex;
  386. if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
  387. u32 *palette;
  388. u32 value;
  389. /* place color in psuedopalette */
  390. if (regno > 16)
  391. return -EINVAL;
  392. palette = (u32 *)info->pseudo_palette;
  393. red >>= (16 - info->var.red.length);
  394. green >>= (16 - info->var.green.length);
  395. blue >>= (16 - info->var.blue.length);
  396. value = (red << info->var.red.offset) |
  397. (green << info->var.green.offset) |
  398. (blue << info->var.blue.offset);
  399. if (info->var.transp.length > 0) {
  400. u32 mask = (1 << info->var.transp.length) - 1;
  401. mask <<= info->var.transp.offset;
  402. value |= mask;
  403. }
  404. palette[regno] = value;
  405. return 0;
  406. }
  407. pindex = regno;
  408. if (fb->bits_per_pixel == 16) {
  409. pindex = regno << 3;
  410. if (fb->depth == 16 && regno > 63)
  411. return -EINVAL;
  412. if (fb->depth == 15 && regno > 31)
  413. return -EINVAL;
  414. if (fb->depth == 16) {
  415. u16 r, g, b;
  416. int i;
  417. if (regno < 32) {
  418. for (i = 0; i < 8; i++)
  419. fb_helper->funcs->gamma_set(crtc, red,
  420. green, blue, pindex + i);
  421. }
  422. fb_helper->funcs->gamma_get(crtc, &r,
  423. &g, &b,
  424. pindex >> 1);
  425. for (i = 0; i < 4; i++)
  426. fb_helper->funcs->gamma_set(crtc, r,
  427. green, b,
  428. (pindex >> 1) + i);
  429. }
  430. }
  431. if (fb->depth != 16)
  432. fb_helper->funcs->gamma_set(crtc, red, green, blue, pindex);
  433. return 0;
  434. }
  435. int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
  436. {
  437. struct drm_fb_helper *fb_helper = info->par;
  438. struct drm_crtc_helper_funcs *crtc_funcs;
  439. u16 *red, *green, *blue, *transp;
  440. struct drm_crtc *crtc;
  441. int i, j, rc = 0;
  442. int start;
  443. for (i = 0; i < fb_helper->crtc_count; i++) {
  444. crtc = fb_helper->crtc_info[i].mode_set.crtc;
  445. crtc_funcs = crtc->helper_private;
  446. red = cmap->red;
  447. green = cmap->green;
  448. blue = cmap->blue;
  449. transp = cmap->transp;
  450. start = cmap->start;
  451. for (j = 0; j < cmap->len; j++) {
  452. u16 hred, hgreen, hblue, htransp = 0xffff;
  453. hred = *red++;
  454. hgreen = *green++;
  455. hblue = *blue++;
  456. if (transp)
  457. htransp = *transp++;
  458. rc = setcolreg(crtc, hred, hgreen, hblue, start++, info);
  459. if (rc)
  460. return rc;
  461. }
  462. crtc_funcs->load_lut(crtc);
  463. }
  464. return rc;
  465. }
  466. EXPORT_SYMBOL(drm_fb_helper_setcmap);
  467. int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
  468. struct fb_info *info)
  469. {
  470. struct drm_fb_helper *fb_helper = info->par;
  471. struct drm_framebuffer *fb = fb_helper->fb;
  472. int depth;
  473. if (var->pixclock != 0 || in_dbg_master())
  474. return -EINVAL;
  475. /* Need to resize the fb object !!! */
  476. if (var->bits_per_pixel > fb->bits_per_pixel ||
  477. var->xres > fb->width || var->yres > fb->height ||
  478. var->xres_virtual > fb->width || var->yres_virtual > fb->height) {
  479. DRM_DEBUG("fb userspace requested width/height/bpp is greater than current fb "
  480. "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
  481. var->xres, var->yres, var->bits_per_pixel,
  482. var->xres_virtual, var->yres_virtual,
  483. fb->width, fb->height, fb->bits_per_pixel);
  484. return -EINVAL;
  485. }
  486. switch (var->bits_per_pixel) {
  487. case 16:
  488. depth = (var->green.length == 6) ? 16 : 15;
  489. break;
  490. case 32:
  491. depth = (var->transp.length > 0) ? 32 : 24;
  492. break;
  493. default:
  494. depth = var->bits_per_pixel;
  495. break;
  496. }
  497. switch (depth) {
  498. case 8:
  499. var->red.offset = 0;
  500. var->green.offset = 0;
  501. var->blue.offset = 0;
  502. var->red.length = 8;
  503. var->green.length = 8;
  504. var->blue.length = 8;
  505. var->transp.length = 0;
  506. var->transp.offset = 0;
  507. break;
  508. case 15:
  509. var->red.offset = 10;
  510. var->green.offset = 5;
  511. var->blue.offset = 0;
  512. var->red.length = 5;
  513. var->green.length = 5;
  514. var->blue.length = 5;
  515. var->transp.length = 1;
  516. var->transp.offset = 15;
  517. break;
  518. case 16:
  519. var->red.offset = 11;
  520. var->green.offset = 5;
  521. var->blue.offset = 0;
  522. var->red.length = 5;
  523. var->green.length = 6;
  524. var->blue.length = 5;
  525. var->transp.length = 0;
  526. var->transp.offset = 0;
  527. break;
  528. case 24:
  529. var->red.offset = 16;
  530. var->green.offset = 8;
  531. var->blue.offset = 0;
  532. var->red.length = 8;
  533. var->green.length = 8;
  534. var->blue.length = 8;
  535. var->transp.length = 0;
  536. var->transp.offset = 0;
  537. break;
  538. case 32:
  539. var->red.offset = 16;
  540. var->green.offset = 8;
  541. var->blue.offset = 0;
  542. var->red.length = 8;
  543. var->green.length = 8;
  544. var->blue.length = 8;
  545. var->transp.length = 8;
  546. var->transp.offset = 24;
  547. break;
  548. default:
  549. return -EINVAL;
  550. }
  551. return 0;
  552. }
  553. EXPORT_SYMBOL(drm_fb_helper_check_var);
  554. /* this will let fbcon do the mode init */
  555. int drm_fb_helper_set_par(struct fb_info *info)
  556. {
  557. struct drm_fb_helper *fb_helper = info->par;
  558. struct drm_device *dev = fb_helper->dev;
  559. struct fb_var_screeninfo *var = &info->var;
  560. struct drm_crtc *crtc;
  561. int ret;
  562. int i;
  563. if (var->pixclock != 0) {
  564. DRM_ERROR("PIXEL CLOCK SET\n");
  565. return -EINVAL;
  566. }
  567. mutex_lock(&dev->mode_config.mutex);
  568. for (i = 0; i < fb_helper->crtc_count; i++) {
  569. crtc = fb_helper->crtc_info[i].mode_set.crtc;
  570. ret = crtc->funcs->set_config(&fb_helper->crtc_info[i].mode_set);
  571. if (ret) {
  572. mutex_unlock(&dev->mode_config.mutex);
  573. return ret;
  574. }
  575. }
  576. mutex_unlock(&dev->mode_config.mutex);
  577. if (fb_helper->delayed_hotplug) {
  578. fb_helper->delayed_hotplug = false;
  579. drm_fb_helper_hotplug_event(fb_helper);
  580. }
  581. return 0;
  582. }
  583. EXPORT_SYMBOL(drm_fb_helper_set_par);
  584. int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
  585. struct fb_info *info)
  586. {
  587. struct drm_fb_helper *fb_helper = info->par;
  588. struct drm_device *dev = fb_helper->dev;
  589. struct drm_mode_set *modeset;
  590. struct drm_crtc *crtc;
  591. int ret = 0;
  592. int i;
  593. mutex_lock(&dev->mode_config.mutex);
  594. for (i = 0; i < fb_helper->crtc_count; i++) {
  595. crtc = fb_helper->crtc_info[i].mode_set.crtc;
  596. modeset = &fb_helper->crtc_info[i].mode_set;
  597. modeset->x = var->xoffset;
  598. modeset->y = var->yoffset;
  599. if (modeset->num_connectors) {
  600. ret = crtc->funcs->set_config(modeset);
  601. if (!ret) {
  602. info->var.xoffset = var->xoffset;
  603. info->var.yoffset = var->yoffset;
  604. }
  605. }
  606. }
  607. mutex_unlock(&dev->mode_config.mutex);
  608. return ret;
  609. }
  610. EXPORT_SYMBOL(drm_fb_helper_pan_display);
  611. int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
  612. int preferred_bpp)
  613. {
  614. int new_fb = 0;
  615. int crtc_count = 0;
  616. int i;
  617. struct fb_info *info;
  618. struct drm_fb_helper_surface_size sizes;
  619. int gamma_size = 0;
  620. memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
  621. sizes.surface_depth = 24;
  622. sizes.surface_bpp = 32;
  623. sizes.fb_width = (unsigned)-1;
  624. sizes.fb_height = (unsigned)-1;
  625. /* if driver picks 8 or 16 by default use that
  626. for both depth/bpp */
  627. if (preferred_bpp != sizes.surface_bpp) {
  628. sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
  629. }
  630. /* first up get a count of crtcs now in use and new min/maxes width/heights */
  631. for (i = 0; i < fb_helper->connector_count; i++) {
  632. struct drm_fb_helper_connector *fb_helper_conn = fb_helper->connector_info[i];
  633. struct drm_cmdline_mode *cmdline_mode;
  634. cmdline_mode = &fb_helper_conn->cmdline_mode;
  635. if (cmdline_mode->bpp_specified) {
  636. switch (cmdline_mode->bpp) {
  637. case 8:
  638. sizes.surface_depth = sizes.surface_bpp = 8;
  639. break;
  640. case 15:
  641. sizes.surface_depth = 15;
  642. sizes.surface_bpp = 16;
  643. break;
  644. case 16:
  645. sizes.surface_depth = sizes.surface_bpp = 16;
  646. break;
  647. case 24:
  648. sizes.surface_depth = sizes.surface_bpp = 24;
  649. break;
  650. case 32:
  651. sizes.surface_depth = 24;
  652. sizes.surface_bpp = 32;
  653. break;
  654. }
  655. break;
  656. }
  657. }
  658. crtc_count = 0;
  659. for (i = 0; i < fb_helper->crtc_count; i++) {
  660. struct drm_display_mode *desired_mode;
  661. desired_mode = fb_helper->crtc_info[i].desired_mode;
  662. if (desired_mode) {
  663. if (gamma_size == 0)
  664. gamma_size = fb_helper->crtc_info[i].mode_set.crtc->gamma_size;
  665. if (desired_mode->hdisplay < sizes.fb_width)
  666. sizes.fb_width = desired_mode->hdisplay;
  667. if (desired_mode->vdisplay < sizes.fb_height)
  668. sizes.fb_height = desired_mode->vdisplay;
  669. if (desired_mode->hdisplay > sizes.surface_width)
  670. sizes.surface_width = desired_mode->hdisplay;
  671. if (desired_mode->vdisplay > sizes.surface_height)
  672. sizes.surface_height = desired_mode->vdisplay;
  673. crtc_count++;
  674. }
  675. }
  676. if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
  677. /* hmm everyone went away - assume VGA cable just fell out
  678. and will come back later. */
  679. DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n");
  680. sizes.fb_width = sizes.surface_width = 1024;
  681. sizes.fb_height = sizes.surface_height = 768;
  682. }
  683. /* push down into drivers */
  684. new_fb = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
  685. if (new_fb < 0)
  686. return new_fb;
  687. info = fb_helper->fbdev;
  688. /* set the fb pointer */
  689. for (i = 0; i < fb_helper->crtc_count; i++) {
  690. fb_helper->crtc_info[i].mode_set.fb = fb_helper->fb;
  691. }
  692. if (new_fb) {
  693. info->var.pixclock = 0;
  694. if (register_framebuffer(info) < 0) {
  695. return -EINVAL;
  696. }
  697. printk(KERN_INFO "fb%d: %s frame buffer device\n", info->node,
  698. info->fix.id);
  699. } else {
  700. drm_fb_helper_set_par(info);
  701. }
  702. /* Switch back to kernel console on panic */
  703. /* multi card linked list maybe */
  704. if (list_empty(&kernel_fb_helper_list)) {
  705. printk(KERN_INFO "drm: registered panic notifier\n");
  706. atomic_notifier_chain_register(&panic_notifier_list,
  707. &paniced);
  708. register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
  709. }
  710. if (new_fb)
  711. list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
  712. return 0;
  713. }
  714. EXPORT_SYMBOL(drm_fb_helper_single_fb_probe);
  715. void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
  716. uint32_t depth)
  717. {
  718. info->fix.type = FB_TYPE_PACKED_PIXELS;
  719. info->fix.visual = depth == 8 ? FB_VISUAL_PSEUDOCOLOR :
  720. FB_VISUAL_TRUECOLOR;
  721. info->fix.mmio_start = 0;
  722. info->fix.mmio_len = 0;
  723. info->fix.type_aux = 0;
  724. info->fix.xpanstep = 1; /* doing it in hw */
  725. info->fix.ypanstep = 1; /* doing it in hw */
  726. info->fix.ywrapstep = 0;
  727. info->fix.accel = FB_ACCEL_NONE;
  728. info->fix.type_aux = 0;
  729. info->fix.line_length = pitch;
  730. return;
  731. }
  732. EXPORT_SYMBOL(drm_fb_helper_fill_fix);
  733. void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper,
  734. uint32_t fb_width, uint32_t fb_height)
  735. {
  736. struct drm_framebuffer *fb = fb_helper->fb;
  737. info->pseudo_palette = fb_helper->pseudo_palette;
  738. info->var.xres_virtual = fb->width;
  739. info->var.yres_virtual = fb->height;
  740. info->var.bits_per_pixel = fb->bits_per_pixel;
  741. info->var.accel_flags = FB_ACCELF_TEXT;
  742. info->var.xoffset = 0;
  743. info->var.yoffset = 0;
  744. info->var.activate = FB_ACTIVATE_NOW;
  745. info->var.height = -1;
  746. info->var.width = -1;
  747. switch (fb->depth) {
  748. case 8:
  749. info->var.red.offset = 0;
  750. info->var.green.offset = 0;
  751. info->var.blue.offset = 0;
  752. info->var.red.length = 8; /* 8bit DAC */
  753. info->var.green.length = 8;
  754. info->var.blue.length = 8;
  755. info->var.transp.offset = 0;
  756. info->var.transp.length = 0;
  757. break;
  758. case 15:
  759. info->var.red.offset = 10;
  760. info->var.green.offset = 5;
  761. info->var.blue.offset = 0;
  762. info->var.red.length = 5;
  763. info->var.green.length = 5;
  764. info->var.blue.length = 5;
  765. info->var.transp.offset = 15;
  766. info->var.transp.length = 1;
  767. break;
  768. case 16:
  769. info->var.red.offset = 11;
  770. info->var.green.offset = 5;
  771. info->var.blue.offset = 0;
  772. info->var.red.length = 5;
  773. info->var.green.length = 6;
  774. info->var.blue.length = 5;
  775. info->var.transp.offset = 0;
  776. break;
  777. case 24:
  778. info->var.red.offset = 16;
  779. info->var.green.offset = 8;
  780. info->var.blue.offset = 0;
  781. info->var.red.length = 8;
  782. info->var.green.length = 8;
  783. info->var.blue.length = 8;
  784. info->var.transp.offset = 0;
  785. info->var.transp.length = 0;
  786. break;
  787. case 32:
  788. info->var.red.offset = 16;
  789. info->var.green.offset = 8;
  790. info->var.blue.offset = 0;
  791. info->var.red.length = 8;
  792. info->var.green.length = 8;
  793. info->var.blue.length = 8;
  794. info->var.transp.offset = 24;
  795. info->var.transp.length = 8;
  796. break;
  797. default:
  798. break;
  799. }
  800. info->var.xres = fb_width;
  801. info->var.yres = fb_height;
  802. }
  803. EXPORT_SYMBOL(drm_fb_helper_fill_var);
  804. static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper *fb_helper,
  805. uint32_t maxX,
  806. uint32_t maxY)
  807. {
  808. struct drm_connector *connector;
  809. int count = 0;
  810. int i;
  811. for (i = 0; i < fb_helper->connector_count; i++) {
  812. connector = fb_helper->connector_info[i]->connector;
  813. count += connector->funcs->fill_modes(connector, maxX, maxY);
  814. }
  815. return count;
  816. }
  817. static struct drm_display_mode *drm_has_preferred_mode(struct drm_fb_helper_connector *fb_connector, int width, int height)
  818. {
  819. struct drm_display_mode *mode;
  820. list_for_each_entry(mode, &fb_connector->connector->modes, head) {
  821. if (drm_mode_width(mode) > width ||
  822. drm_mode_height(mode) > height)
  823. continue;
  824. if (mode->type & DRM_MODE_TYPE_PREFERRED)
  825. return mode;
  826. }
  827. return NULL;
  828. }
  829. static bool drm_has_cmdline_mode(struct drm_fb_helper_connector *fb_connector)
  830. {
  831. struct drm_cmdline_mode *cmdline_mode;
  832. cmdline_mode = &fb_connector->cmdline_mode;
  833. return cmdline_mode->specified;
  834. }
  835. static struct drm_display_mode *drm_pick_cmdline_mode(struct drm_fb_helper_connector *fb_helper_conn,
  836. int width, int height)
  837. {
  838. struct drm_cmdline_mode *cmdline_mode;
  839. struct drm_display_mode *mode = NULL;
  840. cmdline_mode = &fb_helper_conn->cmdline_mode;
  841. if (cmdline_mode->specified == false)
  842. return mode;
  843. /* attempt to find a matching mode in the list of modes
  844. * we have gotten so far, if not add a CVT mode that conforms
  845. */
  846. if (cmdline_mode->rb || cmdline_mode->margins)
  847. goto create_mode;
  848. list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
  849. /* check width/height */
  850. if (mode->hdisplay != cmdline_mode->xres ||
  851. mode->vdisplay != cmdline_mode->yres)
  852. continue;
  853. if (cmdline_mode->refresh_specified) {
  854. if (mode->vrefresh != cmdline_mode->refresh)
  855. continue;
  856. }
  857. if (cmdline_mode->interlace) {
  858. if (!(mode->flags & DRM_MODE_FLAG_INTERLACE))
  859. continue;
  860. }
  861. return mode;
  862. }
  863. create_mode:
  864. mode = drm_mode_create_from_cmdline_mode(fb_helper_conn->connector->dev,
  865. cmdline_mode);
  866. list_add(&mode->head, &fb_helper_conn->connector->modes);
  867. return mode;
  868. }
  869. static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
  870. {
  871. bool enable;
  872. if (strict) {
  873. enable = connector->status == connector_status_connected;
  874. } else {
  875. enable = connector->status != connector_status_disconnected;
  876. }
  877. return enable;
  878. }
  879. static void drm_enable_connectors(struct drm_fb_helper *fb_helper,
  880. bool *enabled)
  881. {
  882. bool any_enabled = false;
  883. struct drm_connector *connector;
  884. int i = 0;
  885. for (i = 0; i < fb_helper->connector_count; i++) {
  886. connector = fb_helper->connector_info[i]->connector;
  887. enabled[i] = drm_connector_enabled(connector, true);
  888. DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
  889. enabled[i] ? "yes" : "no");
  890. any_enabled |= enabled[i];
  891. }
  892. if (any_enabled)
  893. return;
  894. for (i = 0; i < fb_helper->connector_count; i++) {
  895. connector = fb_helper->connector_info[i]->connector;
  896. enabled[i] = drm_connector_enabled(connector, false);
  897. }
  898. }
  899. static bool drm_target_cloned(struct drm_fb_helper *fb_helper,
  900. struct drm_display_mode **modes,
  901. bool *enabled, int width, int height)
  902. {
  903. int count, i, j;
  904. bool can_clone = false;
  905. struct drm_fb_helper_connector *fb_helper_conn;
  906. struct drm_display_mode *dmt_mode, *mode;
  907. /* only contemplate cloning in the single crtc case */
  908. if (fb_helper->crtc_count > 1)
  909. return false;
  910. count = 0;
  911. for (i = 0; i < fb_helper->connector_count; i++) {
  912. if (enabled[i])
  913. count++;
  914. }
  915. /* only contemplate cloning if more than one connector is enabled */
  916. if (count <= 1)
  917. return false;
  918. /* check the command line or if nothing common pick 1024x768 */
  919. can_clone = true;
  920. for (i = 0; i < fb_helper->connector_count; i++) {
  921. if (!enabled[i])
  922. continue;
  923. fb_helper_conn = fb_helper->connector_info[i];
  924. modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
  925. if (!modes[i]) {
  926. can_clone = false;
  927. break;
  928. }
  929. for (j = 0; j < i; j++) {
  930. if (!enabled[j])
  931. continue;
  932. if (!drm_mode_equal(modes[j], modes[i]))
  933. can_clone = false;
  934. }
  935. }
  936. if (can_clone) {
  937. DRM_DEBUG_KMS("can clone using command line\n");
  938. return true;
  939. }
  940. /* try and find a 1024x768 mode on each connector */
  941. can_clone = true;
  942. dmt_mode = drm_mode_find_dmt(fb_helper->dev, 1024, 768, 60);
  943. for (i = 0; i < fb_helper->connector_count; i++) {
  944. if (!enabled[i])
  945. continue;
  946. fb_helper_conn = fb_helper->connector_info[i];
  947. list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
  948. if (drm_mode_equal(mode, dmt_mode))
  949. modes[i] = mode;
  950. }
  951. if (!modes[i])
  952. can_clone = false;
  953. }
  954. if (can_clone) {
  955. DRM_DEBUG_KMS("can clone using 1024x768\n");
  956. return true;
  957. }
  958. DRM_INFO("kms: can't enable cloning when we probably wanted to.\n");
  959. return false;
  960. }
  961. static bool drm_target_preferred(struct drm_fb_helper *fb_helper,
  962. struct drm_display_mode **modes,
  963. bool *enabled, int width, int height)
  964. {
  965. struct drm_fb_helper_connector *fb_helper_conn;
  966. int i;
  967. for (i = 0; i < fb_helper->connector_count; i++) {
  968. fb_helper_conn = fb_helper->connector_info[i];
  969. if (enabled[i] == false)
  970. continue;
  971. DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
  972. fb_helper_conn->connector->base.id);
  973. /* got for command line mode first */
  974. modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
  975. if (!modes[i]) {
  976. DRM_DEBUG_KMS("looking for preferred mode on connector %d\n",
  977. fb_helper_conn->connector->base.id);
  978. modes[i] = drm_has_preferred_mode(fb_helper_conn, width, height);
  979. }
  980. /* No preferred modes, pick one off the list */
  981. if (!modes[i] && !list_empty(&fb_helper_conn->connector->modes)) {
  982. list_for_each_entry(modes[i], &fb_helper_conn->connector->modes, head)
  983. break;
  984. }
  985. DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name :
  986. "none");
  987. }
  988. return true;
  989. }
  990. static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
  991. struct drm_fb_helper_crtc **best_crtcs,
  992. struct drm_display_mode **modes,
  993. int n, int width, int height)
  994. {
  995. int c, o;
  996. struct drm_device *dev = fb_helper->dev;
  997. struct drm_connector *connector;
  998. struct drm_connector_helper_funcs *connector_funcs;
  999. struct drm_encoder *encoder;
  1000. struct drm_fb_helper_crtc *best_crtc;
  1001. int my_score, best_score, score;
  1002. struct drm_fb_helper_crtc **crtcs, *crtc;
  1003. struct drm_fb_helper_connector *fb_helper_conn;
  1004. if (n == fb_helper->connector_count)
  1005. return 0;
  1006. fb_helper_conn = fb_helper->connector_info[n];
  1007. connector = fb_helper_conn->connector;
  1008. best_crtcs[n] = NULL;
  1009. best_crtc = NULL;
  1010. best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, height);
  1011. if (modes[n] == NULL)
  1012. return best_score;
  1013. crtcs = kzalloc(dev->mode_config.num_connector *
  1014. sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
  1015. if (!crtcs)
  1016. return best_score;
  1017. my_score = 1;
  1018. if (connector->status == connector_status_connected)
  1019. my_score++;
  1020. if (drm_has_cmdline_mode(fb_helper_conn))
  1021. my_score++;
  1022. if (drm_has_preferred_mode(fb_helper_conn, width, height))
  1023. my_score++;
  1024. connector_funcs = connector->helper_private;
  1025. encoder = connector_funcs->best_encoder(connector);
  1026. if (!encoder)
  1027. goto out;
  1028. /* select a crtc for this connector and then attempt to configure
  1029. remaining connectors */
  1030. for (c = 0; c < fb_helper->crtc_count; c++) {
  1031. crtc = &fb_helper->crtc_info[c];
  1032. if ((encoder->possible_crtcs & (1 << c)) == 0) {
  1033. continue;
  1034. }
  1035. for (o = 0; o < n; o++)
  1036. if (best_crtcs[o] == crtc)
  1037. break;
  1038. if (o < n) {
  1039. /* ignore cloning unless only a single crtc */
  1040. if (fb_helper->crtc_count > 1)
  1041. continue;
  1042. if (!drm_mode_equal(modes[o], modes[n]))
  1043. continue;
  1044. }
  1045. crtcs[n] = crtc;
  1046. memcpy(crtcs, best_crtcs, n * sizeof(struct drm_fb_helper_crtc *));
  1047. score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1,
  1048. width, height);
  1049. if (score > best_score) {
  1050. best_crtc = crtc;
  1051. best_score = score;
  1052. memcpy(best_crtcs, crtcs,
  1053. dev->mode_config.num_connector *
  1054. sizeof(struct drm_fb_helper_crtc *));
  1055. }
  1056. }
  1057. out:
  1058. kfree(crtcs);
  1059. return best_score;
  1060. }
  1061. static void drm_setup_crtcs(struct drm_fb_helper *fb_helper)
  1062. {
  1063. struct drm_device *dev = fb_helper->dev;
  1064. struct drm_fb_helper_crtc **crtcs;
  1065. struct drm_display_mode **modes;
  1066. struct drm_encoder *encoder;
  1067. struct drm_mode_set *modeset;
  1068. bool *enabled;
  1069. int width, height;
  1070. int i, ret;
  1071. DRM_DEBUG_KMS("\n");
  1072. width = dev->mode_config.max_width;
  1073. height = dev->mode_config.max_height;
  1074. /* clean out all the encoder/crtc combos */
  1075. list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
  1076. encoder->crtc = NULL;
  1077. }
  1078. crtcs = kcalloc(dev->mode_config.num_connector,
  1079. sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
  1080. modes = kcalloc(dev->mode_config.num_connector,
  1081. sizeof(struct drm_display_mode *), GFP_KERNEL);
  1082. enabled = kcalloc(dev->mode_config.num_connector,
  1083. sizeof(bool), GFP_KERNEL);
  1084. drm_enable_connectors(fb_helper, enabled);
  1085. ret = drm_target_cloned(fb_helper, modes, enabled, width, height);
  1086. if (!ret) {
  1087. ret = drm_target_preferred(fb_helper, modes, enabled, width, height);
  1088. if (!ret)
  1089. DRM_ERROR("Unable to find initial modes\n");
  1090. }
  1091. DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n", width, height);
  1092. drm_pick_crtcs(fb_helper, crtcs, modes, 0, width, height);
  1093. /* need to set the modesets up here for use later */
  1094. /* fill out the connector<->crtc mappings into the modesets */
  1095. for (i = 0; i < fb_helper->crtc_count; i++) {
  1096. modeset = &fb_helper->crtc_info[i].mode_set;
  1097. modeset->num_connectors = 0;
  1098. }
  1099. for (i = 0; i < fb_helper->connector_count; i++) {
  1100. struct drm_display_mode *mode = modes[i];
  1101. struct drm_fb_helper_crtc *fb_crtc = crtcs[i];
  1102. modeset = &fb_crtc->mode_set;
  1103. if (mode && fb_crtc) {
  1104. DRM_DEBUG_KMS("desired mode %s set on crtc %d\n",
  1105. mode->name, fb_crtc->mode_set.crtc->base.id);
  1106. fb_crtc->desired_mode = mode;
  1107. if (modeset->mode)
  1108. drm_mode_destroy(dev, modeset->mode);
  1109. modeset->mode = drm_mode_duplicate(dev,
  1110. fb_crtc->desired_mode);
  1111. modeset->connectors[modeset->num_connectors++] = fb_helper->connector_info[i]->connector;
  1112. }
  1113. }
  1114. kfree(crtcs);
  1115. kfree(modes);
  1116. kfree(enabled);
  1117. }
  1118. /**
  1119. * drm_helper_initial_config - setup a sane initial connector configuration
  1120. * @dev: DRM device
  1121. *
  1122. * LOCKING:
  1123. * Called at init time, must take mode config lock.
  1124. *
  1125. * Scan the CRTCs and connectors and try to put together an initial setup.
  1126. * At the moment, this is a cloned configuration across all heads with
  1127. * a new framebuffer object as the backing store.
  1128. *
  1129. * RETURNS:
  1130. * Zero if everything went ok, nonzero otherwise.
  1131. */
  1132. bool drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
  1133. {
  1134. struct drm_device *dev = fb_helper->dev;
  1135. int count = 0;
  1136. /* disable all the possible outputs/crtcs before entering KMS mode */
  1137. drm_helper_disable_unused_functions(fb_helper->dev);
  1138. drm_fb_helper_parse_command_line(fb_helper);
  1139. count = drm_fb_helper_probe_connector_modes(fb_helper,
  1140. dev->mode_config.max_width,
  1141. dev->mode_config.max_height);
  1142. /*
  1143. * we shouldn't end up with no modes here.
  1144. */
  1145. if (count == 0) {
  1146. printk(KERN_INFO "No connectors reported connected with modes\n");
  1147. }
  1148. drm_setup_crtcs(fb_helper);
  1149. return drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
  1150. }
  1151. EXPORT_SYMBOL(drm_fb_helper_initial_config);
  1152. /**
  1153. * drm_fb_helper_hotplug_event - respond to a hotplug notification by
  1154. * probing all the outputs attached to the fb.
  1155. * @fb_helper: the drm_fb_helper
  1156. *
  1157. * LOCKING:
  1158. * Called at runtime, must take mode config lock.
  1159. *
  1160. * Scan the connectors attached to the fb_helper and try to put together a
  1161. * setup after *notification of a change in output configuration.
  1162. *
  1163. * RETURNS:
  1164. * 0 on success and a non-zero error code otherwise.
  1165. */
  1166. int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
  1167. {
  1168. struct drm_device *dev = fb_helper->dev;
  1169. int count = 0;
  1170. u32 max_width, max_height, bpp_sel;
  1171. bool bound = false, crtcs_bound = false;
  1172. struct drm_crtc *crtc;
  1173. if (!fb_helper->fb)
  1174. return 0;
  1175. mutex_lock(&dev->mode_config.mutex);
  1176. list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
  1177. if (crtc->fb)
  1178. crtcs_bound = true;
  1179. if (crtc->fb == fb_helper->fb)
  1180. bound = true;
  1181. }
  1182. if (!bound && crtcs_bound) {
  1183. fb_helper->delayed_hotplug = true;
  1184. mutex_unlock(&dev->mode_config.mutex);
  1185. return 0;
  1186. }
  1187. DRM_DEBUG_KMS("\n");
  1188. max_width = fb_helper->fb->width;
  1189. max_height = fb_helper->fb->height;
  1190. bpp_sel = fb_helper->fb->bits_per_pixel;
  1191. count = drm_fb_helper_probe_connector_modes(fb_helper, max_width,
  1192. max_height);
  1193. drm_setup_crtcs(fb_helper);
  1194. mutex_unlock(&dev->mode_config.mutex);
  1195. return drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
  1196. }
  1197. EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
  1198. /* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
  1199. * but the module doesn't depend on any fb console symbols. At least
  1200. * attempt to load fbcon to avoid leaving the system without a usable console.
  1201. */
  1202. #if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
  1203. static int __init drm_fb_helper_modinit(void)
  1204. {
  1205. const char *name = "fbcon";
  1206. struct module *fbcon;
  1207. mutex_lock(&module_mutex);
  1208. fbcon = find_module(name);
  1209. mutex_unlock(&module_mutex);
  1210. if (!fbcon)
  1211. request_module_nowait(name);
  1212. return 0;
  1213. }
  1214. module_init(drm_fb_helper_modinit);
  1215. #endif