dispc.c 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323
  1. /*
  2. * linux/drivers/video/omap2/dss/dispc.c
  3. *
  4. * Copyright (C) 2009 Nokia Corporation
  5. * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
  6. *
  7. * Some code and ideas taken from drivers/video/omap/ driver
  8. * by Imre Deak.
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License version 2 as published by
  12. * the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful, but WITHOUT
  15. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  16. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  17. * more details.
  18. *
  19. * You should have received a copy of the GNU General Public License along with
  20. * this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. #define DSS_SUBSYS_NAME "DISPC"
  23. #include <linux/kernel.h>
  24. #include <linux/dma-mapping.h>
  25. #include <linux/vmalloc.h>
  26. #include <linux/export.h>
  27. #include <linux/clk.h>
  28. #include <linux/io.h>
  29. #include <linux/jiffies.h>
  30. #include <linux/seq_file.h>
  31. #include <linux/delay.h>
  32. #include <linux/workqueue.h>
  33. #include <linux/hardirq.h>
  34. #include <linux/interrupt.h>
  35. #include <linux/platform_device.h>
  36. #include <linux/pm_runtime.h>
  37. #include <linux/sizes.h>
  38. #include <video/omapdss.h>
  39. #include "dss.h"
  40. #include "dss_features.h"
  41. #include "dispc.h"
  42. /* DISPC */
  43. #define DISPC_SZ_REGS SZ_4K
  44. #define DISPC_IRQ_MASK_ERROR (DISPC_IRQ_GFX_FIFO_UNDERFLOW | \
  45. DISPC_IRQ_OCP_ERR | \
  46. DISPC_IRQ_VID1_FIFO_UNDERFLOW | \
  47. DISPC_IRQ_VID2_FIFO_UNDERFLOW | \
  48. DISPC_IRQ_SYNC_LOST | \
  49. DISPC_IRQ_SYNC_LOST_DIGIT)
  50. #define DISPC_MAX_NR_ISRS 8
  51. struct omap_dispc_isr_data {
  52. omap_dispc_isr_t isr;
  53. void *arg;
  54. u32 mask;
  55. };
  56. enum omap_burst_size {
  57. BURST_SIZE_X2 = 0,
  58. BURST_SIZE_X4 = 1,
  59. BURST_SIZE_X8 = 2,
  60. };
  61. #define REG_GET(idx, start, end) \
  62. FLD_GET(dispc_read_reg(idx), start, end)
  63. #define REG_FLD_MOD(idx, val, start, end) \
  64. dispc_write_reg(idx, FLD_MOD(dispc_read_reg(idx), val, start, end))
  65. struct dispc_irq_stats {
  66. unsigned long last_reset;
  67. unsigned irq_count;
  68. unsigned irqs[32];
  69. };
  70. struct dispc_features {
  71. u8 sw_start;
  72. u8 fp_start;
  73. u8 bp_start;
  74. u16 sw_max;
  75. u16 vp_max;
  76. u16 hp_max;
  77. u8 mgr_width_start;
  78. u8 mgr_height_start;
  79. u16 mgr_width_max;
  80. u16 mgr_height_max;
  81. int (*calc_scaling) (enum omap_plane plane,
  82. const struct omap_video_timings *mgr_timings,
  83. u16 width, u16 height, u16 out_width, u16 out_height,
  84. enum omap_color_mode color_mode, bool *five_taps,
  85. int *x_predecim, int *y_predecim, int *decim_x, int *decim_y,
  86. u16 pos_x, unsigned long *core_clk, bool mem_to_mem);
  87. unsigned long (*calc_core_clk) (enum omap_plane plane,
  88. u16 width, u16 height, u16 out_width, u16 out_height,
  89. bool mem_to_mem);
  90. u8 num_fifos;
  91. /* swap GFX & WB fifos */
  92. bool gfx_fifo_workaround:1;
  93. /* no DISPC_IRQ_FRAMEDONETV on this SoC */
  94. bool no_framedone_tv:1;
  95. };
  96. #define DISPC_MAX_NR_FIFOS 5
  97. static struct {
  98. struct platform_device *pdev;
  99. void __iomem *base;
  100. int ctx_loss_cnt;
  101. int irq;
  102. struct clk *dss_clk;
  103. u32 fifo_size[DISPC_MAX_NR_FIFOS];
  104. /* maps which plane is using a fifo. fifo-id -> plane-id */
  105. int fifo_assignment[DISPC_MAX_NR_FIFOS];
  106. spinlock_t irq_lock;
  107. u32 irq_error_mask;
  108. struct omap_dispc_isr_data registered_isr[DISPC_MAX_NR_ISRS];
  109. u32 error_irqs;
  110. struct work_struct error_work;
  111. bool ctx_valid;
  112. u32 ctx[DISPC_SZ_REGS / sizeof(u32)];
  113. const struct dispc_features *feat;
  114. #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
  115. spinlock_t irq_stats_lock;
  116. struct dispc_irq_stats irq_stats;
  117. #endif
  118. } dispc;
  119. enum omap_color_component {
  120. /* used for all color formats for OMAP3 and earlier
  121. * and for RGB and Y color component on OMAP4
  122. */
  123. DISPC_COLOR_COMPONENT_RGB_Y = 1 << 0,
  124. /* used for UV component for
  125. * OMAP_DSS_COLOR_YUV2, OMAP_DSS_COLOR_UYVY, OMAP_DSS_COLOR_NV12
  126. * color formats on OMAP4
  127. */
  128. DISPC_COLOR_COMPONENT_UV = 1 << 1,
  129. };
  130. enum mgr_reg_fields {
  131. DISPC_MGR_FLD_ENABLE,
  132. DISPC_MGR_FLD_STNTFT,
  133. DISPC_MGR_FLD_GO,
  134. DISPC_MGR_FLD_TFTDATALINES,
  135. DISPC_MGR_FLD_STALLMODE,
  136. DISPC_MGR_FLD_TCKENABLE,
  137. DISPC_MGR_FLD_TCKSELECTION,
  138. DISPC_MGR_FLD_CPR,
  139. DISPC_MGR_FLD_FIFOHANDCHECK,
  140. /* used to maintain a count of the above fields */
  141. DISPC_MGR_FLD_NUM,
  142. };
  143. static const struct {
  144. const char *name;
  145. u32 vsync_irq;
  146. u32 framedone_irq;
  147. u32 sync_lost_irq;
  148. struct reg_field reg_desc[DISPC_MGR_FLD_NUM];
  149. } mgr_desc[] = {
  150. [OMAP_DSS_CHANNEL_LCD] = {
  151. .name = "LCD",
  152. .vsync_irq = DISPC_IRQ_VSYNC,
  153. .framedone_irq = DISPC_IRQ_FRAMEDONE,
  154. .sync_lost_irq = DISPC_IRQ_SYNC_LOST,
  155. .reg_desc = {
  156. [DISPC_MGR_FLD_ENABLE] = { DISPC_CONTROL, 0, 0 },
  157. [DISPC_MGR_FLD_STNTFT] = { DISPC_CONTROL, 3, 3 },
  158. [DISPC_MGR_FLD_GO] = { DISPC_CONTROL, 5, 5 },
  159. [DISPC_MGR_FLD_TFTDATALINES] = { DISPC_CONTROL, 9, 8 },
  160. [DISPC_MGR_FLD_STALLMODE] = { DISPC_CONTROL, 11, 11 },
  161. [DISPC_MGR_FLD_TCKENABLE] = { DISPC_CONFIG, 10, 10 },
  162. [DISPC_MGR_FLD_TCKSELECTION] = { DISPC_CONFIG, 11, 11 },
  163. [DISPC_MGR_FLD_CPR] = { DISPC_CONFIG, 15, 15 },
  164. [DISPC_MGR_FLD_FIFOHANDCHECK] = { DISPC_CONFIG, 16, 16 },
  165. },
  166. },
  167. [OMAP_DSS_CHANNEL_DIGIT] = {
  168. .name = "DIGIT",
  169. .vsync_irq = DISPC_IRQ_EVSYNC_ODD | DISPC_IRQ_EVSYNC_EVEN,
  170. .framedone_irq = DISPC_IRQ_FRAMEDONETV,
  171. .sync_lost_irq = DISPC_IRQ_SYNC_LOST_DIGIT,
  172. .reg_desc = {
  173. [DISPC_MGR_FLD_ENABLE] = { DISPC_CONTROL, 1, 1 },
  174. [DISPC_MGR_FLD_STNTFT] = { },
  175. [DISPC_MGR_FLD_GO] = { DISPC_CONTROL, 6, 6 },
  176. [DISPC_MGR_FLD_TFTDATALINES] = { },
  177. [DISPC_MGR_FLD_STALLMODE] = { },
  178. [DISPC_MGR_FLD_TCKENABLE] = { DISPC_CONFIG, 12, 12 },
  179. [DISPC_MGR_FLD_TCKSELECTION] = { DISPC_CONFIG, 13, 13 },
  180. [DISPC_MGR_FLD_CPR] = { },
  181. [DISPC_MGR_FLD_FIFOHANDCHECK] = { DISPC_CONFIG, 16, 16 },
  182. },
  183. },
  184. [OMAP_DSS_CHANNEL_LCD2] = {
  185. .name = "LCD2",
  186. .vsync_irq = DISPC_IRQ_VSYNC2,
  187. .framedone_irq = DISPC_IRQ_FRAMEDONE2,
  188. .sync_lost_irq = DISPC_IRQ_SYNC_LOST2,
  189. .reg_desc = {
  190. [DISPC_MGR_FLD_ENABLE] = { DISPC_CONTROL2, 0, 0 },
  191. [DISPC_MGR_FLD_STNTFT] = { DISPC_CONTROL2, 3, 3 },
  192. [DISPC_MGR_FLD_GO] = { DISPC_CONTROL2, 5, 5 },
  193. [DISPC_MGR_FLD_TFTDATALINES] = { DISPC_CONTROL2, 9, 8 },
  194. [DISPC_MGR_FLD_STALLMODE] = { DISPC_CONTROL2, 11, 11 },
  195. [DISPC_MGR_FLD_TCKENABLE] = { DISPC_CONFIG2, 10, 10 },
  196. [DISPC_MGR_FLD_TCKSELECTION] = { DISPC_CONFIG2, 11, 11 },
  197. [DISPC_MGR_FLD_CPR] = { DISPC_CONFIG2, 15, 15 },
  198. [DISPC_MGR_FLD_FIFOHANDCHECK] = { DISPC_CONFIG2, 16, 16 },
  199. },
  200. },
  201. [OMAP_DSS_CHANNEL_LCD3] = {
  202. .name = "LCD3",
  203. .vsync_irq = DISPC_IRQ_VSYNC3,
  204. .framedone_irq = DISPC_IRQ_FRAMEDONE3,
  205. .sync_lost_irq = DISPC_IRQ_SYNC_LOST3,
  206. .reg_desc = {
  207. [DISPC_MGR_FLD_ENABLE] = { DISPC_CONTROL3, 0, 0 },
  208. [DISPC_MGR_FLD_STNTFT] = { DISPC_CONTROL3, 3, 3 },
  209. [DISPC_MGR_FLD_GO] = { DISPC_CONTROL3, 5, 5 },
  210. [DISPC_MGR_FLD_TFTDATALINES] = { DISPC_CONTROL3, 9, 8 },
  211. [DISPC_MGR_FLD_STALLMODE] = { DISPC_CONTROL3, 11, 11 },
  212. [DISPC_MGR_FLD_TCKENABLE] = { DISPC_CONFIG3, 10, 10 },
  213. [DISPC_MGR_FLD_TCKSELECTION] = { DISPC_CONFIG3, 11, 11 },
  214. [DISPC_MGR_FLD_CPR] = { DISPC_CONFIG3, 15, 15 },
  215. [DISPC_MGR_FLD_FIFOHANDCHECK] = { DISPC_CONFIG3, 16, 16 },
  216. },
  217. },
  218. };
  219. struct color_conv_coef {
  220. int ry, rcr, rcb, gy, gcr, gcb, by, bcr, bcb;
  221. int full_range;
  222. };
  223. static void _omap_dispc_set_irqs(void);
  224. static unsigned long dispc_plane_pclk_rate(enum omap_plane plane);
  225. static unsigned long dispc_plane_lclk_rate(enum omap_plane plane);
  226. static inline void dispc_write_reg(const u16 idx, u32 val)
  227. {
  228. __raw_writel(val, dispc.base + idx);
  229. }
  230. static inline u32 dispc_read_reg(const u16 idx)
  231. {
  232. return __raw_readl(dispc.base + idx);
  233. }
  234. static u32 mgr_fld_read(enum omap_channel channel, enum mgr_reg_fields regfld)
  235. {
  236. const struct reg_field rfld = mgr_desc[channel].reg_desc[regfld];
  237. return REG_GET(rfld.reg, rfld.high, rfld.low);
  238. }
  239. static void mgr_fld_write(enum omap_channel channel,
  240. enum mgr_reg_fields regfld, int val) {
  241. const struct reg_field rfld = mgr_desc[channel].reg_desc[regfld];
  242. REG_FLD_MOD(rfld.reg, val, rfld.high, rfld.low);
  243. }
  244. #define SR(reg) \
  245. dispc.ctx[DISPC_##reg / sizeof(u32)] = dispc_read_reg(DISPC_##reg)
  246. #define RR(reg) \
  247. dispc_write_reg(DISPC_##reg, dispc.ctx[DISPC_##reg / sizeof(u32)])
  248. static void dispc_save_context(void)
  249. {
  250. int i, j;
  251. DSSDBG("dispc_save_context\n");
  252. SR(IRQENABLE);
  253. SR(CONTROL);
  254. SR(CONFIG);
  255. SR(LINE_NUMBER);
  256. if (dss_has_feature(FEAT_ALPHA_FIXED_ZORDER) ||
  257. dss_has_feature(FEAT_ALPHA_FREE_ZORDER))
  258. SR(GLOBAL_ALPHA);
  259. if (dss_has_feature(FEAT_MGR_LCD2)) {
  260. SR(CONTROL2);
  261. SR(CONFIG2);
  262. }
  263. if (dss_has_feature(FEAT_MGR_LCD3)) {
  264. SR(CONTROL3);
  265. SR(CONFIG3);
  266. }
  267. for (i = 0; i < dss_feat_get_num_mgrs(); i++) {
  268. SR(DEFAULT_COLOR(i));
  269. SR(TRANS_COLOR(i));
  270. SR(SIZE_MGR(i));
  271. if (i == OMAP_DSS_CHANNEL_DIGIT)
  272. continue;
  273. SR(TIMING_H(i));
  274. SR(TIMING_V(i));
  275. SR(POL_FREQ(i));
  276. SR(DIVISORo(i));
  277. SR(DATA_CYCLE1(i));
  278. SR(DATA_CYCLE2(i));
  279. SR(DATA_CYCLE3(i));
  280. if (dss_has_feature(FEAT_CPR)) {
  281. SR(CPR_COEF_R(i));
  282. SR(CPR_COEF_G(i));
  283. SR(CPR_COEF_B(i));
  284. }
  285. }
  286. for (i = 0; i < dss_feat_get_num_ovls(); i++) {
  287. SR(OVL_BA0(i));
  288. SR(OVL_BA1(i));
  289. SR(OVL_POSITION(i));
  290. SR(OVL_SIZE(i));
  291. SR(OVL_ATTRIBUTES(i));
  292. SR(OVL_FIFO_THRESHOLD(i));
  293. SR(OVL_ROW_INC(i));
  294. SR(OVL_PIXEL_INC(i));
  295. if (dss_has_feature(FEAT_PRELOAD))
  296. SR(OVL_PRELOAD(i));
  297. if (i == OMAP_DSS_GFX) {
  298. SR(OVL_WINDOW_SKIP(i));
  299. SR(OVL_TABLE_BA(i));
  300. continue;
  301. }
  302. SR(OVL_FIR(i));
  303. SR(OVL_PICTURE_SIZE(i));
  304. SR(OVL_ACCU0(i));
  305. SR(OVL_ACCU1(i));
  306. for (j = 0; j < 8; j++)
  307. SR(OVL_FIR_COEF_H(i, j));
  308. for (j = 0; j < 8; j++)
  309. SR(OVL_FIR_COEF_HV(i, j));
  310. for (j = 0; j < 5; j++)
  311. SR(OVL_CONV_COEF(i, j));
  312. if (dss_has_feature(FEAT_FIR_COEF_V)) {
  313. for (j = 0; j < 8; j++)
  314. SR(OVL_FIR_COEF_V(i, j));
  315. }
  316. if (dss_has_feature(FEAT_HANDLE_UV_SEPARATE)) {
  317. SR(OVL_BA0_UV(i));
  318. SR(OVL_BA1_UV(i));
  319. SR(OVL_FIR2(i));
  320. SR(OVL_ACCU2_0(i));
  321. SR(OVL_ACCU2_1(i));
  322. for (j = 0; j < 8; j++)
  323. SR(OVL_FIR_COEF_H2(i, j));
  324. for (j = 0; j < 8; j++)
  325. SR(OVL_FIR_COEF_HV2(i, j));
  326. for (j = 0; j < 8; j++)
  327. SR(OVL_FIR_COEF_V2(i, j));
  328. }
  329. if (dss_has_feature(FEAT_ATTR2))
  330. SR(OVL_ATTRIBUTES2(i));
  331. }
  332. if (dss_has_feature(FEAT_CORE_CLK_DIV))
  333. SR(DIVISOR);
  334. dispc.ctx_loss_cnt = dss_get_ctx_loss_count(&dispc.pdev->dev);
  335. dispc.ctx_valid = true;
  336. DSSDBG("context saved, ctx_loss_count %d\n", dispc.ctx_loss_cnt);
  337. }
  338. static void dispc_restore_context(void)
  339. {
  340. int i, j, ctx;
  341. DSSDBG("dispc_restore_context\n");
  342. if (!dispc.ctx_valid)
  343. return;
  344. ctx = dss_get_ctx_loss_count(&dispc.pdev->dev);
  345. if (ctx >= 0 && ctx == dispc.ctx_loss_cnt)
  346. return;
  347. DSSDBG("ctx_loss_count: saved %d, current %d\n",
  348. dispc.ctx_loss_cnt, ctx);
  349. /*RR(IRQENABLE);*/
  350. /*RR(CONTROL);*/
  351. RR(CONFIG);
  352. RR(LINE_NUMBER);
  353. if (dss_has_feature(FEAT_ALPHA_FIXED_ZORDER) ||
  354. dss_has_feature(FEAT_ALPHA_FREE_ZORDER))
  355. RR(GLOBAL_ALPHA);
  356. if (dss_has_feature(FEAT_MGR_LCD2))
  357. RR(CONFIG2);
  358. if (dss_has_feature(FEAT_MGR_LCD3))
  359. RR(CONFIG3);
  360. for (i = 0; i < dss_feat_get_num_mgrs(); i++) {
  361. RR(DEFAULT_COLOR(i));
  362. RR(TRANS_COLOR(i));
  363. RR(SIZE_MGR(i));
  364. if (i == OMAP_DSS_CHANNEL_DIGIT)
  365. continue;
  366. RR(TIMING_H(i));
  367. RR(TIMING_V(i));
  368. RR(POL_FREQ(i));
  369. RR(DIVISORo(i));
  370. RR(DATA_CYCLE1(i));
  371. RR(DATA_CYCLE2(i));
  372. RR(DATA_CYCLE3(i));
  373. if (dss_has_feature(FEAT_CPR)) {
  374. RR(CPR_COEF_R(i));
  375. RR(CPR_COEF_G(i));
  376. RR(CPR_COEF_B(i));
  377. }
  378. }
  379. for (i = 0; i < dss_feat_get_num_ovls(); i++) {
  380. RR(OVL_BA0(i));
  381. RR(OVL_BA1(i));
  382. RR(OVL_POSITION(i));
  383. RR(OVL_SIZE(i));
  384. RR(OVL_ATTRIBUTES(i));
  385. RR(OVL_FIFO_THRESHOLD(i));
  386. RR(OVL_ROW_INC(i));
  387. RR(OVL_PIXEL_INC(i));
  388. if (dss_has_feature(FEAT_PRELOAD))
  389. RR(OVL_PRELOAD(i));
  390. if (i == OMAP_DSS_GFX) {
  391. RR(OVL_WINDOW_SKIP(i));
  392. RR(OVL_TABLE_BA(i));
  393. continue;
  394. }
  395. RR(OVL_FIR(i));
  396. RR(OVL_PICTURE_SIZE(i));
  397. RR(OVL_ACCU0(i));
  398. RR(OVL_ACCU1(i));
  399. for (j = 0; j < 8; j++)
  400. RR(OVL_FIR_COEF_H(i, j));
  401. for (j = 0; j < 8; j++)
  402. RR(OVL_FIR_COEF_HV(i, j));
  403. for (j = 0; j < 5; j++)
  404. RR(OVL_CONV_COEF(i, j));
  405. if (dss_has_feature(FEAT_FIR_COEF_V)) {
  406. for (j = 0; j < 8; j++)
  407. RR(OVL_FIR_COEF_V(i, j));
  408. }
  409. if (dss_has_feature(FEAT_HANDLE_UV_SEPARATE)) {
  410. RR(OVL_BA0_UV(i));
  411. RR(OVL_BA1_UV(i));
  412. RR(OVL_FIR2(i));
  413. RR(OVL_ACCU2_0(i));
  414. RR(OVL_ACCU2_1(i));
  415. for (j = 0; j < 8; j++)
  416. RR(OVL_FIR_COEF_H2(i, j));
  417. for (j = 0; j < 8; j++)
  418. RR(OVL_FIR_COEF_HV2(i, j));
  419. for (j = 0; j < 8; j++)
  420. RR(OVL_FIR_COEF_V2(i, j));
  421. }
  422. if (dss_has_feature(FEAT_ATTR2))
  423. RR(OVL_ATTRIBUTES2(i));
  424. }
  425. if (dss_has_feature(FEAT_CORE_CLK_DIV))
  426. RR(DIVISOR);
  427. /* enable last, because LCD & DIGIT enable are here */
  428. RR(CONTROL);
  429. if (dss_has_feature(FEAT_MGR_LCD2))
  430. RR(CONTROL2);
  431. if (dss_has_feature(FEAT_MGR_LCD3))
  432. RR(CONTROL3);
  433. /* clear spurious SYNC_LOST_DIGIT interrupts */
  434. dispc_clear_irqstatus(DISPC_IRQ_SYNC_LOST_DIGIT);
  435. /*
  436. * enable last so IRQs won't trigger before
  437. * the context is fully restored
  438. */
  439. RR(IRQENABLE);
  440. DSSDBG("context restored\n");
  441. }
  442. #undef SR
  443. #undef RR
  444. int dispc_runtime_get(void)
  445. {
  446. int r;
  447. DSSDBG("dispc_runtime_get\n");
  448. r = pm_runtime_get_sync(&dispc.pdev->dev);
  449. WARN_ON(r < 0);
  450. return r < 0 ? r : 0;
  451. }
  452. void dispc_runtime_put(void)
  453. {
  454. int r;
  455. DSSDBG("dispc_runtime_put\n");
  456. r = pm_runtime_put_sync(&dispc.pdev->dev);
  457. WARN_ON(r < 0 && r != -ENOSYS);
  458. }
  459. u32 dispc_mgr_get_vsync_irq(enum omap_channel channel)
  460. {
  461. return mgr_desc[channel].vsync_irq;
  462. }
  463. u32 dispc_mgr_get_framedone_irq(enum omap_channel channel)
  464. {
  465. if (channel == OMAP_DSS_CHANNEL_DIGIT && dispc.feat->no_framedone_tv)
  466. return 0;
  467. return mgr_desc[channel].framedone_irq;
  468. }
  469. u32 dispc_mgr_get_sync_lost_irq(enum omap_channel channel)
  470. {
  471. return mgr_desc[channel].sync_lost_irq;
  472. }
  473. u32 dispc_wb_get_framedone_irq(void)
  474. {
  475. return DISPC_IRQ_FRAMEDONEWB;
  476. }
  477. bool dispc_mgr_go_busy(enum omap_channel channel)
  478. {
  479. return mgr_fld_read(channel, DISPC_MGR_FLD_GO) == 1;
  480. }
  481. void dispc_mgr_go(enum omap_channel channel)
  482. {
  483. bool enable_bit, go_bit;
  484. /* if the channel is not enabled, we don't need GO */
  485. enable_bit = mgr_fld_read(channel, DISPC_MGR_FLD_ENABLE) == 1;
  486. if (!enable_bit)
  487. return;
  488. go_bit = mgr_fld_read(channel, DISPC_MGR_FLD_GO) == 1;
  489. if (go_bit) {
  490. DSSERR("GO bit not down for channel %d\n", channel);
  491. return;
  492. }
  493. DSSDBG("GO %s\n", mgr_desc[channel].name);
  494. mgr_fld_write(channel, DISPC_MGR_FLD_GO, 1);
  495. }
  496. bool dispc_wb_go_busy(void)
  497. {
  498. return REG_GET(DISPC_CONTROL2, 6, 6) == 1;
  499. }
  500. void dispc_wb_go(void)
  501. {
  502. enum omap_plane plane = OMAP_DSS_WB;
  503. bool enable, go;
  504. enable = REG_GET(DISPC_OVL_ATTRIBUTES(plane), 0, 0) == 1;
  505. if (!enable)
  506. return;
  507. go = REG_GET(DISPC_CONTROL2, 6, 6) == 1;
  508. if (go) {
  509. DSSERR("GO bit not down for WB\n");
  510. return;
  511. }
  512. REG_FLD_MOD(DISPC_CONTROL2, 1, 6, 6);
  513. }
  514. static void dispc_ovl_write_firh_reg(enum omap_plane plane, int reg, u32 value)
  515. {
  516. dispc_write_reg(DISPC_OVL_FIR_COEF_H(plane, reg), value);
  517. }
  518. static void dispc_ovl_write_firhv_reg(enum omap_plane plane, int reg, u32 value)
  519. {
  520. dispc_write_reg(DISPC_OVL_FIR_COEF_HV(plane, reg), value);
  521. }
  522. static void dispc_ovl_write_firv_reg(enum omap_plane plane, int reg, u32 value)
  523. {
  524. dispc_write_reg(DISPC_OVL_FIR_COEF_V(plane, reg), value);
  525. }
  526. static void dispc_ovl_write_firh2_reg(enum omap_plane plane, int reg, u32 value)
  527. {
  528. BUG_ON(plane == OMAP_DSS_GFX);
  529. dispc_write_reg(DISPC_OVL_FIR_COEF_H2(plane, reg), value);
  530. }
  531. static void dispc_ovl_write_firhv2_reg(enum omap_plane plane, int reg,
  532. u32 value)
  533. {
  534. BUG_ON(plane == OMAP_DSS_GFX);
  535. dispc_write_reg(DISPC_OVL_FIR_COEF_HV2(plane, reg), value);
  536. }
  537. static void dispc_ovl_write_firv2_reg(enum omap_plane plane, int reg, u32 value)
  538. {
  539. BUG_ON(plane == OMAP_DSS_GFX);
  540. dispc_write_reg(DISPC_OVL_FIR_COEF_V2(plane, reg), value);
  541. }
  542. static void dispc_ovl_set_scale_coef(enum omap_plane plane, int fir_hinc,
  543. int fir_vinc, int five_taps,
  544. enum omap_color_component color_comp)
  545. {
  546. const struct dispc_coef *h_coef, *v_coef;
  547. int i;
  548. h_coef = dispc_ovl_get_scale_coef(fir_hinc, true);
  549. v_coef = dispc_ovl_get_scale_coef(fir_vinc, five_taps);
  550. for (i = 0; i < 8; i++) {
  551. u32 h, hv;
  552. h = FLD_VAL(h_coef[i].hc0_vc00, 7, 0)
  553. | FLD_VAL(h_coef[i].hc1_vc0, 15, 8)
  554. | FLD_VAL(h_coef[i].hc2_vc1, 23, 16)
  555. | FLD_VAL(h_coef[i].hc3_vc2, 31, 24);
  556. hv = FLD_VAL(h_coef[i].hc4_vc22, 7, 0)
  557. | FLD_VAL(v_coef[i].hc1_vc0, 15, 8)
  558. | FLD_VAL(v_coef[i].hc2_vc1, 23, 16)
  559. | FLD_VAL(v_coef[i].hc3_vc2, 31, 24);
  560. if (color_comp == DISPC_COLOR_COMPONENT_RGB_Y) {
  561. dispc_ovl_write_firh_reg(plane, i, h);
  562. dispc_ovl_write_firhv_reg(plane, i, hv);
  563. } else {
  564. dispc_ovl_write_firh2_reg(plane, i, h);
  565. dispc_ovl_write_firhv2_reg(plane, i, hv);
  566. }
  567. }
  568. if (five_taps) {
  569. for (i = 0; i < 8; i++) {
  570. u32 v;
  571. v = FLD_VAL(v_coef[i].hc0_vc00, 7, 0)
  572. | FLD_VAL(v_coef[i].hc4_vc22, 15, 8);
  573. if (color_comp == DISPC_COLOR_COMPONENT_RGB_Y)
  574. dispc_ovl_write_firv_reg(plane, i, v);
  575. else
  576. dispc_ovl_write_firv2_reg(plane, i, v);
  577. }
  578. }
  579. }
  580. static void dispc_ovl_write_color_conv_coef(enum omap_plane plane,
  581. const struct color_conv_coef *ct)
  582. {
  583. #define CVAL(x, y) (FLD_VAL(x, 26, 16) | FLD_VAL(y, 10, 0))
  584. dispc_write_reg(DISPC_OVL_CONV_COEF(plane, 0), CVAL(ct->rcr, ct->ry));
  585. dispc_write_reg(DISPC_OVL_CONV_COEF(plane, 1), CVAL(ct->gy, ct->rcb));
  586. dispc_write_reg(DISPC_OVL_CONV_COEF(plane, 2), CVAL(ct->gcb, ct->gcr));
  587. dispc_write_reg(DISPC_OVL_CONV_COEF(plane, 3), CVAL(ct->bcr, ct->by));
  588. dispc_write_reg(DISPC_OVL_CONV_COEF(plane, 4), CVAL(0, ct->bcb));
  589. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), ct->full_range, 11, 11);
  590. #undef CVAL
  591. }
  592. static void dispc_setup_color_conv_coef(void)
  593. {
  594. int i;
  595. int num_ovl = dss_feat_get_num_ovls();
  596. int num_wb = dss_feat_get_num_wbs();
  597. const struct color_conv_coef ctbl_bt601_5_ovl = {
  598. 298, 409, 0, 298, -208, -100, 298, 0, 517, 0,
  599. };
  600. const struct color_conv_coef ctbl_bt601_5_wb = {
  601. 66, 112, -38, 129, -94, -74, 25, -18, 112, 0,
  602. };
  603. for (i = 1; i < num_ovl; i++)
  604. dispc_ovl_write_color_conv_coef(i, &ctbl_bt601_5_ovl);
  605. for (; i < num_wb; i++)
  606. dispc_ovl_write_color_conv_coef(i, &ctbl_bt601_5_wb);
  607. }
  608. static void dispc_ovl_set_ba0(enum omap_plane plane, u32 paddr)
  609. {
  610. dispc_write_reg(DISPC_OVL_BA0(plane), paddr);
  611. }
  612. static void dispc_ovl_set_ba1(enum omap_plane plane, u32 paddr)
  613. {
  614. dispc_write_reg(DISPC_OVL_BA1(plane), paddr);
  615. }
  616. static void dispc_ovl_set_ba0_uv(enum omap_plane plane, u32 paddr)
  617. {
  618. dispc_write_reg(DISPC_OVL_BA0_UV(plane), paddr);
  619. }
  620. static void dispc_ovl_set_ba1_uv(enum omap_plane plane, u32 paddr)
  621. {
  622. dispc_write_reg(DISPC_OVL_BA1_UV(plane), paddr);
  623. }
  624. static void dispc_ovl_set_pos(enum omap_plane plane,
  625. enum omap_overlay_caps caps, int x, int y)
  626. {
  627. u32 val;
  628. if ((caps & OMAP_DSS_OVL_CAP_POS) == 0)
  629. return;
  630. val = FLD_VAL(y, 26, 16) | FLD_VAL(x, 10, 0);
  631. dispc_write_reg(DISPC_OVL_POSITION(plane), val);
  632. }
  633. static void dispc_ovl_set_input_size(enum omap_plane plane, int width,
  634. int height)
  635. {
  636. u32 val = FLD_VAL(height - 1, 26, 16) | FLD_VAL(width - 1, 10, 0);
  637. if (plane == OMAP_DSS_GFX || plane == OMAP_DSS_WB)
  638. dispc_write_reg(DISPC_OVL_SIZE(plane), val);
  639. else
  640. dispc_write_reg(DISPC_OVL_PICTURE_SIZE(plane), val);
  641. }
  642. static void dispc_ovl_set_output_size(enum omap_plane plane, int width,
  643. int height)
  644. {
  645. u32 val;
  646. BUG_ON(plane == OMAP_DSS_GFX);
  647. val = FLD_VAL(height - 1, 26, 16) | FLD_VAL(width - 1, 10, 0);
  648. if (plane == OMAP_DSS_WB)
  649. dispc_write_reg(DISPC_OVL_PICTURE_SIZE(plane), val);
  650. else
  651. dispc_write_reg(DISPC_OVL_SIZE(plane), val);
  652. }
  653. static void dispc_ovl_set_zorder(enum omap_plane plane,
  654. enum omap_overlay_caps caps, u8 zorder)
  655. {
  656. if ((caps & OMAP_DSS_OVL_CAP_ZORDER) == 0)
  657. return;
  658. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), zorder, 27, 26);
  659. }
  660. static void dispc_ovl_enable_zorder_planes(void)
  661. {
  662. int i;
  663. if (!dss_has_feature(FEAT_ALPHA_FREE_ZORDER))
  664. return;
  665. for (i = 0; i < dss_feat_get_num_ovls(); i++)
  666. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(i), 1, 25, 25);
  667. }
  668. static void dispc_ovl_set_pre_mult_alpha(enum omap_plane plane,
  669. enum omap_overlay_caps caps, bool enable)
  670. {
  671. if ((caps & OMAP_DSS_OVL_CAP_PRE_MULT_ALPHA) == 0)
  672. return;
  673. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), enable ? 1 : 0, 28, 28);
  674. }
  675. static void dispc_ovl_setup_global_alpha(enum omap_plane plane,
  676. enum omap_overlay_caps caps, u8 global_alpha)
  677. {
  678. static const unsigned shifts[] = { 0, 8, 16, 24, };
  679. int shift;
  680. if ((caps & OMAP_DSS_OVL_CAP_GLOBAL_ALPHA) == 0)
  681. return;
  682. shift = shifts[plane];
  683. REG_FLD_MOD(DISPC_GLOBAL_ALPHA, global_alpha, shift + 7, shift);
  684. }
  685. static void dispc_ovl_set_pix_inc(enum omap_plane plane, s32 inc)
  686. {
  687. dispc_write_reg(DISPC_OVL_PIXEL_INC(plane), inc);
  688. }
  689. static void dispc_ovl_set_row_inc(enum omap_plane plane, s32 inc)
  690. {
  691. dispc_write_reg(DISPC_OVL_ROW_INC(plane), inc);
  692. }
  693. static void dispc_ovl_set_color_mode(enum omap_plane plane,
  694. enum omap_color_mode color_mode)
  695. {
  696. u32 m = 0;
  697. if (plane != OMAP_DSS_GFX) {
  698. switch (color_mode) {
  699. case OMAP_DSS_COLOR_NV12:
  700. m = 0x0; break;
  701. case OMAP_DSS_COLOR_RGBX16:
  702. m = 0x1; break;
  703. case OMAP_DSS_COLOR_RGBA16:
  704. m = 0x2; break;
  705. case OMAP_DSS_COLOR_RGB12U:
  706. m = 0x4; break;
  707. case OMAP_DSS_COLOR_ARGB16:
  708. m = 0x5; break;
  709. case OMAP_DSS_COLOR_RGB16:
  710. m = 0x6; break;
  711. case OMAP_DSS_COLOR_ARGB16_1555:
  712. m = 0x7; break;
  713. case OMAP_DSS_COLOR_RGB24U:
  714. m = 0x8; break;
  715. case OMAP_DSS_COLOR_RGB24P:
  716. m = 0x9; break;
  717. case OMAP_DSS_COLOR_YUV2:
  718. m = 0xa; break;
  719. case OMAP_DSS_COLOR_UYVY:
  720. m = 0xb; break;
  721. case OMAP_DSS_COLOR_ARGB32:
  722. m = 0xc; break;
  723. case OMAP_DSS_COLOR_RGBA32:
  724. m = 0xd; break;
  725. case OMAP_DSS_COLOR_RGBX32:
  726. m = 0xe; break;
  727. case OMAP_DSS_COLOR_XRGB16_1555:
  728. m = 0xf; break;
  729. default:
  730. BUG(); return;
  731. }
  732. } else {
  733. switch (color_mode) {
  734. case OMAP_DSS_COLOR_CLUT1:
  735. m = 0x0; break;
  736. case OMAP_DSS_COLOR_CLUT2:
  737. m = 0x1; break;
  738. case OMAP_DSS_COLOR_CLUT4:
  739. m = 0x2; break;
  740. case OMAP_DSS_COLOR_CLUT8:
  741. m = 0x3; break;
  742. case OMAP_DSS_COLOR_RGB12U:
  743. m = 0x4; break;
  744. case OMAP_DSS_COLOR_ARGB16:
  745. m = 0x5; break;
  746. case OMAP_DSS_COLOR_RGB16:
  747. m = 0x6; break;
  748. case OMAP_DSS_COLOR_ARGB16_1555:
  749. m = 0x7; break;
  750. case OMAP_DSS_COLOR_RGB24U:
  751. m = 0x8; break;
  752. case OMAP_DSS_COLOR_RGB24P:
  753. m = 0x9; break;
  754. case OMAP_DSS_COLOR_RGBX16:
  755. m = 0xa; break;
  756. case OMAP_DSS_COLOR_RGBA16:
  757. m = 0xb; break;
  758. case OMAP_DSS_COLOR_ARGB32:
  759. m = 0xc; break;
  760. case OMAP_DSS_COLOR_RGBA32:
  761. m = 0xd; break;
  762. case OMAP_DSS_COLOR_RGBX32:
  763. m = 0xe; break;
  764. case OMAP_DSS_COLOR_XRGB16_1555:
  765. m = 0xf; break;
  766. default:
  767. BUG(); return;
  768. }
  769. }
  770. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), m, 4, 1);
  771. }
  772. static void dispc_ovl_configure_burst_type(enum omap_plane plane,
  773. enum omap_dss_rotation_type rotation_type)
  774. {
  775. if (dss_has_feature(FEAT_BURST_2D) == 0)
  776. return;
  777. if (rotation_type == OMAP_DSS_ROT_TILER)
  778. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), 1, 29, 29);
  779. else
  780. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), 0, 29, 29);
  781. }
  782. void dispc_ovl_set_channel_out(enum omap_plane plane, enum omap_channel channel)
  783. {
  784. int shift;
  785. u32 val;
  786. int chan = 0, chan2 = 0;
  787. switch (plane) {
  788. case OMAP_DSS_GFX:
  789. shift = 8;
  790. break;
  791. case OMAP_DSS_VIDEO1:
  792. case OMAP_DSS_VIDEO2:
  793. case OMAP_DSS_VIDEO3:
  794. shift = 16;
  795. break;
  796. default:
  797. BUG();
  798. return;
  799. }
  800. val = dispc_read_reg(DISPC_OVL_ATTRIBUTES(plane));
  801. if (dss_has_feature(FEAT_MGR_LCD2)) {
  802. switch (channel) {
  803. case OMAP_DSS_CHANNEL_LCD:
  804. chan = 0;
  805. chan2 = 0;
  806. break;
  807. case OMAP_DSS_CHANNEL_DIGIT:
  808. chan = 1;
  809. chan2 = 0;
  810. break;
  811. case OMAP_DSS_CHANNEL_LCD2:
  812. chan = 0;
  813. chan2 = 1;
  814. break;
  815. case OMAP_DSS_CHANNEL_LCD3:
  816. if (dss_has_feature(FEAT_MGR_LCD3)) {
  817. chan = 0;
  818. chan2 = 2;
  819. } else {
  820. BUG();
  821. return;
  822. }
  823. break;
  824. default:
  825. BUG();
  826. return;
  827. }
  828. val = FLD_MOD(val, chan, shift, shift);
  829. val = FLD_MOD(val, chan2, 31, 30);
  830. } else {
  831. val = FLD_MOD(val, channel, shift, shift);
  832. }
  833. dispc_write_reg(DISPC_OVL_ATTRIBUTES(plane), val);
  834. }
  835. static enum omap_channel dispc_ovl_get_channel_out(enum omap_plane plane)
  836. {
  837. int shift;
  838. u32 val;
  839. enum omap_channel channel;
  840. switch (plane) {
  841. case OMAP_DSS_GFX:
  842. shift = 8;
  843. break;
  844. case OMAP_DSS_VIDEO1:
  845. case OMAP_DSS_VIDEO2:
  846. case OMAP_DSS_VIDEO3:
  847. shift = 16;
  848. break;
  849. default:
  850. BUG();
  851. return 0;
  852. }
  853. val = dispc_read_reg(DISPC_OVL_ATTRIBUTES(plane));
  854. if (dss_has_feature(FEAT_MGR_LCD3)) {
  855. if (FLD_GET(val, 31, 30) == 0)
  856. channel = FLD_GET(val, shift, shift);
  857. else if (FLD_GET(val, 31, 30) == 1)
  858. channel = OMAP_DSS_CHANNEL_LCD2;
  859. else
  860. channel = OMAP_DSS_CHANNEL_LCD3;
  861. } else if (dss_has_feature(FEAT_MGR_LCD2)) {
  862. if (FLD_GET(val, 31, 30) == 0)
  863. channel = FLD_GET(val, shift, shift);
  864. else
  865. channel = OMAP_DSS_CHANNEL_LCD2;
  866. } else {
  867. channel = FLD_GET(val, shift, shift);
  868. }
  869. return channel;
  870. }
  871. void dispc_wb_set_channel_in(enum dss_writeback_channel channel)
  872. {
  873. enum omap_plane plane = OMAP_DSS_WB;
  874. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), channel, 18, 16);
  875. }
  876. static void dispc_ovl_set_burst_size(enum omap_plane plane,
  877. enum omap_burst_size burst_size)
  878. {
  879. static const unsigned shifts[] = { 6, 14, 14, 14, 14, };
  880. int shift;
  881. shift = shifts[plane];
  882. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), burst_size, shift + 1, shift);
  883. }
  884. static void dispc_configure_burst_sizes(void)
  885. {
  886. int i;
  887. const int burst_size = BURST_SIZE_X8;
  888. /* Configure burst size always to maximum size */
  889. for (i = 0; i < dss_feat_get_num_ovls(); ++i)
  890. dispc_ovl_set_burst_size(i, burst_size);
  891. }
  892. static u32 dispc_ovl_get_burst_size(enum omap_plane plane)
  893. {
  894. unsigned unit = dss_feat_get_burst_size_unit();
  895. /* burst multiplier is always x8 (see dispc_configure_burst_sizes()) */
  896. return unit * 8;
  897. }
  898. void dispc_enable_gamma_table(bool enable)
  899. {
  900. /*
  901. * This is partially implemented to support only disabling of
  902. * the gamma table.
  903. */
  904. if (enable) {
  905. DSSWARN("Gamma table enabling for TV not yet supported");
  906. return;
  907. }
  908. REG_FLD_MOD(DISPC_CONFIG, enable, 9, 9);
  909. }
  910. static void dispc_mgr_enable_cpr(enum omap_channel channel, bool enable)
  911. {
  912. if (channel == OMAP_DSS_CHANNEL_DIGIT)
  913. return;
  914. mgr_fld_write(channel, DISPC_MGR_FLD_CPR, enable);
  915. }
  916. static void dispc_mgr_set_cpr_coef(enum omap_channel channel,
  917. const struct omap_dss_cpr_coefs *coefs)
  918. {
  919. u32 coef_r, coef_g, coef_b;
  920. if (!dss_mgr_is_lcd(channel))
  921. return;
  922. coef_r = FLD_VAL(coefs->rr, 31, 22) | FLD_VAL(coefs->rg, 20, 11) |
  923. FLD_VAL(coefs->rb, 9, 0);
  924. coef_g = FLD_VAL(coefs->gr, 31, 22) | FLD_VAL(coefs->gg, 20, 11) |
  925. FLD_VAL(coefs->gb, 9, 0);
  926. coef_b = FLD_VAL(coefs->br, 31, 22) | FLD_VAL(coefs->bg, 20, 11) |
  927. FLD_VAL(coefs->bb, 9, 0);
  928. dispc_write_reg(DISPC_CPR_COEF_R(channel), coef_r);
  929. dispc_write_reg(DISPC_CPR_COEF_G(channel), coef_g);
  930. dispc_write_reg(DISPC_CPR_COEF_B(channel), coef_b);
  931. }
  932. static void dispc_ovl_set_vid_color_conv(enum omap_plane plane, bool enable)
  933. {
  934. u32 val;
  935. BUG_ON(plane == OMAP_DSS_GFX);
  936. val = dispc_read_reg(DISPC_OVL_ATTRIBUTES(plane));
  937. val = FLD_MOD(val, enable, 9, 9);
  938. dispc_write_reg(DISPC_OVL_ATTRIBUTES(plane), val);
  939. }
  940. static void dispc_ovl_enable_replication(enum omap_plane plane,
  941. enum omap_overlay_caps caps, bool enable)
  942. {
  943. static const unsigned shifts[] = { 5, 10, 10, 10 };
  944. int shift;
  945. if ((caps & OMAP_DSS_OVL_CAP_REPLICATION) == 0)
  946. return;
  947. shift = shifts[plane];
  948. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), enable, shift, shift);
  949. }
  950. static void dispc_mgr_set_size(enum omap_channel channel, u16 width,
  951. u16 height)
  952. {
  953. u32 val;
  954. val = FLD_VAL(height - 1, dispc.feat->mgr_height_start, 16) |
  955. FLD_VAL(width - 1, dispc.feat->mgr_width_start, 0);
  956. dispc_write_reg(DISPC_SIZE_MGR(channel), val);
  957. }
  958. static void dispc_init_fifos(void)
  959. {
  960. u32 size;
  961. int fifo;
  962. u8 start, end;
  963. u32 unit;
  964. unit = dss_feat_get_buffer_size_unit();
  965. dss_feat_get_reg_field(FEAT_REG_FIFOSIZE, &start, &end);
  966. for (fifo = 0; fifo < dispc.feat->num_fifos; ++fifo) {
  967. size = REG_GET(DISPC_OVL_FIFO_SIZE_STATUS(fifo), start, end);
  968. size *= unit;
  969. dispc.fifo_size[fifo] = size;
  970. /*
  971. * By default fifos are mapped directly to overlays, fifo 0 to
  972. * ovl 0, fifo 1 to ovl 1, etc.
  973. */
  974. dispc.fifo_assignment[fifo] = fifo;
  975. }
  976. /*
  977. * The GFX fifo on OMAP4 is smaller than the other fifos. The small fifo
  978. * causes problems with certain use cases, like using the tiler in 2D
  979. * mode. The below hack swaps the fifos of GFX and WB planes, thus
  980. * giving GFX plane a larger fifo. WB but should work fine with a
  981. * smaller fifo.
  982. */
  983. if (dispc.feat->gfx_fifo_workaround) {
  984. u32 v;
  985. v = dispc_read_reg(DISPC_GLOBAL_BUFFER);
  986. v = FLD_MOD(v, 4, 2, 0); /* GFX BUF top to WB */
  987. v = FLD_MOD(v, 4, 5, 3); /* GFX BUF bottom to WB */
  988. v = FLD_MOD(v, 0, 26, 24); /* WB BUF top to GFX */
  989. v = FLD_MOD(v, 0, 29, 27); /* WB BUF bottom to GFX */
  990. dispc_write_reg(DISPC_GLOBAL_BUFFER, v);
  991. dispc.fifo_assignment[OMAP_DSS_GFX] = OMAP_DSS_WB;
  992. dispc.fifo_assignment[OMAP_DSS_WB] = OMAP_DSS_GFX;
  993. }
  994. }
  995. static u32 dispc_ovl_get_fifo_size(enum omap_plane plane)
  996. {
  997. int fifo;
  998. u32 size = 0;
  999. for (fifo = 0; fifo < dispc.feat->num_fifos; ++fifo) {
  1000. if (dispc.fifo_assignment[fifo] == plane)
  1001. size += dispc.fifo_size[fifo];
  1002. }
  1003. return size;
  1004. }
  1005. void dispc_ovl_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high)
  1006. {
  1007. u8 hi_start, hi_end, lo_start, lo_end;
  1008. u32 unit;
  1009. unit = dss_feat_get_buffer_size_unit();
  1010. WARN_ON(low % unit != 0);
  1011. WARN_ON(high % unit != 0);
  1012. low /= unit;
  1013. high /= unit;
  1014. dss_feat_get_reg_field(FEAT_REG_FIFOHIGHTHRESHOLD, &hi_start, &hi_end);
  1015. dss_feat_get_reg_field(FEAT_REG_FIFOLOWTHRESHOLD, &lo_start, &lo_end);
  1016. DSSDBG("fifo(%d) threshold (bytes), old %u/%u, new %u/%u\n",
  1017. plane,
  1018. REG_GET(DISPC_OVL_FIFO_THRESHOLD(plane),
  1019. lo_start, lo_end) * unit,
  1020. REG_GET(DISPC_OVL_FIFO_THRESHOLD(plane),
  1021. hi_start, hi_end) * unit,
  1022. low * unit, high * unit);
  1023. dispc_write_reg(DISPC_OVL_FIFO_THRESHOLD(plane),
  1024. FLD_VAL(high, hi_start, hi_end) |
  1025. FLD_VAL(low, lo_start, lo_end));
  1026. }
  1027. void dispc_enable_fifomerge(bool enable)
  1028. {
  1029. if (!dss_has_feature(FEAT_FIFO_MERGE)) {
  1030. WARN_ON(enable);
  1031. return;
  1032. }
  1033. DSSDBG("FIFO merge %s\n", enable ? "enabled" : "disabled");
  1034. REG_FLD_MOD(DISPC_CONFIG, enable ? 1 : 0, 14, 14);
  1035. }
  1036. void dispc_ovl_compute_fifo_thresholds(enum omap_plane plane,
  1037. u32 *fifo_low, u32 *fifo_high, bool use_fifomerge,
  1038. bool manual_update)
  1039. {
  1040. /*
  1041. * All sizes are in bytes. Both the buffer and burst are made of
  1042. * buffer_units, and the fifo thresholds must be buffer_unit aligned.
  1043. */
  1044. unsigned buf_unit = dss_feat_get_buffer_size_unit();
  1045. unsigned ovl_fifo_size, total_fifo_size, burst_size;
  1046. int i;
  1047. burst_size = dispc_ovl_get_burst_size(plane);
  1048. ovl_fifo_size = dispc_ovl_get_fifo_size(plane);
  1049. if (use_fifomerge) {
  1050. total_fifo_size = 0;
  1051. for (i = 0; i < dss_feat_get_num_ovls(); ++i)
  1052. total_fifo_size += dispc_ovl_get_fifo_size(i);
  1053. } else {
  1054. total_fifo_size = ovl_fifo_size;
  1055. }
  1056. /*
  1057. * We use the same low threshold for both fifomerge and non-fifomerge
  1058. * cases, but for fifomerge we calculate the high threshold using the
  1059. * combined fifo size
  1060. */
  1061. if (manual_update && dss_has_feature(FEAT_OMAP3_DSI_FIFO_BUG)) {
  1062. *fifo_low = ovl_fifo_size - burst_size * 2;
  1063. *fifo_high = total_fifo_size - burst_size;
  1064. } else if (plane == OMAP_DSS_WB) {
  1065. /*
  1066. * Most optimal configuration for writeback is to push out data
  1067. * to the interconnect the moment writeback pushes enough pixels
  1068. * in the FIFO to form a burst
  1069. */
  1070. *fifo_low = 0;
  1071. *fifo_high = burst_size;
  1072. } else {
  1073. *fifo_low = ovl_fifo_size - burst_size;
  1074. *fifo_high = total_fifo_size - buf_unit;
  1075. }
  1076. }
  1077. static void dispc_ovl_set_fir(enum omap_plane plane,
  1078. int hinc, int vinc,
  1079. enum omap_color_component color_comp)
  1080. {
  1081. u32 val;
  1082. if (color_comp == DISPC_COLOR_COMPONENT_RGB_Y) {
  1083. u8 hinc_start, hinc_end, vinc_start, vinc_end;
  1084. dss_feat_get_reg_field(FEAT_REG_FIRHINC,
  1085. &hinc_start, &hinc_end);
  1086. dss_feat_get_reg_field(FEAT_REG_FIRVINC,
  1087. &vinc_start, &vinc_end);
  1088. val = FLD_VAL(vinc, vinc_start, vinc_end) |
  1089. FLD_VAL(hinc, hinc_start, hinc_end);
  1090. dispc_write_reg(DISPC_OVL_FIR(plane), val);
  1091. } else {
  1092. val = FLD_VAL(vinc, 28, 16) | FLD_VAL(hinc, 12, 0);
  1093. dispc_write_reg(DISPC_OVL_FIR2(plane), val);
  1094. }
  1095. }
  1096. static void dispc_ovl_set_vid_accu0(enum omap_plane plane, int haccu, int vaccu)
  1097. {
  1098. u32 val;
  1099. u8 hor_start, hor_end, vert_start, vert_end;
  1100. dss_feat_get_reg_field(FEAT_REG_HORIZONTALACCU, &hor_start, &hor_end);
  1101. dss_feat_get_reg_field(FEAT_REG_VERTICALACCU, &vert_start, &vert_end);
  1102. val = FLD_VAL(vaccu, vert_start, vert_end) |
  1103. FLD_VAL(haccu, hor_start, hor_end);
  1104. dispc_write_reg(DISPC_OVL_ACCU0(plane), val);
  1105. }
  1106. static void dispc_ovl_set_vid_accu1(enum omap_plane plane, int haccu, int vaccu)
  1107. {
  1108. u32 val;
  1109. u8 hor_start, hor_end, vert_start, vert_end;
  1110. dss_feat_get_reg_field(FEAT_REG_HORIZONTALACCU, &hor_start, &hor_end);
  1111. dss_feat_get_reg_field(FEAT_REG_VERTICALACCU, &vert_start, &vert_end);
  1112. val = FLD_VAL(vaccu, vert_start, vert_end) |
  1113. FLD_VAL(haccu, hor_start, hor_end);
  1114. dispc_write_reg(DISPC_OVL_ACCU1(plane), val);
  1115. }
  1116. static void dispc_ovl_set_vid_accu2_0(enum omap_plane plane, int haccu,
  1117. int vaccu)
  1118. {
  1119. u32 val;
  1120. val = FLD_VAL(vaccu, 26, 16) | FLD_VAL(haccu, 10, 0);
  1121. dispc_write_reg(DISPC_OVL_ACCU2_0(plane), val);
  1122. }
  1123. static void dispc_ovl_set_vid_accu2_1(enum omap_plane plane, int haccu,
  1124. int vaccu)
  1125. {
  1126. u32 val;
  1127. val = FLD_VAL(vaccu, 26, 16) | FLD_VAL(haccu, 10, 0);
  1128. dispc_write_reg(DISPC_OVL_ACCU2_1(plane), val);
  1129. }
  1130. static void dispc_ovl_set_scale_param(enum omap_plane plane,
  1131. u16 orig_width, u16 orig_height,
  1132. u16 out_width, u16 out_height,
  1133. bool five_taps, u8 rotation,
  1134. enum omap_color_component color_comp)
  1135. {
  1136. int fir_hinc, fir_vinc;
  1137. fir_hinc = 1024 * orig_width / out_width;
  1138. fir_vinc = 1024 * orig_height / out_height;
  1139. dispc_ovl_set_scale_coef(plane, fir_hinc, fir_vinc, five_taps,
  1140. color_comp);
  1141. dispc_ovl_set_fir(plane, fir_hinc, fir_vinc, color_comp);
  1142. }
  1143. static void dispc_ovl_set_accu_uv(enum omap_plane plane,
  1144. u16 orig_width, u16 orig_height, u16 out_width, u16 out_height,
  1145. bool ilace, enum omap_color_mode color_mode, u8 rotation)
  1146. {
  1147. int h_accu2_0, h_accu2_1;
  1148. int v_accu2_0, v_accu2_1;
  1149. int chroma_hinc, chroma_vinc;
  1150. int idx;
  1151. struct accu {
  1152. s8 h0_m, h0_n;
  1153. s8 h1_m, h1_n;
  1154. s8 v0_m, v0_n;
  1155. s8 v1_m, v1_n;
  1156. };
  1157. const struct accu *accu_table;
  1158. const struct accu *accu_val;
  1159. static const struct accu accu_nv12[4] = {
  1160. { 0, 1, 0, 1 , -1, 2, 0, 1 },
  1161. { 1, 2, -3, 4 , 0, 1, 0, 1 },
  1162. { -1, 1, 0, 1 , -1, 2, 0, 1 },
  1163. { -1, 2, -1, 2 , -1, 1, 0, 1 },
  1164. };
  1165. static const struct accu accu_nv12_ilace[4] = {
  1166. { 0, 1, 0, 1 , -3, 4, -1, 4 },
  1167. { -1, 4, -3, 4 , 0, 1, 0, 1 },
  1168. { -1, 1, 0, 1 , -1, 4, -3, 4 },
  1169. { -3, 4, -3, 4 , -1, 1, 0, 1 },
  1170. };
  1171. static const struct accu accu_yuv[4] = {
  1172. { 0, 1, 0, 1, 0, 1, 0, 1 },
  1173. { 0, 1, 0, 1, 0, 1, 0, 1 },
  1174. { -1, 1, 0, 1, 0, 1, 0, 1 },
  1175. { 0, 1, 0, 1, -1, 1, 0, 1 },
  1176. };
  1177. switch (rotation) {
  1178. case OMAP_DSS_ROT_0:
  1179. idx = 0;
  1180. break;
  1181. case OMAP_DSS_ROT_90:
  1182. idx = 1;
  1183. break;
  1184. case OMAP_DSS_ROT_180:
  1185. idx = 2;
  1186. break;
  1187. case OMAP_DSS_ROT_270:
  1188. idx = 3;
  1189. break;
  1190. default:
  1191. BUG();
  1192. return;
  1193. }
  1194. switch (color_mode) {
  1195. case OMAP_DSS_COLOR_NV12:
  1196. if (ilace)
  1197. accu_table = accu_nv12_ilace;
  1198. else
  1199. accu_table = accu_nv12;
  1200. break;
  1201. case OMAP_DSS_COLOR_YUV2:
  1202. case OMAP_DSS_COLOR_UYVY:
  1203. accu_table = accu_yuv;
  1204. break;
  1205. default:
  1206. BUG();
  1207. return;
  1208. }
  1209. accu_val = &accu_table[idx];
  1210. chroma_hinc = 1024 * orig_width / out_width;
  1211. chroma_vinc = 1024 * orig_height / out_height;
  1212. h_accu2_0 = (accu_val->h0_m * chroma_hinc / accu_val->h0_n) % 1024;
  1213. h_accu2_1 = (accu_val->h1_m * chroma_hinc / accu_val->h1_n) % 1024;
  1214. v_accu2_0 = (accu_val->v0_m * chroma_vinc / accu_val->v0_n) % 1024;
  1215. v_accu2_1 = (accu_val->v1_m * chroma_vinc / accu_val->v1_n) % 1024;
  1216. dispc_ovl_set_vid_accu2_0(plane, h_accu2_0, v_accu2_0);
  1217. dispc_ovl_set_vid_accu2_1(plane, h_accu2_1, v_accu2_1);
  1218. }
  1219. static void dispc_ovl_set_scaling_common(enum omap_plane plane,
  1220. u16 orig_width, u16 orig_height,
  1221. u16 out_width, u16 out_height,
  1222. bool ilace, bool five_taps,
  1223. bool fieldmode, enum omap_color_mode color_mode,
  1224. u8 rotation)
  1225. {
  1226. int accu0 = 0;
  1227. int accu1 = 0;
  1228. u32 l;
  1229. dispc_ovl_set_scale_param(plane, orig_width, orig_height,
  1230. out_width, out_height, five_taps,
  1231. rotation, DISPC_COLOR_COMPONENT_RGB_Y);
  1232. l = dispc_read_reg(DISPC_OVL_ATTRIBUTES(plane));
  1233. /* RESIZEENABLE and VERTICALTAPS */
  1234. l &= ~((0x3 << 5) | (0x1 << 21));
  1235. l |= (orig_width != out_width) ? (1 << 5) : 0;
  1236. l |= (orig_height != out_height) ? (1 << 6) : 0;
  1237. l |= five_taps ? (1 << 21) : 0;
  1238. /* VRESIZECONF and HRESIZECONF */
  1239. if (dss_has_feature(FEAT_RESIZECONF)) {
  1240. l &= ~(0x3 << 7);
  1241. l |= (orig_width <= out_width) ? 0 : (1 << 7);
  1242. l |= (orig_height <= out_height) ? 0 : (1 << 8);
  1243. }
  1244. /* LINEBUFFERSPLIT */
  1245. if (dss_has_feature(FEAT_LINEBUFFERSPLIT)) {
  1246. l &= ~(0x1 << 22);
  1247. l |= five_taps ? (1 << 22) : 0;
  1248. }
  1249. dispc_write_reg(DISPC_OVL_ATTRIBUTES(plane), l);
  1250. /*
  1251. * field 0 = even field = bottom field
  1252. * field 1 = odd field = top field
  1253. */
  1254. if (ilace && !fieldmode) {
  1255. accu1 = 0;
  1256. accu0 = ((1024 * orig_height / out_height) / 2) & 0x3ff;
  1257. if (accu0 >= 1024/2) {
  1258. accu1 = 1024/2;
  1259. accu0 -= accu1;
  1260. }
  1261. }
  1262. dispc_ovl_set_vid_accu0(plane, 0, accu0);
  1263. dispc_ovl_set_vid_accu1(plane, 0, accu1);
  1264. }
  1265. static void dispc_ovl_set_scaling_uv(enum omap_plane plane,
  1266. u16 orig_width, u16 orig_height,
  1267. u16 out_width, u16 out_height,
  1268. bool ilace, bool five_taps,
  1269. bool fieldmode, enum omap_color_mode color_mode,
  1270. u8 rotation)
  1271. {
  1272. int scale_x = out_width != orig_width;
  1273. int scale_y = out_height != orig_height;
  1274. bool chroma_upscale = plane != OMAP_DSS_WB ? true : false;
  1275. if (!dss_has_feature(FEAT_HANDLE_UV_SEPARATE))
  1276. return;
  1277. if ((color_mode != OMAP_DSS_COLOR_YUV2 &&
  1278. color_mode != OMAP_DSS_COLOR_UYVY &&
  1279. color_mode != OMAP_DSS_COLOR_NV12)) {
  1280. /* reset chroma resampling for RGB formats */
  1281. if (plane != OMAP_DSS_WB)
  1282. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES2(plane), 0, 8, 8);
  1283. return;
  1284. }
  1285. dispc_ovl_set_accu_uv(plane, orig_width, orig_height, out_width,
  1286. out_height, ilace, color_mode, rotation);
  1287. switch (color_mode) {
  1288. case OMAP_DSS_COLOR_NV12:
  1289. if (chroma_upscale) {
  1290. /* UV is subsampled by 2 horizontally and vertically */
  1291. orig_height >>= 1;
  1292. orig_width >>= 1;
  1293. } else {
  1294. /* UV is downsampled by 2 horizontally and vertically */
  1295. orig_height <<= 1;
  1296. orig_width <<= 1;
  1297. }
  1298. break;
  1299. case OMAP_DSS_COLOR_YUV2:
  1300. case OMAP_DSS_COLOR_UYVY:
  1301. /* For YUV422 with 90/270 rotation, we don't upsample chroma */
  1302. if (rotation == OMAP_DSS_ROT_0 ||
  1303. rotation == OMAP_DSS_ROT_180) {
  1304. if (chroma_upscale)
  1305. /* UV is subsampled by 2 horizontally */
  1306. orig_width >>= 1;
  1307. else
  1308. /* UV is downsampled by 2 horizontally */
  1309. orig_width <<= 1;
  1310. }
  1311. /* must use FIR for YUV422 if rotated */
  1312. if (rotation != OMAP_DSS_ROT_0)
  1313. scale_x = scale_y = true;
  1314. break;
  1315. default:
  1316. BUG();
  1317. return;
  1318. }
  1319. if (out_width != orig_width)
  1320. scale_x = true;
  1321. if (out_height != orig_height)
  1322. scale_y = true;
  1323. dispc_ovl_set_scale_param(plane, orig_width, orig_height,
  1324. out_width, out_height, five_taps,
  1325. rotation, DISPC_COLOR_COMPONENT_UV);
  1326. if (plane != OMAP_DSS_WB)
  1327. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES2(plane),
  1328. (scale_x || scale_y) ? 1 : 0, 8, 8);
  1329. /* set H scaling */
  1330. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), scale_x ? 1 : 0, 5, 5);
  1331. /* set V scaling */
  1332. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), scale_y ? 1 : 0, 6, 6);
  1333. }
  1334. static void dispc_ovl_set_scaling(enum omap_plane plane,
  1335. u16 orig_width, u16 orig_height,
  1336. u16 out_width, u16 out_height,
  1337. bool ilace, bool five_taps,
  1338. bool fieldmode, enum omap_color_mode color_mode,
  1339. u8 rotation)
  1340. {
  1341. BUG_ON(plane == OMAP_DSS_GFX);
  1342. dispc_ovl_set_scaling_common(plane,
  1343. orig_width, orig_height,
  1344. out_width, out_height,
  1345. ilace, five_taps,
  1346. fieldmode, color_mode,
  1347. rotation);
  1348. dispc_ovl_set_scaling_uv(plane,
  1349. orig_width, orig_height,
  1350. out_width, out_height,
  1351. ilace, five_taps,
  1352. fieldmode, color_mode,
  1353. rotation);
  1354. }
  1355. static void dispc_ovl_set_rotation_attrs(enum omap_plane plane, u8 rotation,
  1356. bool mirroring, enum omap_color_mode color_mode)
  1357. {
  1358. bool row_repeat = false;
  1359. int vidrot = 0;
  1360. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  1361. color_mode == OMAP_DSS_COLOR_UYVY) {
  1362. if (mirroring) {
  1363. switch (rotation) {
  1364. case OMAP_DSS_ROT_0:
  1365. vidrot = 2;
  1366. break;
  1367. case OMAP_DSS_ROT_90:
  1368. vidrot = 1;
  1369. break;
  1370. case OMAP_DSS_ROT_180:
  1371. vidrot = 0;
  1372. break;
  1373. case OMAP_DSS_ROT_270:
  1374. vidrot = 3;
  1375. break;
  1376. }
  1377. } else {
  1378. switch (rotation) {
  1379. case OMAP_DSS_ROT_0:
  1380. vidrot = 0;
  1381. break;
  1382. case OMAP_DSS_ROT_90:
  1383. vidrot = 1;
  1384. break;
  1385. case OMAP_DSS_ROT_180:
  1386. vidrot = 2;
  1387. break;
  1388. case OMAP_DSS_ROT_270:
  1389. vidrot = 3;
  1390. break;
  1391. }
  1392. }
  1393. if (rotation == OMAP_DSS_ROT_90 || rotation == OMAP_DSS_ROT_270)
  1394. row_repeat = true;
  1395. else
  1396. row_repeat = false;
  1397. }
  1398. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), vidrot, 13, 12);
  1399. if (dss_has_feature(FEAT_ROWREPEATENABLE))
  1400. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane),
  1401. row_repeat ? 1 : 0, 18, 18);
  1402. }
  1403. static int color_mode_to_bpp(enum omap_color_mode color_mode)
  1404. {
  1405. switch (color_mode) {
  1406. case OMAP_DSS_COLOR_CLUT1:
  1407. return 1;
  1408. case OMAP_DSS_COLOR_CLUT2:
  1409. return 2;
  1410. case OMAP_DSS_COLOR_CLUT4:
  1411. return 4;
  1412. case OMAP_DSS_COLOR_CLUT8:
  1413. case OMAP_DSS_COLOR_NV12:
  1414. return 8;
  1415. case OMAP_DSS_COLOR_RGB12U:
  1416. case OMAP_DSS_COLOR_RGB16:
  1417. case OMAP_DSS_COLOR_ARGB16:
  1418. case OMAP_DSS_COLOR_YUV2:
  1419. case OMAP_DSS_COLOR_UYVY:
  1420. case OMAP_DSS_COLOR_RGBA16:
  1421. case OMAP_DSS_COLOR_RGBX16:
  1422. case OMAP_DSS_COLOR_ARGB16_1555:
  1423. case OMAP_DSS_COLOR_XRGB16_1555:
  1424. return 16;
  1425. case OMAP_DSS_COLOR_RGB24P:
  1426. return 24;
  1427. case OMAP_DSS_COLOR_RGB24U:
  1428. case OMAP_DSS_COLOR_ARGB32:
  1429. case OMAP_DSS_COLOR_RGBA32:
  1430. case OMAP_DSS_COLOR_RGBX32:
  1431. return 32;
  1432. default:
  1433. BUG();
  1434. return 0;
  1435. }
  1436. }
  1437. static s32 pixinc(int pixels, u8 ps)
  1438. {
  1439. if (pixels == 1)
  1440. return 1;
  1441. else if (pixels > 1)
  1442. return 1 + (pixels - 1) * ps;
  1443. else if (pixels < 0)
  1444. return 1 - (-pixels + 1) * ps;
  1445. else
  1446. BUG();
  1447. return 0;
  1448. }
  1449. static void calc_vrfb_rotation_offset(u8 rotation, bool mirror,
  1450. u16 screen_width,
  1451. u16 width, u16 height,
  1452. enum omap_color_mode color_mode, bool fieldmode,
  1453. unsigned int field_offset,
  1454. unsigned *offset0, unsigned *offset1,
  1455. s32 *row_inc, s32 *pix_inc, int x_predecim, int y_predecim)
  1456. {
  1457. u8 ps;
  1458. /* FIXME CLUT formats */
  1459. switch (color_mode) {
  1460. case OMAP_DSS_COLOR_CLUT1:
  1461. case OMAP_DSS_COLOR_CLUT2:
  1462. case OMAP_DSS_COLOR_CLUT4:
  1463. case OMAP_DSS_COLOR_CLUT8:
  1464. BUG();
  1465. return;
  1466. case OMAP_DSS_COLOR_YUV2:
  1467. case OMAP_DSS_COLOR_UYVY:
  1468. ps = 4;
  1469. break;
  1470. default:
  1471. ps = color_mode_to_bpp(color_mode) / 8;
  1472. break;
  1473. }
  1474. DSSDBG("calc_rot(%d): scrw %d, %dx%d\n", rotation, screen_width,
  1475. width, height);
  1476. /*
  1477. * field 0 = even field = bottom field
  1478. * field 1 = odd field = top field
  1479. */
  1480. switch (rotation + mirror * 4) {
  1481. case OMAP_DSS_ROT_0:
  1482. case OMAP_DSS_ROT_180:
  1483. /*
  1484. * If the pixel format is YUV or UYVY divide the width
  1485. * of the image by 2 for 0 and 180 degree rotation.
  1486. */
  1487. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  1488. color_mode == OMAP_DSS_COLOR_UYVY)
  1489. width = width >> 1;
  1490. case OMAP_DSS_ROT_90:
  1491. case OMAP_DSS_ROT_270:
  1492. *offset1 = 0;
  1493. if (field_offset)
  1494. *offset0 = field_offset * screen_width * ps;
  1495. else
  1496. *offset0 = 0;
  1497. *row_inc = pixinc(1 +
  1498. (y_predecim * screen_width - x_predecim * width) +
  1499. (fieldmode ? screen_width : 0), ps);
  1500. *pix_inc = pixinc(x_predecim, ps);
  1501. break;
  1502. case OMAP_DSS_ROT_0 + 4:
  1503. case OMAP_DSS_ROT_180 + 4:
  1504. /* If the pixel format is YUV or UYVY divide the width
  1505. * of the image by 2 for 0 degree and 180 degree
  1506. */
  1507. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  1508. color_mode == OMAP_DSS_COLOR_UYVY)
  1509. width = width >> 1;
  1510. case OMAP_DSS_ROT_90 + 4:
  1511. case OMAP_DSS_ROT_270 + 4:
  1512. *offset1 = 0;
  1513. if (field_offset)
  1514. *offset0 = field_offset * screen_width * ps;
  1515. else
  1516. *offset0 = 0;
  1517. *row_inc = pixinc(1 -
  1518. (y_predecim * screen_width + x_predecim * width) -
  1519. (fieldmode ? screen_width : 0), ps);
  1520. *pix_inc = pixinc(x_predecim, ps);
  1521. break;
  1522. default:
  1523. BUG();
  1524. return;
  1525. }
  1526. }
  1527. static void calc_dma_rotation_offset(u8 rotation, bool mirror,
  1528. u16 screen_width,
  1529. u16 width, u16 height,
  1530. enum omap_color_mode color_mode, bool fieldmode,
  1531. unsigned int field_offset,
  1532. unsigned *offset0, unsigned *offset1,
  1533. s32 *row_inc, s32 *pix_inc, int x_predecim, int y_predecim)
  1534. {
  1535. u8 ps;
  1536. u16 fbw, fbh;
  1537. /* FIXME CLUT formats */
  1538. switch (color_mode) {
  1539. case OMAP_DSS_COLOR_CLUT1:
  1540. case OMAP_DSS_COLOR_CLUT2:
  1541. case OMAP_DSS_COLOR_CLUT4:
  1542. case OMAP_DSS_COLOR_CLUT8:
  1543. BUG();
  1544. return;
  1545. default:
  1546. ps = color_mode_to_bpp(color_mode) / 8;
  1547. break;
  1548. }
  1549. DSSDBG("calc_rot(%d): scrw %d, %dx%d\n", rotation, screen_width,
  1550. width, height);
  1551. /* width & height are overlay sizes, convert to fb sizes */
  1552. if (rotation == OMAP_DSS_ROT_0 || rotation == OMAP_DSS_ROT_180) {
  1553. fbw = width;
  1554. fbh = height;
  1555. } else {
  1556. fbw = height;
  1557. fbh = width;
  1558. }
  1559. /*
  1560. * field 0 = even field = bottom field
  1561. * field 1 = odd field = top field
  1562. */
  1563. switch (rotation + mirror * 4) {
  1564. case OMAP_DSS_ROT_0:
  1565. *offset1 = 0;
  1566. if (field_offset)
  1567. *offset0 = *offset1 + field_offset * screen_width * ps;
  1568. else
  1569. *offset0 = *offset1;
  1570. *row_inc = pixinc(1 +
  1571. (y_predecim * screen_width - fbw * x_predecim) +
  1572. (fieldmode ? screen_width : 0), ps);
  1573. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  1574. color_mode == OMAP_DSS_COLOR_UYVY)
  1575. *pix_inc = pixinc(x_predecim, 2 * ps);
  1576. else
  1577. *pix_inc = pixinc(x_predecim, ps);
  1578. break;
  1579. case OMAP_DSS_ROT_90:
  1580. *offset1 = screen_width * (fbh - 1) * ps;
  1581. if (field_offset)
  1582. *offset0 = *offset1 + field_offset * ps;
  1583. else
  1584. *offset0 = *offset1;
  1585. *row_inc = pixinc(screen_width * (fbh * x_predecim - 1) +
  1586. y_predecim + (fieldmode ? 1 : 0), ps);
  1587. *pix_inc = pixinc(-x_predecim * screen_width, ps);
  1588. break;
  1589. case OMAP_DSS_ROT_180:
  1590. *offset1 = (screen_width * (fbh - 1) + fbw - 1) * ps;
  1591. if (field_offset)
  1592. *offset0 = *offset1 - field_offset * screen_width * ps;
  1593. else
  1594. *offset0 = *offset1;
  1595. *row_inc = pixinc(-1 -
  1596. (y_predecim * screen_width - fbw * x_predecim) -
  1597. (fieldmode ? screen_width : 0), ps);
  1598. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  1599. color_mode == OMAP_DSS_COLOR_UYVY)
  1600. *pix_inc = pixinc(-x_predecim, 2 * ps);
  1601. else
  1602. *pix_inc = pixinc(-x_predecim, ps);
  1603. break;
  1604. case OMAP_DSS_ROT_270:
  1605. *offset1 = (fbw - 1) * ps;
  1606. if (field_offset)
  1607. *offset0 = *offset1 - field_offset * ps;
  1608. else
  1609. *offset0 = *offset1;
  1610. *row_inc = pixinc(-screen_width * (fbh * x_predecim - 1) -
  1611. y_predecim - (fieldmode ? 1 : 0), ps);
  1612. *pix_inc = pixinc(x_predecim * screen_width, ps);
  1613. break;
  1614. /* mirroring */
  1615. case OMAP_DSS_ROT_0 + 4:
  1616. *offset1 = (fbw - 1) * ps;
  1617. if (field_offset)
  1618. *offset0 = *offset1 + field_offset * screen_width * ps;
  1619. else
  1620. *offset0 = *offset1;
  1621. *row_inc = pixinc(y_predecim * screen_width * 2 - 1 +
  1622. (fieldmode ? screen_width : 0),
  1623. ps);
  1624. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  1625. color_mode == OMAP_DSS_COLOR_UYVY)
  1626. *pix_inc = pixinc(-x_predecim, 2 * ps);
  1627. else
  1628. *pix_inc = pixinc(-x_predecim, ps);
  1629. break;
  1630. case OMAP_DSS_ROT_90 + 4:
  1631. *offset1 = 0;
  1632. if (field_offset)
  1633. *offset0 = *offset1 + field_offset * ps;
  1634. else
  1635. *offset0 = *offset1;
  1636. *row_inc = pixinc(-screen_width * (fbh * x_predecim - 1) +
  1637. y_predecim + (fieldmode ? 1 : 0),
  1638. ps);
  1639. *pix_inc = pixinc(x_predecim * screen_width, ps);
  1640. break;
  1641. case OMAP_DSS_ROT_180 + 4:
  1642. *offset1 = screen_width * (fbh - 1) * ps;
  1643. if (field_offset)
  1644. *offset0 = *offset1 - field_offset * screen_width * ps;
  1645. else
  1646. *offset0 = *offset1;
  1647. *row_inc = pixinc(1 - y_predecim * screen_width * 2 -
  1648. (fieldmode ? screen_width : 0),
  1649. ps);
  1650. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  1651. color_mode == OMAP_DSS_COLOR_UYVY)
  1652. *pix_inc = pixinc(x_predecim, 2 * ps);
  1653. else
  1654. *pix_inc = pixinc(x_predecim, ps);
  1655. break;
  1656. case OMAP_DSS_ROT_270 + 4:
  1657. *offset1 = (screen_width * (fbh - 1) + fbw - 1) * ps;
  1658. if (field_offset)
  1659. *offset0 = *offset1 - field_offset * ps;
  1660. else
  1661. *offset0 = *offset1;
  1662. *row_inc = pixinc(screen_width * (fbh * x_predecim - 1) -
  1663. y_predecim - (fieldmode ? 1 : 0),
  1664. ps);
  1665. *pix_inc = pixinc(-x_predecim * screen_width, ps);
  1666. break;
  1667. default:
  1668. BUG();
  1669. return;
  1670. }
  1671. }
  1672. static void calc_tiler_rotation_offset(u16 screen_width, u16 width,
  1673. enum omap_color_mode color_mode, bool fieldmode,
  1674. unsigned int field_offset, unsigned *offset0, unsigned *offset1,
  1675. s32 *row_inc, s32 *pix_inc, int x_predecim, int y_predecim)
  1676. {
  1677. u8 ps;
  1678. switch (color_mode) {
  1679. case OMAP_DSS_COLOR_CLUT1:
  1680. case OMAP_DSS_COLOR_CLUT2:
  1681. case OMAP_DSS_COLOR_CLUT4:
  1682. case OMAP_DSS_COLOR_CLUT8:
  1683. BUG();
  1684. return;
  1685. default:
  1686. ps = color_mode_to_bpp(color_mode) / 8;
  1687. break;
  1688. }
  1689. DSSDBG("scrw %d, width %d\n", screen_width, width);
  1690. /*
  1691. * field 0 = even field = bottom field
  1692. * field 1 = odd field = top field
  1693. */
  1694. *offset1 = 0;
  1695. if (field_offset)
  1696. *offset0 = *offset1 + field_offset * screen_width * ps;
  1697. else
  1698. *offset0 = *offset1;
  1699. *row_inc = pixinc(1 + (y_predecim * screen_width - width * x_predecim) +
  1700. (fieldmode ? screen_width : 0), ps);
  1701. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  1702. color_mode == OMAP_DSS_COLOR_UYVY)
  1703. *pix_inc = pixinc(x_predecim, 2 * ps);
  1704. else
  1705. *pix_inc = pixinc(x_predecim, ps);
  1706. }
  1707. /*
  1708. * This function is used to avoid synclosts in OMAP3, because of some
  1709. * undocumented horizontal position and timing related limitations.
  1710. */
  1711. static int check_horiz_timing_omap3(enum omap_plane plane,
  1712. const struct omap_video_timings *t, u16 pos_x,
  1713. u16 width, u16 height, u16 out_width, u16 out_height)
  1714. {
  1715. const int ds = DIV_ROUND_UP(height, out_height);
  1716. unsigned long nonactive;
  1717. static const u8 limits[3] = { 8, 10, 20 };
  1718. u64 val, blank;
  1719. unsigned long pclk = dispc_plane_pclk_rate(plane);
  1720. unsigned long lclk = dispc_plane_lclk_rate(plane);
  1721. int i;
  1722. nonactive = t->x_res + t->hfp + t->hsw + t->hbp - out_width;
  1723. i = 0;
  1724. if (out_height < height)
  1725. i++;
  1726. if (out_width < width)
  1727. i++;
  1728. blank = div_u64((u64)(t->hbp + t->hsw + t->hfp) * lclk, pclk);
  1729. DSSDBG("blanking period + ppl = %llu (limit = %u)\n", blank, limits[i]);
  1730. if (blank <= limits[i])
  1731. return -EINVAL;
  1732. /*
  1733. * Pixel data should be prepared before visible display point starts.
  1734. * So, atleast DS-2 lines must have already been fetched by DISPC
  1735. * during nonactive - pos_x period.
  1736. */
  1737. val = div_u64((u64)(nonactive - pos_x) * lclk, pclk);
  1738. DSSDBG("(nonactive - pos_x) * pcd = %llu max(0, DS - 2) * width = %d\n",
  1739. val, max(0, ds - 2) * width);
  1740. if (val < max(0, ds - 2) * width)
  1741. return -EINVAL;
  1742. /*
  1743. * All lines need to be refilled during the nonactive period of which
  1744. * only one line can be loaded during the active period. So, atleast
  1745. * DS - 1 lines should be loaded during nonactive period.
  1746. */
  1747. val = div_u64((u64)nonactive * lclk, pclk);
  1748. DSSDBG("nonactive * pcd = %llu, max(0, DS - 1) * width = %d\n",
  1749. val, max(0, ds - 1) * width);
  1750. if (val < max(0, ds - 1) * width)
  1751. return -EINVAL;
  1752. return 0;
  1753. }
  1754. static unsigned long calc_core_clk_five_taps(enum omap_plane plane,
  1755. const struct omap_video_timings *mgr_timings, u16 width,
  1756. u16 height, u16 out_width, u16 out_height,
  1757. enum omap_color_mode color_mode)
  1758. {
  1759. u32 core_clk = 0;
  1760. u64 tmp;
  1761. unsigned long pclk = dispc_plane_pclk_rate(plane);
  1762. if (height <= out_height && width <= out_width)
  1763. return (unsigned long) pclk;
  1764. if (height > out_height) {
  1765. unsigned int ppl = mgr_timings->x_res;
  1766. tmp = pclk * height * out_width;
  1767. do_div(tmp, 2 * out_height * ppl);
  1768. core_clk = tmp;
  1769. if (height > 2 * out_height) {
  1770. if (ppl == out_width)
  1771. return 0;
  1772. tmp = pclk * (height - 2 * out_height) * out_width;
  1773. do_div(tmp, 2 * out_height * (ppl - out_width));
  1774. core_clk = max_t(u32, core_clk, tmp);
  1775. }
  1776. }
  1777. if (width > out_width) {
  1778. tmp = pclk * width;
  1779. do_div(tmp, out_width);
  1780. core_clk = max_t(u32, core_clk, tmp);
  1781. if (color_mode == OMAP_DSS_COLOR_RGB24U)
  1782. core_clk <<= 1;
  1783. }
  1784. return core_clk;
  1785. }
  1786. static unsigned long calc_core_clk_24xx(enum omap_plane plane, u16 width,
  1787. u16 height, u16 out_width, u16 out_height, bool mem_to_mem)
  1788. {
  1789. unsigned long pclk = dispc_plane_pclk_rate(plane);
  1790. if (height > out_height && width > out_width)
  1791. return pclk * 4;
  1792. else
  1793. return pclk * 2;
  1794. }
  1795. static unsigned long calc_core_clk_34xx(enum omap_plane plane, u16 width,
  1796. u16 height, u16 out_width, u16 out_height, bool mem_to_mem)
  1797. {
  1798. unsigned int hf, vf;
  1799. unsigned long pclk = dispc_plane_pclk_rate(plane);
  1800. /*
  1801. * FIXME how to determine the 'A' factor
  1802. * for the no downscaling case ?
  1803. */
  1804. if (width > 3 * out_width)
  1805. hf = 4;
  1806. else if (width > 2 * out_width)
  1807. hf = 3;
  1808. else if (width > out_width)
  1809. hf = 2;
  1810. else
  1811. hf = 1;
  1812. if (height > out_height)
  1813. vf = 2;
  1814. else
  1815. vf = 1;
  1816. return pclk * vf * hf;
  1817. }
  1818. static unsigned long calc_core_clk_44xx(enum omap_plane plane, u16 width,
  1819. u16 height, u16 out_width, u16 out_height, bool mem_to_mem)
  1820. {
  1821. unsigned long pclk;
  1822. /*
  1823. * If the overlay/writeback is in mem to mem mode, there are no
  1824. * downscaling limitations with respect to pixel clock, return 1 as
  1825. * required core clock to represent that we have sufficient enough
  1826. * core clock to do maximum downscaling
  1827. */
  1828. if (mem_to_mem)
  1829. return 1;
  1830. pclk = dispc_plane_pclk_rate(plane);
  1831. if (width > out_width)
  1832. return DIV_ROUND_UP(pclk, out_width) * width;
  1833. else
  1834. return pclk;
  1835. }
  1836. static int dispc_ovl_calc_scaling_24xx(enum omap_plane plane,
  1837. const struct omap_video_timings *mgr_timings,
  1838. u16 width, u16 height, u16 out_width, u16 out_height,
  1839. enum omap_color_mode color_mode, bool *five_taps,
  1840. int *x_predecim, int *y_predecim, int *decim_x, int *decim_y,
  1841. u16 pos_x, unsigned long *core_clk, bool mem_to_mem)
  1842. {
  1843. int error;
  1844. u16 in_width, in_height;
  1845. int min_factor = min(*decim_x, *decim_y);
  1846. const int maxsinglelinewidth =
  1847. dss_feat_get_param_max(FEAT_PARAM_LINEWIDTH);
  1848. *five_taps = false;
  1849. do {
  1850. in_height = DIV_ROUND_UP(height, *decim_y);
  1851. in_width = DIV_ROUND_UP(width, *decim_x);
  1852. *core_clk = dispc.feat->calc_core_clk(plane, in_width,
  1853. in_height, out_width, out_height, mem_to_mem);
  1854. error = (in_width > maxsinglelinewidth || !*core_clk ||
  1855. *core_clk > dispc_core_clk_rate());
  1856. if (error) {
  1857. if (*decim_x == *decim_y) {
  1858. *decim_x = min_factor;
  1859. ++*decim_y;
  1860. } else {
  1861. swap(*decim_x, *decim_y);
  1862. if (*decim_x < *decim_y)
  1863. ++*decim_x;
  1864. }
  1865. }
  1866. } while (*decim_x <= *x_predecim && *decim_y <= *y_predecim && error);
  1867. if (in_width > maxsinglelinewidth) {
  1868. DSSERR("Cannot scale max input width exceeded");
  1869. return -EINVAL;
  1870. }
  1871. return 0;
  1872. }
  1873. static int dispc_ovl_calc_scaling_34xx(enum omap_plane plane,
  1874. const struct omap_video_timings *mgr_timings,
  1875. u16 width, u16 height, u16 out_width, u16 out_height,
  1876. enum omap_color_mode color_mode, bool *five_taps,
  1877. int *x_predecim, int *y_predecim, int *decim_x, int *decim_y,
  1878. u16 pos_x, unsigned long *core_clk, bool mem_to_mem)
  1879. {
  1880. int error;
  1881. u16 in_width, in_height;
  1882. int min_factor = min(*decim_x, *decim_y);
  1883. const int maxsinglelinewidth =
  1884. dss_feat_get_param_max(FEAT_PARAM_LINEWIDTH);
  1885. do {
  1886. in_height = DIV_ROUND_UP(height, *decim_y);
  1887. in_width = DIV_ROUND_UP(width, *decim_x);
  1888. *core_clk = calc_core_clk_five_taps(plane, mgr_timings,
  1889. in_width, in_height, out_width, out_height, color_mode);
  1890. error = check_horiz_timing_omap3(plane, mgr_timings,
  1891. pos_x, in_width, in_height, out_width,
  1892. out_height);
  1893. if (in_width > maxsinglelinewidth)
  1894. if (in_height > out_height &&
  1895. in_height < out_height * 2)
  1896. *five_taps = false;
  1897. if (!*five_taps)
  1898. *core_clk = dispc.feat->calc_core_clk(plane, in_width,
  1899. in_height, out_width, out_height,
  1900. mem_to_mem);
  1901. error = (error || in_width > maxsinglelinewidth * 2 ||
  1902. (in_width > maxsinglelinewidth && *five_taps) ||
  1903. !*core_clk || *core_clk > dispc_core_clk_rate());
  1904. if (error) {
  1905. if (*decim_x == *decim_y) {
  1906. *decim_x = min_factor;
  1907. ++*decim_y;
  1908. } else {
  1909. swap(*decim_x, *decim_y);
  1910. if (*decim_x < *decim_y)
  1911. ++*decim_x;
  1912. }
  1913. }
  1914. } while (*decim_x <= *x_predecim && *decim_y <= *y_predecim && error);
  1915. if (check_horiz_timing_omap3(plane, mgr_timings, pos_x, width, height,
  1916. out_width, out_height)){
  1917. DSSERR("horizontal timing too tight\n");
  1918. return -EINVAL;
  1919. }
  1920. if (in_width > (maxsinglelinewidth * 2)) {
  1921. DSSERR("Cannot setup scaling");
  1922. DSSERR("width exceeds maximum width possible");
  1923. return -EINVAL;
  1924. }
  1925. if (in_width > maxsinglelinewidth && *five_taps) {
  1926. DSSERR("cannot setup scaling with five taps");
  1927. return -EINVAL;
  1928. }
  1929. return 0;
  1930. }
  1931. static int dispc_ovl_calc_scaling_44xx(enum omap_plane plane,
  1932. const struct omap_video_timings *mgr_timings,
  1933. u16 width, u16 height, u16 out_width, u16 out_height,
  1934. enum omap_color_mode color_mode, bool *five_taps,
  1935. int *x_predecim, int *y_predecim, int *decim_x, int *decim_y,
  1936. u16 pos_x, unsigned long *core_clk, bool mem_to_mem)
  1937. {
  1938. u16 in_width, in_width_max;
  1939. int decim_x_min = *decim_x;
  1940. u16 in_height = DIV_ROUND_UP(height, *decim_y);
  1941. const int maxsinglelinewidth =
  1942. dss_feat_get_param_max(FEAT_PARAM_LINEWIDTH);
  1943. const int maxdownscale = dss_feat_get_param_max(FEAT_PARAM_DOWNSCALE);
  1944. if (mem_to_mem) {
  1945. in_width_max = out_width * maxdownscale;
  1946. } else {
  1947. unsigned long pclk = dispc_plane_pclk_rate(plane);
  1948. in_width_max = dispc_core_clk_rate() /
  1949. DIV_ROUND_UP(pclk, out_width);
  1950. }
  1951. *decim_x = DIV_ROUND_UP(width, in_width_max);
  1952. *decim_x = *decim_x > decim_x_min ? *decim_x : decim_x_min;
  1953. if (*decim_x > *x_predecim)
  1954. return -EINVAL;
  1955. do {
  1956. in_width = DIV_ROUND_UP(width, *decim_x);
  1957. } while (*decim_x <= *x_predecim &&
  1958. in_width > maxsinglelinewidth && ++*decim_x);
  1959. if (in_width > maxsinglelinewidth) {
  1960. DSSERR("Cannot scale width exceeds max line width");
  1961. return -EINVAL;
  1962. }
  1963. *core_clk = dispc.feat->calc_core_clk(plane, in_width, in_height,
  1964. out_width, out_height, mem_to_mem);
  1965. return 0;
  1966. }
  1967. static int dispc_ovl_calc_scaling(enum omap_plane plane,
  1968. enum omap_overlay_caps caps,
  1969. const struct omap_video_timings *mgr_timings,
  1970. u16 width, u16 height, u16 out_width, u16 out_height,
  1971. enum omap_color_mode color_mode, bool *five_taps,
  1972. int *x_predecim, int *y_predecim, u16 pos_x,
  1973. enum omap_dss_rotation_type rotation_type, bool mem_to_mem)
  1974. {
  1975. const int maxdownscale = dss_feat_get_param_max(FEAT_PARAM_DOWNSCALE);
  1976. const int max_decim_limit = 16;
  1977. unsigned long core_clk = 0;
  1978. int decim_x, decim_y, ret;
  1979. if (width == out_width && height == out_height)
  1980. return 0;
  1981. if ((caps & OMAP_DSS_OVL_CAP_SCALE) == 0)
  1982. return -EINVAL;
  1983. if (plane == OMAP_DSS_WB) {
  1984. *x_predecim = *y_predecim = 1;
  1985. } else {
  1986. *x_predecim = max_decim_limit;
  1987. *y_predecim = (rotation_type == OMAP_DSS_ROT_TILER &&
  1988. dss_has_feature(FEAT_BURST_2D)) ?
  1989. 2 : max_decim_limit;
  1990. }
  1991. if (color_mode == OMAP_DSS_COLOR_CLUT1 ||
  1992. color_mode == OMAP_DSS_COLOR_CLUT2 ||
  1993. color_mode == OMAP_DSS_COLOR_CLUT4 ||
  1994. color_mode == OMAP_DSS_COLOR_CLUT8) {
  1995. *x_predecim = 1;
  1996. *y_predecim = 1;
  1997. *five_taps = false;
  1998. return 0;
  1999. }
  2000. decim_x = DIV_ROUND_UP(DIV_ROUND_UP(width, out_width), maxdownscale);
  2001. decim_y = DIV_ROUND_UP(DIV_ROUND_UP(height, out_height), maxdownscale);
  2002. if (decim_x > *x_predecim || out_width > width * 8)
  2003. return -EINVAL;
  2004. if (decim_y > *y_predecim || out_height > height * 8)
  2005. return -EINVAL;
  2006. ret = dispc.feat->calc_scaling(plane, mgr_timings, width, height,
  2007. out_width, out_height, color_mode, five_taps,
  2008. x_predecim, y_predecim, &decim_x, &decim_y, pos_x, &core_clk,
  2009. mem_to_mem);
  2010. if (ret)
  2011. return ret;
  2012. DSSDBG("required core clk rate = %lu Hz\n", core_clk);
  2013. DSSDBG("current core clk rate = %lu Hz\n", dispc_core_clk_rate());
  2014. if (!core_clk || core_clk > dispc_core_clk_rate()) {
  2015. DSSERR("failed to set up scaling, "
  2016. "required core clk rate = %lu Hz, "
  2017. "current core clk rate = %lu Hz\n",
  2018. core_clk, dispc_core_clk_rate());
  2019. return -EINVAL;
  2020. }
  2021. *x_predecim = decim_x;
  2022. *y_predecim = decim_y;
  2023. return 0;
  2024. }
  2025. static int dispc_ovl_setup_common(enum omap_plane plane,
  2026. enum omap_overlay_caps caps, u32 paddr, u32 p_uv_addr,
  2027. u16 screen_width, int pos_x, int pos_y, u16 width, u16 height,
  2028. u16 out_width, u16 out_height, enum omap_color_mode color_mode,
  2029. u8 rotation, bool mirror, u8 zorder, u8 pre_mult_alpha,
  2030. u8 global_alpha, enum omap_dss_rotation_type rotation_type,
  2031. bool replication, const struct omap_video_timings *mgr_timings,
  2032. bool mem_to_mem)
  2033. {
  2034. bool five_taps = true;
  2035. bool fieldmode = 0;
  2036. int r, cconv = 0;
  2037. unsigned offset0, offset1;
  2038. s32 row_inc;
  2039. s32 pix_inc;
  2040. u16 frame_width, frame_height;
  2041. unsigned int field_offset = 0;
  2042. u16 in_height = height;
  2043. u16 in_width = width;
  2044. int x_predecim = 1, y_predecim = 1;
  2045. bool ilace = mgr_timings->interlace;
  2046. if (paddr == 0)
  2047. return -EINVAL;
  2048. out_width = out_width == 0 ? width : out_width;
  2049. out_height = out_height == 0 ? height : out_height;
  2050. if (ilace && height == out_height)
  2051. fieldmode = 1;
  2052. if (ilace) {
  2053. if (fieldmode)
  2054. in_height /= 2;
  2055. pos_y /= 2;
  2056. out_height /= 2;
  2057. DSSDBG("adjusting for ilace: height %d, pos_y %d, "
  2058. "out_height %d\n", in_height, pos_y,
  2059. out_height);
  2060. }
  2061. if (!dss_feat_color_mode_supported(plane, color_mode))
  2062. return -EINVAL;
  2063. r = dispc_ovl_calc_scaling(plane, caps, mgr_timings, in_width,
  2064. in_height, out_width, out_height, color_mode,
  2065. &five_taps, &x_predecim, &y_predecim, pos_x,
  2066. rotation_type, mem_to_mem);
  2067. if (r)
  2068. return r;
  2069. in_width = DIV_ROUND_UP(in_width, x_predecim);
  2070. in_height = DIV_ROUND_UP(in_height, y_predecim);
  2071. if (color_mode == OMAP_DSS_COLOR_YUV2 ||
  2072. color_mode == OMAP_DSS_COLOR_UYVY ||
  2073. color_mode == OMAP_DSS_COLOR_NV12)
  2074. cconv = 1;
  2075. if (ilace && !fieldmode) {
  2076. /*
  2077. * when downscaling the bottom field may have to start several
  2078. * source lines below the top field. Unfortunately ACCUI
  2079. * registers will only hold the fractional part of the offset
  2080. * so the integer part must be added to the base address of the
  2081. * bottom field.
  2082. */
  2083. if (!in_height || in_height == out_height)
  2084. field_offset = 0;
  2085. else
  2086. field_offset = in_height / out_height / 2;
  2087. }
  2088. /* Fields are independent but interleaved in memory. */
  2089. if (fieldmode)
  2090. field_offset = 1;
  2091. offset0 = 0;
  2092. offset1 = 0;
  2093. row_inc = 0;
  2094. pix_inc = 0;
  2095. if (plane == OMAP_DSS_WB) {
  2096. frame_width = out_width;
  2097. frame_height = out_height;
  2098. } else {
  2099. frame_width = in_width;
  2100. frame_height = height;
  2101. }
  2102. if (rotation_type == OMAP_DSS_ROT_TILER)
  2103. calc_tiler_rotation_offset(screen_width, frame_width,
  2104. color_mode, fieldmode, field_offset,
  2105. &offset0, &offset1, &row_inc, &pix_inc,
  2106. x_predecim, y_predecim);
  2107. else if (rotation_type == OMAP_DSS_ROT_DMA)
  2108. calc_dma_rotation_offset(rotation, mirror, screen_width,
  2109. frame_width, frame_height,
  2110. color_mode, fieldmode, field_offset,
  2111. &offset0, &offset1, &row_inc, &pix_inc,
  2112. x_predecim, y_predecim);
  2113. else
  2114. calc_vrfb_rotation_offset(rotation, mirror,
  2115. screen_width, frame_width, frame_height,
  2116. color_mode, fieldmode, field_offset,
  2117. &offset0, &offset1, &row_inc, &pix_inc,
  2118. x_predecim, y_predecim);
  2119. DSSDBG("offset0 %u, offset1 %u, row_inc %d, pix_inc %d\n",
  2120. offset0, offset1, row_inc, pix_inc);
  2121. dispc_ovl_set_color_mode(plane, color_mode);
  2122. dispc_ovl_configure_burst_type(plane, rotation_type);
  2123. dispc_ovl_set_ba0(plane, paddr + offset0);
  2124. dispc_ovl_set_ba1(plane, paddr + offset1);
  2125. if (OMAP_DSS_COLOR_NV12 == color_mode) {
  2126. dispc_ovl_set_ba0_uv(plane, p_uv_addr + offset0);
  2127. dispc_ovl_set_ba1_uv(plane, p_uv_addr + offset1);
  2128. }
  2129. dispc_ovl_set_row_inc(plane, row_inc);
  2130. dispc_ovl_set_pix_inc(plane, pix_inc);
  2131. DSSDBG("%d,%d %dx%d -> %dx%d\n", pos_x, pos_y, in_width,
  2132. in_height, out_width, out_height);
  2133. dispc_ovl_set_pos(plane, caps, pos_x, pos_y);
  2134. dispc_ovl_set_input_size(plane, in_width, in_height);
  2135. if (caps & OMAP_DSS_OVL_CAP_SCALE) {
  2136. dispc_ovl_set_scaling(plane, in_width, in_height, out_width,
  2137. out_height, ilace, five_taps, fieldmode,
  2138. color_mode, rotation);
  2139. dispc_ovl_set_output_size(plane, out_width, out_height);
  2140. dispc_ovl_set_vid_color_conv(plane, cconv);
  2141. }
  2142. dispc_ovl_set_rotation_attrs(plane, rotation, mirror, color_mode);
  2143. dispc_ovl_set_zorder(plane, caps, zorder);
  2144. dispc_ovl_set_pre_mult_alpha(plane, caps, pre_mult_alpha);
  2145. dispc_ovl_setup_global_alpha(plane, caps, global_alpha);
  2146. dispc_ovl_enable_replication(plane, caps, replication);
  2147. return 0;
  2148. }
  2149. int dispc_ovl_setup(enum omap_plane plane, const struct omap_overlay_info *oi,
  2150. bool replication, const struct omap_video_timings *mgr_timings,
  2151. bool mem_to_mem)
  2152. {
  2153. int r;
  2154. enum omap_overlay_caps caps = dss_feat_get_overlay_caps(plane);
  2155. enum omap_channel channel;
  2156. channel = dispc_ovl_get_channel_out(plane);
  2157. DSSDBG("dispc_ovl_setup %d, pa %x, pa_uv %x, sw %d, %d,%d, %dx%d -> "
  2158. "%dx%d, cmode %x, rot %d, mir %d, chan %d repl %d\n",
  2159. plane, oi->paddr, oi->p_uv_addr, oi->screen_width, oi->pos_x,
  2160. oi->pos_y, oi->width, oi->height, oi->out_width, oi->out_height,
  2161. oi->color_mode, oi->rotation, oi->mirror, channel, replication);
  2162. r = dispc_ovl_setup_common(plane, caps, oi->paddr, oi->p_uv_addr,
  2163. oi->screen_width, oi->pos_x, oi->pos_y, oi->width, oi->height,
  2164. oi->out_width, oi->out_height, oi->color_mode, oi->rotation,
  2165. oi->mirror, oi->zorder, oi->pre_mult_alpha, oi->global_alpha,
  2166. oi->rotation_type, replication, mgr_timings, mem_to_mem);
  2167. return r;
  2168. }
  2169. int dispc_wb_setup(const struct omap_dss_writeback_info *wi,
  2170. bool mem_to_mem, const struct omap_video_timings *mgr_timings)
  2171. {
  2172. int r;
  2173. u32 l;
  2174. enum omap_plane plane = OMAP_DSS_WB;
  2175. const int pos_x = 0, pos_y = 0;
  2176. const u8 zorder = 0, global_alpha = 0;
  2177. const bool replication = false;
  2178. bool truncation;
  2179. int in_width = mgr_timings->x_res;
  2180. int in_height = mgr_timings->y_res;
  2181. enum omap_overlay_caps caps =
  2182. OMAP_DSS_OVL_CAP_SCALE | OMAP_DSS_OVL_CAP_PRE_MULT_ALPHA;
  2183. DSSDBG("dispc_wb_setup, pa %x, pa_uv %x, %d,%d -> %dx%d, cmode %x, "
  2184. "rot %d, mir %d\n", wi->paddr, wi->p_uv_addr, in_width,
  2185. in_height, wi->width, wi->height, wi->color_mode, wi->rotation,
  2186. wi->mirror);
  2187. r = dispc_ovl_setup_common(plane, caps, wi->paddr, wi->p_uv_addr,
  2188. wi->buf_width, pos_x, pos_y, in_width, in_height, wi->width,
  2189. wi->height, wi->color_mode, wi->rotation, wi->mirror, zorder,
  2190. wi->pre_mult_alpha, global_alpha, wi->rotation_type,
  2191. replication, mgr_timings, mem_to_mem);
  2192. switch (wi->color_mode) {
  2193. case OMAP_DSS_COLOR_RGB16:
  2194. case OMAP_DSS_COLOR_RGB24P:
  2195. case OMAP_DSS_COLOR_ARGB16:
  2196. case OMAP_DSS_COLOR_RGBA16:
  2197. case OMAP_DSS_COLOR_RGB12U:
  2198. case OMAP_DSS_COLOR_ARGB16_1555:
  2199. case OMAP_DSS_COLOR_XRGB16_1555:
  2200. case OMAP_DSS_COLOR_RGBX16:
  2201. truncation = true;
  2202. break;
  2203. default:
  2204. truncation = false;
  2205. break;
  2206. }
  2207. /* setup extra DISPC_WB_ATTRIBUTES */
  2208. l = dispc_read_reg(DISPC_OVL_ATTRIBUTES(plane));
  2209. l = FLD_MOD(l, truncation, 10, 10); /* TRUNCATIONENABLE */
  2210. l = FLD_MOD(l, mem_to_mem, 19, 19); /* WRITEBACKMODE */
  2211. dispc_write_reg(DISPC_OVL_ATTRIBUTES(plane), l);
  2212. return r;
  2213. }
  2214. int dispc_ovl_enable(enum omap_plane plane, bool enable)
  2215. {
  2216. DSSDBG("dispc_enable_plane %d, %d\n", plane, enable);
  2217. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), enable ? 1 : 0, 0, 0);
  2218. return 0;
  2219. }
  2220. bool dispc_ovl_enabled(enum omap_plane plane)
  2221. {
  2222. return REG_GET(DISPC_OVL_ATTRIBUTES(plane), 0, 0);
  2223. }
  2224. static void dispc_mgr_disable_isr(void *data, u32 mask)
  2225. {
  2226. struct completion *compl = data;
  2227. complete(compl);
  2228. }
  2229. void dispc_mgr_enable(enum omap_channel channel, bool enable)
  2230. {
  2231. mgr_fld_write(channel, DISPC_MGR_FLD_ENABLE, enable);
  2232. /* flush posted write */
  2233. mgr_fld_read(channel, DISPC_MGR_FLD_ENABLE);
  2234. }
  2235. bool dispc_mgr_is_enabled(enum omap_channel channel)
  2236. {
  2237. return !!mgr_fld_read(channel, DISPC_MGR_FLD_ENABLE);
  2238. }
  2239. static void dispc_mgr_enable_lcd_out(enum omap_channel channel)
  2240. {
  2241. dispc_mgr_enable(channel, true);
  2242. }
  2243. static void dispc_mgr_disable_lcd_out(enum omap_channel channel)
  2244. {
  2245. DECLARE_COMPLETION_ONSTACK(framedone_compl);
  2246. int r;
  2247. u32 irq;
  2248. if (dispc_mgr_is_enabled(channel) == false)
  2249. return;
  2250. /*
  2251. * When we disable LCD output, we need to wait for FRAMEDONE to know
  2252. * that DISPC has finished with the LCD output.
  2253. */
  2254. irq = dispc_mgr_get_framedone_irq(channel);
  2255. r = omap_dispc_register_isr(dispc_mgr_disable_isr, &framedone_compl,
  2256. irq);
  2257. if (r)
  2258. DSSERR("failed to register FRAMEDONE isr\n");
  2259. dispc_mgr_enable(channel, false);
  2260. /* if we couldn't register for framedone, just sleep and exit */
  2261. if (r) {
  2262. msleep(100);
  2263. return;
  2264. }
  2265. if (!wait_for_completion_timeout(&framedone_compl,
  2266. msecs_to_jiffies(100)))
  2267. DSSERR("timeout waiting for FRAME DONE\n");
  2268. r = omap_dispc_unregister_isr(dispc_mgr_disable_isr, &framedone_compl,
  2269. irq);
  2270. if (r)
  2271. DSSERR("failed to unregister FRAMEDONE isr\n");
  2272. }
  2273. static void dispc_digit_out_enable_isr(void *data, u32 mask)
  2274. {
  2275. struct completion *compl = data;
  2276. /* ignore any sync lost interrupts */
  2277. if (mask & (DISPC_IRQ_EVSYNC_EVEN | DISPC_IRQ_EVSYNC_ODD))
  2278. complete(compl);
  2279. }
  2280. static void dispc_mgr_enable_digit_out(void)
  2281. {
  2282. DECLARE_COMPLETION_ONSTACK(vsync_compl);
  2283. int r;
  2284. u32 irq_mask;
  2285. if (dispc_mgr_is_enabled(OMAP_DSS_CHANNEL_DIGIT) == true)
  2286. return;
  2287. /*
  2288. * Digit output produces some sync lost interrupts during the first
  2289. * frame when enabling. Those need to be ignored, so we register for the
  2290. * sync lost irq to prevent the error handler from triggering.
  2291. */
  2292. irq_mask = dispc_mgr_get_vsync_irq(OMAP_DSS_CHANNEL_DIGIT) |
  2293. dispc_mgr_get_sync_lost_irq(OMAP_DSS_CHANNEL_DIGIT);
  2294. r = omap_dispc_register_isr(dispc_digit_out_enable_isr, &vsync_compl,
  2295. irq_mask);
  2296. if (r) {
  2297. DSSERR("failed to register %x isr\n", irq_mask);
  2298. return;
  2299. }
  2300. dispc_mgr_enable(OMAP_DSS_CHANNEL_DIGIT, true);
  2301. /* wait for the first evsync */
  2302. if (!wait_for_completion_timeout(&vsync_compl, msecs_to_jiffies(100)))
  2303. DSSERR("timeout waiting for digit out to start\n");
  2304. r = omap_dispc_unregister_isr(dispc_digit_out_enable_isr, &vsync_compl,
  2305. irq_mask);
  2306. if (r)
  2307. DSSERR("failed to unregister %x isr\n", irq_mask);
  2308. }
  2309. static void dispc_mgr_disable_digit_out(void)
  2310. {
  2311. DECLARE_COMPLETION_ONSTACK(framedone_compl);
  2312. int r, i;
  2313. u32 irq_mask;
  2314. int num_irqs;
  2315. if (dispc_mgr_is_enabled(OMAP_DSS_CHANNEL_DIGIT) == false)
  2316. return;
  2317. /*
  2318. * When we disable the digit output, we need to wait for FRAMEDONE to
  2319. * know that DISPC has finished with the output.
  2320. */
  2321. irq_mask = dispc_mgr_get_framedone_irq(OMAP_DSS_CHANNEL_DIGIT);
  2322. num_irqs = 1;
  2323. if (!irq_mask) {
  2324. /*
  2325. * omap 2/3 don't have framedone irq for TV, so we need to use
  2326. * vsyncs for this.
  2327. */
  2328. irq_mask = dispc_mgr_get_vsync_irq(OMAP_DSS_CHANNEL_DIGIT);
  2329. /*
  2330. * We need to wait for both even and odd vsyncs. Note that this
  2331. * is not totally reliable, as we could get a vsync interrupt
  2332. * before we disable the output, which leads to timeout in the
  2333. * wait_for_completion.
  2334. */
  2335. num_irqs = 2;
  2336. }
  2337. r = omap_dispc_register_isr(dispc_mgr_disable_isr, &framedone_compl,
  2338. irq_mask);
  2339. if (r)
  2340. DSSERR("failed to register %x isr\n", irq_mask);
  2341. dispc_mgr_enable(OMAP_DSS_CHANNEL_DIGIT, false);
  2342. /* if we couldn't register the irq, just sleep and exit */
  2343. if (r) {
  2344. msleep(100);
  2345. return;
  2346. }
  2347. for (i = 0; i < num_irqs; ++i) {
  2348. if (!wait_for_completion_timeout(&framedone_compl,
  2349. msecs_to_jiffies(100)))
  2350. DSSERR("timeout waiting for digit out to stop\n");
  2351. }
  2352. r = omap_dispc_unregister_isr(dispc_mgr_disable_isr, &framedone_compl,
  2353. irq_mask);
  2354. if (r)
  2355. DSSERR("failed to unregister %x isr\n", irq_mask);
  2356. }
  2357. void dispc_mgr_enable_sync(enum omap_channel channel)
  2358. {
  2359. if (dss_mgr_is_lcd(channel))
  2360. dispc_mgr_enable_lcd_out(channel);
  2361. else if (channel == OMAP_DSS_CHANNEL_DIGIT)
  2362. dispc_mgr_enable_digit_out();
  2363. else
  2364. WARN_ON(1);
  2365. }
  2366. void dispc_mgr_disable_sync(enum omap_channel channel)
  2367. {
  2368. if (dss_mgr_is_lcd(channel))
  2369. dispc_mgr_disable_lcd_out(channel);
  2370. else if (channel == OMAP_DSS_CHANNEL_DIGIT)
  2371. dispc_mgr_disable_digit_out();
  2372. else
  2373. WARN_ON(1);
  2374. }
  2375. void dispc_wb_enable(bool enable)
  2376. {
  2377. REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(OMAP_DSS_WB), enable ? 1 : 0, 0, 0);
  2378. }
  2379. bool dispc_wb_is_enabled(void)
  2380. {
  2381. return REG_GET(DISPC_OVL_ATTRIBUTES(OMAP_DSS_WB), 0, 0);
  2382. }
  2383. static void dispc_lcd_enable_signal_polarity(bool act_high)
  2384. {
  2385. if (!dss_has_feature(FEAT_LCDENABLEPOL))
  2386. return;
  2387. REG_FLD_MOD(DISPC_CONTROL, act_high ? 1 : 0, 29, 29);
  2388. }
  2389. void dispc_lcd_enable_signal(bool enable)
  2390. {
  2391. if (!dss_has_feature(FEAT_LCDENABLESIGNAL))
  2392. return;
  2393. REG_FLD_MOD(DISPC_CONTROL, enable ? 1 : 0, 28, 28);
  2394. }
  2395. void dispc_pck_free_enable(bool enable)
  2396. {
  2397. if (!dss_has_feature(FEAT_PCKFREEENABLE))
  2398. return;
  2399. REG_FLD_MOD(DISPC_CONTROL, enable ? 1 : 0, 27, 27);
  2400. }
  2401. static void dispc_mgr_enable_fifohandcheck(enum omap_channel channel, bool enable)
  2402. {
  2403. mgr_fld_write(channel, DISPC_MGR_FLD_FIFOHANDCHECK, enable);
  2404. }
  2405. static void dispc_mgr_set_lcd_type_tft(enum omap_channel channel)
  2406. {
  2407. mgr_fld_write(channel, DISPC_MGR_FLD_STNTFT, 1);
  2408. }
  2409. void dispc_set_loadmode(enum omap_dss_load_mode mode)
  2410. {
  2411. REG_FLD_MOD(DISPC_CONFIG, mode, 2, 1);
  2412. }
  2413. static void dispc_mgr_set_default_color(enum omap_channel channel, u32 color)
  2414. {
  2415. dispc_write_reg(DISPC_DEFAULT_COLOR(channel), color);
  2416. }
  2417. static void dispc_mgr_set_trans_key(enum omap_channel ch,
  2418. enum omap_dss_trans_key_type type,
  2419. u32 trans_key)
  2420. {
  2421. mgr_fld_write(ch, DISPC_MGR_FLD_TCKSELECTION, type);
  2422. dispc_write_reg(DISPC_TRANS_COLOR(ch), trans_key);
  2423. }
  2424. static void dispc_mgr_enable_trans_key(enum omap_channel ch, bool enable)
  2425. {
  2426. mgr_fld_write(ch, DISPC_MGR_FLD_TCKENABLE, enable);
  2427. }
  2428. static void dispc_mgr_enable_alpha_fixed_zorder(enum omap_channel ch,
  2429. bool enable)
  2430. {
  2431. if (!dss_has_feature(FEAT_ALPHA_FIXED_ZORDER))
  2432. return;
  2433. if (ch == OMAP_DSS_CHANNEL_LCD)
  2434. REG_FLD_MOD(DISPC_CONFIG, enable, 18, 18);
  2435. else if (ch == OMAP_DSS_CHANNEL_DIGIT)
  2436. REG_FLD_MOD(DISPC_CONFIG, enable, 19, 19);
  2437. }
  2438. void dispc_mgr_setup(enum omap_channel channel,
  2439. const struct omap_overlay_manager_info *info)
  2440. {
  2441. dispc_mgr_set_default_color(channel, info->default_color);
  2442. dispc_mgr_set_trans_key(channel, info->trans_key_type, info->trans_key);
  2443. dispc_mgr_enable_trans_key(channel, info->trans_enabled);
  2444. dispc_mgr_enable_alpha_fixed_zorder(channel,
  2445. info->partial_alpha_enabled);
  2446. if (dss_has_feature(FEAT_CPR)) {
  2447. dispc_mgr_enable_cpr(channel, info->cpr_enable);
  2448. dispc_mgr_set_cpr_coef(channel, &info->cpr_coefs);
  2449. }
  2450. }
  2451. static void dispc_mgr_set_tft_data_lines(enum omap_channel channel, u8 data_lines)
  2452. {
  2453. int code;
  2454. switch (data_lines) {
  2455. case 12:
  2456. code = 0;
  2457. break;
  2458. case 16:
  2459. code = 1;
  2460. break;
  2461. case 18:
  2462. code = 2;
  2463. break;
  2464. case 24:
  2465. code = 3;
  2466. break;
  2467. default:
  2468. BUG();
  2469. return;
  2470. }
  2471. mgr_fld_write(channel, DISPC_MGR_FLD_TFTDATALINES, code);
  2472. }
  2473. static void dispc_mgr_set_io_pad_mode(enum dss_io_pad_mode mode)
  2474. {
  2475. u32 l;
  2476. int gpout0, gpout1;
  2477. switch (mode) {
  2478. case DSS_IO_PAD_MODE_RESET:
  2479. gpout0 = 0;
  2480. gpout1 = 0;
  2481. break;
  2482. case DSS_IO_PAD_MODE_RFBI:
  2483. gpout0 = 1;
  2484. gpout1 = 0;
  2485. break;
  2486. case DSS_IO_PAD_MODE_BYPASS:
  2487. gpout0 = 1;
  2488. gpout1 = 1;
  2489. break;
  2490. default:
  2491. BUG();
  2492. return;
  2493. }
  2494. l = dispc_read_reg(DISPC_CONTROL);
  2495. l = FLD_MOD(l, gpout0, 15, 15);
  2496. l = FLD_MOD(l, gpout1, 16, 16);
  2497. dispc_write_reg(DISPC_CONTROL, l);
  2498. }
  2499. static void dispc_mgr_enable_stallmode(enum omap_channel channel, bool enable)
  2500. {
  2501. mgr_fld_write(channel, DISPC_MGR_FLD_STALLMODE, enable);
  2502. }
  2503. void dispc_mgr_set_lcd_config(enum omap_channel channel,
  2504. const struct dss_lcd_mgr_config *config)
  2505. {
  2506. dispc_mgr_set_io_pad_mode(config->io_pad_mode);
  2507. dispc_mgr_enable_stallmode(channel, config->stallmode);
  2508. dispc_mgr_enable_fifohandcheck(channel, config->fifohandcheck);
  2509. dispc_mgr_set_clock_div(channel, &config->clock_info);
  2510. dispc_mgr_set_tft_data_lines(channel, config->video_port_width);
  2511. dispc_lcd_enable_signal_polarity(config->lcden_sig_polarity);
  2512. dispc_mgr_set_lcd_type_tft(channel);
  2513. }
  2514. static bool _dispc_mgr_size_ok(u16 width, u16 height)
  2515. {
  2516. return width <= dispc.feat->mgr_width_max &&
  2517. height <= dispc.feat->mgr_height_max;
  2518. }
  2519. static bool _dispc_lcd_timings_ok(int hsw, int hfp, int hbp,
  2520. int vsw, int vfp, int vbp)
  2521. {
  2522. if (hsw < 1 || hsw > dispc.feat->sw_max ||
  2523. hfp < 1 || hfp > dispc.feat->hp_max ||
  2524. hbp < 1 || hbp > dispc.feat->hp_max ||
  2525. vsw < 1 || vsw > dispc.feat->sw_max ||
  2526. vfp < 0 || vfp > dispc.feat->vp_max ||
  2527. vbp < 0 || vbp > dispc.feat->vp_max)
  2528. return false;
  2529. return true;
  2530. }
  2531. bool dispc_mgr_timings_ok(enum omap_channel channel,
  2532. const struct omap_video_timings *timings)
  2533. {
  2534. bool timings_ok;
  2535. timings_ok = _dispc_mgr_size_ok(timings->x_res, timings->y_res);
  2536. if (dss_mgr_is_lcd(channel))
  2537. timings_ok = timings_ok && _dispc_lcd_timings_ok(timings->hsw,
  2538. timings->hfp, timings->hbp,
  2539. timings->vsw, timings->vfp,
  2540. timings->vbp);
  2541. return timings_ok;
  2542. }
  2543. static void _dispc_mgr_set_lcd_timings(enum omap_channel channel, int hsw,
  2544. int hfp, int hbp, int vsw, int vfp, int vbp,
  2545. enum omap_dss_signal_level vsync_level,
  2546. enum omap_dss_signal_level hsync_level,
  2547. enum omap_dss_signal_edge data_pclk_edge,
  2548. enum omap_dss_signal_level de_level,
  2549. enum omap_dss_signal_edge sync_pclk_edge)
  2550. {
  2551. u32 timing_h, timing_v, l;
  2552. bool onoff, rf, ipc;
  2553. timing_h = FLD_VAL(hsw-1, dispc.feat->sw_start, 0) |
  2554. FLD_VAL(hfp-1, dispc.feat->fp_start, 8) |
  2555. FLD_VAL(hbp-1, dispc.feat->bp_start, 20);
  2556. timing_v = FLD_VAL(vsw-1, dispc.feat->sw_start, 0) |
  2557. FLD_VAL(vfp, dispc.feat->fp_start, 8) |
  2558. FLD_VAL(vbp, dispc.feat->bp_start, 20);
  2559. dispc_write_reg(DISPC_TIMING_H(channel), timing_h);
  2560. dispc_write_reg(DISPC_TIMING_V(channel), timing_v);
  2561. switch (data_pclk_edge) {
  2562. case OMAPDSS_DRIVE_SIG_RISING_EDGE:
  2563. ipc = false;
  2564. break;
  2565. case OMAPDSS_DRIVE_SIG_FALLING_EDGE:
  2566. ipc = true;
  2567. break;
  2568. case OMAPDSS_DRIVE_SIG_OPPOSITE_EDGES:
  2569. default:
  2570. BUG();
  2571. }
  2572. switch (sync_pclk_edge) {
  2573. case OMAPDSS_DRIVE_SIG_OPPOSITE_EDGES:
  2574. onoff = false;
  2575. rf = false;
  2576. break;
  2577. case OMAPDSS_DRIVE_SIG_FALLING_EDGE:
  2578. onoff = true;
  2579. rf = false;
  2580. break;
  2581. case OMAPDSS_DRIVE_SIG_RISING_EDGE:
  2582. onoff = true;
  2583. rf = true;
  2584. break;
  2585. default:
  2586. BUG();
  2587. };
  2588. l = dispc_read_reg(DISPC_POL_FREQ(channel));
  2589. l |= FLD_VAL(onoff, 17, 17);
  2590. l |= FLD_VAL(rf, 16, 16);
  2591. l |= FLD_VAL(de_level, 15, 15);
  2592. l |= FLD_VAL(ipc, 14, 14);
  2593. l |= FLD_VAL(hsync_level, 13, 13);
  2594. l |= FLD_VAL(vsync_level, 12, 12);
  2595. dispc_write_reg(DISPC_POL_FREQ(channel), l);
  2596. }
  2597. /* change name to mode? */
  2598. void dispc_mgr_set_timings(enum omap_channel channel,
  2599. const struct omap_video_timings *timings)
  2600. {
  2601. unsigned xtot, ytot;
  2602. unsigned long ht, vt;
  2603. struct omap_video_timings t = *timings;
  2604. DSSDBG("channel %d xres %u yres %u\n", channel, t.x_res, t.y_res);
  2605. if (!dispc_mgr_timings_ok(channel, &t)) {
  2606. BUG();
  2607. return;
  2608. }
  2609. if (dss_mgr_is_lcd(channel)) {
  2610. _dispc_mgr_set_lcd_timings(channel, t.hsw, t.hfp, t.hbp, t.vsw,
  2611. t.vfp, t.vbp, t.vsync_level, t.hsync_level,
  2612. t.data_pclk_edge, t.de_level, t.sync_pclk_edge);
  2613. xtot = t.x_res + t.hfp + t.hsw + t.hbp;
  2614. ytot = t.y_res + t.vfp + t.vsw + t.vbp;
  2615. ht = (timings->pixel_clock * 1000) / xtot;
  2616. vt = (timings->pixel_clock * 1000) / xtot / ytot;
  2617. DSSDBG("pck %u\n", timings->pixel_clock);
  2618. DSSDBG("hsw %d hfp %d hbp %d vsw %d vfp %d vbp %d\n",
  2619. t.hsw, t.hfp, t.hbp, t.vsw, t.vfp, t.vbp);
  2620. DSSDBG("vsync_level %d hsync_level %d data_pclk_edge %d de_level %d sync_pclk_edge %d\n",
  2621. t.vsync_level, t.hsync_level, t.data_pclk_edge,
  2622. t.de_level, t.sync_pclk_edge);
  2623. DSSDBG("hsync %luHz, vsync %luHz\n", ht, vt);
  2624. } else {
  2625. if (t.interlace == true)
  2626. t.y_res /= 2;
  2627. }
  2628. dispc_mgr_set_size(channel, t.x_res, t.y_res);
  2629. }
  2630. static void dispc_mgr_set_lcd_divisor(enum omap_channel channel, u16 lck_div,
  2631. u16 pck_div)
  2632. {
  2633. BUG_ON(lck_div < 1);
  2634. BUG_ON(pck_div < 1);
  2635. dispc_write_reg(DISPC_DIVISORo(channel),
  2636. FLD_VAL(lck_div, 23, 16) | FLD_VAL(pck_div, 7, 0));
  2637. }
  2638. static void dispc_mgr_get_lcd_divisor(enum omap_channel channel, int *lck_div,
  2639. int *pck_div)
  2640. {
  2641. u32 l;
  2642. l = dispc_read_reg(DISPC_DIVISORo(channel));
  2643. *lck_div = FLD_GET(l, 23, 16);
  2644. *pck_div = FLD_GET(l, 7, 0);
  2645. }
  2646. unsigned long dispc_fclk_rate(void)
  2647. {
  2648. struct platform_device *dsidev;
  2649. unsigned long r = 0;
  2650. switch (dss_get_dispc_clk_source()) {
  2651. case OMAP_DSS_CLK_SRC_FCK:
  2652. r = clk_get_rate(dispc.dss_clk);
  2653. break;
  2654. case OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC:
  2655. dsidev = dsi_get_dsidev_from_id(0);
  2656. r = dsi_get_pll_hsdiv_dispc_rate(dsidev);
  2657. break;
  2658. case OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC:
  2659. dsidev = dsi_get_dsidev_from_id(1);
  2660. r = dsi_get_pll_hsdiv_dispc_rate(dsidev);
  2661. break;
  2662. default:
  2663. BUG();
  2664. return 0;
  2665. }
  2666. return r;
  2667. }
  2668. unsigned long dispc_mgr_lclk_rate(enum omap_channel channel)
  2669. {
  2670. struct platform_device *dsidev;
  2671. int lcd;
  2672. unsigned long r;
  2673. u32 l;
  2674. if (dss_mgr_is_lcd(channel)) {
  2675. l = dispc_read_reg(DISPC_DIVISORo(channel));
  2676. lcd = FLD_GET(l, 23, 16);
  2677. switch (dss_get_lcd_clk_source(channel)) {
  2678. case OMAP_DSS_CLK_SRC_FCK:
  2679. r = clk_get_rate(dispc.dss_clk);
  2680. break;
  2681. case OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC:
  2682. dsidev = dsi_get_dsidev_from_id(0);
  2683. r = dsi_get_pll_hsdiv_dispc_rate(dsidev);
  2684. break;
  2685. case OMAP_DSS_CLK_SRC_DSI2_PLL_HSDIV_DISPC:
  2686. dsidev = dsi_get_dsidev_from_id(1);
  2687. r = dsi_get_pll_hsdiv_dispc_rate(dsidev);
  2688. break;
  2689. default:
  2690. BUG();
  2691. return 0;
  2692. }
  2693. return r / lcd;
  2694. } else {
  2695. return dispc_fclk_rate();
  2696. }
  2697. }
  2698. unsigned long dispc_mgr_pclk_rate(enum omap_channel channel)
  2699. {
  2700. unsigned long r;
  2701. if (dss_mgr_is_lcd(channel)) {
  2702. int pcd;
  2703. u32 l;
  2704. l = dispc_read_reg(DISPC_DIVISORo(channel));
  2705. pcd = FLD_GET(l, 7, 0);
  2706. r = dispc_mgr_lclk_rate(channel);
  2707. return r / pcd;
  2708. } else {
  2709. enum dss_hdmi_venc_clk_source_select source;
  2710. source = dss_get_hdmi_venc_clk_source();
  2711. switch (source) {
  2712. case DSS_VENC_TV_CLK:
  2713. return venc_get_pixel_clock();
  2714. case DSS_HDMI_M_PCLK:
  2715. return hdmi_get_pixel_clock();
  2716. default:
  2717. BUG();
  2718. return 0;
  2719. }
  2720. }
  2721. }
  2722. unsigned long dispc_core_clk_rate(void)
  2723. {
  2724. int lcd;
  2725. unsigned long fclk = dispc_fclk_rate();
  2726. if (dss_has_feature(FEAT_CORE_CLK_DIV))
  2727. lcd = REG_GET(DISPC_DIVISOR, 23, 16);
  2728. else
  2729. lcd = REG_GET(DISPC_DIVISORo(OMAP_DSS_CHANNEL_LCD), 23, 16);
  2730. return fclk / lcd;
  2731. }
  2732. static unsigned long dispc_plane_pclk_rate(enum omap_plane plane)
  2733. {
  2734. enum omap_channel channel = dispc_ovl_get_channel_out(plane);
  2735. return dispc_mgr_pclk_rate(channel);
  2736. }
  2737. static unsigned long dispc_plane_lclk_rate(enum omap_plane plane)
  2738. {
  2739. enum omap_channel channel = dispc_ovl_get_channel_out(plane);
  2740. return dispc_mgr_lclk_rate(channel);
  2741. }
  2742. static void dispc_dump_clocks_channel(struct seq_file *s, enum omap_channel channel)
  2743. {
  2744. int lcd, pcd;
  2745. enum omap_dss_clk_source lcd_clk_src;
  2746. seq_printf(s, "- %s -\n", mgr_desc[channel].name);
  2747. lcd_clk_src = dss_get_lcd_clk_source(channel);
  2748. seq_printf(s, "%s clk source = %s (%s)\n", mgr_desc[channel].name,
  2749. dss_get_generic_clk_source_name(lcd_clk_src),
  2750. dss_feat_get_clk_source_name(lcd_clk_src));
  2751. dispc_mgr_get_lcd_divisor(channel, &lcd, &pcd);
  2752. seq_printf(s, "lck\t\t%-16lulck div\t%u\n",
  2753. dispc_mgr_lclk_rate(channel), lcd);
  2754. seq_printf(s, "pck\t\t%-16lupck div\t%u\n",
  2755. dispc_mgr_pclk_rate(channel), pcd);
  2756. }
  2757. void dispc_dump_clocks(struct seq_file *s)
  2758. {
  2759. int lcd;
  2760. u32 l;
  2761. enum omap_dss_clk_source dispc_clk_src = dss_get_dispc_clk_source();
  2762. if (dispc_runtime_get())
  2763. return;
  2764. seq_printf(s, "- DISPC -\n");
  2765. seq_printf(s, "dispc fclk source = %s (%s)\n",
  2766. dss_get_generic_clk_source_name(dispc_clk_src),
  2767. dss_feat_get_clk_source_name(dispc_clk_src));
  2768. seq_printf(s, "fck\t\t%-16lu\n", dispc_fclk_rate());
  2769. if (dss_has_feature(FEAT_CORE_CLK_DIV)) {
  2770. seq_printf(s, "- DISPC-CORE-CLK -\n");
  2771. l = dispc_read_reg(DISPC_DIVISOR);
  2772. lcd = FLD_GET(l, 23, 16);
  2773. seq_printf(s, "lck\t\t%-16lulck div\t%u\n",
  2774. (dispc_fclk_rate()/lcd), lcd);
  2775. }
  2776. dispc_dump_clocks_channel(s, OMAP_DSS_CHANNEL_LCD);
  2777. if (dss_has_feature(FEAT_MGR_LCD2))
  2778. dispc_dump_clocks_channel(s, OMAP_DSS_CHANNEL_LCD2);
  2779. if (dss_has_feature(FEAT_MGR_LCD3))
  2780. dispc_dump_clocks_channel(s, OMAP_DSS_CHANNEL_LCD3);
  2781. dispc_runtime_put();
  2782. }
  2783. #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
  2784. static void dispc_dump_irqs(struct seq_file *s)
  2785. {
  2786. unsigned long flags;
  2787. struct dispc_irq_stats stats;
  2788. spin_lock_irqsave(&dispc.irq_stats_lock, flags);
  2789. stats = dispc.irq_stats;
  2790. memset(&dispc.irq_stats, 0, sizeof(dispc.irq_stats));
  2791. dispc.irq_stats.last_reset = jiffies;
  2792. spin_unlock_irqrestore(&dispc.irq_stats_lock, flags);
  2793. seq_printf(s, "period %u ms\n",
  2794. jiffies_to_msecs(jiffies - stats.last_reset));
  2795. seq_printf(s, "irqs %d\n", stats.irq_count);
  2796. #define PIS(x) \
  2797. seq_printf(s, "%-20s %10d\n", #x, stats.irqs[ffs(DISPC_IRQ_##x)-1]);
  2798. PIS(FRAMEDONE);
  2799. PIS(VSYNC);
  2800. PIS(EVSYNC_EVEN);
  2801. PIS(EVSYNC_ODD);
  2802. PIS(ACBIAS_COUNT_STAT);
  2803. PIS(PROG_LINE_NUM);
  2804. PIS(GFX_FIFO_UNDERFLOW);
  2805. PIS(GFX_END_WIN);
  2806. PIS(PAL_GAMMA_MASK);
  2807. PIS(OCP_ERR);
  2808. PIS(VID1_FIFO_UNDERFLOW);
  2809. PIS(VID1_END_WIN);
  2810. PIS(VID2_FIFO_UNDERFLOW);
  2811. PIS(VID2_END_WIN);
  2812. if (dss_feat_get_num_ovls() > 3) {
  2813. PIS(VID3_FIFO_UNDERFLOW);
  2814. PIS(VID3_END_WIN);
  2815. }
  2816. PIS(SYNC_LOST);
  2817. PIS(SYNC_LOST_DIGIT);
  2818. PIS(WAKEUP);
  2819. if (dss_has_feature(FEAT_MGR_LCD2)) {
  2820. PIS(FRAMEDONE2);
  2821. PIS(VSYNC2);
  2822. PIS(ACBIAS_COUNT_STAT2);
  2823. PIS(SYNC_LOST2);
  2824. }
  2825. if (dss_has_feature(FEAT_MGR_LCD3)) {
  2826. PIS(FRAMEDONE3);
  2827. PIS(VSYNC3);
  2828. PIS(ACBIAS_COUNT_STAT3);
  2829. PIS(SYNC_LOST3);
  2830. }
  2831. #undef PIS
  2832. }
  2833. #endif
  2834. static void dispc_dump_regs(struct seq_file *s)
  2835. {
  2836. int i, j;
  2837. const char *mgr_names[] = {
  2838. [OMAP_DSS_CHANNEL_LCD] = "LCD",
  2839. [OMAP_DSS_CHANNEL_DIGIT] = "TV",
  2840. [OMAP_DSS_CHANNEL_LCD2] = "LCD2",
  2841. [OMAP_DSS_CHANNEL_LCD3] = "LCD3",
  2842. };
  2843. const char *ovl_names[] = {
  2844. [OMAP_DSS_GFX] = "GFX",
  2845. [OMAP_DSS_VIDEO1] = "VID1",
  2846. [OMAP_DSS_VIDEO2] = "VID2",
  2847. [OMAP_DSS_VIDEO3] = "VID3",
  2848. };
  2849. const char **p_names;
  2850. #define DUMPREG(r) seq_printf(s, "%-50s %08x\n", #r, dispc_read_reg(r))
  2851. if (dispc_runtime_get())
  2852. return;
  2853. /* DISPC common registers */
  2854. DUMPREG(DISPC_REVISION);
  2855. DUMPREG(DISPC_SYSCONFIG);
  2856. DUMPREG(DISPC_SYSSTATUS);
  2857. DUMPREG(DISPC_IRQSTATUS);
  2858. DUMPREG(DISPC_IRQENABLE);
  2859. DUMPREG(DISPC_CONTROL);
  2860. DUMPREG(DISPC_CONFIG);
  2861. DUMPREG(DISPC_CAPABLE);
  2862. DUMPREG(DISPC_LINE_STATUS);
  2863. DUMPREG(DISPC_LINE_NUMBER);
  2864. if (dss_has_feature(FEAT_ALPHA_FIXED_ZORDER) ||
  2865. dss_has_feature(FEAT_ALPHA_FREE_ZORDER))
  2866. DUMPREG(DISPC_GLOBAL_ALPHA);
  2867. if (dss_has_feature(FEAT_MGR_LCD2)) {
  2868. DUMPREG(DISPC_CONTROL2);
  2869. DUMPREG(DISPC_CONFIG2);
  2870. }
  2871. if (dss_has_feature(FEAT_MGR_LCD3)) {
  2872. DUMPREG(DISPC_CONTROL3);
  2873. DUMPREG(DISPC_CONFIG3);
  2874. }
  2875. #undef DUMPREG
  2876. #define DISPC_REG(i, name) name(i)
  2877. #define DUMPREG(i, r) seq_printf(s, "%s(%s)%*s %08x\n", #r, p_names[i], \
  2878. (int)(48 - strlen(#r) - strlen(p_names[i])), " ", \
  2879. dispc_read_reg(DISPC_REG(i, r)))
  2880. p_names = mgr_names;
  2881. /* DISPC channel specific registers */
  2882. for (i = 0; i < dss_feat_get_num_mgrs(); i++) {
  2883. DUMPREG(i, DISPC_DEFAULT_COLOR);
  2884. DUMPREG(i, DISPC_TRANS_COLOR);
  2885. DUMPREG(i, DISPC_SIZE_MGR);
  2886. if (i == OMAP_DSS_CHANNEL_DIGIT)
  2887. continue;
  2888. DUMPREG(i, DISPC_DEFAULT_COLOR);
  2889. DUMPREG(i, DISPC_TRANS_COLOR);
  2890. DUMPREG(i, DISPC_TIMING_H);
  2891. DUMPREG(i, DISPC_TIMING_V);
  2892. DUMPREG(i, DISPC_POL_FREQ);
  2893. DUMPREG(i, DISPC_DIVISORo);
  2894. DUMPREG(i, DISPC_SIZE_MGR);
  2895. DUMPREG(i, DISPC_DATA_CYCLE1);
  2896. DUMPREG(i, DISPC_DATA_CYCLE2);
  2897. DUMPREG(i, DISPC_DATA_CYCLE3);
  2898. if (dss_has_feature(FEAT_CPR)) {
  2899. DUMPREG(i, DISPC_CPR_COEF_R);
  2900. DUMPREG(i, DISPC_CPR_COEF_G);
  2901. DUMPREG(i, DISPC_CPR_COEF_B);
  2902. }
  2903. }
  2904. p_names = ovl_names;
  2905. for (i = 0; i < dss_feat_get_num_ovls(); i++) {
  2906. DUMPREG(i, DISPC_OVL_BA0);
  2907. DUMPREG(i, DISPC_OVL_BA1);
  2908. DUMPREG(i, DISPC_OVL_POSITION);
  2909. DUMPREG(i, DISPC_OVL_SIZE);
  2910. DUMPREG(i, DISPC_OVL_ATTRIBUTES);
  2911. DUMPREG(i, DISPC_OVL_FIFO_THRESHOLD);
  2912. DUMPREG(i, DISPC_OVL_FIFO_SIZE_STATUS);
  2913. DUMPREG(i, DISPC_OVL_ROW_INC);
  2914. DUMPREG(i, DISPC_OVL_PIXEL_INC);
  2915. if (dss_has_feature(FEAT_PRELOAD))
  2916. DUMPREG(i, DISPC_OVL_PRELOAD);
  2917. if (i == OMAP_DSS_GFX) {
  2918. DUMPREG(i, DISPC_OVL_WINDOW_SKIP);
  2919. DUMPREG(i, DISPC_OVL_TABLE_BA);
  2920. continue;
  2921. }
  2922. DUMPREG(i, DISPC_OVL_FIR);
  2923. DUMPREG(i, DISPC_OVL_PICTURE_SIZE);
  2924. DUMPREG(i, DISPC_OVL_ACCU0);
  2925. DUMPREG(i, DISPC_OVL_ACCU1);
  2926. if (dss_has_feature(FEAT_HANDLE_UV_SEPARATE)) {
  2927. DUMPREG(i, DISPC_OVL_BA0_UV);
  2928. DUMPREG(i, DISPC_OVL_BA1_UV);
  2929. DUMPREG(i, DISPC_OVL_FIR2);
  2930. DUMPREG(i, DISPC_OVL_ACCU2_0);
  2931. DUMPREG(i, DISPC_OVL_ACCU2_1);
  2932. }
  2933. if (dss_has_feature(FEAT_ATTR2))
  2934. DUMPREG(i, DISPC_OVL_ATTRIBUTES2);
  2935. if (dss_has_feature(FEAT_PRELOAD))
  2936. DUMPREG(i, DISPC_OVL_PRELOAD);
  2937. }
  2938. #undef DISPC_REG
  2939. #undef DUMPREG
  2940. #define DISPC_REG(plane, name, i) name(plane, i)
  2941. #define DUMPREG(plane, name, i) \
  2942. seq_printf(s, "%s_%d(%s)%*s %08x\n", #name, i, p_names[plane], \
  2943. (int)(46 - strlen(#name) - strlen(p_names[plane])), " ", \
  2944. dispc_read_reg(DISPC_REG(plane, name, i)))
  2945. /* Video pipeline coefficient registers */
  2946. /* start from OMAP_DSS_VIDEO1 */
  2947. for (i = 1; i < dss_feat_get_num_ovls(); i++) {
  2948. for (j = 0; j < 8; j++)
  2949. DUMPREG(i, DISPC_OVL_FIR_COEF_H, j);
  2950. for (j = 0; j < 8; j++)
  2951. DUMPREG(i, DISPC_OVL_FIR_COEF_HV, j);
  2952. for (j = 0; j < 5; j++)
  2953. DUMPREG(i, DISPC_OVL_CONV_COEF, j);
  2954. if (dss_has_feature(FEAT_FIR_COEF_V)) {
  2955. for (j = 0; j < 8; j++)
  2956. DUMPREG(i, DISPC_OVL_FIR_COEF_V, j);
  2957. }
  2958. if (dss_has_feature(FEAT_HANDLE_UV_SEPARATE)) {
  2959. for (j = 0; j < 8; j++)
  2960. DUMPREG(i, DISPC_OVL_FIR_COEF_H2, j);
  2961. for (j = 0; j < 8; j++)
  2962. DUMPREG(i, DISPC_OVL_FIR_COEF_HV2, j);
  2963. for (j = 0; j < 8; j++)
  2964. DUMPREG(i, DISPC_OVL_FIR_COEF_V2, j);
  2965. }
  2966. }
  2967. dispc_runtime_put();
  2968. #undef DISPC_REG
  2969. #undef DUMPREG
  2970. }
  2971. /* with fck as input clock rate, find dispc dividers that produce req_pck */
  2972. void dispc_find_clk_divs(unsigned long req_pck, unsigned long fck,
  2973. struct dispc_clock_info *cinfo)
  2974. {
  2975. u16 pcd_min, pcd_max;
  2976. unsigned long best_pck;
  2977. u16 best_ld, cur_ld;
  2978. u16 best_pd, cur_pd;
  2979. pcd_min = dss_feat_get_param_min(FEAT_PARAM_DSS_PCD);
  2980. pcd_max = dss_feat_get_param_max(FEAT_PARAM_DSS_PCD);
  2981. best_pck = 0;
  2982. best_ld = 0;
  2983. best_pd = 0;
  2984. for (cur_ld = 1; cur_ld <= 255; ++cur_ld) {
  2985. unsigned long lck = fck / cur_ld;
  2986. for (cur_pd = pcd_min; cur_pd <= pcd_max; ++cur_pd) {
  2987. unsigned long pck = lck / cur_pd;
  2988. long old_delta = abs(best_pck - req_pck);
  2989. long new_delta = abs(pck - req_pck);
  2990. if (best_pck == 0 || new_delta < old_delta) {
  2991. best_pck = pck;
  2992. best_ld = cur_ld;
  2993. best_pd = cur_pd;
  2994. if (pck == req_pck)
  2995. goto found;
  2996. }
  2997. if (pck < req_pck)
  2998. break;
  2999. }
  3000. if (lck / pcd_min < req_pck)
  3001. break;
  3002. }
  3003. found:
  3004. cinfo->lck_div = best_ld;
  3005. cinfo->pck_div = best_pd;
  3006. cinfo->lck = fck / cinfo->lck_div;
  3007. cinfo->pck = cinfo->lck / cinfo->pck_div;
  3008. }
  3009. /* calculate clock rates using dividers in cinfo */
  3010. int dispc_calc_clock_rates(unsigned long dispc_fclk_rate,
  3011. struct dispc_clock_info *cinfo)
  3012. {
  3013. if (cinfo->lck_div > 255 || cinfo->lck_div == 0)
  3014. return -EINVAL;
  3015. if (cinfo->pck_div < 1 || cinfo->pck_div > 255)
  3016. return -EINVAL;
  3017. cinfo->lck = dispc_fclk_rate / cinfo->lck_div;
  3018. cinfo->pck = cinfo->lck / cinfo->pck_div;
  3019. return 0;
  3020. }
  3021. void dispc_mgr_set_clock_div(enum omap_channel channel,
  3022. const struct dispc_clock_info *cinfo)
  3023. {
  3024. DSSDBG("lck = %lu (%u)\n", cinfo->lck, cinfo->lck_div);
  3025. DSSDBG("pck = %lu (%u)\n", cinfo->pck, cinfo->pck_div);
  3026. dispc_mgr_set_lcd_divisor(channel, cinfo->lck_div, cinfo->pck_div);
  3027. }
  3028. int dispc_mgr_get_clock_div(enum omap_channel channel,
  3029. struct dispc_clock_info *cinfo)
  3030. {
  3031. unsigned long fck;
  3032. fck = dispc_fclk_rate();
  3033. cinfo->lck_div = REG_GET(DISPC_DIVISORo(channel), 23, 16);
  3034. cinfo->pck_div = REG_GET(DISPC_DIVISORo(channel), 7, 0);
  3035. cinfo->lck = fck / cinfo->lck_div;
  3036. cinfo->pck = cinfo->lck / cinfo->pck_div;
  3037. return 0;
  3038. }
  3039. u32 dispc_read_irqstatus(void)
  3040. {
  3041. return dispc_read_reg(DISPC_IRQSTATUS);
  3042. }
  3043. void dispc_clear_irqstatus(u32 mask)
  3044. {
  3045. dispc_write_reg(DISPC_IRQSTATUS, mask);
  3046. }
  3047. u32 dispc_read_irqenable(void)
  3048. {
  3049. return dispc_read_reg(DISPC_IRQENABLE);
  3050. }
  3051. void dispc_write_irqenable(u32 mask)
  3052. {
  3053. u32 old_mask = dispc_read_reg(DISPC_IRQENABLE);
  3054. /* clear the irqstatus for newly enabled irqs */
  3055. dispc_clear_irqstatus((mask ^ old_mask) & mask);
  3056. dispc_write_reg(DISPC_IRQENABLE, mask);
  3057. }
  3058. /* dispc.irq_lock has to be locked by the caller */
  3059. static void _omap_dispc_set_irqs(void)
  3060. {
  3061. u32 mask;
  3062. int i;
  3063. struct omap_dispc_isr_data *isr_data;
  3064. mask = dispc.irq_error_mask;
  3065. for (i = 0; i < DISPC_MAX_NR_ISRS; i++) {
  3066. isr_data = &dispc.registered_isr[i];
  3067. if (isr_data->isr == NULL)
  3068. continue;
  3069. mask |= isr_data->mask;
  3070. }
  3071. dispc_write_irqenable(mask);
  3072. }
  3073. int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask)
  3074. {
  3075. int i;
  3076. int ret;
  3077. unsigned long flags;
  3078. struct omap_dispc_isr_data *isr_data;
  3079. if (isr == NULL)
  3080. return -EINVAL;
  3081. spin_lock_irqsave(&dispc.irq_lock, flags);
  3082. /* check for duplicate entry */
  3083. for (i = 0; i < DISPC_MAX_NR_ISRS; i++) {
  3084. isr_data = &dispc.registered_isr[i];
  3085. if (isr_data->isr == isr && isr_data->arg == arg &&
  3086. isr_data->mask == mask) {
  3087. ret = -EINVAL;
  3088. goto err;
  3089. }
  3090. }
  3091. isr_data = NULL;
  3092. ret = -EBUSY;
  3093. for (i = 0; i < DISPC_MAX_NR_ISRS; i++) {
  3094. isr_data = &dispc.registered_isr[i];
  3095. if (isr_data->isr != NULL)
  3096. continue;
  3097. isr_data->isr = isr;
  3098. isr_data->arg = arg;
  3099. isr_data->mask = mask;
  3100. ret = 0;
  3101. break;
  3102. }
  3103. if (ret)
  3104. goto err;
  3105. _omap_dispc_set_irqs();
  3106. spin_unlock_irqrestore(&dispc.irq_lock, flags);
  3107. return 0;
  3108. err:
  3109. spin_unlock_irqrestore(&dispc.irq_lock, flags);
  3110. return ret;
  3111. }
  3112. EXPORT_SYMBOL(omap_dispc_register_isr);
  3113. int omap_dispc_unregister_isr(omap_dispc_isr_t isr, void *arg, u32 mask)
  3114. {
  3115. int i;
  3116. unsigned long flags;
  3117. int ret = -EINVAL;
  3118. struct omap_dispc_isr_data *isr_data;
  3119. spin_lock_irqsave(&dispc.irq_lock, flags);
  3120. for (i = 0; i < DISPC_MAX_NR_ISRS; i++) {
  3121. isr_data = &dispc.registered_isr[i];
  3122. if (isr_data->isr != isr || isr_data->arg != arg ||
  3123. isr_data->mask != mask)
  3124. continue;
  3125. /* found the correct isr */
  3126. isr_data->isr = NULL;
  3127. isr_data->arg = NULL;
  3128. isr_data->mask = 0;
  3129. ret = 0;
  3130. break;
  3131. }
  3132. if (ret == 0)
  3133. _omap_dispc_set_irqs();
  3134. spin_unlock_irqrestore(&dispc.irq_lock, flags);
  3135. return ret;
  3136. }
  3137. EXPORT_SYMBOL(omap_dispc_unregister_isr);
  3138. static void print_irq_status(u32 status)
  3139. {
  3140. if ((status & dispc.irq_error_mask) == 0)
  3141. return;
  3142. #define PIS(x) (status & DISPC_IRQ_##x) ? (#x " ") : ""
  3143. pr_debug("DISPC IRQ: 0x%x: %s%s%s%s%s%s%s%s%s\n",
  3144. status,
  3145. PIS(OCP_ERR),
  3146. PIS(GFX_FIFO_UNDERFLOW),
  3147. PIS(VID1_FIFO_UNDERFLOW),
  3148. PIS(VID2_FIFO_UNDERFLOW),
  3149. dss_feat_get_num_ovls() > 3 ? PIS(VID3_FIFO_UNDERFLOW) : "",
  3150. PIS(SYNC_LOST),
  3151. PIS(SYNC_LOST_DIGIT),
  3152. dss_has_feature(FEAT_MGR_LCD2) ? PIS(SYNC_LOST2) : "",
  3153. dss_has_feature(FEAT_MGR_LCD3) ? PIS(SYNC_LOST3) : "");
  3154. #undef PIS
  3155. }
  3156. /* Called from dss.c. Note that we don't touch clocks here,
  3157. * but we presume they are on because we got an IRQ. However,
  3158. * an irq handler may turn the clocks off, so we may not have
  3159. * clock later in the function. */
  3160. static irqreturn_t omap_dispc_irq_handler(int irq, void *arg)
  3161. {
  3162. int i;
  3163. u32 irqstatus, irqenable;
  3164. u32 handledirqs = 0;
  3165. u32 unhandled_errors;
  3166. struct omap_dispc_isr_data *isr_data;
  3167. struct omap_dispc_isr_data registered_isr[DISPC_MAX_NR_ISRS];
  3168. spin_lock(&dispc.irq_lock);
  3169. irqstatus = dispc_read_irqstatus();
  3170. irqenable = dispc_read_irqenable();
  3171. /* IRQ is not for us */
  3172. if (!(irqstatus & irqenable)) {
  3173. spin_unlock(&dispc.irq_lock);
  3174. return IRQ_NONE;
  3175. }
  3176. #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
  3177. spin_lock(&dispc.irq_stats_lock);
  3178. dispc.irq_stats.irq_count++;
  3179. dss_collect_irq_stats(irqstatus, dispc.irq_stats.irqs);
  3180. spin_unlock(&dispc.irq_stats_lock);
  3181. #endif
  3182. print_irq_status(irqstatus);
  3183. /* Ack the interrupt. Do it here before clocks are possibly turned
  3184. * off */
  3185. dispc_clear_irqstatus(irqstatus);
  3186. /* flush posted write */
  3187. dispc_read_irqstatus();
  3188. /* make a copy and unlock, so that isrs can unregister
  3189. * themselves */
  3190. memcpy(registered_isr, dispc.registered_isr,
  3191. sizeof(registered_isr));
  3192. spin_unlock(&dispc.irq_lock);
  3193. for (i = 0; i < DISPC_MAX_NR_ISRS; i++) {
  3194. isr_data = &registered_isr[i];
  3195. if (!isr_data->isr)
  3196. continue;
  3197. if (isr_data->mask & irqstatus) {
  3198. isr_data->isr(isr_data->arg, irqstatus);
  3199. handledirqs |= isr_data->mask;
  3200. }
  3201. }
  3202. spin_lock(&dispc.irq_lock);
  3203. unhandled_errors = irqstatus & ~handledirqs & dispc.irq_error_mask;
  3204. if (unhandled_errors) {
  3205. dispc.error_irqs |= unhandled_errors;
  3206. dispc.irq_error_mask &= ~unhandled_errors;
  3207. _omap_dispc_set_irqs();
  3208. schedule_work(&dispc.error_work);
  3209. }
  3210. spin_unlock(&dispc.irq_lock);
  3211. return IRQ_HANDLED;
  3212. }
  3213. static void dispc_error_worker(struct work_struct *work)
  3214. {
  3215. int i;
  3216. u32 errors;
  3217. unsigned long flags;
  3218. static const unsigned fifo_underflow_bits[] = {
  3219. DISPC_IRQ_GFX_FIFO_UNDERFLOW,
  3220. DISPC_IRQ_VID1_FIFO_UNDERFLOW,
  3221. DISPC_IRQ_VID2_FIFO_UNDERFLOW,
  3222. DISPC_IRQ_VID3_FIFO_UNDERFLOW,
  3223. };
  3224. spin_lock_irqsave(&dispc.irq_lock, flags);
  3225. errors = dispc.error_irqs;
  3226. dispc.error_irqs = 0;
  3227. spin_unlock_irqrestore(&dispc.irq_lock, flags);
  3228. dispc_runtime_get();
  3229. for (i = 0; i < omap_dss_get_num_overlays(); ++i) {
  3230. struct omap_overlay *ovl;
  3231. unsigned bit;
  3232. ovl = omap_dss_get_overlay(i);
  3233. bit = fifo_underflow_bits[i];
  3234. if (bit & errors) {
  3235. DSSERR("FIFO UNDERFLOW on %s, disabling the overlay\n",
  3236. ovl->name);
  3237. dispc_ovl_enable(ovl->id, false);
  3238. dispc_mgr_go(ovl->manager->id);
  3239. msleep(50);
  3240. }
  3241. }
  3242. for (i = 0; i < omap_dss_get_num_overlay_managers(); ++i) {
  3243. struct omap_overlay_manager *mgr;
  3244. unsigned bit;
  3245. mgr = omap_dss_get_overlay_manager(i);
  3246. bit = mgr_desc[i].sync_lost_irq;
  3247. if (bit & errors) {
  3248. int j;
  3249. DSSERR("SYNC_LOST on channel %s, restarting the output "
  3250. "with video overlays disabled\n",
  3251. mgr->name);
  3252. dss_mgr_disable(mgr);
  3253. for (j = 0; j < omap_dss_get_num_overlays(); ++j) {
  3254. struct omap_overlay *ovl;
  3255. ovl = omap_dss_get_overlay(j);
  3256. if (ovl->id != OMAP_DSS_GFX &&
  3257. ovl->manager == mgr)
  3258. ovl->disable(ovl);
  3259. }
  3260. dss_mgr_enable(mgr);
  3261. }
  3262. }
  3263. if (errors & DISPC_IRQ_OCP_ERR) {
  3264. DSSERR("OCP_ERR\n");
  3265. for (i = 0; i < omap_dss_get_num_overlay_managers(); ++i) {
  3266. struct omap_overlay_manager *mgr;
  3267. mgr = omap_dss_get_overlay_manager(i);
  3268. dss_mgr_disable(mgr);
  3269. }
  3270. }
  3271. spin_lock_irqsave(&dispc.irq_lock, flags);
  3272. dispc.irq_error_mask |= errors;
  3273. _omap_dispc_set_irqs();
  3274. spin_unlock_irqrestore(&dispc.irq_lock, flags);
  3275. dispc_runtime_put();
  3276. }
  3277. int omap_dispc_wait_for_irq_timeout(u32 irqmask, unsigned long timeout)
  3278. {
  3279. void dispc_irq_wait_handler(void *data, u32 mask)
  3280. {
  3281. complete((struct completion *)data);
  3282. }
  3283. int r;
  3284. DECLARE_COMPLETION_ONSTACK(completion);
  3285. r = omap_dispc_register_isr(dispc_irq_wait_handler, &completion,
  3286. irqmask);
  3287. if (r)
  3288. return r;
  3289. timeout = wait_for_completion_timeout(&completion, timeout);
  3290. omap_dispc_unregister_isr(dispc_irq_wait_handler, &completion, irqmask);
  3291. if (timeout == 0)
  3292. return -ETIMEDOUT;
  3293. return 0;
  3294. }
  3295. int omap_dispc_wait_for_irq_interruptible_timeout(u32 irqmask,
  3296. unsigned long timeout)
  3297. {
  3298. void dispc_irq_wait_handler(void *data, u32 mask)
  3299. {
  3300. complete((struct completion *)data);
  3301. }
  3302. int r;
  3303. DECLARE_COMPLETION_ONSTACK(completion);
  3304. r = omap_dispc_register_isr(dispc_irq_wait_handler, &completion,
  3305. irqmask);
  3306. if (r)
  3307. return r;
  3308. timeout = wait_for_completion_interruptible_timeout(&completion,
  3309. timeout);
  3310. omap_dispc_unregister_isr(dispc_irq_wait_handler, &completion, irqmask);
  3311. if (timeout == 0)
  3312. return -ETIMEDOUT;
  3313. if (timeout == -ERESTARTSYS)
  3314. return -ERESTARTSYS;
  3315. return 0;
  3316. }
  3317. static void _omap_dispc_initialize_irq(void)
  3318. {
  3319. unsigned long flags;
  3320. spin_lock_irqsave(&dispc.irq_lock, flags);
  3321. memset(dispc.registered_isr, 0, sizeof(dispc.registered_isr));
  3322. dispc.irq_error_mask = DISPC_IRQ_MASK_ERROR;
  3323. if (dss_has_feature(FEAT_MGR_LCD2))
  3324. dispc.irq_error_mask |= DISPC_IRQ_SYNC_LOST2;
  3325. if (dss_has_feature(FEAT_MGR_LCD3))
  3326. dispc.irq_error_mask |= DISPC_IRQ_SYNC_LOST3;
  3327. if (dss_feat_get_num_ovls() > 3)
  3328. dispc.irq_error_mask |= DISPC_IRQ_VID3_FIFO_UNDERFLOW;
  3329. /* there's SYNC_LOST_DIGIT waiting after enabling the DSS,
  3330. * so clear it */
  3331. dispc_clear_irqstatus(dispc_read_irqstatus());
  3332. _omap_dispc_set_irqs();
  3333. spin_unlock_irqrestore(&dispc.irq_lock, flags);
  3334. }
  3335. void dispc_enable_sidle(void)
  3336. {
  3337. REG_FLD_MOD(DISPC_SYSCONFIG, 2, 4, 3); /* SIDLEMODE: smart idle */
  3338. }
  3339. void dispc_disable_sidle(void)
  3340. {
  3341. REG_FLD_MOD(DISPC_SYSCONFIG, 1, 4, 3); /* SIDLEMODE: no idle */
  3342. }
  3343. static void _omap_dispc_initial_config(void)
  3344. {
  3345. u32 l;
  3346. /* Exclusively enable DISPC_CORE_CLK and set divider to 1 */
  3347. if (dss_has_feature(FEAT_CORE_CLK_DIV)) {
  3348. l = dispc_read_reg(DISPC_DIVISOR);
  3349. /* Use DISPC_DIVISOR.LCD, instead of DISPC_DIVISOR1.LCD */
  3350. l = FLD_MOD(l, 1, 0, 0);
  3351. l = FLD_MOD(l, 1, 23, 16);
  3352. dispc_write_reg(DISPC_DIVISOR, l);
  3353. }
  3354. /* FUNCGATED */
  3355. if (dss_has_feature(FEAT_FUNCGATED))
  3356. REG_FLD_MOD(DISPC_CONFIG, 1, 9, 9);
  3357. dispc_setup_color_conv_coef();
  3358. dispc_set_loadmode(OMAP_DSS_LOAD_FRAME_ONLY);
  3359. dispc_init_fifos();
  3360. dispc_configure_burst_sizes();
  3361. dispc_ovl_enable_zorder_planes();
  3362. }
  3363. static const struct dispc_features omap24xx_dispc_feats __initconst = {
  3364. .sw_start = 5,
  3365. .fp_start = 15,
  3366. .bp_start = 27,
  3367. .sw_max = 64,
  3368. .vp_max = 255,
  3369. .hp_max = 256,
  3370. .mgr_width_start = 10,
  3371. .mgr_height_start = 26,
  3372. .mgr_width_max = 2048,
  3373. .mgr_height_max = 2048,
  3374. .calc_scaling = dispc_ovl_calc_scaling_24xx,
  3375. .calc_core_clk = calc_core_clk_24xx,
  3376. .num_fifos = 3,
  3377. .no_framedone_tv = true,
  3378. };
  3379. static const struct dispc_features omap34xx_rev1_0_dispc_feats __initconst = {
  3380. .sw_start = 5,
  3381. .fp_start = 15,
  3382. .bp_start = 27,
  3383. .sw_max = 64,
  3384. .vp_max = 255,
  3385. .hp_max = 256,
  3386. .mgr_width_start = 10,
  3387. .mgr_height_start = 26,
  3388. .mgr_width_max = 2048,
  3389. .mgr_height_max = 2048,
  3390. .calc_scaling = dispc_ovl_calc_scaling_34xx,
  3391. .calc_core_clk = calc_core_clk_34xx,
  3392. .num_fifos = 3,
  3393. .no_framedone_tv = true,
  3394. };
  3395. static const struct dispc_features omap34xx_rev3_0_dispc_feats __initconst = {
  3396. .sw_start = 7,
  3397. .fp_start = 19,
  3398. .bp_start = 31,
  3399. .sw_max = 256,
  3400. .vp_max = 4095,
  3401. .hp_max = 4096,
  3402. .mgr_width_start = 10,
  3403. .mgr_height_start = 26,
  3404. .mgr_width_max = 2048,
  3405. .mgr_height_max = 2048,
  3406. .calc_scaling = dispc_ovl_calc_scaling_34xx,
  3407. .calc_core_clk = calc_core_clk_34xx,
  3408. .num_fifos = 3,
  3409. .no_framedone_tv = true,
  3410. };
  3411. static const struct dispc_features omap44xx_dispc_feats __initconst = {
  3412. .sw_start = 7,
  3413. .fp_start = 19,
  3414. .bp_start = 31,
  3415. .sw_max = 256,
  3416. .vp_max = 4095,
  3417. .hp_max = 4096,
  3418. .mgr_width_start = 10,
  3419. .mgr_height_start = 26,
  3420. .mgr_width_max = 2048,
  3421. .mgr_height_max = 2048,
  3422. .calc_scaling = dispc_ovl_calc_scaling_44xx,
  3423. .calc_core_clk = calc_core_clk_44xx,
  3424. .num_fifos = 5,
  3425. .gfx_fifo_workaround = true,
  3426. };
  3427. static const struct dispc_features omap54xx_dispc_feats __initconst = {
  3428. .sw_start = 7,
  3429. .fp_start = 19,
  3430. .bp_start = 31,
  3431. .sw_max = 256,
  3432. .vp_max = 4095,
  3433. .hp_max = 4096,
  3434. .mgr_width_start = 11,
  3435. .mgr_height_start = 27,
  3436. .mgr_width_max = 4096,
  3437. .mgr_height_max = 4096,
  3438. .calc_scaling = dispc_ovl_calc_scaling_44xx,
  3439. .calc_core_clk = calc_core_clk_44xx,
  3440. .num_fifos = 5,
  3441. .gfx_fifo_workaround = true,
  3442. };
  3443. static int __init dispc_init_features(struct platform_device *pdev)
  3444. {
  3445. const struct dispc_features *src;
  3446. struct dispc_features *dst;
  3447. dst = devm_kzalloc(&pdev->dev, sizeof(*dst), GFP_KERNEL);
  3448. if (!dst) {
  3449. dev_err(&pdev->dev, "Failed to allocate DISPC Features\n");
  3450. return -ENOMEM;
  3451. }
  3452. switch (omapdss_get_version()) {
  3453. case OMAPDSS_VER_OMAP24xx:
  3454. src = &omap24xx_dispc_feats;
  3455. break;
  3456. case OMAPDSS_VER_OMAP34xx_ES1:
  3457. src = &omap34xx_rev1_0_dispc_feats;
  3458. break;
  3459. case OMAPDSS_VER_OMAP34xx_ES3:
  3460. case OMAPDSS_VER_OMAP3630:
  3461. case OMAPDSS_VER_AM35xx:
  3462. src = &omap34xx_rev3_0_dispc_feats;
  3463. break;
  3464. case OMAPDSS_VER_OMAP4430_ES1:
  3465. case OMAPDSS_VER_OMAP4430_ES2:
  3466. case OMAPDSS_VER_OMAP4:
  3467. src = &omap44xx_dispc_feats;
  3468. break;
  3469. case OMAPDSS_VER_OMAP5:
  3470. src = &omap54xx_dispc_feats;
  3471. break;
  3472. default:
  3473. return -ENODEV;
  3474. }
  3475. memcpy(dst, src, sizeof(*dst));
  3476. dispc.feat = dst;
  3477. return 0;
  3478. }
  3479. /* DISPC HW IP initialisation */
  3480. static int __init omap_dispchw_probe(struct platform_device *pdev)
  3481. {
  3482. u32 rev;
  3483. int r = 0;
  3484. struct resource *dispc_mem;
  3485. struct clk *clk;
  3486. dispc.pdev = pdev;
  3487. r = dispc_init_features(dispc.pdev);
  3488. if (r)
  3489. return r;
  3490. spin_lock_init(&dispc.irq_lock);
  3491. #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
  3492. spin_lock_init(&dispc.irq_stats_lock);
  3493. dispc.irq_stats.last_reset = jiffies;
  3494. #endif
  3495. INIT_WORK(&dispc.error_work, dispc_error_worker);
  3496. dispc_mem = platform_get_resource(dispc.pdev, IORESOURCE_MEM, 0);
  3497. if (!dispc_mem) {
  3498. DSSERR("can't get IORESOURCE_MEM DISPC\n");
  3499. return -EINVAL;
  3500. }
  3501. dispc.base = devm_ioremap(&pdev->dev, dispc_mem->start,
  3502. resource_size(dispc_mem));
  3503. if (!dispc.base) {
  3504. DSSERR("can't ioremap DISPC\n");
  3505. return -ENOMEM;
  3506. }
  3507. dispc.irq = platform_get_irq(dispc.pdev, 0);
  3508. if (dispc.irq < 0) {
  3509. DSSERR("platform_get_irq failed\n");
  3510. return -ENODEV;
  3511. }
  3512. r = devm_request_irq(&pdev->dev, dispc.irq, omap_dispc_irq_handler,
  3513. IRQF_SHARED, "OMAP DISPC", dispc.pdev);
  3514. if (r < 0) {
  3515. DSSERR("request_irq failed\n");
  3516. return r;
  3517. }
  3518. clk = clk_get(&pdev->dev, "fck");
  3519. if (IS_ERR(clk)) {
  3520. DSSERR("can't get fck\n");
  3521. r = PTR_ERR(clk);
  3522. return r;
  3523. }
  3524. dispc.dss_clk = clk;
  3525. pm_runtime_enable(&pdev->dev);
  3526. r = dispc_runtime_get();
  3527. if (r)
  3528. goto err_runtime_get;
  3529. _omap_dispc_initial_config();
  3530. _omap_dispc_initialize_irq();
  3531. rev = dispc_read_reg(DISPC_REVISION);
  3532. dev_dbg(&pdev->dev, "OMAP DISPC rev %d.%d\n",
  3533. FLD_GET(rev, 7, 4), FLD_GET(rev, 3, 0));
  3534. dispc_runtime_put();
  3535. dss_debugfs_create_file("dispc", dispc_dump_regs);
  3536. #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
  3537. dss_debugfs_create_file("dispc_irq", dispc_dump_irqs);
  3538. #endif
  3539. return 0;
  3540. err_runtime_get:
  3541. pm_runtime_disable(&pdev->dev);
  3542. clk_put(dispc.dss_clk);
  3543. return r;
  3544. }
  3545. static int __exit omap_dispchw_remove(struct platform_device *pdev)
  3546. {
  3547. pm_runtime_disable(&pdev->dev);
  3548. clk_put(dispc.dss_clk);
  3549. return 0;
  3550. }
  3551. static int dispc_runtime_suspend(struct device *dev)
  3552. {
  3553. dispc_save_context();
  3554. return 0;
  3555. }
  3556. static int dispc_runtime_resume(struct device *dev)
  3557. {
  3558. dispc_restore_context();
  3559. return 0;
  3560. }
  3561. static const struct dev_pm_ops dispc_pm_ops = {
  3562. .runtime_suspend = dispc_runtime_suspend,
  3563. .runtime_resume = dispc_runtime_resume,
  3564. };
  3565. static struct platform_driver omap_dispchw_driver = {
  3566. .remove = __exit_p(omap_dispchw_remove),
  3567. .driver = {
  3568. .name = "omapdss_dispc",
  3569. .owner = THIS_MODULE,
  3570. .pm = &dispc_pm_ops,
  3571. },
  3572. };
  3573. int __init dispc_init_platform_driver(void)
  3574. {
  3575. return platform_driver_probe(&omap_dispchw_driver, omap_dispchw_probe);
  3576. }
  3577. void __exit dispc_uninit_platform_driver(void)
  3578. {
  3579. platform_driver_unregister(&omap_dispchw_driver);
  3580. }