uvesafb.c 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070
  1. /*
  2. * A framebuffer driver for VBE 2.0+ compliant video cards
  3. *
  4. * (c) 2007 Michal Januszewski <spock@gentoo.org>
  5. * Loosely based upon the vesafb driver.
  6. *
  7. */
  8. #include <linux/init.h>
  9. #include <linux/module.h>
  10. #include <linux/moduleparam.h>
  11. #include <linux/skbuff.h>
  12. #include <linux/timer.h>
  13. #include <linux/completion.h>
  14. #include <linux/connector.h>
  15. #include <linux/random.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/limits.h>
  18. #include <linux/fb.h>
  19. #include <linux/io.h>
  20. #include <linux/mutex.h>
  21. #include <linux/slab.h>
  22. #include <video/edid.h>
  23. #include <video/uvesafb.h>
  24. #ifdef CONFIG_X86
  25. #include <video/vga.h>
  26. #endif
  27. #ifdef CONFIG_MTRR
  28. #include <asm/mtrr.h>
  29. #endif
  30. #include "edid.h"
  31. static struct cb_id uvesafb_cn_id = {
  32. .idx = CN_IDX_V86D,
  33. .val = CN_VAL_V86D_UVESAFB
  34. };
  35. static char v86d_path[PATH_MAX] = "/sbin/v86d";
  36. static char v86d_started; /* has v86d been started by uvesafb? */
  37. static struct fb_fix_screeninfo uvesafb_fix __devinitdata = {
  38. .id = "VESA VGA",
  39. .type = FB_TYPE_PACKED_PIXELS,
  40. .accel = FB_ACCEL_NONE,
  41. .visual = FB_VISUAL_TRUECOLOR,
  42. };
  43. static int mtrr __devinitdata = 3; /* enable mtrr by default */
  44. static int blank = 1; /* enable blanking by default */
  45. static int ypan = 1; /* 0: scroll, 1: ypan, 2: ywrap */
  46. static bool pmi_setpal __devinitdata = true; /* use PMI for palette changes */
  47. static int nocrtc __devinitdata; /* ignore CRTC settings */
  48. static int noedid __devinitdata; /* don't try DDC transfers */
  49. static int vram_remap __devinitdata; /* set amt. of memory to be used */
  50. static int vram_total __devinitdata; /* set total amount of memory */
  51. static u16 maxclk __devinitdata; /* maximum pixel clock */
  52. static u16 maxvf __devinitdata; /* maximum vertical frequency */
  53. static u16 maxhf __devinitdata; /* maximum horizontal frequency */
  54. static u16 vbemode __devinitdata; /* force use of a specific VBE mode */
  55. static char *mode_option __devinitdata;
  56. static u8 dac_width = 6;
  57. static struct uvesafb_ktask *uvfb_tasks[UVESAFB_TASKS_MAX];
  58. static DEFINE_MUTEX(uvfb_lock);
  59. /*
  60. * A handler for replies from userspace.
  61. *
  62. * Make sure each message passes consistency checks and if it does,
  63. * find the kernel part of the task struct, copy the registers and
  64. * the buffer contents and then complete the task.
  65. */
  66. static void uvesafb_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp)
  67. {
  68. struct uvesafb_task *utask;
  69. struct uvesafb_ktask *task;
  70. if (!cap_raised(current_cap(), CAP_SYS_ADMIN))
  71. return;
  72. if (msg->seq >= UVESAFB_TASKS_MAX)
  73. return;
  74. mutex_lock(&uvfb_lock);
  75. task = uvfb_tasks[msg->seq];
  76. if (!task || msg->ack != task->ack) {
  77. mutex_unlock(&uvfb_lock);
  78. return;
  79. }
  80. utask = (struct uvesafb_task *)msg->data;
  81. /* Sanity checks for the buffer length. */
  82. if (task->t.buf_len < utask->buf_len ||
  83. utask->buf_len > msg->len - sizeof(*utask)) {
  84. mutex_unlock(&uvfb_lock);
  85. return;
  86. }
  87. uvfb_tasks[msg->seq] = NULL;
  88. mutex_unlock(&uvfb_lock);
  89. memcpy(&task->t, utask, sizeof(*utask));
  90. if (task->t.buf_len && task->buf)
  91. memcpy(task->buf, utask + 1, task->t.buf_len);
  92. complete(task->done);
  93. return;
  94. }
  95. static int uvesafb_helper_start(void)
  96. {
  97. char *envp[] = {
  98. "HOME=/",
  99. "PATH=/sbin:/bin",
  100. NULL,
  101. };
  102. char *argv[] = {
  103. v86d_path,
  104. NULL,
  105. };
  106. return call_usermodehelper(v86d_path, argv, envp, 1);
  107. }
  108. /*
  109. * Execute a uvesafb task.
  110. *
  111. * Returns 0 if the task is executed successfully.
  112. *
  113. * A message sent to the userspace consists of the uvesafb_task
  114. * struct and (optionally) a buffer. The uvesafb_task struct is
  115. * a simplified version of uvesafb_ktask (its kernel counterpart)
  116. * containing only the register values, flags and the length of
  117. * the buffer.
  118. *
  119. * Each message is assigned a sequence number (increased linearly)
  120. * and a random ack number. The sequence number is used as a key
  121. * for the uvfb_tasks array which holds pointers to uvesafb_ktask
  122. * structs for all requests.
  123. */
  124. static int uvesafb_exec(struct uvesafb_ktask *task)
  125. {
  126. static int seq;
  127. struct cn_msg *m;
  128. int err;
  129. int len = sizeof(task->t) + task->t.buf_len;
  130. /*
  131. * Check whether the message isn't longer than the maximum
  132. * allowed by connector.
  133. */
  134. if (sizeof(*m) + len > CONNECTOR_MAX_MSG_SIZE) {
  135. printk(KERN_WARNING "uvesafb: message too long (%d), "
  136. "can't execute task\n", (int)(sizeof(*m) + len));
  137. return -E2BIG;
  138. }
  139. m = kzalloc(sizeof(*m) + len, GFP_KERNEL);
  140. if (!m)
  141. return -ENOMEM;
  142. init_completion(task->done);
  143. memcpy(&m->id, &uvesafb_cn_id, sizeof(m->id));
  144. m->seq = seq;
  145. m->len = len;
  146. m->ack = random32();
  147. /* uvesafb_task structure */
  148. memcpy(m + 1, &task->t, sizeof(task->t));
  149. /* Buffer */
  150. memcpy((u8 *)(m + 1) + sizeof(task->t), task->buf, task->t.buf_len);
  151. /*
  152. * Save the message ack number so that we can find the kernel
  153. * part of this task when a reply is received from userspace.
  154. */
  155. task->ack = m->ack;
  156. mutex_lock(&uvfb_lock);
  157. /* If all slots are taken -- bail out. */
  158. if (uvfb_tasks[seq]) {
  159. mutex_unlock(&uvfb_lock);
  160. err = -EBUSY;
  161. goto out;
  162. }
  163. /* Save a pointer to the kernel part of the task struct. */
  164. uvfb_tasks[seq] = task;
  165. mutex_unlock(&uvfb_lock);
  166. err = cn_netlink_send(m, 0, GFP_KERNEL);
  167. if (err == -ESRCH) {
  168. /*
  169. * Try to start the userspace helper if sending
  170. * the request failed the first time.
  171. */
  172. err = uvesafb_helper_start();
  173. if (err) {
  174. printk(KERN_ERR "uvesafb: failed to execute %s\n",
  175. v86d_path);
  176. printk(KERN_ERR "uvesafb: make sure that the v86d "
  177. "helper is installed and executable\n");
  178. } else {
  179. v86d_started = 1;
  180. err = cn_netlink_send(m, 0, gfp_any());
  181. if (err == -ENOBUFS)
  182. err = 0;
  183. }
  184. } else if (err == -ENOBUFS)
  185. err = 0;
  186. if (!err && !(task->t.flags & TF_EXIT))
  187. err = !wait_for_completion_timeout(task->done,
  188. msecs_to_jiffies(UVESAFB_TIMEOUT));
  189. mutex_lock(&uvfb_lock);
  190. uvfb_tasks[seq] = NULL;
  191. mutex_unlock(&uvfb_lock);
  192. seq++;
  193. if (seq >= UVESAFB_TASKS_MAX)
  194. seq = 0;
  195. out:
  196. kfree(m);
  197. return err;
  198. }
  199. /*
  200. * Free a uvesafb_ktask struct.
  201. */
  202. static void uvesafb_free(struct uvesafb_ktask *task)
  203. {
  204. if (task) {
  205. if (task->done)
  206. kfree(task->done);
  207. kfree(task);
  208. }
  209. }
  210. /*
  211. * Prepare a uvesafb_ktask struct to be used again.
  212. */
  213. static void uvesafb_reset(struct uvesafb_ktask *task)
  214. {
  215. struct completion *cpl = task->done;
  216. memset(task, 0, sizeof(*task));
  217. task->done = cpl;
  218. }
  219. /*
  220. * Allocate and prepare a uvesafb_ktask struct.
  221. */
  222. static struct uvesafb_ktask *uvesafb_prep(void)
  223. {
  224. struct uvesafb_ktask *task;
  225. task = kzalloc(sizeof(*task), GFP_KERNEL);
  226. if (task) {
  227. task->done = kzalloc(sizeof(*task->done), GFP_KERNEL);
  228. if (!task->done) {
  229. kfree(task);
  230. task = NULL;
  231. }
  232. }
  233. return task;
  234. }
  235. static void uvesafb_setup_var(struct fb_var_screeninfo *var,
  236. struct fb_info *info, struct vbe_mode_ib *mode)
  237. {
  238. struct uvesafb_par *par = info->par;
  239. var->vmode = FB_VMODE_NONINTERLACED;
  240. var->sync = FB_SYNC_VERT_HIGH_ACT;
  241. var->xres = mode->x_res;
  242. var->yres = mode->y_res;
  243. var->xres_virtual = mode->x_res;
  244. var->yres_virtual = (par->ypan) ?
  245. info->fix.smem_len / mode->bytes_per_scan_line :
  246. mode->y_res;
  247. var->xoffset = 0;
  248. var->yoffset = 0;
  249. var->bits_per_pixel = mode->bits_per_pixel;
  250. if (var->bits_per_pixel == 15)
  251. var->bits_per_pixel = 16;
  252. if (var->bits_per_pixel > 8) {
  253. var->red.offset = mode->red_off;
  254. var->red.length = mode->red_len;
  255. var->green.offset = mode->green_off;
  256. var->green.length = mode->green_len;
  257. var->blue.offset = mode->blue_off;
  258. var->blue.length = mode->blue_len;
  259. var->transp.offset = mode->rsvd_off;
  260. var->transp.length = mode->rsvd_len;
  261. } else {
  262. var->red.offset = 0;
  263. var->green.offset = 0;
  264. var->blue.offset = 0;
  265. var->transp.offset = 0;
  266. var->red.length = 8;
  267. var->green.length = 8;
  268. var->blue.length = 8;
  269. var->transp.length = 0;
  270. }
  271. }
  272. static int uvesafb_vbe_find_mode(struct uvesafb_par *par,
  273. int xres, int yres, int depth, unsigned char flags)
  274. {
  275. int i, match = -1, h = 0, d = 0x7fffffff;
  276. for (i = 0; i < par->vbe_modes_cnt; i++) {
  277. h = abs(par->vbe_modes[i].x_res - xres) +
  278. abs(par->vbe_modes[i].y_res - yres) +
  279. abs(depth - par->vbe_modes[i].depth);
  280. /*
  281. * We have an exact match in terms of resolution
  282. * and depth.
  283. */
  284. if (h == 0)
  285. return i;
  286. if (h < d || (h == d && par->vbe_modes[i].depth > depth)) {
  287. d = h;
  288. match = i;
  289. }
  290. }
  291. i = 1;
  292. if (flags & UVESAFB_EXACT_DEPTH &&
  293. par->vbe_modes[match].depth != depth)
  294. i = 0;
  295. if (flags & UVESAFB_EXACT_RES && d > 24)
  296. i = 0;
  297. if (i != 0)
  298. return match;
  299. else
  300. return -1;
  301. }
  302. static u8 *uvesafb_vbe_state_save(struct uvesafb_par *par)
  303. {
  304. struct uvesafb_ktask *task;
  305. u8 *state;
  306. int err;
  307. if (!par->vbe_state_size)
  308. return NULL;
  309. state = kmalloc(par->vbe_state_size, GFP_KERNEL);
  310. if (!state)
  311. return NULL;
  312. task = uvesafb_prep();
  313. if (!task) {
  314. kfree(state);
  315. return NULL;
  316. }
  317. task->t.regs.eax = 0x4f04;
  318. task->t.regs.ecx = 0x000f;
  319. task->t.regs.edx = 0x0001;
  320. task->t.flags = TF_BUF_RET | TF_BUF_ESBX;
  321. task->t.buf_len = par->vbe_state_size;
  322. task->buf = state;
  323. err = uvesafb_exec(task);
  324. if (err || (task->t.regs.eax & 0xffff) != 0x004f) {
  325. printk(KERN_WARNING "uvesafb: VBE get state call "
  326. "failed (eax=0x%x, err=%d)\n",
  327. task->t.regs.eax, err);
  328. kfree(state);
  329. state = NULL;
  330. }
  331. uvesafb_free(task);
  332. return state;
  333. }
  334. static void uvesafb_vbe_state_restore(struct uvesafb_par *par, u8 *state_buf)
  335. {
  336. struct uvesafb_ktask *task;
  337. int err;
  338. if (!state_buf)
  339. return;
  340. task = uvesafb_prep();
  341. if (!task)
  342. return;
  343. task->t.regs.eax = 0x4f04;
  344. task->t.regs.ecx = 0x000f;
  345. task->t.regs.edx = 0x0002;
  346. task->t.buf_len = par->vbe_state_size;
  347. task->t.flags = TF_BUF_ESBX;
  348. task->buf = state_buf;
  349. err = uvesafb_exec(task);
  350. if (err || (task->t.regs.eax & 0xffff) != 0x004f)
  351. printk(KERN_WARNING "uvesafb: VBE state restore call "
  352. "failed (eax=0x%x, err=%d)\n",
  353. task->t.regs.eax, err);
  354. uvesafb_free(task);
  355. }
  356. static int __devinit uvesafb_vbe_getinfo(struct uvesafb_ktask *task,
  357. struct uvesafb_par *par)
  358. {
  359. int err;
  360. task->t.regs.eax = 0x4f00;
  361. task->t.flags = TF_VBEIB;
  362. task->t.buf_len = sizeof(struct vbe_ib);
  363. task->buf = &par->vbe_ib;
  364. strncpy(par->vbe_ib.vbe_signature, "VBE2", 4);
  365. err = uvesafb_exec(task);
  366. if (err || (task->t.regs.eax & 0xffff) != 0x004f) {
  367. printk(KERN_ERR "uvesafb: Getting VBE info block failed "
  368. "(eax=0x%x, err=%d)\n", (u32)task->t.regs.eax,
  369. err);
  370. return -EINVAL;
  371. }
  372. if (par->vbe_ib.vbe_version < 0x0200) {
  373. printk(KERN_ERR "uvesafb: Sorry, pre-VBE 2.0 cards are "
  374. "not supported.\n");
  375. return -EINVAL;
  376. }
  377. if (!par->vbe_ib.mode_list_ptr) {
  378. printk(KERN_ERR "uvesafb: Missing mode list!\n");
  379. return -EINVAL;
  380. }
  381. printk(KERN_INFO "uvesafb: ");
  382. /*
  383. * Convert string pointers and the mode list pointer into
  384. * usable addresses. Print informational messages about the
  385. * video adapter and its vendor.
  386. */
  387. if (par->vbe_ib.oem_vendor_name_ptr)
  388. printk("%s, ",
  389. ((char *)task->buf) + par->vbe_ib.oem_vendor_name_ptr);
  390. if (par->vbe_ib.oem_product_name_ptr)
  391. printk("%s, ",
  392. ((char *)task->buf) + par->vbe_ib.oem_product_name_ptr);
  393. if (par->vbe_ib.oem_product_rev_ptr)
  394. printk("%s, ",
  395. ((char *)task->buf) + par->vbe_ib.oem_product_rev_ptr);
  396. if (par->vbe_ib.oem_string_ptr)
  397. printk("OEM: %s, ",
  398. ((char *)task->buf) + par->vbe_ib.oem_string_ptr);
  399. printk("VBE v%d.%d\n", ((par->vbe_ib.vbe_version & 0xff00) >> 8),
  400. par->vbe_ib.vbe_version & 0xff);
  401. return 0;
  402. }
  403. static int __devinit uvesafb_vbe_getmodes(struct uvesafb_ktask *task,
  404. struct uvesafb_par *par)
  405. {
  406. int off = 0, err;
  407. u16 *mode;
  408. par->vbe_modes_cnt = 0;
  409. /* Count available modes. */
  410. mode = (u16 *) (((u8 *)&par->vbe_ib) + par->vbe_ib.mode_list_ptr);
  411. while (*mode != 0xffff) {
  412. par->vbe_modes_cnt++;
  413. mode++;
  414. }
  415. par->vbe_modes = kzalloc(sizeof(struct vbe_mode_ib) *
  416. par->vbe_modes_cnt, GFP_KERNEL);
  417. if (!par->vbe_modes)
  418. return -ENOMEM;
  419. /* Get info about all available modes. */
  420. mode = (u16 *) (((u8 *)&par->vbe_ib) + par->vbe_ib.mode_list_ptr);
  421. while (*mode != 0xffff) {
  422. struct vbe_mode_ib *mib;
  423. uvesafb_reset(task);
  424. task->t.regs.eax = 0x4f01;
  425. task->t.regs.ecx = (u32) *mode;
  426. task->t.flags = TF_BUF_RET | TF_BUF_ESDI;
  427. task->t.buf_len = sizeof(struct vbe_mode_ib);
  428. task->buf = par->vbe_modes + off;
  429. err = uvesafb_exec(task);
  430. if (err || (task->t.regs.eax & 0xffff) != 0x004f) {
  431. printk(KERN_WARNING "uvesafb: Getting mode info block "
  432. "for mode 0x%x failed (eax=0x%x, err=%d)\n",
  433. *mode, (u32)task->t.regs.eax, err);
  434. mode++;
  435. par->vbe_modes_cnt--;
  436. continue;
  437. }
  438. mib = task->buf;
  439. mib->mode_id = *mode;
  440. /*
  441. * We only want modes that are supported with the current
  442. * hardware configuration, color, graphics and that have
  443. * support for the LFB.
  444. */
  445. if ((mib->mode_attr & VBE_MODE_MASK) == VBE_MODE_MASK &&
  446. mib->bits_per_pixel >= 8)
  447. off++;
  448. else
  449. par->vbe_modes_cnt--;
  450. mode++;
  451. mib->depth = mib->red_len + mib->green_len + mib->blue_len;
  452. /*
  453. * Handle 8bpp modes and modes with broken color component
  454. * lengths.
  455. */
  456. if (mib->depth == 0 || (mib->depth == 24 &&
  457. mib->bits_per_pixel == 32))
  458. mib->depth = mib->bits_per_pixel;
  459. }
  460. if (par->vbe_modes_cnt > 0)
  461. return 0;
  462. else
  463. return -EINVAL;
  464. }
  465. /*
  466. * The Protected Mode Interface is 32-bit x86 code, so we only run it on
  467. * x86 and not x86_64.
  468. */
  469. #ifdef CONFIG_X86_32
  470. static int __devinit uvesafb_vbe_getpmi(struct uvesafb_ktask *task,
  471. struct uvesafb_par *par)
  472. {
  473. int i, err;
  474. uvesafb_reset(task);
  475. task->t.regs.eax = 0x4f0a;
  476. task->t.regs.ebx = 0x0;
  477. err = uvesafb_exec(task);
  478. if ((task->t.regs.eax & 0xffff) != 0x4f || task->t.regs.es < 0xc000) {
  479. par->pmi_setpal = par->ypan = 0;
  480. } else {
  481. par->pmi_base = (u16 *)phys_to_virt(((u32)task->t.regs.es << 4)
  482. + task->t.regs.edi);
  483. par->pmi_start = (u8 *)par->pmi_base + par->pmi_base[1];
  484. par->pmi_pal = (u8 *)par->pmi_base + par->pmi_base[2];
  485. printk(KERN_INFO "uvesafb: protected mode interface info at "
  486. "%04x:%04x\n",
  487. (u16)task->t.regs.es, (u16)task->t.regs.edi);
  488. printk(KERN_INFO "uvesafb: pmi: set display start = %p, "
  489. "set palette = %p\n", par->pmi_start,
  490. par->pmi_pal);
  491. if (par->pmi_base[3]) {
  492. printk(KERN_INFO "uvesafb: pmi: ports = ");
  493. for (i = par->pmi_base[3]/2;
  494. par->pmi_base[i] != 0xffff; i++)
  495. printk("%x ", par->pmi_base[i]);
  496. printk("\n");
  497. if (par->pmi_base[i] != 0xffff) {
  498. printk(KERN_INFO "uvesafb: can't handle memory"
  499. " requests, pmi disabled\n");
  500. par->ypan = par->pmi_setpal = 0;
  501. }
  502. }
  503. }
  504. return 0;
  505. }
  506. #endif /* CONFIG_X86_32 */
  507. /*
  508. * Check whether a video mode is supported by the Video BIOS and is
  509. * compatible with the monitor limits.
  510. */
  511. static int __devinit uvesafb_is_valid_mode(struct fb_videomode *mode,
  512. struct fb_info *info)
  513. {
  514. if (info->monspecs.gtf) {
  515. fb_videomode_to_var(&info->var, mode);
  516. if (fb_validate_mode(&info->var, info))
  517. return 0;
  518. }
  519. if (uvesafb_vbe_find_mode(info->par, mode->xres, mode->yres, 8,
  520. UVESAFB_EXACT_RES) == -1)
  521. return 0;
  522. return 1;
  523. }
  524. static int __devinit uvesafb_vbe_getedid(struct uvesafb_ktask *task,
  525. struct fb_info *info)
  526. {
  527. struct uvesafb_par *par = info->par;
  528. int err = 0;
  529. if (noedid || par->vbe_ib.vbe_version < 0x0300)
  530. return -EINVAL;
  531. task->t.regs.eax = 0x4f15;
  532. task->t.regs.ebx = 0;
  533. task->t.regs.ecx = 0;
  534. task->t.buf_len = 0;
  535. task->t.flags = 0;
  536. err = uvesafb_exec(task);
  537. if ((task->t.regs.eax & 0xffff) != 0x004f || err)
  538. return -EINVAL;
  539. if ((task->t.regs.ebx & 0x3) == 3) {
  540. printk(KERN_INFO "uvesafb: VBIOS/hardware supports both "
  541. "DDC1 and DDC2 transfers\n");
  542. } else if ((task->t.regs.ebx & 0x3) == 2) {
  543. printk(KERN_INFO "uvesafb: VBIOS/hardware supports DDC2 "
  544. "transfers\n");
  545. } else if ((task->t.regs.ebx & 0x3) == 1) {
  546. printk(KERN_INFO "uvesafb: VBIOS/hardware supports DDC1 "
  547. "transfers\n");
  548. } else {
  549. printk(KERN_INFO "uvesafb: VBIOS/hardware doesn't support "
  550. "DDC transfers\n");
  551. return -EINVAL;
  552. }
  553. task->t.regs.eax = 0x4f15;
  554. task->t.regs.ebx = 1;
  555. task->t.regs.ecx = task->t.regs.edx = 0;
  556. task->t.flags = TF_BUF_RET | TF_BUF_ESDI;
  557. task->t.buf_len = EDID_LENGTH;
  558. task->buf = kzalloc(EDID_LENGTH, GFP_KERNEL);
  559. err = uvesafb_exec(task);
  560. if ((task->t.regs.eax & 0xffff) == 0x004f && !err) {
  561. fb_edid_to_monspecs(task->buf, &info->monspecs);
  562. if (info->monspecs.vfmax && info->monspecs.hfmax) {
  563. /*
  564. * If the maximum pixel clock wasn't specified in
  565. * the EDID block, set it to 300 MHz.
  566. */
  567. if (info->monspecs.dclkmax == 0)
  568. info->monspecs.dclkmax = 300 * 1000000;
  569. info->monspecs.gtf = 1;
  570. }
  571. } else {
  572. err = -EINVAL;
  573. }
  574. kfree(task->buf);
  575. return err;
  576. }
  577. static void __devinit uvesafb_vbe_getmonspecs(struct uvesafb_ktask *task,
  578. struct fb_info *info)
  579. {
  580. struct uvesafb_par *par = info->par;
  581. int i;
  582. memset(&info->monspecs, 0, sizeof(info->monspecs));
  583. /*
  584. * If we don't get all necessary data from the EDID block,
  585. * mark it as incompatible with the GTF and set nocrtc so
  586. * that we always use the default BIOS refresh rate.
  587. */
  588. if (uvesafb_vbe_getedid(task, info)) {
  589. info->monspecs.gtf = 0;
  590. par->nocrtc = 1;
  591. }
  592. /* Kernel command line overrides. */
  593. if (maxclk)
  594. info->monspecs.dclkmax = maxclk * 1000000;
  595. if (maxvf)
  596. info->monspecs.vfmax = maxvf;
  597. if (maxhf)
  598. info->monspecs.hfmax = maxhf * 1000;
  599. /*
  600. * In case DDC transfers are not supported, the user can provide
  601. * monitor limits manually. Lower limits are set to "safe" values.
  602. */
  603. if (info->monspecs.gtf == 0 && maxclk && maxvf && maxhf) {
  604. info->monspecs.dclkmin = 0;
  605. info->monspecs.vfmin = 60;
  606. info->monspecs.hfmin = 29000;
  607. info->monspecs.gtf = 1;
  608. par->nocrtc = 0;
  609. }
  610. if (info->monspecs.gtf)
  611. printk(KERN_INFO
  612. "uvesafb: monitor limits: vf = %d Hz, hf = %d kHz, "
  613. "clk = %d MHz\n", info->monspecs.vfmax,
  614. (int)(info->monspecs.hfmax / 1000),
  615. (int)(info->monspecs.dclkmax / 1000000));
  616. else
  617. printk(KERN_INFO "uvesafb: no monitor limits have been set, "
  618. "default refresh rate will be used\n");
  619. /* Add VBE modes to the modelist. */
  620. for (i = 0; i < par->vbe_modes_cnt; i++) {
  621. struct fb_var_screeninfo var;
  622. struct vbe_mode_ib *mode;
  623. struct fb_videomode vmode;
  624. mode = &par->vbe_modes[i];
  625. memset(&var, 0, sizeof(var));
  626. var.xres = mode->x_res;
  627. var.yres = mode->y_res;
  628. fb_get_mode(FB_VSYNCTIMINGS | FB_IGNOREMON, 60, &var, info);
  629. fb_var_to_videomode(&vmode, &var);
  630. fb_add_videomode(&vmode, &info->modelist);
  631. }
  632. /* Add valid VESA modes to our modelist. */
  633. for (i = 0; i < VESA_MODEDB_SIZE; i++) {
  634. if (uvesafb_is_valid_mode((struct fb_videomode *)
  635. &vesa_modes[i], info))
  636. fb_add_videomode(&vesa_modes[i], &info->modelist);
  637. }
  638. for (i = 0; i < info->monspecs.modedb_len; i++) {
  639. if (uvesafb_is_valid_mode(&info->monspecs.modedb[i], info))
  640. fb_add_videomode(&info->monspecs.modedb[i],
  641. &info->modelist);
  642. }
  643. return;
  644. }
  645. static void __devinit uvesafb_vbe_getstatesize(struct uvesafb_ktask *task,
  646. struct uvesafb_par *par)
  647. {
  648. int err;
  649. uvesafb_reset(task);
  650. /*
  651. * Get the VBE state buffer size. We want all available
  652. * hardware state data (CL = 0x0f).
  653. */
  654. task->t.regs.eax = 0x4f04;
  655. task->t.regs.ecx = 0x000f;
  656. task->t.regs.edx = 0x0000;
  657. task->t.flags = 0;
  658. err = uvesafb_exec(task);
  659. if (err || (task->t.regs.eax & 0xffff) != 0x004f) {
  660. printk(KERN_WARNING "uvesafb: VBE state buffer size "
  661. "cannot be determined (eax=0x%x, err=%d)\n",
  662. task->t.regs.eax, err);
  663. par->vbe_state_size = 0;
  664. return;
  665. }
  666. par->vbe_state_size = 64 * (task->t.regs.ebx & 0xffff);
  667. }
  668. static int __devinit uvesafb_vbe_init(struct fb_info *info)
  669. {
  670. struct uvesafb_ktask *task = NULL;
  671. struct uvesafb_par *par = info->par;
  672. int err;
  673. task = uvesafb_prep();
  674. if (!task)
  675. return -ENOMEM;
  676. err = uvesafb_vbe_getinfo(task, par);
  677. if (err)
  678. goto out;
  679. err = uvesafb_vbe_getmodes(task, par);
  680. if (err)
  681. goto out;
  682. par->nocrtc = nocrtc;
  683. #ifdef CONFIG_X86_32
  684. par->pmi_setpal = pmi_setpal;
  685. par->ypan = ypan;
  686. if (par->pmi_setpal || par->ypan) {
  687. if (__supported_pte_mask & _PAGE_NX) {
  688. par->pmi_setpal = par->ypan = 0;
  689. printk(KERN_WARNING "uvesafb: NX protection is actively."
  690. "We have better not to use the PMI.\n");
  691. } else {
  692. uvesafb_vbe_getpmi(task, par);
  693. }
  694. }
  695. #else
  696. /* The protected mode interface is not available on non-x86. */
  697. par->pmi_setpal = par->ypan = 0;
  698. #endif
  699. INIT_LIST_HEAD(&info->modelist);
  700. uvesafb_vbe_getmonspecs(task, info);
  701. uvesafb_vbe_getstatesize(task, par);
  702. out: uvesafb_free(task);
  703. return err;
  704. }
  705. static int __devinit uvesafb_vbe_init_mode(struct fb_info *info)
  706. {
  707. struct list_head *pos;
  708. struct fb_modelist *modelist;
  709. struct fb_videomode *mode;
  710. struct uvesafb_par *par = info->par;
  711. int i, modeid;
  712. /* Has the user requested a specific VESA mode? */
  713. if (vbemode) {
  714. for (i = 0; i < par->vbe_modes_cnt; i++) {
  715. if (par->vbe_modes[i].mode_id == vbemode) {
  716. modeid = i;
  717. uvesafb_setup_var(&info->var, info,
  718. &par->vbe_modes[modeid]);
  719. fb_get_mode(FB_VSYNCTIMINGS | FB_IGNOREMON, 60,
  720. &info->var, info);
  721. /*
  722. * With pixclock set to 0, the default BIOS
  723. * timings will be used in set_par().
  724. */
  725. info->var.pixclock = 0;
  726. goto gotmode;
  727. }
  728. }
  729. printk(KERN_INFO "uvesafb: requested VBE mode 0x%x is "
  730. "unavailable\n", vbemode);
  731. vbemode = 0;
  732. }
  733. /* Count the modes in the modelist */
  734. i = 0;
  735. list_for_each(pos, &info->modelist)
  736. i++;
  737. /*
  738. * Convert the modelist into a modedb so that we can use it with
  739. * fb_find_mode().
  740. */
  741. mode = kzalloc(i * sizeof(*mode), GFP_KERNEL);
  742. if (mode) {
  743. i = 0;
  744. list_for_each(pos, &info->modelist) {
  745. modelist = list_entry(pos, struct fb_modelist, list);
  746. mode[i] = modelist->mode;
  747. i++;
  748. }
  749. if (!mode_option)
  750. mode_option = UVESAFB_DEFAULT_MODE;
  751. i = fb_find_mode(&info->var, info, mode_option, mode, i,
  752. NULL, 8);
  753. kfree(mode);
  754. }
  755. /* fb_find_mode() failed */
  756. if (i == 0) {
  757. info->var.xres = 640;
  758. info->var.yres = 480;
  759. mode = (struct fb_videomode *)
  760. fb_find_best_mode(&info->var, &info->modelist);
  761. if (mode) {
  762. fb_videomode_to_var(&info->var, mode);
  763. } else {
  764. modeid = par->vbe_modes[0].mode_id;
  765. uvesafb_setup_var(&info->var, info,
  766. &par->vbe_modes[modeid]);
  767. fb_get_mode(FB_VSYNCTIMINGS | FB_IGNOREMON, 60,
  768. &info->var, info);
  769. goto gotmode;
  770. }
  771. }
  772. /* Look for a matching VBE mode. */
  773. modeid = uvesafb_vbe_find_mode(par, info->var.xres, info->var.yres,
  774. info->var.bits_per_pixel, UVESAFB_EXACT_RES);
  775. if (modeid == -1)
  776. return -EINVAL;
  777. uvesafb_setup_var(&info->var, info, &par->vbe_modes[modeid]);
  778. gotmode:
  779. /*
  780. * If we are not VBE3.0+ compliant, we're done -- the BIOS will
  781. * ignore our timings anyway.
  782. */
  783. if (par->vbe_ib.vbe_version < 0x0300 || par->nocrtc)
  784. fb_get_mode(FB_VSYNCTIMINGS | FB_IGNOREMON, 60,
  785. &info->var, info);
  786. return modeid;
  787. }
  788. static int uvesafb_setpalette(struct uvesafb_pal_entry *entries, int count,
  789. int start, struct fb_info *info)
  790. {
  791. struct uvesafb_ktask *task;
  792. #ifdef CONFIG_X86
  793. struct uvesafb_par *par = info->par;
  794. int i = par->mode_idx;
  795. #endif
  796. int err = 0;
  797. /*
  798. * We support palette modifications for 8 bpp modes only, so
  799. * there can never be more than 256 entries.
  800. */
  801. if (start + count > 256)
  802. return -EINVAL;
  803. #ifdef CONFIG_X86
  804. /* Use VGA registers if mode is VGA-compatible. */
  805. if (i >= 0 && i < par->vbe_modes_cnt &&
  806. par->vbe_modes[i].mode_attr & VBE_MODE_VGACOMPAT) {
  807. for (i = 0; i < count; i++) {
  808. outb_p(start + i, dac_reg);
  809. outb_p(entries[i].red, dac_val);
  810. outb_p(entries[i].green, dac_val);
  811. outb_p(entries[i].blue, dac_val);
  812. }
  813. }
  814. #ifdef CONFIG_X86_32
  815. else if (par->pmi_setpal) {
  816. __asm__ __volatile__(
  817. "call *(%%esi)"
  818. : /* no return value */
  819. : "a" (0x4f09), /* EAX */
  820. "b" (0), /* EBX */
  821. "c" (count), /* ECX */
  822. "d" (start), /* EDX */
  823. "D" (entries), /* EDI */
  824. "S" (&par->pmi_pal)); /* ESI */
  825. }
  826. #endif /* CONFIG_X86_32 */
  827. else
  828. #endif /* CONFIG_X86 */
  829. {
  830. task = uvesafb_prep();
  831. if (!task)
  832. return -ENOMEM;
  833. task->t.regs.eax = 0x4f09;
  834. task->t.regs.ebx = 0x0;
  835. task->t.regs.ecx = count;
  836. task->t.regs.edx = start;
  837. task->t.flags = TF_BUF_ESDI;
  838. task->t.buf_len = sizeof(struct uvesafb_pal_entry) * count;
  839. task->buf = entries;
  840. err = uvesafb_exec(task);
  841. if ((task->t.regs.eax & 0xffff) != 0x004f)
  842. err = 1;
  843. uvesafb_free(task);
  844. }
  845. return err;
  846. }
  847. static int uvesafb_setcolreg(unsigned regno, unsigned red, unsigned green,
  848. unsigned blue, unsigned transp,
  849. struct fb_info *info)
  850. {
  851. struct uvesafb_pal_entry entry;
  852. int shift = 16 - dac_width;
  853. int err = 0;
  854. if (regno >= info->cmap.len)
  855. return -EINVAL;
  856. if (info->var.bits_per_pixel == 8) {
  857. entry.red = red >> shift;
  858. entry.green = green >> shift;
  859. entry.blue = blue >> shift;
  860. entry.pad = 0;
  861. err = uvesafb_setpalette(&entry, 1, regno, info);
  862. } else if (regno < 16) {
  863. switch (info->var.bits_per_pixel) {
  864. case 16:
  865. if (info->var.red.offset == 10) {
  866. /* 1:5:5:5 */
  867. ((u32 *) (info->pseudo_palette))[regno] =
  868. ((red & 0xf800) >> 1) |
  869. ((green & 0xf800) >> 6) |
  870. ((blue & 0xf800) >> 11);
  871. } else {
  872. /* 0:5:6:5 */
  873. ((u32 *) (info->pseudo_palette))[regno] =
  874. ((red & 0xf800) ) |
  875. ((green & 0xfc00) >> 5) |
  876. ((blue & 0xf800) >> 11);
  877. }
  878. break;
  879. case 24:
  880. case 32:
  881. red >>= 8;
  882. green >>= 8;
  883. blue >>= 8;
  884. ((u32 *)(info->pseudo_palette))[regno] =
  885. (red << info->var.red.offset) |
  886. (green << info->var.green.offset) |
  887. (blue << info->var.blue.offset);
  888. break;
  889. }
  890. }
  891. return err;
  892. }
  893. static int uvesafb_setcmap(struct fb_cmap *cmap, struct fb_info *info)
  894. {
  895. struct uvesafb_pal_entry *entries;
  896. int shift = 16 - dac_width;
  897. int i, err = 0;
  898. if (info->var.bits_per_pixel == 8) {
  899. if (cmap->start + cmap->len > info->cmap.start +
  900. info->cmap.len || cmap->start < info->cmap.start)
  901. return -EINVAL;
  902. entries = kmalloc(sizeof(*entries) * cmap->len, GFP_KERNEL);
  903. if (!entries)
  904. return -ENOMEM;
  905. for (i = 0; i < cmap->len; i++) {
  906. entries[i].red = cmap->red[i] >> shift;
  907. entries[i].green = cmap->green[i] >> shift;
  908. entries[i].blue = cmap->blue[i] >> shift;
  909. entries[i].pad = 0;
  910. }
  911. err = uvesafb_setpalette(entries, cmap->len, cmap->start, info);
  912. kfree(entries);
  913. } else {
  914. /*
  915. * For modes with bpp > 8, we only set the pseudo palette in
  916. * the fb_info struct. We rely on uvesafb_setcolreg to do all
  917. * sanity checking.
  918. */
  919. for (i = 0; i < cmap->len; i++) {
  920. err |= uvesafb_setcolreg(cmap->start + i, cmap->red[i],
  921. cmap->green[i], cmap->blue[i],
  922. 0, info);
  923. }
  924. }
  925. return err;
  926. }
  927. static int uvesafb_pan_display(struct fb_var_screeninfo *var,
  928. struct fb_info *info)
  929. {
  930. #ifdef CONFIG_X86_32
  931. int offset;
  932. struct uvesafb_par *par = info->par;
  933. offset = (var->yoffset * info->fix.line_length + var->xoffset) / 4;
  934. /*
  935. * It turns out it's not the best idea to do panning via vm86,
  936. * so we only allow it if we have a PMI.
  937. */
  938. if (par->pmi_start) {
  939. __asm__ __volatile__(
  940. "call *(%%edi)"
  941. : /* no return value */
  942. : "a" (0x4f07), /* EAX */
  943. "b" (0), /* EBX */
  944. "c" (offset), /* ECX */
  945. "d" (offset >> 16), /* EDX */
  946. "D" (&par->pmi_start)); /* EDI */
  947. }
  948. #endif
  949. return 0;
  950. }
  951. static int uvesafb_blank(int blank, struct fb_info *info)
  952. {
  953. struct uvesafb_ktask *task;
  954. int err = 1;
  955. #ifdef CONFIG_X86
  956. struct uvesafb_par *par = info->par;
  957. if (par->vbe_ib.capabilities & VBE_CAP_VGACOMPAT) {
  958. int loop = 10000;
  959. u8 seq = 0, crtc17 = 0;
  960. if (blank == FB_BLANK_POWERDOWN) {
  961. seq = 0x20;
  962. crtc17 = 0x00;
  963. err = 0;
  964. } else {
  965. seq = 0x00;
  966. crtc17 = 0x80;
  967. err = (blank == FB_BLANK_UNBLANK) ? 0 : -EINVAL;
  968. }
  969. vga_wseq(NULL, 0x00, 0x01);
  970. seq |= vga_rseq(NULL, 0x01) & ~0x20;
  971. vga_wseq(NULL, 0x00, seq);
  972. crtc17 |= vga_rcrt(NULL, 0x17) & ~0x80;
  973. while (loop--);
  974. vga_wcrt(NULL, 0x17, crtc17);
  975. vga_wseq(NULL, 0x00, 0x03);
  976. } else
  977. #endif /* CONFIG_X86 */
  978. {
  979. task = uvesafb_prep();
  980. if (!task)
  981. return -ENOMEM;
  982. task->t.regs.eax = 0x4f10;
  983. switch (blank) {
  984. case FB_BLANK_UNBLANK:
  985. task->t.regs.ebx = 0x0001;
  986. break;
  987. case FB_BLANK_NORMAL:
  988. task->t.regs.ebx = 0x0101; /* standby */
  989. break;
  990. case FB_BLANK_POWERDOWN:
  991. task->t.regs.ebx = 0x0401; /* powerdown */
  992. break;
  993. default:
  994. goto out;
  995. }
  996. err = uvesafb_exec(task);
  997. if (err || (task->t.regs.eax & 0xffff) != 0x004f)
  998. err = 1;
  999. out: uvesafb_free(task);
  1000. }
  1001. return err;
  1002. }
  1003. static int uvesafb_open(struct fb_info *info, int user)
  1004. {
  1005. struct uvesafb_par *par = info->par;
  1006. int cnt = atomic_read(&par->ref_count);
  1007. if (!cnt && par->vbe_state_size)
  1008. par->vbe_state_orig = uvesafb_vbe_state_save(par);
  1009. atomic_inc(&par->ref_count);
  1010. return 0;
  1011. }
  1012. static int uvesafb_release(struct fb_info *info, int user)
  1013. {
  1014. struct uvesafb_ktask *task = NULL;
  1015. struct uvesafb_par *par = info->par;
  1016. int cnt = atomic_read(&par->ref_count);
  1017. if (!cnt)
  1018. return -EINVAL;
  1019. if (cnt != 1)
  1020. goto out;
  1021. task = uvesafb_prep();
  1022. if (!task)
  1023. goto out;
  1024. /* First, try to set the standard 80x25 text mode. */
  1025. task->t.regs.eax = 0x0003;
  1026. uvesafb_exec(task);
  1027. /*
  1028. * Now try to restore whatever hardware state we might have
  1029. * saved when the fb device was first opened.
  1030. */
  1031. uvesafb_vbe_state_restore(par, par->vbe_state_orig);
  1032. out:
  1033. atomic_dec(&par->ref_count);
  1034. if (task)
  1035. uvesafb_free(task);
  1036. return 0;
  1037. }
  1038. static int uvesafb_set_par(struct fb_info *info)
  1039. {
  1040. struct uvesafb_par *par = info->par;
  1041. struct uvesafb_ktask *task = NULL;
  1042. struct vbe_crtc_ib *crtc = NULL;
  1043. struct vbe_mode_ib *mode = NULL;
  1044. int i, err = 0, depth = info->var.bits_per_pixel;
  1045. if (depth > 8 && depth != 32)
  1046. depth = info->var.red.length + info->var.green.length +
  1047. info->var.blue.length;
  1048. i = uvesafb_vbe_find_mode(par, info->var.xres, info->var.yres, depth,
  1049. UVESAFB_EXACT_RES | UVESAFB_EXACT_DEPTH);
  1050. if (i >= 0)
  1051. mode = &par->vbe_modes[i];
  1052. else
  1053. return -EINVAL;
  1054. task = uvesafb_prep();
  1055. if (!task)
  1056. return -ENOMEM;
  1057. setmode:
  1058. task->t.regs.eax = 0x4f02;
  1059. task->t.regs.ebx = mode->mode_id | 0x4000; /* use LFB */
  1060. if (par->vbe_ib.vbe_version >= 0x0300 && !par->nocrtc &&
  1061. info->var.pixclock != 0) {
  1062. task->t.regs.ebx |= 0x0800; /* use CRTC data */
  1063. task->t.flags = TF_BUF_ESDI;
  1064. crtc = kzalloc(sizeof(struct vbe_crtc_ib), GFP_KERNEL);
  1065. if (!crtc) {
  1066. err = -ENOMEM;
  1067. goto out;
  1068. }
  1069. crtc->horiz_start = info->var.xres + info->var.right_margin;
  1070. crtc->horiz_end = crtc->horiz_start + info->var.hsync_len;
  1071. crtc->horiz_total = crtc->horiz_end + info->var.left_margin;
  1072. crtc->vert_start = info->var.yres + info->var.lower_margin;
  1073. crtc->vert_end = crtc->vert_start + info->var.vsync_len;
  1074. crtc->vert_total = crtc->vert_end + info->var.upper_margin;
  1075. crtc->pixel_clock = PICOS2KHZ(info->var.pixclock) * 1000;
  1076. crtc->refresh_rate = (u16)(100 * (crtc->pixel_clock /
  1077. (crtc->vert_total * crtc->horiz_total)));
  1078. if (info->var.vmode & FB_VMODE_DOUBLE)
  1079. crtc->flags |= 0x1;
  1080. if (info->var.vmode & FB_VMODE_INTERLACED)
  1081. crtc->flags |= 0x2;
  1082. if (!(info->var.sync & FB_SYNC_HOR_HIGH_ACT))
  1083. crtc->flags |= 0x4;
  1084. if (!(info->var.sync & FB_SYNC_VERT_HIGH_ACT))
  1085. crtc->flags |= 0x8;
  1086. memcpy(&par->crtc, crtc, sizeof(*crtc));
  1087. } else {
  1088. memset(&par->crtc, 0, sizeof(*crtc));
  1089. }
  1090. task->t.buf_len = sizeof(struct vbe_crtc_ib);
  1091. task->buf = &par->crtc;
  1092. err = uvesafb_exec(task);
  1093. if (err || (task->t.regs.eax & 0xffff) != 0x004f) {
  1094. /*
  1095. * The mode switch might have failed because we tried to
  1096. * use our own timings. Try again with the default timings.
  1097. */
  1098. if (crtc != NULL) {
  1099. printk(KERN_WARNING "uvesafb: mode switch failed "
  1100. "(eax=0x%x, err=%d). Trying again with "
  1101. "default timings.\n", task->t.regs.eax, err);
  1102. uvesafb_reset(task);
  1103. kfree(crtc);
  1104. crtc = NULL;
  1105. info->var.pixclock = 0;
  1106. goto setmode;
  1107. } else {
  1108. printk(KERN_ERR "uvesafb: mode switch failed (eax="
  1109. "0x%x, err=%d)\n", task->t.regs.eax, err);
  1110. err = -EINVAL;
  1111. goto out;
  1112. }
  1113. }
  1114. par->mode_idx = i;
  1115. /* For 8bpp modes, always try to set the DAC to 8 bits. */
  1116. if (par->vbe_ib.capabilities & VBE_CAP_CAN_SWITCH_DAC &&
  1117. mode->bits_per_pixel <= 8) {
  1118. uvesafb_reset(task);
  1119. task->t.regs.eax = 0x4f08;
  1120. task->t.regs.ebx = 0x0800;
  1121. err = uvesafb_exec(task);
  1122. if (err || (task->t.regs.eax & 0xffff) != 0x004f ||
  1123. ((task->t.regs.ebx & 0xff00) >> 8) != 8) {
  1124. dac_width = 6;
  1125. } else {
  1126. dac_width = 8;
  1127. }
  1128. }
  1129. info->fix.visual = (info->var.bits_per_pixel == 8) ?
  1130. FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
  1131. info->fix.line_length = mode->bytes_per_scan_line;
  1132. out: if (crtc != NULL)
  1133. kfree(crtc);
  1134. uvesafb_free(task);
  1135. return err;
  1136. }
  1137. static void uvesafb_check_limits(struct fb_var_screeninfo *var,
  1138. struct fb_info *info)
  1139. {
  1140. const struct fb_videomode *mode;
  1141. struct uvesafb_par *par = info->par;
  1142. /*
  1143. * If pixclock is set to 0, then we're using default BIOS timings
  1144. * and thus don't have to perform any checks here.
  1145. */
  1146. if (!var->pixclock)
  1147. return;
  1148. if (par->vbe_ib.vbe_version < 0x0300) {
  1149. fb_get_mode(FB_VSYNCTIMINGS | FB_IGNOREMON, 60, var, info);
  1150. return;
  1151. }
  1152. if (!fb_validate_mode(var, info))
  1153. return;
  1154. mode = fb_find_best_mode(var, &info->modelist);
  1155. if (mode) {
  1156. if (mode->xres == var->xres && mode->yres == var->yres &&
  1157. !(mode->vmode & (FB_VMODE_INTERLACED | FB_VMODE_DOUBLE))) {
  1158. fb_videomode_to_var(var, mode);
  1159. return;
  1160. }
  1161. }
  1162. if (info->monspecs.gtf && !fb_get_mode(FB_MAXTIMINGS, 0, var, info))
  1163. return;
  1164. /* Use default refresh rate */
  1165. var->pixclock = 0;
  1166. }
  1167. static int uvesafb_check_var(struct fb_var_screeninfo *var,
  1168. struct fb_info *info)
  1169. {
  1170. struct uvesafb_par *par = info->par;
  1171. struct vbe_mode_ib *mode = NULL;
  1172. int match = -1;
  1173. int depth = var->red.length + var->green.length + var->blue.length;
  1174. /*
  1175. * Various apps will use bits_per_pixel to set the color depth,
  1176. * which is theoretically incorrect, but which we'll try to handle
  1177. * here.
  1178. */
  1179. if (depth == 0 || abs(depth - var->bits_per_pixel) >= 8)
  1180. depth = var->bits_per_pixel;
  1181. match = uvesafb_vbe_find_mode(par, var->xres, var->yres, depth,
  1182. UVESAFB_EXACT_RES);
  1183. if (match == -1)
  1184. return -EINVAL;
  1185. mode = &par->vbe_modes[match];
  1186. uvesafb_setup_var(var, info, mode);
  1187. /*
  1188. * Check whether we have remapped enough memory for this mode.
  1189. * We might be called at an early stage, when we haven't remapped
  1190. * any memory yet, in which case we simply skip the check.
  1191. */
  1192. if (var->yres * mode->bytes_per_scan_line > info->fix.smem_len
  1193. && info->fix.smem_len)
  1194. return -EINVAL;
  1195. if ((var->vmode & FB_VMODE_DOUBLE) &&
  1196. !(par->vbe_modes[match].mode_attr & 0x100))
  1197. var->vmode &= ~FB_VMODE_DOUBLE;
  1198. if ((var->vmode & FB_VMODE_INTERLACED) &&
  1199. !(par->vbe_modes[match].mode_attr & 0x200))
  1200. var->vmode &= ~FB_VMODE_INTERLACED;
  1201. uvesafb_check_limits(var, info);
  1202. var->xres_virtual = var->xres;
  1203. var->yres_virtual = (par->ypan) ?
  1204. info->fix.smem_len / mode->bytes_per_scan_line :
  1205. var->yres;
  1206. return 0;
  1207. }
  1208. static struct fb_ops uvesafb_ops = {
  1209. .owner = THIS_MODULE,
  1210. .fb_open = uvesafb_open,
  1211. .fb_release = uvesafb_release,
  1212. .fb_setcolreg = uvesafb_setcolreg,
  1213. .fb_setcmap = uvesafb_setcmap,
  1214. .fb_pan_display = uvesafb_pan_display,
  1215. .fb_blank = uvesafb_blank,
  1216. .fb_fillrect = cfb_fillrect,
  1217. .fb_copyarea = cfb_copyarea,
  1218. .fb_imageblit = cfb_imageblit,
  1219. .fb_check_var = uvesafb_check_var,
  1220. .fb_set_par = uvesafb_set_par,
  1221. };
  1222. static void __devinit uvesafb_init_info(struct fb_info *info,
  1223. struct vbe_mode_ib *mode)
  1224. {
  1225. unsigned int size_vmode;
  1226. unsigned int size_remap;
  1227. unsigned int size_total;
  1228. struct uvesafb_par *par = info->par;
  1229. int i, h;
  1230. info->pseudo_palette = ((u8 *)info->par + sizeof(struct uvesafb_par));
  1231. info->fix = uvesafb_fix;
  1232. info->fix.ypanstep = par->ypan ? 1 : 0;
  1233. info->fix.ywrapstep = (par->ypan > 1) ? 1 : 0;
  1234. /* Disable blanking if the user requested so. */
  1235. if (!blank)
  1236. info->fbops->fb_blank = NULL;
  1237. /*
  1238. * Find out how much IO memory is required for the mode with
  1239. * the highest resolution.
  1240. */
  1241. size_remap = 0;
  1242. for (i = 0; i < par->vbe_modes_cnt; i++) {
  1243. h = par->vbe_modes[i].bytes_per_scan_line *
  1244. par->vbe_modes[i].y_res;
  1245. if (h > size_remap)
  1246. size_remap = h;
  1247. }
  1248. size_remap *= 2;
  1249. /*
  1250. * size_vmode -- that is the amount of memory needed for the
  1251. * used video mode, i.e. the minimum amount of
  1252. * memory we need.
  1253. */
  1254. if (mode != NULL) {
  1255. size_vmode = info->var.yres * mode->bytes_per_scan_line;
  1256. } else {
  1257. size_vmode = info->var.yres * info->var.xres *
  1258. ((info->var.bits_per_pixel + 7) >> 3);
  1259. }
  1260. /*
  1261. * size_total -- all video memory we have. Used for mtrr
  1262. * entries, resource allocation and bounds
  1263. * checking.
  1264. */
  1265. size_total = par->vbe_ib.total_memory * 65536;
  1266. if (vram_total)
  1267. size_total = vram_total * 1024 * 1024;
  1268. if (size_total < size_vmode)
  1269. size_total = size_vmode;
  1270. /*
  1271. * size_remap -- the amount of video memory we are going to
  1272. * use for vesafb. With modern cards it is no
  1273. * option to simply use size_total as th
  1274. * wastes plenty of kernel address space.
  1275. */
  1276. if (vram_remap)
  1277. size_remap = vram_remap * 1024 * 1024;
  1278. if (size_remap < size_vmode)
  1279. size_remap = size_vmode;
  1280. if (size_remap > size_total)
  1281. size_remap = size_total;
  1282. info->fix.smem_len = size_remap;
  1283. info->fix.smem_start = mode->phys_base_ptr;
  1284. /*
  1285. * We have to set yres_virtual here because when setup_var() was
  1286. * called, smem_len wasn't defined yet.
  1287. */
  1288. info->var.yres_virtual = info->fix.smem_len /
  1289. mode->bytes_per_scan_line;
  1290. if (par->ypan && info->var.yres_virtual > info->var.yres) {
  1291. printk(KERN_INFO "uvesafb: scrolling: %s "
  1292. "using protected mode interface, "
  1293. "yres_virtual=%d\n",
  1294. (par->ypan > 1) ? "ywrap" : "ypan",
  1295. info->var.yres_virtual);
  1296. } else {
  1297. printk(KERN_INFO "uvesafb: scrolling: redraw\n");
  1298. info->var.yres_virtual = info->var.yres;
  1299. par->ypan = 0;
  1300. }
  1301. info->flags = FBINFO_FLAG_DEFAULT |
  1302. (par->ypan ? FBINFO_HWACCEL_YPAN : 0);
  1303. if (!par->ypan)
  1304. info->fbops->fb_pan_display = NULL;
  1305. }
  1306. static void __devinit uvesafb_init_mtrr(struct fb_info *info)
  1307. {
  1308. #ifdef CONFIG_MTRR
  1309. if (mtrr && !(info->fix.smem_start & (PAGE_SIZE - 1))) {
  1310. int temp_size = info->fix.smem_len;
  1311. unsigned int type = 0;
  1312. switch (mtrr) {
  1313. case 1:
  1314. type = MTRR_TYPE_UNCACHABLE;
  1315. break;
  1316. case 2:
  1317. type = MTRR_TYPE_WRBACK;
  1318. break;
  1319. case 3:
  1320. type = MTRR_TYPE_WRCOMB;
  1321. break;
  1322. case 4:
  1323. type = MTRR_TYPE_WRTHROUGH;
  1324. break;
  1325. default:
  1326. type = 0;
  1327. break;
  1328. }
  1329. if (type) {
  1330. int rc;
  1331. /* Find the largest power-of-two */
  1332. temp_size = roundup_pow_of_two(temp_size);
  1333. /* Try and find a power of two to add */
  1334. do {
  1335. rc = mtrr_add(info->fix.smem_start,
  1336. temp_size, type, 1);
  1337. temp_size >>= 1;
  1338. } while (temp_size >= PAGE_SIZE && rc == -EINVAL);
  1339. }
  1340. }
  1341. #endif /* CONFIG_MTRR */
  1342. }
  1343. static void __devinit uvesafb_ioremap(struct fb_info *info)
  1344. {
  1345. #ifdef CONFIG_X86
  1346. switch (mtrr) {
  1347. case 1: /* uncachable */
  1348. info->screen_base = ioremap_nocache(info->fix.smem_start, info->fix.smem_len);
  1349. break;
  1350. case 2: /* write-back */
  1351. info->screen_base = ioremap_cache(info->fix.smem_start, info->fix.smem_len);
  1352. break;
  1353. case 3: /* write-combining */
  1354. info->screen_base = ioremap_wc(info->fix.smem_start, info->fix.smem_len);
  1355. break;
  1356. case 4: /* write-through */
  1357. default:
  1358. info->screen_base = ioremap(info->fix.smem_start, info->fix.smem_len);
  1359. break;
  1360. }
  1361. #else
  1362. info->screen_base = ioremap(info->fix.smem_start, info->fix.smem_len);
  1363. #endif /* CONFIG_X86 */
  1364. }
  1365. static ssize_t uvesafb_show_vbe_ver(struct device *dev,
  1366. struct device_attribute *attr, char *buf)
  1367. {
  1368. struct fb_info *info = platform_get_drvdata(to_platform_device(dev));
  1369. struct uvesafb_par *par = info->par;
  1370. return snprintf(buf, PAGE_SIZE, "%.4x\n", par->vbe_ib.vbe_version);
  1371. }
  1372. static DEVICE_ATTR(vbe_version, S_IRUGO, uvesafb_show_vbe_ver, NULL);
  1373. static ssize_t uvesafb_show_vbe_modes(struct device *dev,
  1374. struct device_attribute *attr, char *buf)
  1375. {
  1376. struct fb_info *info = platform_get_drvdata(to_platform_device(dev));
  1377. struct uvesafb_par *par = info->par;
  1378. int ret = 0, i;
  1379. for (i = 0; i < par->vbe_modes_cnt && ret < PAGE_SIZE; i++) {
  1380. ret += snprintf(buf + ret, PAGE_SIZE - ret,
  1381. "%dx%d-%d, 0x%.4x\n",
  1382. par->vbe_modes[i].x_res, par->vbe_modes[i].y_res,
  1383. par->vbe_modes[i].depth, par->vbe_modes[i].mode_id);
  1384. }
  1385. return ret;
  1386. }
  1387. static DEVICE_ATTR(vbe_modes, S_IRUGO, uvesafb_show_vbe_modes, NULL);
  1388. static ssize_t uvesafb_show_vendor(struct device *dev,
  1389. struct device_attribute *attr, char *buf)
  1390. {
  1391. struct fb_info *info = platform_get_drvdata(to_platform_device(dev));
  1392. struct uvesafb_par *par = info->par;
  1393. if (par->vbe_ib.oem_vendor_name_ptr)
  1394. return snprintf(buf, PAGE_SIZE, "%s\n", (char *)
  1395. (&par->vbe_ib) + par->vbe_ib.oem_vendor_name_ptr);
  1396. else
  1397. return 0;
  1398. }
  1399. static DEVICE_ATTR(oem_vendor, S_IRUGO, uvesafb_show_vendor, NULL);
  1400. static ssize_t uvesafb_show_product_name(struct device *dev,
  1401. struct device_attribute *attr, char *buf)
  1402. {
  1403. struct fb_info *info = platform_get_drvdata(to_platform_device(dev));
  1404. struct uvesafb_par *par = info->par;
  1405. if (par->vbe_ib.oem_product_name_ptr)
  1406. return snprintf(buf, PAGE_SIZE, "%s\n", (char *)
  1407. (&par->vbe_ib) + par->vbe_ib.oem_product_name_ptr);
  1408. else
  1409. return 0;
  1410. }
  1411. static DEVICE_ATTR(oem_product_name, S_IRUGO, uvesafb_show_product_name, NULL);
  1412. static ssize_t uvesafb_show_product_rev(struct device *dev,
  1413. struct device_attribute *attr, char *buf)
  1414. {
  1415. struct fb_info *info = platform_get_drvdata(to_platform_device(dev));
  1416. struct uvesafb_par *par = info->par;
  1417. if (par->vbe_ib.oem_product_rev_ptr)
  1418. return snprintf(buf, PAGE_SIZE, "%s\n", (char *)
  1419. (&par->vbe_ib) + par->vbe_ib.oem_product_rev_ptr);
  1420. else
  1421. return 0;
  1422. }
  1423. static DEVICE_ATTR(oem_product_rev, S_IRUGO, uvesafb_show_product_rev, NULL);
  1424. static ssize_t uvesafb_show_oem_string(struct device *dev,
  1425. struct device_attribute *attr, char *buf)
  1426. {
  1427. struct fb_info *info = platform_get_drvdata(to_platform_device(dev));
  1428. struct uvesafb_par *par = info->par;
  1429. if (par->vbe_ib.oem_string_ptr)
  1430. return snprintf(buf, PAGE_SIZE, "%s\n",
  1431. (char *)(&par->vbe_ib) + par->vbe_ib.oem_string_ptr);
  1432. else
  1433. return 0;
  1434. }
  1435. static DEVICE_ATTR(oem_string, S_IRUGO, uvesafb_show_oem_string, NULL);
  1436. static ssize_t uvesafb_show_nocrtc(struct device *dev,
  1437. struct device_attribute *attr, char *buf)
  1438. {
  1439. struct fb_info *info = platform_get_drvdata(to_platform_device(dev));
  1440. struct uvesafb_par *par = info->par;
  1441. return snprintf(buf, PAGE_SIZE, "%d\n", par->nocrtc);
  1442. }
  1443. static ssize_t uvesafb_store_nocrtc(struct device *dev,
  1444. struct device_attribute *attr, const char *buf, size_t count)
  1445. {
  1446. struct fb_info *info = platform_get_drvdata(to_platform_device(dev));
  1447. struct uvesafb_par *par = info->par;
  1448. if (count > 0) {
  1449. if (buf[0] == '0')
  1450. par->nocrtc = 0;
  1451. else
  1452. par->nocrtc = 1;
  1453. }
  1454. return count;
  1455. }
  1456. static DEVICE_ATTR(nocrtc, S_IRUGO | S_IWUSR, uvesafb_show_nocrtc,
  1457. uvesafb_store_nocrtc);
  1458. static struct attribute *uvesafb_dev_attrs[] = {
  1459. &dev_attr_vbe_version.attr,
  1460. &dev_attr_vbe_modes.attr,
  1461. &dev_attr_oem_vendor.attr,
  1462. &dev_attr_oem_product_name.attr,
  1463. &dev_attr_oem_product_rev.attr,
  1464. &dev_attr_oem_string.attr,
  1465. &dev_attr_nocrtc.attr,
  1466. NULL,
  1467. };
  1468. static struct attribute_group uvesafb_dev_attgrp = {
  1469. .name = NULL,
  1470. .attrs = uvesafb_dev_attrs,
  1471. };
  1472. static int __devinit uvesafb_probe(struct platform_device *dev)
  1473. {
  1474. struct fb_info *info;
  1475. struct vbe_mode_ib *mode = NULL;
  1476. struct uvesafb_par *par;
  1477. int err = 0, i;
  1478. info = framebuffer_alloc(sizeof(*par) + sizeof(u32) * 256, &dev->dev);
  1479. if (!info)
  1480. return -ENOMEM;
  1481. par = info->par;
  1482. err = uvesafb_vbe_init(info);
  1483. if (err) {
  1484. printk(KERN_ERR "uvesafb: vbe_init() failed with %d\n", err);
  1485. goto out;
  1486. }
  1487. info->fbops = &uvesafb_ops;
  1488. i = uvesafb_vbe_init_mode(info);
  1489. if (i < 0) {
  1490. err = -EINVAL;
  1491. goto out;
  1492. } else {
  1493. mode = &par->vbe_modes[i];
  1494. }
  1495. if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) {
  1496. err = -ENXIO;
  1497. goto out;
  1498. }
  1499. uvesafb_init_info(info, mode);
  1500. if (!request_region(0x3c0, 32, "uvesafb")) {
  1501. printk(KERN_ERR "uvesafb: request region 0x3c0-0x3e0 failed\n");
  1502. err = -EIO;
  1503. goto out_mode;
  1504. }
  1505. if (!request_mem_region(info->fix.smem_start, info->fix.smem_len,
  1506. "uvesafb")) {
  1507. printk(KERN_ERR "uvesafb: cannot reserve video memory at "
  1508. "0x%lx\n", info->fix.smem_start);
  1509. err = -EIO;
  1510. goto out_reg;
  1511. }
  1512. uvesafb_init_mtrr(info);
  1513. uvesafb_ioremap(info);
  1514. if (!info->screen_base) {
  1515. printk(KERN_ERR
  1516. "uvesafb: abort, cannot ioremap 0x%x bytes of video "
  1517. "memory at 0x%lx\n",
  1518. info->fix.smem_len, info->fix.smem_start);
  1519. err = -EIO;
  1520. goto out_mem;
  1521. }
  1522. platform_set_drvdata(dev, info);
  1523. if (register_framebuffer(info) < 0) {
  1524. printk(KERN_ERR
  1525. "uvesafb: failed to register framebuffer device\n");
  1526. err = -EINVAL;
  1527. goto out_unmap;
  1528. }
  1529. printk(KERN_INFO "uvesafb: framebuffer at 0x%lx, mapped to 0x%p, "
  1530. "using %dk, total %dk\n", info->fix.smem_start,
  1531. info->screen_base, info->fix.smem_len/1024,
  1532. par->vbe_ib.total_memory * 64);
  1533. printk(KERN_INFO "fb%d: %s frame buffer device\n", info->node,
  1534. info->fix.id);
  1535. err = sysfs_create_group(&dev->dev.kobj, &uvesafb_dev_attgrp);
  1536. if (err != 0)
  1537. printk(KERN_WARNING "fb%d: failed to register attributes\n",
  1538. info->node);
  1539. return 0;
  1540. out_unmap:
  1541. iounmap(info->screen_base);
  1542. out_mem:
  1543. release_mem_region(info->fix.smem_start, info->fix.smem_len);
  1544. out_reg:
  1545. release_region(0x3c0, 32);
  1546. out_mode:
  1547. if (!list_empty(&info->modelist))
  1548. fb_destroy_modelist(&info->modelist);
  1549. fb_destroy_modedb(info->monspecs.modedb);
  1550. fb_dealloc_cmap(&info->cmap);
  1551. out:
  1552. if (par->vbe_modes)
  1553. kfree(par->vbe_modes);
  1554. framebuffer_release(info);
  1555. return err;
  1556. }
  1557. static int uvesafb_remove(struct platform_device *dev)
  1558. {
  1559. struct fb_info *info = platform_get_drvdata(dev);
  1560. if (info) {
  1561. struct uvesafb_par *par = info->par;
  1562. sysfs_remove_group(&dev->dev.kobj, &uvesafb_dev_attgrp);
  1563. unregister_framebuffer(info);
  1564. release_region(0x3c0, 32);
  1565. iounmap(info->screen_base);
  1566. release_mem_region(info->fix.smem_start, info->fix.smem_len);
  1567. fb_destroy_modedb(info->monspecs.modedb);
  1568. fb_dealloc_cmap(&info->cmap);
  1569. if (par) {
  1570. if (par->vbe_modes)
  1571. kfree(par->vbe_modes);
  1572. if (par->vbe_state_orig)
  1573. kfree(par->vbe_state_orig);
  1574. if (par->vbe_state_saved)
  1575. kfree(par->vbe_state_saved);
  1576. }
  1577. framebuffer_release(info);
  1578. }
  1579. return 0;
  1580. }
  1581. static struct platform_driver uvesafb_driver = {
  1582. .probe = uvesafb_probe,
  1583. .remove = uvesafb_remove,
  1584. .driver = {
  1585. .name = "uvesafb",
  1586. },
  1587. };
  1588. static struct platform_device *uvesafb_device;
  1589. #ifndef MODULE
  1590. static int __devinit uvesafb_setup(char *options)
  1591. {
  1592. char *this_opt;
  1593. if (!options || !*options)
  1594. return 0;
  1595. while ((this_opt = strsep(&options, ",")) != NULL) {
  1596. if (!*this_opt) continue;
  1597. if (!strcmp(this_opt, "redraw"))
  1598. ypan = 0;
  1599. else if (!strcmp(this_opt, "ypan"))
  1600. ypan = 1;
  1601. else if (!strcmp(this_opt, "ywrap"))
  1602. ypan = 2;
  1603. else if (!strcmp(this_opt, "vgapal"))
  1604. pmi_setpal = 0;
  1605. else if (!strcmp(this_opt, "pmipal"))
  1606. pmi_setpal = 1;
  1607. else if (!strncmp(this_opt, "mtrr:", 5))
  1608. mtrr = simple_strtoul(this_opt+5, NULL, 0);
  1609. else if (!strcmp(this_opt, "nomtrr"))
  1610. mtrr = 0;
  1611. else if (!strcmp(this_opt, "nocrtc"))
  1612. nocrtc = 1;
  1613. else if (!strcmp(this_opt, "noedid"))
  1614. noedid = 1;
  1615. else if (!strcmp(this_opt, "noblank"))
  1616. blank = 0;
  1617. else if (!strncmp(this_opt, "vtotal:", 7))
  1618. vram_total = simple_strtoul(this_opt + 7, NULL, 0);
  1619. else if (!strncmp(this_opt, "vremap:", 7))
  1620. vram_remap = simple_strtoul(this_opt + 7, NULL, 0);
  1621. else if (!strncmp(this_opt, "maxhf:", 6))
  1622. maxhf = simple_strtoul(this_opt + 6, NULL, 0);
  1623. else if (!strncmp(this_opt, "maxvf:", 6))
  1624. maxvf = simple_strtoul(this_opt + 6, NULL, 0);
  1625. else if (!strncmp(this_opt, "maxclk:", 7))
  1626. maxclk = simple_strtoul(this_opt + 7, NULL, 0);
  1627. else if (!strncmp(this_opt, "vbemode:", 8))
  1628. vbemode = simple_strtoul(this_opt + 8, NULL, 0);
  1629. else if (this_opt[0] >= '0' && this_opt[0] <= '9') {
  1630. mode_option = this_opt;
  1631. } else {
  1632. printk(KERN_WARNING
  1633. "uvesafb: unrecognized option %s\n", this_opt);
  1634. }
  1635. }
  1636. return 0;
  1637. }
  1638. #endif /* !MODULE */
  1639. static ssize_t show_v86d(struct device_driver *dev, char *buf)
  1640. {
  1641. return snprintf(buf, PAGE_SIZE, "%s\n", v86d_path);
  1642. }
  1643. static ssize_t store_v86d(struct device_driver *dev, const char *buf,
  1644. size_t count)
  1645. {
  1646. strncpy(v86d_path, buf, PATH_MAX);
  1647. return count;
  1648. }
  1649. static DRIVER_ATTR(v86d, S_IRUGO | S_IWUSR, show_v86d, store_v86d);
  1650. static int __devinit uvesafb_init(void)
  1651. {
  1652. int err;
  1653. #ifndef MODULE
  1654. char *option = NULL;
  1655. if (fb_get_options("uvesafb", &option))
  1656. return -ENODEV;
  1657. uvesafb_setup(option);
  1658. #endif
  1659. err = cn_add_callback(&uvesafb_cn_id, "uvesafb", uvesafb_cn_callback);
  1660. if (err)
  1661. return err;
  1662. err = platform_driver_register(&uvesafb_driver);
  1663. if (!err) {
  1664. uvesafb_device = platform_device_alloc("uvesafb", 0);
  1665. if (uvesafb_device)
  1666. err = platform_device_add(uvesafb_device);
  1667. else
  1668. err = -ENOMEM;
  1669. if (err) {
  1670. platform_device_put(uvesafb_device);
  1671. platform_driver_unregister(&uvesafb_driver);
  1672. cn_del_callback(&uvesafb_cn_id);
  1673. return err;
  1674. }
  1675. err = driver_create_file(&uvesafb_driver.driver,
  1676. &driver_attr_v86d);
  1677. if (err) {
  1678. printk(KERN_WARNING "uvesafb: failed to register "
  1679. "attributes\n");
  1680. err = 0;
  1681. }
  1682. }
  1683. return err;
  1684. }
  1685. module_init(uvesafb_init);
  1686. static void __devexit uvesafb_exit(void)
  1687. {
  1688. struct uvesafb_ktask *task;
  1689. if (v86d_started) {
  1690. task = uvesafb_prep();
  1691. if (task) {
  1692. task->t.flags = TF_EXIT;
  1693. uvesafb_exec(task);
  1694. uvesafb_free(task);
  1695. }
  1696. }
  1697. cn_del_callback(&uvesafb_cn_id);
  1698. driver_remove_file(&uvesafb_driver.driver, &driver_attr_v86d);
  1699. platform_device_unregister(uvesafb_device);
  1700. platform_driver_unregister(&uvesafb_driver);
  1701. }
  1702. module_exit(uvesafb_exit);
  1703. static int param_set_scroll(const char *val, const struct kernel_param *kp)
  1704. {
  1705. ypan = 0;
  1706. if (!strcmp(val, "redraw"))
  1707. ypan = 0;
  1708. else if (!strcmp(val, "ypan"))
  1709. ypan = 1;
  1710. else if (!strcmp(val, "ywrap"))
  1711. ypan = 2;
  1712. else
  1713. return -EINVAL;
  1714. return 0;
  1715. }
  1716. static struct kernel_param_ops param_ops_scroll = {
  1717. .set = param_set_scroll,
  1718. };
  1719. #define param_check_scroll(name, p) __param_check(name, p, void)
  1720. module_param_named(scroll, ypan, scroll, 0);
  1721. MODULE_PARM_DESC(scroll,
  1722. "Scrolling mode, set to 'redraw', 'ypan', or 'ywrap'");
  1723. module_param_named(vgapal, pmi_setpal, invbool, 0);
  1724. MODULE_PARM_DESC(vgapal, "Set palette using VGA registers");
  1725. module_param_named(pmipal, pmi_setpal, bool, 0);
  1726. MODULE_PARM_DESC(pmipal, "Set palette using PMI calls");
  1727. module_param(mtrr, uint, 0);
  1728. MODULE_PARM_DESC(mtrr,
  1729. "Memory Type Range Registers setting. Use 0 to disable.");
  1730. module_param(blank, bool, 0);
  1731. MODULE_PARM_DESC(blank, "Enable hardware blanking");
  1732. module_param(nocrtc, bool, 0);
  1733. MODULE_PARM_DESC(nocrtc, "Ignore CRTC timings when setting modes");
  1734. module_param(noedid, bool, 0);
  1735. MODULE_PARM_DESC(noedid,
  1736. "Ignore EDID-provided monitor limits when setting modes");
  1737. module_param(vram_remap, uint, 0);
  1738. MODULE_PARM_DESC(vram_remap, "Set amount of video memory to be used [MiB]");
  1739. module_param(vram_total, uint, 0);
  1740. MODULE_PARM_DESC(vram_total, "Set total amount of video memoery [MiB]");
  1741. module_param(maxclk, ushort, 0);
  1742. MODULE_PARM_DESC(maxclk, "Maximum pixelclock [MHz], overrides EDID data");
  1743. module_param(maxhf, ushort, 0);
  1744. MODULE_PARM_DESC(maxhf,
  1745. "Maximum horizontal frequency [kHz], overrides EDID data");
  1746. module_param(maxvf, ushort, 0);
  1747. MODULE_PARM_DESC(maxvf,
  1748. "Maximum vertical frequency [Hz], overrides EDID data");
  1749. module_param(mode_option, charp, 0);
  1750. MODULE_PARM_DESC(mode_option,
  1751. "Specify initial video mode as \"<xres>x<yres>[-<bpp>][@<refresh>]\"");
  1752. module_param(vbemode, ushort, 0);
  1753. MODULE_PARM_DESC(vbemode,
  1754. "VBE mode number to set, overrides the 'mode' option");
  1755. module_param_string(v86d, v86d_path, PATH_MAX, 0660);
  1756. MODULE_PARM_DESC(v86d, "Path to the v86d userspace helper.");
  1757. MODULE_LICENSE("GPL");
  1758. MODULE_AUTHOR("Michal Januszewski <spock@gentoo.org>");
  1759. MODULE_DESCRIPTION("Framebuffer driver for VBE2.0+ compliant graphics boards");