123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680 |
- // SPDX-License-Identifier: GPL-2.0-only
- /*
- * Copyright (c) 2014-2021, The Linux Foundation. All rights reserved.
- */
- #include <linux/module.h>
- #include <linux/dma-buf.h>
- #include <linux/dma-direction.h>
- #include <linux/of_platform.h>
- #include <linux/iommu.h>
- #include <linux/slab.h>
- #include <linux/dma-mapping.h>
- #include <linux/of_address.h>
- #include <linux/msm_dma_iommu_mapping.h>
- #include <linux/workqueue.h>
- #include <linux/genalloc.h>
- #include <linux/debugfs.h>
- #include <linux/dma-iommu.h>
- #include <soc/qcom/secure_buffer.h>
- #include <media/cam_req_mgr.h>
- #include "cam_compat.h"
- #include "cam_smmu_api.h"
- #include "cam_debug_util.h"
- #include "camera_main.h"
- #include "cam_trace.h"
- #include "cam_common_util.h"
- #include "cam_compat.h"
- #define SHARED_MEM_POOL_GRANULARITY 16
- #define IOMMU_INVALID_DIR -1
- #define BYTE_SIZE 8
- #define COOKIE_NUM_BYTE 2
- #define COOKIE_SIZE (BYTE_SIZE*COOKIE_NUM_BYTE)
- #define COOKIE_MASK ((1<<COOKIE_SIZE)-1)
- #define HANDLE_INIT (-1)
- #define CAM_SMMU_CB_MAX 6
- #define CAM_SMMU_SHARED_HDL_MAX 6
- #define GET_SMMU_HDL(x, y) (((x) << COOKIE_SIZE) | ((y) & COOKIE_MASK))
- #define GET_SMMU_TABLE_IDX(x) (((x) >> COOKIE_SIZE) & COOKIE_MASK)
- #define CAM_SMMU_MONITOR_MAX_ENTRIES 100
- #define CAM_SMMU_INC_MONITOR_HEAD(head, ret) \
- div_u64_rem(atomic64_add_return(1, head),\
- CAM_SMMU_MONITOR_MAX_ENTRIES, (ret))
- static int g_num_pf_handled = 1;
- module_param(g_num_pf_handled, int, 0644);
- struct cam_fw_alloc_info icp_fw;
- struct cam_smmu_work_payload {
- int idx;
- struct iommu_domain *domain;
- struct device *dev;
- unsigned long iova;
- int flags;
- void *token;
- struct list_head list;
- };
- enum cam_io_coherency_mode {
- CAM_SMMU_NO_COHERENCY,
- CAM_SMMU_DMA_COHERENT,
- CAM_SMMU_DMA_COHERENT_HINT_CACHED,
- };
- enum cam_protection_type {
- CAM_PROT_INVALID,
- CAM_NON_SECURE,
- CAM_SECURE,
- CAM_PROT_MAX,
- };
- enum cam_iommu_type {
- CAM_SMMU_INVALID,
- CAM_QSMMU,
- CAM_ARM_SMMU,
- CAM_SMMU_MAX,
- };
- enum cam_smmu_buf_state {
- CAM_SMMU_BUFF_EXIST,
- CAM_SMMU_BUFF_NOT_EXIST,
- };
- enum cam_smmu_init_dir {
- CAM_SMMU_TABLE_INIT,
- CAM_SMMU_TABLE_DEINIT,
- };
- struct scratch_mapping {
- void *bitmap;
- size_t bits;
- unsigned int order;
- dma_addr_t base;
- };
- struct region_buf_info {
- struct dma_buf *buf;
- struct dma_buf_attachment *attach;
- struct sg_table *table;
- };
- struct cam_smmu_monitor {
- struct timespec64 timestamp;
- bool is_map;
- /* map-unmap info */
- int ion_fd;
- unsigned long i_ino;
- dma_addr_t paddr;
- size_t len;
- enum cam_smmu_region_id region_id;
- };
- struct cam_context_bank_info {
- struct device *dev;
- struct iommu_domain *domain;
- dma_addr_t va_start;
- size_t va_len;
- const char *name[CAM_SMMU_SHARED_HDL_MAX];
- bool is_secure;
- uint8_t scratch_buf_support;
- uint8_t firmware_support;
- uint8_t shared_support;
- uint8_t io_support;
- uint8_t secheap_support;
- uint8_t fwuncached_region_support;
- uint8_t qdss_support;
- dma_addr_t qdss_phy_addr;
- bool is_fw_allocated;
- bool is_secheap_allocated;
- bool is_fwuncached_buf_allocated;
- bool is_qdss_allocated;
- struct scratch_mapping scratch_map;
- struct gen_pool *shared_mem_pool;
- struct cam_smmu_region_info scratch_info;
- struct cam_smmu_region_info firmware_info;
- struct cam_smmu_region_info shared_info;
- struct cam_smmu_region_info io_info;
- struct cam_smmu_region_info secheap_info;
- struct cam_smmu_region_info fwuncached_region;
- struct cam_smmu_region_info qdss_info;
- struct region_buf_info secheap_buf;
- struct region_buf_info fwuncached_reg_buf;
- struct list_head smmu_buf_list;
- struct list_head smmu_buf_kernel_list;
- struct mutex lock;
- int handle;
- enum cam_smmu_ops_param state;
- void (*handler[CAM_SMMU_CB_MAX]) (struct cam_smmu_pf_info *pf_info);
- void *token[CAM_SMMU_CB_MAX];
- int cb_count;
- int secure_count;
- int pf_count;
- size_t io_mapping_size;
- size_t shared_mapping_size;
- bool is_mul_client;
- int device_count;
- int num_shared_hdl;
- enum cam_io_coherency_mode coherency_mode;
- /* discard iova - non-zero values are valid */
- dma_addr_t discard_iova_start;
- size_t discard_iova_len;
- atomic64_t monitor_head;
- struct cam_smmu_monitor monitor_entries[CAM_SMMU_MONITOR_MAX_ENTRIES];
- };
- struct cam_iommu_cb_set {
- struct cam_context_bank_info *cb_info;
- u32 cb_num;
- u32 cb_init_count;
- struct work_struct smmu_work;
- struct mutex payload_list_lock;
- struct list_head payload_list;
- u32 non_fatal_fault;
- struct dentry *dentry;
- bool cb_dump_enable;
- bool map_profile_enable;
- bool force_cache_allocs;
- bool need_shared_buffer_padding;
- bool is_expanded_memory;
- };
- static const struct of_device_id msm_cam_smmu_dt_match[] = {
- { .compatible = "qcom,msm-cam-smmu", },
- { .compatible = "qcom,msm-cam-smmu-cb", },
- { .compatible = "qcom,msm-cam-smmu-fw-dev", },
- {}
- };
- struct cam_dma_buff_info {
- struct dma_buf *buf;
- struct dma_buf_attachment *attach;
- struct sg_table *table;
- enum dma_data_direction dir;
- enum cam_smmu_region_id region_id;
- int iommu_dir;
- int ref_count;
- dma_addr_t paddr;
- struct list_head list;
- int ion_fd;
- unsigned long i_ino;
- size_t len;
- size_t phys_len;
- bool is_internal;
- struct timespec64 ts;
- };
- struct cam_sec_buff_info {
- struct dma_buf *buf;
- struct dma_buf_attachment *attach;
- struct sg_table *table;
- enum dma_data_direction dir;
- int ref_count;
- dma_addr_t paddr;
- struct list_head list;
- int ion_fd;
- unsigned long i_ino;
- size_t len;
- };
- struct cam_smmu_mini_dump_cb_info {
- struct cam_smmu_monitor mapping[CAM_SMMU_MONITOR_MAX_ENTRIES];
- struct cam_smmu_region_info scratch_info;
- struct cam_smmu_region_info firmware_info;
- struct cam_smmu_region_info shared_info;
- struct cam_smmu_region_info io_info;
- struct cam_smmu_region_info secheap_info;
- struct cam_smmu_region_info fwuncached_region;
- struct cam_smmu_region_info qdss_info;
- struct region_buf_info secheap_buf;
- struct region_buf_info fwuncached_reg_buf;
- char name[CAM_SMMU_SHARED_HDL_MAX][16];
- size_t va_len;
- size_t io_mapping_size;
- size_t shared_mapping_size;
- size_t discard_iova_len;
- int handle;
- int device_count;
- int num_shared_hdl;
- int cb_count;
- int secure_count;
- int pf_count;
- dma_addr_t va_start;
- dma_addr_t discard_iova_start;
- dma_addr_t qdss_phy_addr;
- enum cam_io_coherency_mode coherency_mode;
- enum cam_smmu_ops_param state;
- uint8_t scratch_buf_support;
- uint8_t firmware_support;
- uint8_t shared_support;
- uint8_t io_support;
- uint8_t secheap_support;
- uint8_t fwuncached_region_support;
- uint8_t qdss_support;
- bool is_mul_client;
- bool is_secure;
- bool is_fw_allocated;
- bool is_secheap_allocated;
- bool is_fwuncached_buf_allocated;
- bool is_qdss_allocated;
- };
- struct cam_smmu_mini_dump_info {
- uint32_t cb_num;
- struct cam_smmu_mini_dump_cb_info *cb;
- };
- static const char *qdss_region_name = "qdss";
- static struct cam_iommu_cb_set iommu_cb_set;
- static enum dma_data_direction cam_smmu_translate_dir(
- enum cam_smmu_map_dir dir);
- static bool cam_smmu_is_hdl_nonunique_or_null(int hdl);
- static int cam_smmu_create_iommu_handle(int idx);
- static int cam_smmu_create_add_handle_in_table(char *name,
- int *hdl);
- static struct cam_dma_buff_info *cam_smmu_find_mapping_by_ion_index(int idx,
- int ion_fd, struct dma_buf *dma_buf);
- static struct cam_dma_buff_info *cam_smmu_find_mapping_by_dma_buf(int idx,
- struct dma_buf *buf);
- static struct cam_sec_buff_info *cam_smmu_find_mapping_by_sec_buf_idx(int idx,
- int ion_fd, struct dma_buf *dma_buf);
- static int cam_smmu_init_scratch_map(struct scratch_mapping *scratch_map,
- dma_addr_t base, size_t size,
- int order);
- static int cam_smmu_alloc_scratch_va(struct scratch_mapping *mapping,
- size_t size,
- dma_addr_t *iova);
- static int cam_smmu_free_scratch_va(struct scratch_mapping *mapping,
- dma_addr_t addr, size_t size);
- static struct cam_dma_buff_info *cam_smmu_find_mapping_by_virt_address(int idx,
- dma_addr_t virt_addr);
- static int cam_smmu_map_buffer_and_add_to_list(int idx, int ion_fd,
- bool dis_delayed_unmap, enum dma_data_direction dma_dir,
- dma_addr_t *paddr_ptr, size_t *len_ptr,
- enum cam_smmu_region_id region_id, bool is_internal);
- static int cam_smmu_map_kernel_buffer_and_add_to_list(int idx,
- struct dma_buf *buf, enum dma_data_direction dma_dir,
- dma_addr_t *paddr_ptr, size_t *len_ptr,
- enum cam_smmu_region_id region_id);
- static int cam_smmu_alloc_scratch_buffer_add_to_list(int idx,
- size_t virt_len,
- size_t phys_len,
- unsigned int iommu_dir,
- dma_addr_t *virt_addr);
- static int cam_smmu_unmap_buf_and_remove_from_list(
- struct cam_dma_buff_info *mapping_info, int idx);
- static int cam_smmu_free_scratch_buffer_remove_from_list(
- struct cam_dma_buff_info *mapping_info,
- int idx);
- static void cam_smmu_clean_user_buffer_list(int idx);
- static void cam_smmu_clean_kernel_buffer_list(int idx);
- static void cam_smmu_dump_cb_info(int idx);
- static void cam_smmu_print_user_list(int idx);
- static void cam_smmu_print_kernel_list(int idx);
- static void cam_smmu_print_table(void);
- static int cam_smmu_probe(struct platform_device *pdev);
- static uint32_t cam_smmu_find_closest_mapping(int idx, void *vaddr);
- static void cam_smmu_update_monitor_array(
- struct cam_context_bank_info *cb_info,
- bool is_map,
- struct cam_dma_buff_info *mapping_info)
- {
- int iterator;
- CAM_SMMU_INC_MONITOR_HEAD(&cb_info->monitor_head, &iterator);
- CAM_GET_TIMESTAMP(cb_info->monitor_entries[iterator].timestamp);
- cb_info->monitor_entries[iterator].is_map = is_map;
- cb_info->monitor_entries[iterator].ion_fd = mapping_info->ion_fd;
- cb_info->monitor_entries[iterator].i_ino = mapping_info->i_ino;
- cb_info->monitor_entries[iterator].paddr = mapping_info->paddr;
- cb_info->monitor_entries[iterator].len = mapping_info->len;
- cb_info->monitor_entries[iterator].region_id = mapping_info->region_id;
- }
- static void cam_smmu_dump_monitor_array(
- struct cam_context_bank_info *cb_info)
- {
- int i = 0;
- int64_t state_head = 0;
- uint32_t index, num_entries, oldest_entry;
- uint64_t ms, hrs, min, sec;
- state_head = atomic64_read(&cb_info->monitor_head);
- if (state_head == -1) {
- return;
- } else if (state_head < CAM_SMMU_MONITOR_MAX_ENTRIES) {
- num_entries = state_head;
- oldest_entry = 0;
- } else {
- num_entries = CAM_SMMU_MONITOR_MAX_ENTRIES;
- div_u64_rem(state_head + 1,
- CAM_SMMU_MONITOR_MAX_ENTRIES, &oldest_entry);
- }
- CAM_INFO(CAM_SMMU,
- "========Dumping monitor information for cb %s===========",
- cb_info->name[0]);
- index = oldest_entry;
- for (i = 0; i < num_entries; i++) {
- CAM_CONVERT_TIMESTAMP_FORMAT(cb_info->monitor_entries[index].timestamp,
- hrs, min, sec, ms);
- CAM_INFO(CAM_SMMU,
- "**** %llu:%llu:%llu.%llu : Index[%d] [%s] : ion_fd=%d i_ino=%lu start=0x%llx end=0x%llx len=%zu region=%d",
- hrs, min, sec, ms,
- index,
- cb_info->monitor_entries[index].is_map ? "MAP" : "UNMAP",
- cb_info->monitor_entries[index].ion_fd,
- cb_info->monitor_entries[index].i_ino,
- cb_info->monitor_entries[index].paddr,
- cb_info->monitor_entries[index].paddr +
- cb_info->monitor_entries[index].len,
- cb_info->monitor_entries[index].len,
- cb_info->monitor_entries[index].region_id);
- index = (index + 1) % CAM_SMMU_MONITOR_MAX_ENTRIES;
- }
- }
- bool cam_smmu_need_shared_buffer_padding(void)
- {
- return iommu_cb_set.need_shared_buffer_padding;
- }
- bool cam_smmu_is_expanded_memory(void)
- {
- return iommu_cb_set.is_expanded_memory;
- }
- int cam_smmu_need_force_alloc_cached(bool *force_alloc_cached)
- {
- int idx;
- uint32_t curr_mode = 0, final_mode = 0;
- bool validate = false;
- if (!force_alloc_cached) {
- CAM_ERR(CAM_SMMU, "Invalid arg");
- return -EINVAL;
- }
- CAM_INFO(CAM_SMMU, "force_cache_allocs=%d",
- iommu_cb_set.force_cache_allocs);
- /*
- * First validate whether all SMMU CBs are properly setup to comply with
- * iommu_cb_set.force_alloc_cached flag.
- * This helps as a validation check to make sure a valid DT combination
- * is set for a given chipset.
- */
- for (idx = 0; idx < iommu_cb_set.cb_num; idx++) {
- /* ignore secure cb for now. need to revisit */
- if (iommu_cb_set.cb_info[idx].is_secure)
- continue;
- curr_mode = iommu_cb_set.cb_info[idx].coherency_mode;
- /*
- * 1. No coherency:
- * We can map both CACHED and UNCACHED buffers into same CB.
- * We need to allocate UNCACHED buffers for Cmdbuffers
- * and Shared Buffers. UNCAHE support must exists with memory
- * allocators (ion or dma-buf-heaps) for CmdBuffers,
- * SharedBuffers to work - as it is difficult to do
- * cache operations on these buffers in camera design.
- * ImageBuffers can be CACHED or UNCACHED. If CACHED, clients
- * need to make required CACHE operations.
- * Cannot force all allocations to CACHE.
- * 2. dma-coherent:
- * We cannot map CACHED and UNCACHED buffers into the same CB
- * This means, we must force allocate all buffers to be
- * CACHED.
- * 3. dma-coherent-hint-cached
- * We can map both CACHED and UNCACHED buffers into the same
- * CB. So any option is fine force_cache_allocs.
- * Forcing to cache is preferable though.
- *
- * Other rule we are enforcing is - all camera CBs (except
- * secure CB) must have same coherency mode set. Assume one CB
- * is having no_coherency mode and other CB is having
- * dma_coherent. For no_coherency CB to work - we must not force
- * buffers to be CACHE (exa cmd buffers), for dma_coherent mode
- * we must force all buffers to be CACHED. But at the time of
- * allocation, we dont know to which CB we will be mapping this
- * buffer. So it becomes difficult to generalize cache
- * allocations and io coherency mode that we want to support.
- * So, to simplify, all camera CBs will have same mode.
- */
- CAM_DBG(CAM_SMMU, "[%s] : curr_mode=%d",
- iommu_cb_set.cb_info[idx].name[0], curr_mode);
- if (curr_mode == CAM_SMMU_NO_COHERENCY) {
- if (iommu_cb_set.force_cache_allocs) {
- CAM_ERR(CAM_SMMU,
- "[%s] Can't force alloc cache with no coherency",
- iommu_cb_set.cb_info[idx].name[0]);
- return -EINVAL;
- }
- } else if (curr_mode == CAM_SMMU_DMA_COHERENT) {
- if (!iommu_cb_set.force_cache_allocs) {
- CAM_ERR(CAM_SMMU,
- "[%s] Must force cache allocs for dma coherent device",
- iommu_cb_set.cb_info[idx].name[0]);
- return -EINVAL;
- }
- }
- if (validate) {
- if (curr_mode != final_mode) {
- CAM_ERR(CAM_SMMU,
- "[%s] CBs having different coherency modes final=%d, curr=%d",
- iommu_cb_set.cb_info[idx].name[0],
- final_mode, curr_mode);
- return -EINVAL;
- }
- } else {
- validate = true;
- final_mode = curr_mode;
- }
- }
- /*
- * To be more accurate - if this flag is TRUE and if this buffer will
- * be mapped to external devices like CVP - we need to ensure we do
- * one of below :
- * 1. CVP CB having dma-coherent or dma-coherent-hint-cached
- * 2. camera/cvp sw layers properly doing required cache operations. We
- * cannot anymore assume these buffers (camera <--> cvp) are uncached
- */
- *force_alloc_cached = iommu_cb_set.force_cache_allocs;
- return 0;
- }
- static void cam_smmu_page_fault_work(struct work_struct *work)
- {
- int j;
- int idx;
- struct cam_smmu_work_payload *payload;
- uint32_t buf_info;
- struct cam_smmu_pf_info pf_info;
- mutex_lock(&iommu_cb_set.payload_list_lock);
- if (list_empty(&iommu_cb_set.payload_list)) {
- CAM_ERR(CAM_SMMU, "Payload list empty");
- mutex_unlock(&iommu_cb_set.payload_list_lock);
- return;
- }
- payload = list_first_entry(&iommu_cb_set.payload_list,
- struct cam_smmu_work_payload,
- list);
- list_del(&payload->list);
- mutex_unlock(&iommu_cb_set.payload_list_lock);
- cam_check_iommu_faults(payload->domain, &pf_info);
- /* Dereference the payload to call the handler */
- idx = payload->idx;
- buf_info = cam_smmu_find_closest_mapping(idx, (void *)payload->iova);
- if (buf_info != 0)
- CAM_INFO(CAM_SMMU, "closest buf 0x%x idx %d", buf_info, idx);
- pf_info.domain = payload->domain;
- pf_info.dev = payload->dev;
- pf_info.iova = payload->iova;
- pf_info.flags = payload->flags;
- pf_info.buf_info = buf_info;
- for (j = 0; j < CAM_SMMU_CB_MAX; j++) {
- if ((iommu_cb_set.cb_info[idx].handler[j])) {
- pf_info.token = iommu_cb_set.cb_info[idx].token[j];
- iommu_cb_set.cb_info[idx].handler[j](&pf_info);
- }
- }
- cam_smmu_dump_cb_info(idx);
- kfree(payload);
- }
- static void cam_smmu_dump_cb_info(int idx)
- {
- struct cam_dma_buff_info *mapping, *mapping_temp;
- size_t shared_reg_len = 0, io_reg_len = 0;
- size_t shared_free_len = 0, io_free_len = 0;
- uint32_t i = 0;
- uint64_t ms, hrs, min, sec;
- struct timespec64 current_ts;
- struct cam_context_bank_info *cb_info =
- &iommu_cb_set.cb_info[idx];
- if (cb_info->shared_support) {
- shared_reg_len = cb_info->shared_info.iova_len;
- shared_free_len = shared_reg_len - cb_info->shared_mapping_size;
- }
- if (cb_info->io_support) {
- io_reg_len = cb_info->io_info.iova_len;
- io_free_len = io_reg_len - cb_info->io_mapping_size;
- }
- CAM_GET_TIMESTAMP(current_ts);
- CAM_CONVERT_TIMESTAMP_FORMAT(current_ts, hrs, min, sec, ms);
- CAM_ERR(CAM_SMMU,
- "********** %llu:%llu:%llu:%llu Context bank dump for %s **********",
- hrs, min, sec, ms, cb_info->name[0]);
- CAM_ERR(CAM_SMMU,
- "Usage: shared_usage=%u io_usage=%u shared_free=%u io_free=%u",
- (unsigned int)cb_info->shared_mapping_size,
- (unsigned int)cb_info->io_mapping_size,
- (unsigned int)shared_free_len,
- (unsigned int)io_free_len);
- if (iommu_cb_set.cb_dump_enable) {
- list_for_each_entry_safe(mapping, mapping_temp,
- &iommu_cb_set.cb_info[idx].smmu_buf_list, list) {
- i++;
- CAM_CONVERT_TIMESTAMP_FORMAT(mapping->ts, hrs, min, sec, ms);
- CAM_ERR(CAM_SMMU,
- "%llu:%llu:%llu:%llu: %u ion_fd=%d i_ino=%lu start=0x%x end=0x%x len=%u region=%d",
- hrs, min, sec, ms, i, mapping->ion_fd, mapping->i_ino,
- (void *)mapping->paddr,
- ((uint64_t)mapping->paddr +
- (uint64_t)mapping->len),
- (unsigned int)mapping->len,
- mapping->region_id);
- }
- cam_smmu_dump_monitor_array(&iommu_cb_set.cb_info[idx]);
- }
- }
- static void cam_smmu_print_user_list(int idx)
- {
- struct cam_dma_buff_info *mapping;
- CAM_ERR(CAM_SMMU, "index = %d", idx);
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_list, list) {
- CAM_ERR(CAM_SMMU,
- "ion_fd = %d, i_ino=%lu, paddr= 0x%pK, len = %u, region = %d",
- mapping->ion_fd, mapping->i_ino, (void *)mapping->paddr,
- (unsigned int)mapping->len,
- mapping->region_id);
- }
- }
- static void cam_smmu_print_kernel_list(int idx)
- {
- struct cam_dma_buff_info *mapping;
- CAM_ERR(CAM_SMMU, "index = %d", idx);
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_kernel_list, list) {
- CAM_ERR(CAM_SMMU,
- "dma_buf = %pK, i_ino = %lu, paddr= 0x%pK, len = %u, region = %d",
- mapping->buf, mapping->i_ino, (void *)mapping->paddr,
- (unsigned int)mapping->len,
- mapping->region_id);
- }
- }
- static void cam_smmu_print_table(void)
- {
- int i, j;
- for (i = 0; i < iommu_cb_set.cb_num; i++) {
- for (j = 0; j < iommu_cb_set.cb_info[i].num_shared_hdl; j++) {
- CAM_ERR(CAM_SMMU,
- "i= %d, handle= %d, name_addr=%pK name %s",
- i, (int)iommu_cb_set.cb_info[i].handle,
- (void *)iommu_cb_set.cb_info[i].name[j],
- iommu_cb_set.cb_info[i].name[j]);
- }
- CAM_ERR(CAM_SMMU, "dev = %pK", iommu_cb_set.cb_info[i].dev);
- }
- }
- static uint32_t cam_smmu_find_closest_mapping(int idx, void *vaddr)
- {
- struct cam_dma_buff_info *mapping, *closest_mapping = NULL;
- unsigned long start_addr, end_addr, current_addr;
- uint32_t buf_handle = 0;
- long delta = 0, lowest_delta = 0;
- current_addr = (unsigned long)vaddr;
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_list, list) {
- start_addr = (unsigned long)mapping->paddr;
- end_addr = (unsigned long)mapping->paddr + mapping->len;
- if (start_addr <= current_addr && current_addr <= end_addr) {
- closest_mapping = mapping;
- CAM_INFO(CAM_SMMU,
- "Found va 0x%lx in:0x%lx-0x%lx, fd %d i_ino %lu cb:%s",
- current_addr, start_addr,
- end_addr, mapping->ion_fd, mapping->i_ino,
- iommu_cb_set.cb_info[idx].name[0]);
- goto end;
- } else {
- if (start_addr > current_addr)
- delta = start_addr - current_addr;
- else
- delta = current_addr - end_addr - 1;
- if (delta < lowest_delta || lowest_delta == 0) {
- lowest_delta = delta;
- closest_mapping = mapping;
- }
- CAM_DBG(CAM_SMMU,
- "approx va %lx not in range: %lx-%lx fd = %0x i_ino %lu",
- current_addr, start_addr,
- end_addr, mapping->ion_fd, mapping->i_ino);
- }
- }
- end:
- if (closest_mapping) {
- buf_handle = GET_MEM_HANDLE(idx, closest_mapping->ion_fd);
- CAM_INFO(CAM_SMMU,
- "Closest map fd %d i_ino %lu 0x%lx %llu-%llu 0x%lx-0x%lx buf=%pK mem %0x",
- closest_mapping->ion_fd, closest_mapping->i_ino, current_addr,
- mapping->len, closest_mapping->len,
- (unsigned long)closest_mapping->paddr,
- (unsigned long)closest_mapping->paddr + mapping->len,
- closest_mapping->buf,
- buf_handle);
- } else
- CAM_ERR(CAM_SMMU,
- "Cannot find vaddr:%lx in SMMU %s virt address",
- current_addr, iommu_cb_set.cb_info[idx].name[0]);
- return buf_handle;
- }
- void cam_smmu_set_client_page_fault_handler(int handle,
- void (*handler_cb)(struct cam_smmu_pf_info *pf_info), void *token)
- {
- int idx, i = 0;
- if (!token || (handle == HANDLE_INIT)) {
- CAM_ERR(CAM_SMMU, "Error: token is NULL or invalid handle");
- return;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return;
- }
- if (handler_cb) {
- if (iommu_cb_set.cb_info[idx].cb_count == CAM_SMMU_CB_MAX) {
- CAM_ERR(CAM_SMMU,
- "%s Should not regiester more handlers",
- iommu_cb_set.cb_info[idx].name[0]);
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return;
- }
- iommu_cb_set.cb_info[idx].cb_count++;
- for (i = 0; i < iommu_cb_set.cb_info[idx].cb_count; i++) {
- if (iommu_cb_set.cb_info[idx].token[i] == NULL) {
- iommu_cb_set.cb_info[idx].token[i] = token;
- iommu_cb_set.cb_info[idx].handler[i] =
- handler_cb;
- break;
- }
- }
- } else {
- for (i = 0; i < CAM_SMMU_CB_MAX; i++) {
- if (iommu_cb_set.cb_info[idx].token[i] == token) {
- iommu_cb_set.cb_info[idx].token[i] = NULL;
- iommu_cb_set.cb_info[idx].handler[i] =
- NULL;
- iommu_cb_set.cb_info[idx].cb_count--;
- break;
- }
- }
- if (i == CAM_SMMU_CB_MAX)
- CAM_ERR(CAM_SMMU,
- "Error: hdl %x no matching tokens: %s",
- handle, iommu_cb_set.cb_info[idx].name[0]);
- }
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- }
- void cam_smmu_unset_client_page_fault_handler(int handle, void *token)
- {
- int idx, i = 0;
- if (!token || (handle == HANDLE_INIT)) {
- CAM_ERR(CAM_SMMU, "Error: token is NULL or invalid handle");
- return;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return;
- }
- for (i = 0; i < CAM_SMMU_CB_MAX; i++) {
- if (iommu_cb_set.cb_info[idx].token[i] == token) {
- iommu_cb_set.cb_info[idx].token[i] = NULL;
- iommu_cb_set.cb_info[idx].handler[i] =
- NULL;
- iommu_cb_set.cb_info[idx].cb_count--;
- break;
- }
- }
- if (i == CAM_SMMU_CB_MAX)
- CAM_ERR(CAM_SMMU, "Error: hdl %x no matching tokens: %s",
- handle, iommu_cb_set.cb_info[idx].name[0]);
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- }
- static int cam_smmu_iommu_fault_handler(struct iommu_domain *domain,
- struct device *dev, unsigned long iova,
- int flags, void *token)
- {
- char *cb_name;
- int idx;
- struct cam_smmu_work_payload *payload;
- if (!token) {
- CAM_ERR(CAM_SMMU,
- "token is NULL, domain = %pK, device = %pK,iova = %lX, flags = %d",
- domain, dev, iova, flags);
- return 0;
- }
- cb_name = (char *)token;
- /* Check whether it is in the table */
- for (idx = 0; idx < iommu_cb_set.cb_num; idx++) {
- if (!strcmp(iommu_cb_set.cb_info[idx].name[0], cb_name))
- break;
- }
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "index is invalid, index = %d, token = %s, cb_num = %s",
- idx, cb_name, iommu_cb_set.cb_num);
- return 0;
- }
- if (++iommu_cb_set.cb_info[idx].pf_count > g_num_pf_handled) {
- CAM_INFO_RATE_LIMIT(CAM_SMMU, "PF already handled %d %d %d",
- g_num_pf_handled, idx,
- iommu_cb_set.cb_info[idx].pf_count);
- return 0;
- }
- payload = kzalloc(sizeof(struct cam_smmu_work_payload), GFP_ATOMIC);
- if (!payload)
- return 0;
- payload->domain = domain;
- payload->dev = dev;
- payload->iova = iova;
- payload->flags = flags;
- payload->token = token;
- payload->idx = idx;
- mutex_lock(&iommu_cb_set.payload_list_lock);
- list_add_tail(&payload->list, &iommu_cb_set.payload_list);
- mutex_unlock(&iommu_cb_set.payload_list_lock);
- cam_smmu_page_fault_work(&iommu_cb_set.smmu_work);
- return -ENOSYS;
- }
- void cam_smmu_reset_cb_page_fault_cnt(void)
- {
- int idx;
- for (idx = 0; idx < iommu_cb_set.cb_num; idx++)
- iommu_cb_set.cb_info[idx].pf_count = 0;
- }
- static int cam_smmu_translate_dir_to_iommu_dir(
- enum cam_smmu_map_dir dir)
- {
- switch (dir) {
- case CAM_SMMU_MAP_READ:
- return IOMMU_READ;
- case CAM_SMMU_MAP_WRITE:
- return IOMMU_WRITE;
- case CAM_SMMU_MAP_RW:
- return IOMMU_READ|IOMMU_WRITE;
- case CAM_SMMU_MAP_INVALID:
- default:
- CAM_ERR(CAM_SMMU, "Error: Direction is invalid. dir = %d", dir);
- break;
- };
- return IOMMU_INVALID_DIR;
- }
- static enum dma_data_direction cam_smmu_translate_dir(
- enum cam_smmu_map_dir dir)
- {
- switch (dir) {
- case CAM_SMMU_MAP_READ:
- return DMA_FROM_DEVICE;
- case CAM_SMMU_MAP_WRITE:
- return DMA_TO_DEVICE;
- case CAM_SMMU_MAP_RW:
- return DMA_BIDIRECTIONAL;
- case CAM_SMMU_MAP_INVALID:
- default:
- CAM_ERR(CAM_SMMU, "Error: Direction is invalid. dir = %d",
- (int)dir);
- break;
- }
- return DMA_NONE;
- }
- void cam_smmu_reset_iommu_table(enum cam_smmu_init_dir ops)
- {
- unsigned int i;
- int j = 0;
- for (i = 0; i < iommu_cb_set.cb_num; i++) {
- iommu_cb_set.cb_info[i].handle = HANDLE_INIT;
- INIT_LIST_HEAD(&iommu_cb_set.cb_info[i].smmu_buf_list);
- INIT_LIST_HEAD(&iommu_cb_set.cb_info[i].smmu_buf_kernel_list);
- iommu_cb_set.cb_info[i].state = CAM_SMMU_DETACH;
- iommu_cb_set.cb_info[i].dev = NULL;
- iommu_cb_set.cb_info[i].cb_count = 0;
- iommu_cb_set.cb_info[i].pf_count = 0;
- for (j = 0; j < CAM_SMMU_CB_MAX; j++) {
- iommu_cb_set.cb_info[i].token[j] = NULL;
- iommu_cb_set.cb_info[i].handler[j] = NULL;
- }
- if (ops == CAM_SMMU_TABLE_INIT)
- mutex_init(&iommu_cb_set.cb_info[i].lock);
- else
- mutex_destroy(&iommu_cb_set.cb_info[i].lock);
- }
- }
- static bool cam_smmu_is_hdl_nonunique_or_null(int hdl)
- {
- int i;
- if ((hdl == HANDLE_INIT) || (!hdl)) {
- CAM_DBG(CAM_SMMU, "iommu handle: %d is not valid", hdl);
- return 1;
- }
- for (i = 0; i < iommu_cb_set.cb_num; i++) {
- if (iommu_cb_set.cb_info[i].handle == HANDLE_INIT)
- continue;
- if (iommu_cb_set.cb_info[i].handle == hdl) {
- CAM_DBG(CAM_SMMU, "iommu handle %d conflicts",
- (int)hdl);
- return 1;
- }
- }
- return 0;
- }
- /**
- * use low 2 bytes for handle cookie
- */
- static int cam_smmu_create_iommu_handle(int idx)
- {
- int rand, hdl = 0;
- get_random_bytes(&rand, COOKIE_NUM_BYTE);
- hdl = GET_SMMU_HDL(idx, rand);
- CAM_DBG(CAM_SMMU, "create handle value = %x", (int)hdl);
- return hdl;
- }
- static int cam_smmu_attach_device(int idx)
- {
- int rc;
- struct cam_context_bank_info *cb = &iommu_cb_set.cb_info[idx];
- /* attach the mapping to device */
- rc = iommu_attach_device(cb->domain, cb->dev);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU, "Error: ARM IOMMU attach failed. ret = %d",
- rc);
- rc = -ENODEV;
- }
- return rc;
- }
- static int cam_smmu_create_add_handle_in_table(char *name,
- int *hdl)
- {
- int i, j, rc = -EINVAL;
- int handle;
- /* create handle and add in the iommu hardware table */
- for (i = 0; i < iommu_cb_set.cb_num; i++) {
- for (j = 0; j < iommu_cb_set.cb_info[i].num_shared_hdl; j++) {
- if (strcmp(iommu_cb_set.cb_info[i].name[j], name))
- continue;
- if (iommu_cb_set.cb_info[i].handle == HANDLE_INIT) {
- mutex_lock(&iommu_cb_set.cb_info[i].lock);
- /* make sure handle is unique and non-zero*/
- do {
- handle =
- cam_smmu_create_iommu_handle(i);
- } while (cam_smmu_is_hdl_nonunique_or_null(
- handle));
- /* put handle in the table */
- iommu_cb_set.cb_info[i].handle = handle;
- iommu_cb_set.cb_info[i].cb_count = 0;
- if (iommu_cb_set.cb_info[i].is_secure)
- iommu_cb_set.cb_info[i].secure_count++;
- if (iommu_cb_set.cb_info[i].is_mul_client)
- iommu_cb_set.cb_info[i].device_count++;
- *hdl = handle;
- CAM_DBG(CAM_SMMU, "%s creates handle 0x%x",
- name, handle);
- mutex_unlock(&iommu_cb_set.cb_info[i].lock);
- rc = 0;
- goto end;
- } else {
- mutex_lock(&iommu_cb_set.cb_info[i].lock);
- if (iommu_cb_set.cb_info[i].is_secure) {
- iommu_cb_set.cb_info[i].secure_count++;
- *hdl = iommu_cb_set.cb_info[i].handle;
- mutex_unlock(
- &iommu_cb_set.cb_info[i].lock);
- return 0;
- }
- if (iommu_cb_set.cb_info[i].is_mul_client) {
- iommu_cb_set.cb_info[i].device_count++;
- *hdl = iommu_cb_set.cb_info[i].handle;
- mutex_unlock(
- &iommu_cb_set.cb_info[i].lock);
- CAM_DBG(CAM_SMMU,
- "%s already got handle 0x%x",
- name,
- iommu_cb_set.cb_info[i].handle);
- return 0;
- }
- CAM_ERR(CAM_SMMU,
- "Error: %s already got handle 0x%x",
- name, iommu_cb_set.cb_info[i].handle);
- mutex_unlock(&iommu_cb_set.cb_info[i].lock);
- rc = -EALREADY;
- goto end;
- }
- }
- }
- CAM_ERR(CAM_SMMU, "Error: Cannot find name %s or all handle exist",
- name);
- cam_smmu_print_table();
- end:
- return rc;
- }
- static int cam_smmu_init_scratch_map(struct scratch_mapping *scratch_map,
- dma_addr_t base, size_t size,
- int order)
- {
- unsigned int count = size >> (PAGE_SHIFT + order);
- unsigned int bitmap_size = BITS_TO_LONGS(count) * sizeof(long);
- int err = 0;
- if (!count) {
- err = -EINVAL;
- CAM_ERR(CAM_SMMU, "Page count is zero, size passed = %zu",
- size);
- goto bail;
- }
- scratch_map->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
- if (!scratch_map->bitmap) {
- err = -ENOMEM;
- goto bail;
- }
- scratch_map->base = base;
- scratch_map->bits = BITS_PER_BYTE * bitmap_size;
- scratch_map->order = order;
- bail:
- return err;
- }
- static int cam_smmu_alloc_scratch_va(struct scratch_mapping *mapping,
- size_t size,
- dma_addr_t *iova)
- {
- unsigned int order = get_order(size);
- unsigned int align = 0;
- unsigned int count, start;
- count = ((PAGE_ALIGN(size) >> PAGE_SHIFT) +
- (1 << mapping->order) - 1) >> mapping->order;
- /*
- * Transparently, add a guard page to the total count of pages
- * to be allocated
- */
- count++;
- if (order > mapping->order)
- align = (1 << (order - mapping->order)) - 1;
- start = bitmap_find_next_zero_area(mapping->bitmap, mapping->bits, 0,
- count, align);
- if (start > mapping->bits)
- return -ENOMEM;
- bitmap_set(mapping->bitmap, start, count);
- *iova = mapping->base + (start << (mapping->order + PAGE_SHIFT));
- return 0;
- }
- static int cam_smmu_free_scratch_va(struct scratch_mapping *mapping,
- dma_addr_t addr, size_t size)
- {
- unsigned int start = (addr - mapping->base) >>
- (mapping->order + PAGE_SHIFT);
- unsigned int count = ((size >> PAGE_SHIFT) +
- (1 << mapping->order) - 1) >> mapping->order;
- if (!addr) {
- CAM_ERR(CAM_SMMU, "Error: Invalid address");
- return -EINVAL;
- }
- if (start + count > mapping->bits) {
- CAM_ERR(CAM_SMMU, "Error: Invalid page bits in scratch map");
- return -EINVAL;
- }
- /*
- * Transparently, add a guard page to the total count of pages
- * to be freed
- */
- count++;
- bitmap_clear(mapping->bitmap, start, count);
- return 0;
- }
- static struct cam_dma_buff_info *cam_smmu_find_mapping_by_virt_address(int idx,
- dma_addr_t virt_addr)
- {
- struct cam_dma_buff_info *mapping;
- list_for_each_entry(mapping, &iommu_cb_set.cb_info[idx].smmu_buf_list,
- list) {
- if (mapping->paddr == virt_addr) {
- CAM_DBG(CAM_SMMU, "Found virtual address %lx",
- (unsigned long)virt_addr);
- return mapping;
- }
- }
- CAM_ERR(CAM_SMMU, "Error: Cannot find virtual address %lx by index %d",
- (unsigned long)virt_addr, idx);
- return NULL;
- }
- static struct cam_dma_buff_info *cam_smmu_find_mapping_by_ion_index(int idx,
- int ion_fd, struct dma_buf *dmabuf)
- {
- struct cam_dma_buff_info *mapping;
- unsigned long i_ino;
- if (ion_fd < 0) {
- CAM_ERR(CAM_SMMU, "Invalid fd %d", ion_fd);
- return NULL;
- }
- i_ino = file_inode(dmabuf->file)->i_ino;
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_list,
- list) {
- if ((mapping->ion_fd == ion_fd) && (mapping->i_ino == i_ino)) {
- CAM_DBG(CAM_SMMU, "find ion_fd %d i_ino %lu", ion_fd, i_ino);
- return mapping;
- }
- }
- CAM_ERR(CAM_SMMU, "Error: Cannot find entry by index %d, fd %d i_ino %lu",
- idx, ion_fd, i_ino);
- return NULL;
- }
- static struct cam_dma_buff_info *cam_smmu_find_mapping_by_dma_buf(int idx,
- struct dma_buf *buf)
- {
- struct cam_dma_buff_info *mapping;
- if (!buf) {
- CAM_ERR(CAM_SMMU, "Invalid dma_buf");
- return NULL;
- }
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_kernel_list,
- list) {
- if (mapping->buf == buf) {
- CAM_DBG(CAM_SMMU, "find dma_buf %pK", buf);
- return mapping;
- }
- }
- CAM_ERR(CAM_SMMU, "Error: Cannot find entry by index %d", idx);
- return NULL;
- }
- static struct cam_sec_buff_info *cam_smmu_find_mapping_by_sec_buf_idx(int idx,
- int ion_fd, struct dma_buf *dmabuf)
- {
- struct cam_sec_buff_info *mapping;
- unsigned long i_ino;
- i_ino = file_inode(dmabuf->file)->i_ino;
- list_for_each_entry(mapping, &iommu_cb_set.cb_info[idx].smmu_buf_list,
- list) {
- if ((mapping->ion_fd == ion_fd) && (mapping->i_ino == i_ino)) {
- CAM_DBG(CAM_SMMU, "find ion_fd %d, i_ino %lu", ion_fd, i_ino);
- return mapping;
- }
- }
- CAM_ERR(CAM_SMMU, "Error: Cannot find fd %d i_ino %lu by index %d",
- ion_fd, i_ino, idx);
- return NULL;
- }
- static void cam_smmu_clean_user_buffer_list(int idx)
- {
- int ret;
- struct cam_dma_buff_info *mapping_info, *temp;
- list_for_each_entry_safe(mapping_info, temp,
- &iommu_cb_set.cb_info[idx].smmu_buf_list, list) {
- CAM_DBG(CAM_SMMU, "Free mapping address %pK, i = %d, fd = %d, i_ino = %lu",
- (void *)mapping_info->paddr, idx,
- mapping_info->ion_fd, mapping_info->i_ino);
- if (mapping_info->ion_fd == 0xDEADBEEF)
- /* Clean up scratch buffers */
- ret = cam_smmu_free_scratch_buffer_remove_from_list(
- mapping_info, idx);
- else
- /* Clean up regular mapped buffers */
- ret = cam_smmu_unmap_buf_and_remove_from_list(
- mapping_info,
- idx);
- if (ret < 0) {
- CAM_ERR(CAM_SMMU, "Buffer delete failed: idx = %d",
- idx);
- CAM_ERR(CAM_SMMU,
- "Buffer delete failed: addr = %lx, fd = %d, i_ino = %lu",
- (unsigned long)mapping_info->paddr,
- mapping_info->ion_fd, mapping_info->i_ino);
- /*
- * Ignore this error and continue to delete other
- * buffers in the list
- */
- continue;
- }
- }
- }
- static void cam_smmu_clean_kernel_buffer_list(int idx)
- {
- int ret;
- struct cam_dma_buff_info *mapping_info, *temp;
- list_for_each_entry_safe(mapping_info, temp,
- &iommu_cb_set.cb_info[idx].smmu_buf_kernel_list, list) {
- CAM_DBG(CAM_SMMU,
- "Free mapping address %pK, i = %d, dma_buf = %pK",
- (void *)mapping_info->paddr, idx,
- mapping_info->buf);
- /* Clean up regular mapped buffers */
- ret = cam_smmu_unmap_buf_and_remove_from_list(
- mapping_info,
- idx);
- if (ret < 0) {
- CAM_ERR(CAM_SMMU,
- "Buffer delete in kernel list failed: idx = %d",
- idx);
- CAM_ERR(CAM_SMMU,
- "Buffer delete failed: addr = %lx, dma_buf = %pK",
- (unsigned long)mapping_info->paddr,
- mapping_info->buf);
- /*
- * Ignore this error and continue to delete other
- * buffers in the list
- */
- continue;
- }
- }
- }
- static int cam_smmu_attach(int idx)
- {
- int ret;
- if (iommu_cb_set.cb_info[idx].state == CAM_SMMU_ATTACH) {
- ret = -EALREADY;
- } else if (iommu_cb_set.cb_info[idx].state == CAM_SMMU_DETACH) {
- ret = cam_smmu_attach_device(idx);
- if (ret < 0) {
- CAM_ERR(CAM_SMMU, "Error: ATTACH fail");
- return -ENODEV;
- }
- iommu_cb_set.cb_info[idx].state = CAM_SMMU_ATTACH;
- ret = 0;
- } else {
- CAM_ERR(CAM_SMMU, "Error: Not detach/attach: %d",
- iommu_cb_set.cb_info[idx].state);
- ret = -EINVAL;
- }
- return ret;
- }
- static int cam_smmu_detach_device(int idx)
- {
- int rc = 0;
- struct cam_context_bank_info *cb = &iommu_cb_set.cb_info[idx];
- /* detach the mapping to device if not already detached */
- if (iommu_cb_set.cb_info[idx].state == CAM_SMMU_DETACH) {
- rc = -EALREADY;
- } else if (iommu_cb_set.cb_info[idx].state == CAM_SMMU_ATTACH) {
- iommu_detach_device(cb->domain, cb->dev);
- iommu_cb_set.cb_info[idx].state = CAM_SMMU_DETACH;
- }
- return rc;
- }
- static int cam_smmu_alloc_iova(size_t size,
- int32_t smmu_hdl, unsigned long *iova)
- {
- int rc = 0;
- int idx;
- unsigned long vaddr = 0;
- if (!iova || !size || (smmu_hdl == HANDLE_INIT)) {
- CAM_ERR(CAM_SMMU, "Error: Input args are invalid");
- return -EINVAL;
- }
- CAM_DBG(CAM_SMMU, "Allocating iova size = %zu for smmu hdl=%X",
- size, smmu_hdl);
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- return -EINVAL;
- }
- if (iommu_cb_set.cb_info[idx].handle != smmu_hdl) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, smmu_hdl);
- rc = -EINVAL;
- goto get_addr_end;
- }
- if (!iommu_cb_set.cb_info[idx].shared_support) {
- CAM_ERR(CAM_SMMU,
- "Error: Shared memory not supported for hdl = %X",
- smmu_hdl);
- rc = -EINVAL;
- goto get_addr_end;
- }
- vaddr = gen_pool_alloc(iommu_cb_set.cb_info[idx].shared_mem_pool, size);
- if (!vaddr)
- return -ENOMEM;
- *iova = vaddr;
- get_addr_end:
- return rc;
- }
- static int cam_smmu_free_iova(unsigned long iova, size_t size,
- int32_t smmu_hdl)
- {
- int rc = 0;
- int idx;
- if (!size || (smmu_hdl == HANDLE_INIT)) {
- CAM_ERR(CAM_SMMU, "Error: Input args are invalid");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- return -EINVAL;
- }
- if (iommu_cb_set.cb_info[idx].handle != smmu_hdl) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, smmu_hdl);
- rc = -EINVAL;
- goto get_addr_end;
- }
- gen_pool_free(iommu_cb_set.cb_info[idx].shared_mem_pool, iova, size);
- get_addr_end:
- return rc;
- }
- int cam_smmu_alloc_firmware(int32_t smmu_hdl,
- dma_addr_t *iova,
- uintptr_t *cpuva,
- size_t *len)
- {
- int rc;
- int32_t idx;
- size_t firmware_len = 0;
- size_t firmware_start = 0;
- struct iommu_domain *domain;
- if (!iova || !len || !cpuva || (smmu_hdl == HANDLE_INIT)) {
- CAM_ERR(CAM_SMMU, "Error: Input args are invalid");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- rc = -EINVAL;
- goto end;
- }
- if (!iommu_cb_set.cb_info[idx].firmware_support) {
- CAM_ERR(CAM_SMMU,
- "Firmware memory not supported for this SMMU handle");
- rc = -EINVAL;
- goto end;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].is_fw_allocated) {
- CAM_ERR(CAM_SMMU, "Trying to allocate twice");
- rc = -ENOMEM;
- goto unlock_and_end;
- }
- firmware_len = iommu_cb_set.cb_info[idx].firmware_info.iova_len;
- firmware_start = iommu_cb_set.cb_info[idx].firmware_info.iova_start;
- CAM_DBG(CAM_SMMU, "Firmware area len from DT = %zu", firmware_len);
- rc = cam_reserve_icp_fw(&icp_fw, firmware_len);
- if (rc)
- goto unlock_and_end;
- else
- CAM_DBG(CAM_SMMU, "DMA alloc returned fw = %pK, hdl = %pK",
- icp_fw.fw_kva, (void *)icp_fw.fw_hdl);
- domain = iommu_cb_set.cb_info[idx].domain;
- /*
- * Revisit this - what should we map this with - CACHED or UNCACHED?
- * chipsets using dma-coherent-hint-cached - leaving it like this is
- * fine as we can map both CACHED and UNCACHED on same CB.
- * But on chipsets which use dma-coherent - all the buffers that are
- * being mapped to this CB must be CACHED
- */
- rc = iommu_map(domain,
- firmware_start,
- (phys_addr_t) icp_fw.fw_hdl,
- firmware_len,
- IOMMU_READ|IOMMU_WRITE|IOMMU_PRIV);
- if (rc) {
- CAM_ERR(CAM_SMMU, "Failed to map FW into IOMMU");
- rc = -ENOMEM;
- goto alloc_fail;
- }
- iommu_cb_set.cb_info[idx].is_fw_allocated = true;
- *iova = iommu_cb_set.cb_info[idx].firmware_info.iova_start;
- *cpuva = (uintptr_t)icp_fw.fw_kva;
- *len = firmware_len;
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- alloc_fail:
- cam_unreserve_icp_fw(&icp_fw, firmware_len);
- unlock_and_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- end:
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_alloc_firmware);
- int cam_smmu_dealloc_firmware(int32_t smmu_hdl)
- {
- int rc = 0;
- int32_t idx;
- size_t firmware_len = 0;
- size_t firmware_start = 0;
- struct iommu_domain *domain;
- size_t unmapped = 0;
- if (smmu_hdl == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- rc = -EINVAL;
- goto end;
- }
- if (!iommu_cb_set.cb_info[idx].firmware_support) {
- CAM_ERR(CAM_SMMU,
- "Firmware memory not supported for this SMMU handle");
- rc = -EINVAL;
- goto end;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (!iommu_cb_set.cb_info[idx].is_fw_allocated) {
- CAM_ERR(CAM_SMMU,
- "Trying to deallocate firmware that is not allocated");
- rc = -ENOMEM;
- goto unlock_and_end;
- }
- firmware_len = iommu_cb_set.cb_info[idx].firmware_info.iova_len;
- firmware_start = iommu_cb_set.cb_info[idx].firmware_info.iova_start;
- domain = iommu_cb_set.cb_info[idx].domain;
- unmapped = iommu_unmap(domain,
- firmware_start,
- firmware_len);
- if (unmapped != firmware_len) {
- CAM_ERR(CAM_SMMU, "Only %zu unmapped out of total %zu",
- unmapped,
- firmware_len);
- rc = -EINVAL;
- }
- cam_unreserve_icp_fw(&icp_fw, firmware_len);
- icp_fw.fw_kva = NULL;
- icp_fw.fw_hdl = 0;
- iommu_cb_set.cb_info[idx].is_fw_allocated = false;
- unlock_and_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- end:
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_dealloc_firmware);
- int cam_smmu_alloc_qdss(int32_t smmu_hdl,
- dma_addr_t *iova,
- size_t *len)
- {
- int rc;
- int32_t idx;
- size_t qdss_len = 0;
- size_t qdss_start = 0;
- dma_addr_t qdss_phy_addr;
- struct iommu_domain *domain;
- if (!iova || !len || (smmu_hdl == HANDLE_INIT)) {
- CAM_ERR(CAM_SMMU, "Error: Input args are invalid");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- rc = -EINVAL;
- goto end;
- }
- if (!iommu_cb_set.cb_info[idx].qdss_support) {
- CAM_ERR(CAM_SMMU,
- "QDSS memory not supported for this SMMU handle");
- rc = -EINVAL;
- goto end;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].is_qdss_allocated) {
- CAM_ERR(CAM_SMMU, "Trying to allocate twice");
- rc = -ENOMEM;
- goto unlock_and_end;
- }
- qdss_len = iommu_cb_set.cb_info[idx].qdss_info.iova_len;
- qdss_start = iommu_cb_set.cb_info[idx].qdss_info.iova_start;
- qdss_phy_addr = iommu_cb_set.cb_info[idx].qdss_phy_addr;
- CAM_DBG(CAM_SMMU, "QDSS area len from DT = %zu", qdss_len);
- domain = iommu_cb_set.cb_info[idx].domain;
- /*
- * Revisit this - what should we map this with - CACHED or UNCACHED?
- * chipsets using dma-coherent-hint-cached - leaving it like this is
- * fine as we can map both CACHED and UNCACHED on same CB.
- * But on chipsets which use dma-coherent - all the buffers that are
- * being mapped to this CB must be CACHED
- */
- rc = iommu_map(domain,
- qdss_start,
- qdss_phy_addr,
- qdss_len,
- IOMMU_READ|IOMMU_WRITE);
- if (rc) {
- CAM_ERR(CAM_SMMU, "Failed to map QDSS into IOMMU");
- goto unlock_and_end;
- }
- iommu_cb_set.cb_info[idx].is_qdss_allocated = true;
- *iova = iommu_cb_set.cb_info[idx].qdss_info.iova_start;
- *len = qdss_len;
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- unlock_and_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- end:
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_alloc_qdss);
- int cam_smmu_dealloc_qdss(int32_t smmu_hdl)
- {
- int rc = 0;
- int32_t idx;
- size_t qdss_len = 0;
- size_t qdss_start = 0;
- struct iommu_domain *domain;
- size_t unmapped = 0;
- if (smmu_hdl == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- rc = -EINVAL;
- goto end;
- }
- if (!iommu_cb_set.cb_info[idx].qdss_support) {
- CAM_ERR(CAM_SMMU,
- "QDSS memory not supported for this SMMU handle");
- rc = -EINVAL;
- goto end;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (!iommu_cb_set.cb_info[idx].is_qdss_allocated) {
- CAM_ERR(CAM_SMMU,
- "Trying to deallocate qdss that is not allocated");
- rc = -ENOMEM;
- goto unlock_and_end;
- }
- qdss_len = iommu_cb_set.cb_info[idx].qdss_info.iova_len;
- qdss_start = iommu_cb_set.cb_info[idx].qdss_info.iova_start;
- domain = iommu_cb_set.cb_info[idx].domain;
- unmapped = iommu_unmap(domain, qdss_start, qdss_len);
- if (unmapped != qdss_len) {
- CAM_ERR(CAM_SMMU, "Only %zu unmapped out of total %zu",
- unmapped,
- qdss_len);
- rc = -EINVAL;
- }
- iommu_cb_set.cb_info[idx].is_qdss_allocated = false;
- unlock_and_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- end:
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_dealloc_qdss);
- int cam_smmu_get_io_region_info(int32_t smmu_hdl,
- dma_addr_t *iova, size_t *len,
- dma_addr_t *discard_iova_start, size_t *discard_iova_len)
- {
- int32_t idx;
- if (!iova || !len || !discard_iova_start || !discard_iova_len ||
- (smmu_hdl == HANDLE_INIT)) {
- CAM_ERR(CAM_SMMU, "Error: Input args are invalid");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- return -EINVAL;
- }
- if (!iommu_cb_set.cb_info[idx].io_support) {
- CAM_ERR(CAM_SMMU,
- "I/O memory not supported for this SMMU handle");
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- *iova = iommu_cb_set.cb_info[idx].io_info.iova_start;
- *len = iommu_cb_set.cb_info[idx].io_info.iova_len;
- *discard_iova_start =
- iommu_cb_set.cb_info[idx].io_info.discard_iova_start;
- *discard_iova_len =
- iommu_cb_set.cb_info[idx].io_info.discard_iova_len;
- CAM_DBG(CAM_SMMU,
- "I/O area for hdl = %x Region:[%pK %zu] Discard:[%pK %zu]",
- smmu_hdl, *iova, *len,
- *discard_iova_start, *discard_iova_len);
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return 0;
- }
- int cam_smmu_get_region_info(int32_t smmu_hdl,
- enum cam_smmu_region_id region_id,
- struct cam_smmu_region_info *region_info)
- {
- int32_t idx;
- struct cam_context_bank_info *cb = NULL;
- if (!region_info) {
- CAM_ERR(CAM_SMMU, "Invalid region_info pointer");
- return -EINVAL;
- }
- if (smmu_hdl == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Invalid handle");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU, "Handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- cb = &iommu_cb_set.cb_info[idx];
- if (!cb) {
- CAM_ERR(CAM_SMMU, "SMMU context bank pointer invalid");
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -EINVAL;
- }
- switch (region_id) {
- case CAM_SMMU_REGION_FIRMWARE:
- if (!cb->firmware_support) {
- CAM_ERR(CAM_SMMU, "Firmware not supported");
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -ENODEV;
- }
- region_info->iova_start = cb->firmware_info.iova_start;
- region_info->iova_len = cb->firmware_info.iova_len;
- break;
- case CAM_SMMU_REGION_SHARED:
- if (!cb->shared_support) {
- CAM_ERR(CAM_SMMU, "Shared mem not supported");
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -ENODEV;
- }
- region_info->iova_start = cb->shared_info.iova_start;
- region_info->iova_len = cb->shared_info.iova_len;
- break;
- case CAM_SMMU_REGION_SCRATCH:
- if (!cb->scratch_buf_support) {
- CAM_ERR(CAM_SMMU, "Scratch memory not supported");
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -ENODEV;
- }
- region_info->iova_start = cb->scratch_info.iova_start;
- region_info->iova_len = cb->scratch_info.iova_len;
- break;
- case CAM_SMMU_REGION_IO:
- if (!cb->io_support) {
- CAM_ERR(CAM_SMMU, "IO memory not supported");
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -ENODEV;
- }
- region_info->iova_start = cb->io_info.iova_start;
- region_info->iova_len = cb->io_info.iova_len;
- break;
- case CAM_SMMU_REGION_SECHEAP:
- if (!cb->secheap_support) {
- CAM_ERR(CAM_SMMU, "Secondary heap not supported");
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -ENODEV;
- }
- region_info->iova_start = cb->secheap_info.iova_start;
- region_info->iova_len = cb->secheap_info.iova_len;
- break;
- case CAM_SMMU_REGION_FWUNCACHED:
- if (!cb->fwuncached_region_support) {
- CAM_WARN(CAM_SMMU, "FW uncached region not supported");
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -ENODEV;
- }
- region_info->iova_start = cb->fwuncached_region.iova_start;
- region_info->iova_len = cb->fwuncached_region.iova_len;
- break;
- default:
- CAM_ERR(CAM_SMMU, "Invalid region id: %d for smmu hdl: %X",
- smmu_hdl, region_id);
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -EINVAL;
- }
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return 0;
- }
- EXPORT_SYMBOL(cam_smmu_get_region_info);
- int cam_smmu_reserve_buf_region(enum cam_smmu_region_id region,
- int32_t smmu_hdl,
- struct dma_buf *buf,
- dma_addr_t *iova,
- size_t *request_len)
- {
- struct cam_context_bank_info *cb_info;
- struct region_buf_info *buf_info = NULL;
- struct cam_smmu_region_info *region_info = NULL;
- bool *is_buf_allocated;
- bool region_supported;
- size_t size = 0;
- int idx;
- int rc = 0;
- int prot = 0;
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- return -EINVAL;
- }
- cb_info = &iommu_cb_set.cb_info[idx];
- if (region == CAM_SMMU_REGION_SECHEAP) {
- region_supported = cb_info->secheap_support;
- } else if (region == CAM_SMMU_REGION_FWUNCACHED) {
- region_supported = cb_info->fwuncached_region_support;
- } else {
- CAM_ERR(CAM_SMMU, "Region not supported for reserving %d",
- region);
- return -EINVAL;
- }
- if (!region_supported) {
- CAM_ERR(CAM_SMMU, "Reserve for region %d not supported",
- region);
- return -EINVAL;
- }
- mutex_lock(&cb_info->lock);
- if (region == CAM_SMMU_REGION_SECHEAP) {
- is_buf_allocated = &cb_info->is_secheap_allocated;
- buf_info = &cb_info->secheap_buf;
- region_info = &cb_info->secheap_info;
- } else if (region == CAM_SMMU_REGION_FWUNCACHED) {
- is_buf_allocated = &cb_info->is_fwuncached_buf_allocated;
- buf_info = &cb_info->fwuncached_reg_buf;
- region_info = &cb_info->fwuncached_region;
- } else {
- CAM_ERR(CAM_SMMU, "Region not supported for reserving %d",
- region);
- mutex_unlock(&cb_info->lock);
- return -EINVAL;
- }
- if (*is_buf_allocated) {
- CAM_ERR(CAM_SMMU, "Trying to allocate heap twice for region %d",
- region);
- rc = -ENOMEM;
- mutex_unlock(&cb_info->lock);
- return rc;
- }
- if (IS_ERR_OR_NULL(buf)) {
- rc = PTR_ERR(buf);
- CAM_ERR(CAM_SMMU,
- "Error: dma get buf failed. rc = %d", rc);
- goto err_out;
- }
- buf_info->buf = buf;
- buf_info->attach = dma_buf_attach(buf_info->buf,
- cb_info->dev);
- if (IS_ERR_OR_NULL(buf_info->attach)) {
- rc = PTR_ERR(buf_info->attach);
- CAM_ERR(CAM_SMMU, "Error: dma buf attach failed");
- goto err_put;
- }
- buf_info->table = dma_buf_map_attachment(buf_info->attach,
- DMA_BIDIRECTIONAL);
- if (IS_ERR_OR_NULL(buf_info->table)) {
- rc = PTR_ERR(buf_info->table);
- CAM_ERR(CAM_SMMU, "Error: dma buf map attachment failed");
- goto err_detach;
- }
- prot = IOMMU_READ | IOMMU_WRITE;
- if (iommu_cb_set.force_cache_allocs)
- prot |= IOMMU_CACHE;
- size = iommu_map_sg(cb_info->domain,
- region_info->iova_start,
- buf_info->table->sgl,
- buf_info->table->orig_nents,
- prot);
- if (size != region_info->iova_len) {
- CAM_ERR(CAM_SMMU,
- "IOMMU mapping failed size=%zu, iova_len=%zu",
- size, region_info->iova_len);
- goto err_unmap_sg;
- }
- *is_buf_allocated = true;
- *iova = (uint32_t)region_info->iova_start;
- *request_len = region_info->iova_len;
- mutex_unlock(&cb_info->lock);
- return rc;
- err_unmap_sg:
- dma_buf_unmap_attachment(buf_info->attach,
- buf_info->table,
- DMA_BIDIRECTIONAL);
- err_detach:
- dma_buf_detach(buf_info->buf,
- buf_info->attach);
- err_put:
- dma_buf_put(buf_info->buf);
- err_out:
- mutex_unlock(&cb_info->lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_reserve_buf_region);
- int cam_smmu_release_buf_region(enum cam_smmu_region_id region,
- int32_t smmu_hdl)
- {
- int idx;
- size_t size = 0;
- struct region_buf_info *buf_info = NULL;
- struct cam_context_bank_info *cb_info;
- bool *is_buf_allocated;
- bool region_supported;
- struct cam_smmu_region_info *region_info = NULL;
- idx = GET_SMMU_TABLE_IDX(smmu_hdl);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, smmu_hdl);
- return -EINVAL;
- }
- cb_info = &iommu_cb_set.cb_info[idx];
- if (region == CAM_SMMU_REGION_SECHEAP) {
- region_supported = cb_info->secheap_support;
- } else if (region == CAM_SMMU_REGION_FWUNCACHED) {
- region_supported = cb_info->fwuncached_region_support;
- } else {
- CAM_ERR(CAM_SMMU, "Region not supported for reserving %d",
- region);
- return -EINVAL;
- }
- if (!region_supported) {
- CAM_ERR(CAM_SMMU, "Secondary heap not supported");
- return -EINVAL;
- }
- mutex_lock(&cb_info->lock);
- if (region == CAM_SMMU_REGION_SECHEAP) {
- is_buf_allocated = &cb_info->is_secheap_allocated;
- buf_info = &cb_info->secheap_buf;
- region_info = &cb_info->secheap_info;
- } else if (region == CAM_SMMU_REGION_FWUNCACHED) {
- is_buf_allocated = &cb_info->is_fwuncached_buf_allocated;
- buf_info = &cb_info->fwuncached_reg_buf;
- region_info = &cb_info->fwuncached_region;
- } else {
- CAM_ERR(CAM_SMMU, "Region not supported for reserving %d",
- region);
- mutex_unlock(&cb_info->lock);
- return -EINVAL;
- }
- if (!(*is_buf_allocated)) {
- CAM_ERR(CAM_SMMU, "Trying to release secheap twice");
- mutex_unlock(&cb_info->lock);
- return -ENOMEM;
- }
- size = iommu_unmap(cb_info->domain,
- region_info->iova_start,
- region_info->iova_len);
- if (size != region_info->iova_len) {
- CAM_ERR(CAM_SMMU, "Failed: Unmapped = %zu, requested = %zu",
- size,
- region_info->iova_len);
- }
- dma_buf_unmap_attachment(buf_info->attach,
- buf_info->table, DMA_BIDIRECTIONAL);
- dma_buf_detach(buf_info->buf, buf_info->attach);
- dma_buf_put(buf_info->buf);
- *is_buf_allocated = false;
- mutex_unlock(&cb_info->lock);
- return 0;
- }
- EXPORT_SYMBOL(cam_smmu_release_buf_region);
- static int cam_smmu_map_buffer_validate(struct dma_buf *buf,
- int idx, enum dma_data_direction dma_dir, dma_addr_t *paddr_ptr,
- size_t *len_ptr, enum cam_smmu_region_id region_id,
- bool dis_delayed_unmap, struct cam_dma_buff_info **mapping_info)
- {
- struct dma_buf_attachment *attach = NULL;
- struct sg_table *table = NULL;
- struct iommu_domain *domain;
- size_t size = 0;
- unsigned long iova = 0;
- int rc = 0;
- struct timespec64 ts1, ts2;
- long microsec = 0;
- int prot = 0;
- if (IS_ERR_OR_NULL(buf)) {
- rc = PTR_ERR(buf);
- CAM_ERR(CAM_SMMU,
- "Error: dma get buf failed. rc = %d", rc);
- goto err_out;
- }
- if (!mapping_info) {
- rc = -EINVAL;
- CAM_ERR(CAM_SMMU, "Error: mapping_info is invalid");
- goto err_out;
- }
- if (iommu_cb_set.map_profile_enable)
- CAM_GET_TIMESTAMP(ts1);
- attach = dma_buf_attach(buf, iommu_cb_set.cb_info[idx].dev);
- if (IS_ERR_OR_NULL(attach)) {
- rc = PTR_ERR(attach);
- CAM_ERR(CAM_SMMU, "Error: dma buf attach failed");
- goto err_put;
- }
- if (region_id == CAM_SMMU_REGION_SHARED) {
- table = dma_buf_map_attachment(attach, dma_dir);
- if (IS_ERR_OR_NULL(table)) {
- rc = PTR_ERR(table);
- CAM_ERR(CAM_SMMU, "Error: dma map attachment failed");
- goto err_detach;
- }
- domain = iommu_cb_set.cb_info[idx].domain;
- if (!domain) {
- CAM_ERR(CAM_SMMU, "CB has no domain set");
- goto err_unmap_sg;
- }
- rc = cam_smmu_alloc_iova(*len_ptr, iommu_cb_set.cb_info[idx].handle, &iova);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU,
- "IOVA alloc failed for shared memory, size=%zu, idx=%d, handle=%d",
- *len_ptr, idx,
- iommu_cb_set.cb_info[idx].handle);
- goto err_unmap_sg;
- }
- prot = IOMMU_READ | IOMMU_WRITE;
- if (iommu_cb_set.force_cache_allocs)
- prot |= IOMMU_CACHE;
- size = iommu_map_sg(domain, iova, table->sgl, table->orig_nents,
- prot);
- if (size < 0) {
- CAM_ERR(CAM_SMMU, "IOMMU mapping failed");
- rc = cam_smmu_free_iova(iova,
- size, iommu_cb_set.cb_info[idx].handle);
- if (rc)
- CAM_ERR(CAM_SMMU, "IOVA free failed");
- rc = -ENOMEM;
- goto err_unmap_sg;
- } else {
- CAM_DBG(CAM_SMMU,
- "iommu_map_sg returned iova=%pK, size=%zu",
- iova, size);
- *paddr_ptr = iova;
- *len_ptr = size;
- }
- iommu_cb_set.cb_info[idx].shared_mapping_size += *len_ptr;
- } else if (region_id == CAM_SMMU_REGION_IO) {
- if (!dis_delayed_unmap)
- attach->dma_map_attrs |= DMA_ATTR_DELAYED_UNMAP;
- table = dma_buf_map_attachment(attach, dma_dir);
- if (IS_ERR_OR_NULL(table)) {
- rc = PTR_ERR(table);
- CAM_ERR(CAM_SMMU,
- "Error: dma map attachment failed, size=%zu",
- buf->size);
- goto err_detach;
- }
- *paddr_ptr = sg_dma_address(table->sgl);
- *len_ptr = (size_t)buf->size;
- iommu_cb_set.cb_info[idx].io_mapping_size += *len_ptr;
- } else {
- CAM_ERR(CAM_SMMU, "Error: Wrong region id passed");
- rc = -EINVAL;
- goto err_detach;
- }
- CAM_DBG(CAM_SMMU,
- "iova=%pK, region_id=%d, paddr=0x%llx, len=%zu, dma_map_attrs=%d",
- iova, region_id, *paddr_ptr, *len_ptr, attach->dma_map_attrs);
- if (iommu_cb_set.map_profile_enable) {
- CAM_GET_TIMESTAMP(ts2);
- CAM_GET_TIMESTAMP_DIFF_IN_MICRO(ts1, ts2, microsec);
- trace_cam_log_event("SMMUMapProfile", "size and time in micro",
- *len_ptr, microsec);
- }
- if (table->sgl) {
- CAM_DBG(CAM_SMMU,
- "DMA buf: %pK, device: %pK, attach: %pK, table: %pK",
- (void *)buf,
- (void *)iommu_cb_set.cb_info[idx].dev,
- (void *)attach, (void *)table);
- CAM_DBG(CAM_SMMU, "table sgl: %pK, rc: %d, dma_address: 0x%x",
- (void *)table->sgl, rc,
- (unsigned int)table->sgl->dma_address);
- } else {
- rc = -EINVAL;
- CAM_ERR(CAM_SMMU, "Error: table sgl is null");
- goto err_unmap_sg;
- }
- /* fill up mapping_info */
- *mapping_info = kzalloc(sizeof(struct cam_dma_buff_info), GFP_KERNEL);
- if (!(*mapping_info)) {
- rc = -ENOSPC;
- goto err_alloc;
- }
- (*mapping_info)->buf = buf;
- (*mapping_info)->attach = attach;
- (*mapping_info)->table = table;
- (*mapping_info)->paddr = *paddr_ptr;
- (*mapping_info)->len = *len_ptr;
- (*mapping_info)->dir = dma_dir;
- (*mapping_info)->ref_count = 1;
- (*mapping_info)->region_id = region_id;
- if (!*paddr_ptr || !*len_ptr) {
- CAM_ERR(CAM_SMMU, "Error: Space Allocation failed");
- kfree(*mapping_info);
- *mapping_info = NULL;
- rc = -ENOSPC;
- goto err_alloc;
- }
- CAM_DBG(CAM_SMMU, "idx=%d, dma_buf=%pK, dev=%pOFfp, paddr=0x%llx, len=%zu",
- idx, buf,
- iommu_cb_set.cb_info[idx].dev->of_node,
- *paddr_ptr, *len_ptr);
- /* Unmap the mapping in dma region as this is not used anyway */
- if (region_id == CAM_SMMU_REGION_SHARED)
- dma_buf_unmap_attachment(attach, table, dma_dir);
- return 0;
- err_alloc:
- if (region_id == CAM_SMMU_REGION_SHARED) {
- cam_smmu_free_iova(iova,
- size,
- iommu_cb_set.cb_info[idx].handle);
- iommu_unmap(iommu_cb_set.cb_info[idx].domain,
- *paddr_ptr,
- *len_ptr);
- }
- err_unmap_sg:
- dma_buf_unmap_attachment(attach, table, dma_dir);
- err_detach:
- dma_buf_detach(buf, attach);
- err_put:
- dma_buf_put(buf);
- err_out:
- return rc;
- }
- static int cam_smmu_map_buffer_and_add_to_list(int idx, int ion_fd,
- bool dis_delayed_unmap, enum dma_data_direction dma_dir,
- dma_addr_t *paddr_ptr, size_t *len_ptr,
- enum cam_smmu_region_id region_id, bool is_internal)
- {
- int rc = -1;
- struct cam_dma_buff_info *mapping_info = NULL;
- struct dma_buf *buf = NULL;
- /* returns the dma_buf structure related to an fd */
- buf = dma_buf_get(ion_fd);
- rc = cam_smmu_map_buffer_validate(buf, idx, dma_dir, paddr_ptr, len_ptr,
- region_id, dis_delayed_unmap, &mapping_info);
- if (rc) {
- CAM_ERR(CAM_SMMU, "buffer validation failure");
- return rc;
- }
- mapping_info->ion_fd = ion_fd;
- mapping_info->i_ino = file_inode(buf->file)->i_ino;
- mapping_info->is_internal = is_internal;
- CAM_GET_TIMESTAMP(mapping_info->ts);
- /* add to the list */
- list_add(&mapping_info->list,
- &iommu_cb_set.cb_info[idx].smmu_buf_list);
- CAM_DBG(CAM_SMMU, "fd %d i_ino %lu dmabuf %pK", ion_fd, mapping_info->i_ino, buf);
- cam_smmu_update_monitor_array(&iommu_cb_set.cb_info[idx], true,
- mapping_info);
- return 0;
- }
- static int cam_smmu_map_kernel_buffer_and_add_to_list(int idx,
- struct dma_buf *buf, enum dma_data_direction dma_dir,
- dma_addr_t *paddr_ptr, size_t *len_ptr,
- enum cam_smmu_region_id region_id)
- {
- int rc = -1;
- struct cam_dma_buff_info *mapping_info = NULL;
- rc = cam_smmu_map_buffer_validate(buf, idx, dma_dir, paddr_ptr, len_ptr,
- region_id, false, &mapping_info);
- if (rc) {
- CAM_ERR(CAM_SMMU, "buffer validation failure");
- return rc;
- }
- mapping_info->ion_fd = -1;
- mapping_info->i_ino = file_inode(buf->file)->i_ino;
- CAM_GET_TIMESTAMP(mapping_info->ts);
- /* add to the list */
- list_add(&mapping_info->list,
- &iommu_cb_set.cb_info[idx].smmu_buf_kernel_list);
- CAM_DBG(CAM_SMMU, "fd %d i_ino %lu dmabuf %pK",
- mapping_info->ion_fd, mapping_info->i_ino, buf);
- cam_smmu_update_monitor_array(&iommu_cb_set.cb_info[idx], true,
- mapping_info);
- return 0;
- }
- static int cam_smmu_unmap_buf_and_remove_from_list(
- struct cam_dma_buff_info *mapping_info,
- int idx)
- {
- int rc;
- size_t size;
- struct iommu_domain *domain;
- struct timespec64 ts1, ts2;
- long microsec = 0;
- if ((!mapping_info->buf) || (!mapping_info->table) ||
- (!mapping_info->attach)) {
- CAM_ERR(CAM_SMMU,
- "Error: Invalid params dev = %pK, table = %pK",
- (void *)iommu_cb_set.cb_info[idx].dev,
- (void *)mapping_info->table);
- CAM_ERR(CAM_SMMU, "Error:dma_buf = %pK, attach = %pK",
- (void *)mapping_info->buf,
- (void *)mapping_info->attach);
- return -EINVAL;
- }
- cam_smmu_update_monitor_array(&iommu_cb_set.cb_info[idx], false,
- mapping_info);
- CAM_DBG(CAM_SMMU,
- "region_id=%d, paddr=0x%llx, len=%d, dma_map_attrs=%d",
- mapping_info->region_id, mapping_info->paddr, mapping_info->len,
- mapping_info->attach->dma_map_attrs);
- if (iommu_cb_set.map_profile_enable)
- CAM_GET_TIMESTAMP(ts1);
- if (mapping_info->region_id == CAM_SMMU_REGION_SHARED) {
- CAM_DBG(CAM_SMMU,
- "Removing SHARED buffer paddr = 0x%llx, len = %zu",
- mapping_info->paddr, mapping_info->len);
- domain = iommu_cb_set.cb_info[idx].domain;
- size = iommu_unmap(domain,
- mapping_info->paddr,
- mapping_info->len);
- if (size != mapping_info->len) {
- CAM_ERR(CAM_SMMU, "IOMMU unmap failed");
- CAM_ERR(CAM_SMMU, "Unmapped = %zu, requested = %zu",
- size,
- mapping_info->len);
- }
- rc = cam_smmu_free_iova(mapping_info->paddr,
- mapping_info->len,
- iommu_cb_set.cb_info[idx].handle);
- if (rc)
- CAM_ERR(CAM_SMMU, "IOVA free failed");
- iommu_cb_set.cb_info[idx].shared_mapping_size -=
- mapping_info->len;
- } else if (mapping_info->region_id == CAM_SMMU_REGION_IO) {
- if (mapping_info->is_internal)
- mapping_info->attach->dma_map_attrs |=
- DMA_ATTR_SKIP_CPU_SYNC;
- dma_buf_unmap_attachment(mapping_info->attach,
- mapping_info->table, mapping_info->dir);
- iommu_cb_set.cb_info[idx].io_mapping_size -= mapping_info->len;
- }
- dma_buf_detach(mapping_info->buf, mapping_info->attach);
- dma_buf_put(mapping_info->buf);
- if (iommu_cb_set.map_profile_enable) {
- CAM_GET_TIMESTAMP(ts2);
- CAM_GET_TIMESTAMP_DIFF_IN_MICRO(ts1, ts2, microsec);
- trace_cam_log_event("SMMUUnmapProfile",
- "size and time in micro", mapping_info->len, microsec);
- }
- mapping_info->buf = NULL;
- list_del_init(&mapping_info->list);
- /* free one buffer */
- kfree(mapping_info);
- return 0;
- }
- static enum cam_smmu_buf_state cam_smmu_check_fd_in_list(int idx,
- int ion_fd, struct dma_buf *dmabuf, dma_addr_t *paddr_ptr, size_t *len_ptr,
- struct timespec64 **ts_mapping)
- {
- struct cam_dma_buff_info *mapping;
- unsigned long i_ino;
- i_ino = file_inode(dmabuf->file)->i_ino;
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_list, list) {
- if ((mapping->ion_fd == ion_fd) && (mapping->i_ino == i_ino)) {
- *paddr_ptr = mapping->paddr;
- *len_ptr = mapping->len;
- *ts_mapping = &mapping->ts;
- return CAM_SMMU_BUFF_EXIST;
- }
- }
- return CAM_SMMU_BUFF_NOT_EXIST;
- }
- static enum cam_smmu_buf_state cam_smmu_user_reuse_fd_in_list(int idx,
- int ion_fd, struct dma_buf *dmabuf, dma_addr_t *paddr_ptr, size_t *len_ptr,
- struct timespec64 **ts_mapping)
- {
- struct cam_dma_buff_info *mapping;
- unsigned long i_ino;
- i_ino = file_inode(dmabuf->file)->i_ino;
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_list, list) {
- if ((mapping->ion_fd == ion_fd) && (mapping->i_ino == i_ino)) {
- *paddr_ptr = mapping->paddr;
- *len_ptr = mapping->len;
- *ts_mapping = &mapping->ts;
- mapping->ref_count++;
- return CAM_SMMU_BUFF_EXIST;
- }
- }
- return CAM_SMMU_BUFF_NOT_EXIST;
- }
- static enum cam_smmu_buf_state cam_smmu_check_dma_buf_in_list(int idx,
- struct dma_buf *buf, dma_addr_t *paddr_ptr, size_t *len_ptr)
- {
- struct cam_dma_buff_info *mapping;
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_kernel_list, list) {
- if (mapping->buf == buf) {
- *paddr_ptr = mapping->paddr;
- *len_ptr = mapping->len;
- return CAM_SMMU_BUFF_EXIST;
- }
- }
- return CAM_SMMU_BUFF_NOT_EXIST;
- }
- static enum cam_smmu_buf_state cam_smmu_check_secure_fd_in_list(int idx,
- int ion_fd, struct dma_buf *dmabuf, dma_addr_t *paddr_ptr, size_t *len_ptr)
- {
- struct cam_sec_buff_info *mapping;
- unsigned long i_ino;
- i_ino = file_inode(dmabuf->file)->i_ino;
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_list,
- list) {
- if ((mapping->ion_fd == ion_fd) && (mapping->i_ino == i_ino)) {
- *paddr_ptr = mapping->paddr;
- *len_ptr = mapping->len;
- mapping->ref_count++;
- return CAM_SMMU_BUFF_EXIST;
- }
- }
- return CAM_SMMU_BUFF_NOT_EXIST;
- }
- static enum cam_smmu_buf_state cam_smmu_validate_secure_fd_in_list(int idx,
- int ion_fd, struct dma_buf *dmabuf, dma_addr_t *paddr_ptr, size_t *len_ptr)
- {
- struct cam_sec_buff_info *mapping;
- unsigned long i_ino;
- i_ino = file_inode(dmabuf->file)->i_ino;
- list_for_each_entry(mapping,
- &iommu_cb_set.cb_info[idx].smmu_buf_list,
- list) {
- if ((mapping->ion_fd == ion_fd) && (mapping->i_ino == i_ino)) {
- *paddr_ptr = mapping->paddr;
- *len_ptr = mapping->len;
- return CAM_SMMU_BUFF_EXIST;
- }
- }
- return CAM_SMMU_BUFF_NOT_EXIST;
- }
- int cam_smmu_get_handle(char *identifier, int *handle_ptr)
- {
- int rc = 0;
- if (!identifier) {
- CAM_ERR(CAM_SMMU, "Error: iommu hardware name is NULL");
- return -EINVAL;
- }
- if (!handle_ptr) {
- CAM_ERR(CAM_SMMU, "Error: handle pointer is NULL");
- return -EINVAL;
- }
- /* create and put handle in the table */
- rc = cam_smmu_create_add_handle_in_table(identifier, handle_ptr);
- if (rc < 0)
- CAM_ERR(CAM_SMMU, "Error: %s get handle fail, rc %d",
- identifier, rc);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_get_handle);
- int cam_smmu_ops(int handle, enum cam_smmu_ops_param ops)
- {
- int ret = 0, idx;
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU, "Error: Index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -EINVAL;
- }
- switch (ops) {
- case CAM_SMMU_ATTACH: {
- ret = cam_smmu_attach(idx);
- break;
- }
- case CAM_SMMU_DETACH: {
- ret = cam_smmu_detach_device(idx);
- break;
- }
- case CAM_SMMU_VOTE:
- case CAM_SMMU_DEVOTE:
- default:
- CAM_ERR(CAM_SMMU, "Error: idx = %d, ops = %d", idx, ops);
- ret = -EINVAL;
- }
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return ret;
- }
- EXPORT_SYMBOL(cam_smmu_ops);
- static int cam_smmu_alloc_scratch_buffer_add_to_list(int idx,
- size_t virt_len,
- size_t phys_len,
- unsigned int iommu_dir,
- dma_addr_t *virt_addr)
- {
- unsigned long nents = virt_len / phys_len;
- struct cam_dma_buff_info *mapping_info = NULL;
- size_t unmapped;
- dma_addr_t iova = 0;
- struct scatterlist *sg;
- int i = 0;
- int rc;
- struct iommu_domain *domain = NULL;
- struct page *page;
- struct sg_table *table = NULL;
- CAM_DBG(CAM_SMMU, "nents = %lu, idx = %d, virt_len = %zx",
- nents, idx, virt_len);
- CAM_DBG(CAM_SMMU, "phys_len = %zx, iommu_dir = %d, virt_addr = %pK",
- phys_len, iommu_dir, virt_addr);
- /*
- * This table will go inside the 'mapping' structure
- * where it will be held until put_scratch_buffer is called
- */
- table = kzalloc(sizeof(struct sg_table), GFP_KERNEL);
- if (!table) {
- rc = -ENOMEM;
- goto err_table_alloc;
- }
- rc = sg_alloc_table(table, nents, GFP_KERNEL);
- if (rc < 0) {
- rc = -EINVAL;
- goto err_sg_alloc;
- }
- page = alloc_pages(GFP_KERNEL, get_order(phys_len));
- if (!page) {
- rc = -ENOMEM;
- goto err_page_alloc;
- }
- /* Now we create the sg list */
- for_each_sg(table->sgl, sg, table->nents, i)
- sg_set_page(sg, page, phys_len, 0);
- /* Get the domain from within our cb_set struct and map it*/
- domain = iommu_cb_set.cb_info[idx].domain;
- rc = cam_smmu_alloc_scratch_va(&iommu_cb_set.cb_info[idx].scratch_map,
- virt_len, &iova);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU,
- "Could not find valid iova for scratch buffer");
- goto err_iommu_map;
- }
- if (iommu_cb_set.force_cache_allocs)
- iommu_dir |= IOMMU_CACHE;
- if (iommu_map_sg(domain,
- iova,
- table->sgl,
- table->nents,
- iommu_dir) != virt_len) {
- CAM_ERR(CAM_SMMU, "iommu_map_sg() failed");
- goto err_iommu_map;
- }
- /* Now update our mapping information within the cb_set struct */
- mapping_info = kzalloc(sizeof(struct cam_dma_buff_info), GFP_KERNEL);
- if (!mapping_info) {
- rc = -ENOMEM;
- goto err_mapping_info;
- }
- mapping_info->ion_fd = 0xDEADBEEF;
- mapping_info->i_ino = 0;
- mapping_info->buf = NULL;
- mapping_info->attach = NULL;
- mapping_info->table = table;
- mapping_info->paddr = iova;
- mapping_info->len = virt_len;
- mapping_info->iommu_dir = iommu_dir;
- mapping_info->ref_count = 1;
- mapping_info->phys_len = phys_len;
- mapping_info->region_id = CAM_SMMU_REGION_SCRATCH;
- CAM_DBG(CAM_SMMU, "paddr = %pK, len = %zx, phys_len = %zx",
- (void *)mapping_info->paddr,
- mapping_info->len, mapping_info->phys_len);
- list_add(&mapping_info->list, &iommu_cb_set.cb_info[idx].smmu_buf_list);
- *virt_addr = (dma_addr_t)iova;
- CAM_DBG(CAM_SMMU, "mapped virtual address = %lx",
- (unsigned long)*virt_addr);
- return 0;
- err_mapping_info:
- unmapped = iommu_unmap(domain, iova, virt_len);
- if (unmapped != virt_len)
- CAM_ERR(CAM_SMMU, "Unmapped only %zx instead of %zx",
- unmapped, virt_len);
- err_iommu_map:
- __free_pages(page, get_order(phys_len));
- err_page_alloc:
- sg_free_table(table);
- err_sg_alloc:
- kfree(table);
- err_table_alloc:
- return rc;
- }
- static int cam_smmu_free_scratch_buffer_remove_from_list(
- struct cam_dma_buff_info *mapping_info,
- int idx)
- {
- int rc = 0;
- size_t unmapped;
- struct iommu_domain *domain =
- iommu_cb_set.cb_info[idx].domain;
- struct scratch_mapping *scratch_map =
- &iommu_cb_set.cb_info[idx].scratch_map;
- if (!mapping_info->table) {
- CAM_ERR(CAM_SMMU,
- "Error: Invalid params: dev = %pK, table = %pK",
- (void *)iommu_cb_set.cb_info[idx].dev,
- (void *)mapping_info->table);
- return -EINVAL;
- }
- /* Clean up the mapping_info struct from the list */
- unmapped = iommu_unmap(domain, mapping_info->paddr, mapping_info->len);
- if (unmapped != mapping_info->len)
- CAM_ERR(CAM_SMMU, "Unmapped only %zx instead of %zx",
- unmapped, mapping_info->len);
- rc = cam_smmu_free_scratch_va(scratch_map,
- mapping_info->paddr,
- mapping_info->len);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU,
- "Error: Invalid iova while freeing scratch buffer");
- rc = -EINVAL;
- }
- __free_pages(sg_page(mapping_info->table->sgl),
- get_order(mapping_info->phys_len));
- sg_free_table(mapping_info->table);
- kfree(mapping_info->table);
- list_del_init(&mapping_info->list);
- kfree(mapping_info);
- mapping_info = NULL;
- return rc;
- }
- int cam_smmu_get_scratch_iova(int handle,
- enum cam_smmu_map_dir dir,
- dma_addr_t *paddr_ptr,
- size_t virt_len,
- size_t phys_len)
- {
- int idx, rc;
- unsigned int iommu_dir;
- if (!paddr_ptr || !virt_len || !phys_len) {
- CAM_ERR(CAM_SMMU, "Error: Input pointer or lengths invalid");
- return -EINVAL;
- }
- if (virt_len < phys_len) {
- CAM_ERR(CAM_SMMU, "Error: virt_len > phys_len");
- return -EINVAL;
- }
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- iommu_dir = cam_smmu_translate_dir_to_iommu_dir(dir);
- if (iommu_dir == IOMMU_INVALID_DIR) {
- CAM_ERR(CAM_SMMU,
- "Error: translate direction failed. dir = %d", dir);
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto error;
- }
- if (!iommu_cb_set.cb_info[idx].scratch_buf_support) {
- CAM_ERR(CAM_SMMU,
- "Error: Context bank does not support scratch bufs");
- rc = -EINVAL;
- goto error;
- }
- CAM_DBG(CAM_SMMU, "smmu handle = %x, idx = %d, dir = %d",
- handle, idx, dir);
- CAM_DBG(CAM_SMMU, "virt_len = %zx, phys_len = %zx",
- phys_len, virt_len);
- if (iommu_cb_set.cb_info[idx].state != CAM_SMMU_ATTACH) {
- CAM_ERR(CAM_SMMU,
- "Err:Dev %s should call SMMU attach before map buffer",
- iommu_cb_set.cb_info[idx].name[0]);
- rc = -EINVAL;
- goto error;
- }
- if (!IS_ALIGNED(virt_len, PAGE_SIZE)) {
- CAM_ERR(CAM_SMMU,
- "Requested scratch buffer length not page aligned");
- rc = -EINVAL;
- goto error;
- }
- if (!IS_ALIGNED(virt_len, phys_len)) {
- CAM_ERR(CAM_SMMU,
- "Requested virt length not aligned with phys length");
- rc = -EINVAL;
- goto error;
- }
- rc = cam_smmu_alloc_scratch_buffer_add_to_list(idx,
- virt_len,
- phys_len,
- iommu_dir,
- paddr_ptr);
- if (rc < 0)
- CAM_ERR(CAM_SMMU, "Error: mapping or add list fail");
- error:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- int cam_smmu_put_scratch_iova(int handle,
- dma_addr_t paddr)
- {
- int idx;
- int rc = -1;
- struct cam_dma_buff_info *mapping_info;
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- /* find index in the iommu_cb_set.cb_info */
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto handle_err;
- }
- if (!iommu_cb_set.cb_info[idx].scratch_buf_support) {
- CAM_ERR(CAM_SMMU,
- "Error: Context bank does not support scratch buffers");
- rc = -EINVAL;
- goto handle_err;
- }
- /* Based on virtual address and index, we can find mapping info
- * of the scratch buffer
- */
- mapping_info = cam_smmu_find_mapping_by_virt_address(idx, paddr);
- if (!mapping_info) {
- CAM_ERR(CAM_SMMU, "Error: Invalid params");
- rc = -ENODEV;
- goto handle_err;
- }
- /* unmapping one buffer from device */
- rc = cam_smmu_free_scratch_buffer_remove_from_list(mapping_info, idx);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU, "Error: unmap or remove list fail");
- goto handle_err;
- }
- handle_err:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- static int cam_smmu_map_stage2_buffer_and_add_to_list(int idx, int ion_fd,
- enum dma_data_direction dma_dir, dma_addr_t *paddr_ptr,
- size_t *len_ptr)
- {
- int rc = 0;
- struct dma_buf *dmabuf = NULL;
- struct dma_buf_attachment *attach = NULL;
- struct sg_table *table = NULL;
- struct cam_sec_buff_info *mapping_info;
- /* clean the content from clients */
- *paddr_ptr = (dma_addr_t)NULL;
- *len_ptr = (size_t)0;
- dmabuf = dma_buf_get(ion_fd);
- if (IS_ERR_OR_NULL((void *)(dmabuf))) {
- CAM_ERR(CAM_SMMU,
- "Error: dma buf get failed, idx=%d, ion_fd=%d",
- idx, ion_fd);
- rc = PTR_ERR(dmabuf);
- goto err_out;
- }
- /*
- * ion_phys() is deprecated. call dma_buf_attach() and
- * dma_buf_map_attachment() to get the buffer's physical
- * address.
- */
- attach = dma_buf_attach(dmabuf, iommu_cb_set.cb_info[idx].dev);
- if (IS_ERR_OR_NULL(attach)) {
- CAM_ERR(CAM_SMMU,
- "Error: dma buf attach failed, idx=%d, ion_fd=%d",
- idx, ion_fd);
- rc = PTR_ERR(attach);
- goto err_put;
- }
- attach->dma_map_attrs |= DMA_ATTR_SKIP_CPU_SYNC;
- table = dma_buf_map_attachment(attach, dma_dir);
- if (IS_ERR_OR_NULL(table)) {
- CAM_ERR(CAM_SMMU, "Error: dma buf map attachment failed");
- rc = PTR_ERR(table);
- goto err_detach;
- }
- /* return addr and len to client */
- *paddr_ptr = sg_phys(table->sgl);
- *len_ptr = (size_t)sg_dma_len(table->sgl);
- /* fill up mapping_info */
- mapping_info = kzalloc(sizeof(struct cam_sec_buff_info), GFP_KERNEL);
- if (!mapping_info) {
- rc = -ENOMEM;
- goto err_unmap_sg;
- }
- mapping_info->ion_fd = ion_fd;
- mapping_info->i_ino = file_inode(dmabuf->file)->i_ino;
- mapping_info->paddr = *paddr_ptr;
- mapping_info->len = *len_ptr;
- mapping_info->dir = dma_dir;
- mapping_info->ref_count = 1;
- mapping_info->buf = dmabuf;
- mapping_info->attach = attach;
- mapping_info->table = table;
- CAM_DBG(CAM_SMMU, "idx=%d, ion_fd=%d, i_ino=%lu, dev=%pOFfp, paddr=0x%llx, len=%zu",
- idx, ion_fd, mapping_info->i_ino,
- iommu_cb_set.cb_info[idx].dev->of_node,
- *paddr_ptr, *len_ptr);
- /* add to the list */
- list_add(&mapping_info->list, &iommu_cb_set.cb_info[idx].smmu_buf_list);
- return 0;
- err_unmap_sg:
- dma_buf_unmap_attachment(attach, table, dma_dir);
- err_detach:
- dma_buf_detach(dmabuf, attach);
- err_put:
- dma_buf_put(dmabuf);
- err_out:
- return rc;
- }
- int cam_smmu_map_stage2_iova(int handle, int ion_fd, struct dma_buf *dmabuf,
- enum cam_smmu_map_dir dir, dma_addr_t *paddr_ptr, size_t *len_ptr)
- {
- int idx, rc;
- enum dma_data_direction dma_dir;
- enum cam_smmu_buf_state buf_state;
- if (!paddr_ptr || !len_ptr) {
- CAM_ERR(CAM_SMMU,
- "Error: Invalid inputs, paddr_ptr:%pK, len_ptr: %pK",
- paddr_ptr, len_ptr);
- return -EINVAL;
- }
- /* clean the content from clients */
- *paddr_ptr = (dma_addr_t)NULL;
- *len_ptr = (size_t)0;
- dma_dir = cam_smmu_translate_dir(dir);
- if (dma_dir == DMA_NONE) {
- CAM_ERR(CAM_SMMU,
- "Error: translate direction failed. dir = %d", dir);
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- if ((handle == HANDLE_INIT) ||
- (idx < 0) ||
- (idx >= iommu_cb_set.cb_num)) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- if (!iommu_cb_set.cb_info[idx].is_secure) {
- CAM_ERR(CAM_SMMU,
- "Error: can't map secure mem to non secure cb, idx=%d",
- idx);
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, idx=%d, table_hdl=%x, hdl=%x",
- idx, iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto get_addr_end;
- }
- buf_state = cam_smmu_check_secure_fd_in_list(idx, ion_fd, dmabuf, paddr_ptr,
- len_ptr);
- if (buf_state == CAM_SMMU_BUFF_EXIST) {
- CAM_DBG(CAM_SMMU,
- "fd:%d already in list idx:%d, handle=%d give same addr back",
- ion_fd, idx, handle);
- rc = 0;
- goto get_addr_end;
- }
- rc = cam_smmu_map_stage2_buffer_and_add_to_list(idx, ion_fd, dma_dir,
- paddr_ptr, len_ptr);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU,
- "Error: mapping or add list fail, idx=%d, handle=%d, fd=%d, rc=%d",
- idx, handle, ion_fd, rc);
- goto get_addr_end;
- }
- get_addr_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_map_stage2_iova);
- static int cam_smmu_secure_unmap_buf_and_remove_from_list(
- struct cam_sec_buff_info *mapping_info,
- int idx)
- {
- if ((!mapping_info->buf) || (!mapping_info->table) ||
- (!mapping_info->attach)) {
- CAM_ERR(CAM_SMMU, "Error: Invalid params dev = %pK, table = %pK",
- (void *)iommu_cb_set.cb_info[idx].dev,
- (void *)mapping_info->table);
- CAM_ERR(CAM_SMMU, "Error:dma_buf = %pK, attach = %pK\n",
- (void *)mapping_info->buf,
- (void *)mapping_info->attach);
- return -EINVAL;
- }
- /* skip cache operations */
- mapping_info->attach->dma_map_attrs |= DMA_ATTR_SKIP_CPU_SYNC;
- /* iommu buffer clean up */
- dma_buf_unmap_attachment(mapping_info->attach,
- mapping_info->table, mapping_info->dir);
- dma_buf_detach(mapping_info->buf, mapping_info->attach);
- dma_buf_put(mapping_info->buf);
- mapping_info->buf = NULL;
- list_del_init(&mapping_info->list);
- CAM_DBG(CAM_SMMU, "unmap fd: %d, i_ino : %lu, idx : %d",
- mapping_info->ion_fd, mapping_info->i_ino, idx);
- /* free one buffer */
- kfree(mapping_info);
- return 0;
- }
- int cam_smmu_unmap_stage2_iova(int handle, int ion_fd, struct dma_buf *dma_buf)
- {
- int idx, rc;
- struct cam_sec_buff_info *mapping_info;
- /* find index in the iommu_cb_set.cb_info */
- idx = GET_SMMU_TABLE_IDX(handle);
- if ((handle == HANDLE_INIT) ||
- (idx < 0) ||
- (idx >= iommu_cb_set.cb_num)) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- if (!iommu_cb_set.cb_info[idx].is_secure) {
- CAM_ERR(CAM_SMMU,
- "Error: can't unmap secure mem from non secure cb");
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto put_addr_end;
- }
- /* based on ion fd and index, we can find mapping info of buffer */
- mapping_info = cam_smmu_find_mapping_by_sec_buf_idx(idx, ion_fd, dma_buf);
- if (!mapping_info) {
- CAM_ERR(CAM_SMMU,
- "Error: Invalid params! idx = %d, fd = %d",
- idx, ion_fd);
- rc = -EINVAL;
- goto put_addr_end;
- }
- mapping_info->ref_count--;
- if (mapping_info->ref_count > 0) {
- CAM_DBG(CAM_SMMU,
- "idx: %d fd = %d ref_count: %d",
- idx, ion_fd, mapping_info->ref_count);
- rc = 0;
- goto put_addr_end;
- }
- mapping_info->ref_count = 0;
- /* unmapping one buffer from device */
- rc = cam_smmu_secure_unmap_buf_and_remove_from_list(mapping_info, idx);
- if (rc) {
- CAM_ERR(CAM_SMMU, "Error: unmap or remove list fail");
- goto put_addr_end;
- }
- put_addr_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_unmap_stage2_iova);
- static int cam_smmu_map_iova_validate_params(int handle,
- enum cam_smmu_map_dir dir,
- dma_addr_t *paddr_ptr, size_t *len_ptr,
- enum cam_smmu_region_id region_id)
- {
- int idx, rc = 0;
- enum dma_data_direction dma_dir;
- if (!paddr_ptr || !len_ptr) {
- CAM_ERR(CAM_SMMU, "Input pointers are invalid");
- return -EINVAL;
- }
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Invalid handle");
- return -EINVAL;
- }
- /* clean the content from clients */
- *paddr_ptr = (dma_addr_t)NULL;
- if (region_id != CAM_SMMU_REGION_SHARED)
- *len_ptr = (size_t)0;
- dma_dir = cam_smmu_translate_dir(dir);
- if (dma_dir == DMA_NONE) {
- CAM_ERR(CAM_SMMU, "translate direction failed. dir = %d", dir);
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU, "handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- return rc;
- }
- bool cam_smmu_supports_shared_region(int handle)
- {
- int idx = GET_SMMU_TABLE_IDX(handle);
- bool is_shared;
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- is_shared = (iommu_cb_set.cb_info[idx].shared_support) ? true : false;
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return is_shared;
- }
- int cam_smmu_map_user_iova(int handle, int ion_fd, struct dma_buf *dmabuf,
- bool dis_delayed_unmap, enum cam_smmu_map_dir dir, dma_addr_t *paddr_ptr,
- size_t *len_ptr, enum cam_smmu_region_id region_id,
- bool is_internal)
- {
- int idx, rc = 0;
- struct timespec64 *ts = NULL;
- enum cam_smmu_buf_state buf_state;
- enum dma_data_direction dma_dir;
- rc = cam_smmu_map_iova_validate_params(handle, dir, paddr_ptr,
- len_ptr, region_id);
- if (rc) {
- CAM_ERR(CAM_SMMU, "initial checks failed, unable to proceed");
- return rc;
- }
- dma_dir = (enum dma_data_direction)dir;
- idx = GET_SMMU_TABLE_IDX(handle);
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].is_secure) {
- CAM_ERR(CAM_SMMU,
- "Error: can't map non-secure mem to secure cb idx=%d",
- idx);
- rc = -EINVAL;
- goto get_addr_end;
- }
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "hdl is not valid, idx=%d, table_hdl = %x, hdl = %x",
- idx, iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto get_addr_end;
- }
- if (iommu_cb_set.cb_info[idx].state != CAM_SMMU_ATTACH) {
- CAM_ERR(CAM_SMMU,
- "Err:Dev %s should call SMMU attach before map buffer",
- iommu_cb_set.cb_info[idx].name[0]);
- rc = -EINVAL;
- goto get_addr_end;
- }
- buf_state = cam_smmu_user_reuse_fd_in_list(idx, ion_fd, dmabuf, paddr_ptr,
- len_ptr, &ts);
- if (buf_state == CAM_SMMU_BUFF_EXIST) {
- uint64_t ms = 0, hrs = 0, min = 0, sec = 0;
- if (ts)
- CAM_CONVERT_TIMESTAMP_FORMAT((*ts), hrs, min, sec, ms);
- CAM_ERR(CAM_SMMU,
- "fd=%d already in list [%llu:%llu:%lu:%llu] cb=%s idx=%d handle=%d len=%llu,give same addr back",
- ion_fd, hrs, min, sec, ms,
- iommu_cb_set.cb_info[idx].name[0],
- idx, handle, *len_ptr);
- rc = 0;
- goto get_addr_end;
- }
- rc = cam_smmu_map_buffer_and_add_to_list(idx, ion_fd,
- dis_delayed_unmap, dma_dir, paddr_ptr, len_ptr,
- region_id, is_internal);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU,
- "mapping or add list fail cb:%s idx=%d, fd=%d, region=%d, rc=%d",
- iommu_cb_set.cb_info[idx].name[0], idx,
- ion_fd, region_id, rc);
- cam_smmu_dump_cb_info(idx);
- }
- get_addr_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_map_user_iova);
- int cam_smmu_map_kernel_iova(int handle, struct dma_buf *buf,
- enum cam_smmu_map_dir dir, dma_addr_t *paddr_ptr,
- size_t *len_ptr, enum cam_smmu_region_id region_id)
- {
- int idx, rc = 0;
- enum cam_smmu_buf_state buf_state;
- enum dma_data_direction dma_dir;
- rc = cam_smmu_map_iova_validate_params(handle, dir, paddr_ptr,
- len_ptr, region_id);
- if (rc) {
- CAM_ERR(CAM_SMMU, "initial checks failed, unable to proceed");
- return rc;
- }
- dma_dir = cam_smmu_translate_dir(dir);
- idx = GET_SMMU_TABLE_IDX(handle);
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].is_secure) {
- CAM_ERR(CAM_SMMU,
- "Error: can't map non-secure mem to secure cb");
- rc = -EINVAL;
- goto get_addr_end;
- }
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU, "hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto get_addr_end;
- }
- if (iommu_cb_set.cb_info[idx].state != CAM_SMMU_ATTACH) {
- CAM_ERR(CAM_SMMU,
- "Err:Dev %s should call SMMU attach before map buffer",
- iommu_cb_set.cb_info[idx].name[0]);
- rc = -EINVAL;
- goto get_addr_end;
- }
- buf_state = cam_smmu_check_dma_buf_in_list(idx, buf,
- paddr_ptr, len_ptr);
- if (buf_state == CAM_SMMU_BUFF_EXIST) {
- CAM_ERR(CAM_SMMU,
- "dma_buf :%pK already in the list", buf);
- rc = -EALREADY;
- goto get_addr_end;
- }
- rc = cam_smmu_map_kernel_buffer_and_add_to_list(idx, buf, dma_dir,
- paddr_ptr, len_ptr, region_id);
- if (rc < 0)
- CAM_ERR(CAM_SMMU, "mapping or add list fail");
- get_addr_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_map_kernel_iova);
- int cam_smmu_get_iova(int handle, int ion_fd, struct dma_buf *dma_buf,
- dma_addr_t *paddr_ptr, size_t *len_ptr)
- {
- int idx, rc = 0;
- struct timespec64 *ts = NULL;
- enum cam_smmu_buf_state buf_state;
- if (!paddr_ptr || !len_ptr) {
- CAM_ERR(CAM_SMMU, "Error: Input pointers are invalid");
- return -EINVAL;
- }
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- /* clean the content from clients */
- *paddr_ptr = (dma_addr_t)NULL;
- *len_ptr = (size_t)0;
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- if (iommu_cb_set.cb_info[idx].is_secure) {
- CAM_ERR(CAM_SMMU,
- "Error: can't get non-secure mem from secure cb");
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto get_addr_end;
- }
- buf_state = cam_smmu_check_fd_in_list(idx, ion_fd, dma_buf, paddr_ptr,
- len_ptr, &ts);
- if (buf_state == CAM_SMMU_BUFF_NOT_EXIST) {
- CAM_ERR(CAM_SMMU, "ion_fd:%d not in the mapped list", ion_fd);
- rc = -EINVAL;
- cam_smmu_dump_cb_info(idx);
- goto get_addr_end;
- }
- get_addr_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_get_iova);
- int cam_smmu_get_stage2_iova(int handle, int ion_fd, struct dma_buf *dma_buf,
- dma_addr_t *paddr_ptr, size_t *len_ptr)
- {
- int idx, rc = 0;
- enum cam_smmu_buf_state buf_state;
- if (!paddr_ptr || !len_ptr) {
- CAM_ERR(CAM_SMMU, "Error: Input pointers are invalid");
- return -EINVAL;
- }
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- /* clean the content from clients */
- *paddr_ptr = (dma_addr_t)NULL;
- *len_ptr = (size_t)0;
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- if (!iommu_cb_set.cb_info[idx].is_secure) {
- CAM_ERR(CAM_SMMU,
- "Error: can't get secure mem from non secure cb");
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto get_addr_end;
- }
- buf_state = cam_smmu_validate_secure_fd_in_list(idx, ion_fd, dma_buf, paddr_ptr, len_ptr);
- if (buf_state == CAM_SMMU_BUFF_NOT_EXIST) {
- CAM_ERR(CAM_SMMU, "ion_fd:%d not in the mapped list", ion_fd);
- rc = -EINVAL;
- goto get_addr_end;
- }
- get_addr_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_get_stage2_iova);
- static int cam_smmu_unmap_validate_params(int handle)
- {
- int idx;
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- /* find index in the iommu_cb_set.cb_info */
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- return 0;
- }
- int cam_smmu_unmap_user_iova(int handle,
- int ion_fd, struct dma_buf *dma_buf, enum cam_smmu_region_id region_id)
- {
- int idx, rc;
- struct cam_dma_buff_info *mapping_info;
- rc = cam_smmu_unmap_validate_params(handle);
- if (rc) {
- CAM_ERR(CAM_SMMU, "unmap util validation failure");
- return rc;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].is_secure) {
- CAM_ERR(CAM_SMMU,
- "Error: can't unmap non-secure mem from secure cb");
- rc = -EINVAL;
- goto unmap_end;
- }
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto unmap_end;
- }
- /* Based on ion_fd & index, we can find mapping info of buffer */
- mapping_info = cam_smmu_find_mapping_by_ion_index(idx, ion_fd, dma_buf);
- if (!mapping_info) {
- CAM_ERR(CAM_SMMU,
- "Error: Invalid params idx = %d, fd = %d",
- idx, ion_fd);
- rc = -EINVAL;
- goto unmap_end;
- }
- mapping_info->ref_count--;
- if (mapping_info->ref_count > 0) {
- CAM_DBG(CAM_SMMU,
- "idx: %d fd = %d ref_count: %d",
- idx, ion_fd, mapping_info->ref_count);
- rc = 0;
- goto unmap_end;
- }
- mapping_info->ref_count = 0;
- /* Unmapping one buffer from device */
- CAM_DBG(CAM_SMMU, "SMMU: removing buffer idx = %d", idx);
- rc = cam_smmu_unmap_buf_and_remove_from_list(mapping_info, idx);
- if (rc < 0)
- CAM_ERR(CAM_SMMU, "Error: unmap or remove list fail");
- unmap_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_unmap_user_iova);
- int cam_smmu_unmap_kernel_iova(int handle,
- struct dma_buf *buf, enum cam_smmu_region_id region_id)
- {
- int idx, rc;
- struct cam_dma_buff_info *mapping_info;
- rc = cam_smmu_unmap_validate_params(handle);
- if (rc) {
- CAM_ERR(CAM_SMMU, "unmap util validation failure");
- return rc;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].is_secure) {
- CAM_ERR(CAM_SMMU,
- "Error: can't unmap non-secure mem from secure cb");
- rc = -EINVAL;
- goto unmap_end;
- }
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto unmap_end;
- }
- /* Based on dma_buf & index, we can find mapping info of buffer */
- mapping_info = cam_smmu_find_mapping_by_dma_buf(idx, buf);
- if (!mapping_info) {
- CAM_ERR(CAM_SMMU,
- "Error: Invalid params idx = %d, dma_buf = %pK",
- idx, buf);
- rc = -EINVAL;
- goto unmap_end;
- }
- /* Unmapping one buffer from device */
- CAM_DBG(CAM_SMMU, "SMMU: removing buffer idx = %d", idx);
- rc = cam_smmu_unmap_buf_and_remove_from_list(mapping_info, idx);
- if (rc < 0)
- CAM_ERR(CAM_SMMU, "Error: unmap or remove list fail");
- unmap_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_unmap_kernel_iova);
- int cam_smmu_put_iova(int handle, int ion_fd, struct dma_buf *dma_buf)
- {
- int idx;
- int rc = 0;
- struct cam_dma_buff_info *mapping_info;
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- /* find index in the iommu_cb_set.cb_info */
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- rc = -EINVAL;
- goto put_addr_end;
- }
- /* based on ion fd and index, we can find mapping info of buffer */
- mapping_info = cam_smmu_find_mapping_by_ion_index(idx, ion_fd, dma_buf);
- if (!mapping_info) {
- CAM_ERR(CAM_SMMU, "Error: Invalid params idx = %d, fd = %d",
- idx, ion_fd);
- rc = -EINVAL;
- goto put_addr_end;
- }
- put_addr_end:
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return rc;
- }
- EXPORT_SYMBOL(cam_smmu_put_iova);
- int cam_smmu_destroy_handle(int handle)
- {
- int idx;
- if (handle == HANDLE_INIT) {
- CAM_ERR(CAM_SMMU, "Error: Invalid handle");
- return -EINVAL;
- }
- idx = GET_SMMU_TABLE_IDX(handle);
- if (idx < 0 || idx >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU,
- "Error: handle or index invalid. idx = %d hdl = %x",
- idx, handle);
- return -EINVAL;
- }
- mutex_lock(&iommu_cb_set.cb_info[idx].lock);
- if (iommu_cb_set.cb_info[idx].handle != handle) {
- CAM_ERR(CAM_SMMU,
- "Error: hdl is not valid, table_hdl = %x, hdl = %x",
- iommu_cb_set.cb_info[idx].handle, handle);
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -EINVAL;
- }
- if (!list_empty_careful(&iommu_cb_set.cb_info[idx].smmu_buf_list)) {
- CAM_ERR(CAM_SMMU, "UMD %s buffer list is not clean",
- iommu_cb_set.cb_info[idx].name[0]);
- cam_smmu_print_user_list(idx);
- cam_smmu_clean_user_buffer_list(idx);
- }
- if (!list_empty_careful(
- &iommu_cb_set.cb_info[idx].smmu_buf_kernel_list)) {
- CAM_ERR(CAM_SMMU, "KMD %s buffer list is not clean",
- iommu_cb_set.cb_info[idx].name[0]);
- cam_smmu_print_kernel_list(idx);
- cam_smmu_clean_kernel_buffer_list(idx);
- }
- if (iommu_cb_set.cb_info[idx].is_secure) {
- if (iommu_cb_set.cb_info[idx].secure_count == 0) {
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return -EPERM;
- }
- iommu_cb_set.cb_info[idx].secure_count--;
- if (iommu_cb_set.cb_info[idx].secure_count == 0) {
- iommu_cb_set.cb_info[idx].cb_count = 0;
- iommu_cb_set.cb_info[idx].handle = HANDLE_INIT;
- }
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return 0;
- }
- if (iommu_cb_set.cb_info[idx].is_mul_client &&
- iommu_cb_set.cb_info[idx].device_count) {
- iommu_cb_set.cb_info[idx].device_count--;
- if (!iommu_cb_set.cb_info[idx].device_count) {
- iommu_cb_set.cb_info[idx].cb_count = 0;
- iommu_cb_set.cb_info[idx].handle = HANDLE_INIT;
- }
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return 0;
- }
- iommu_cb_set.cb_info[idx].device_count = 0;
- iommu_cb_set.cb_info[idx].cb_count = 0;
- iommu_cb_set.cb_info[idx].handle = HANDLE_INIT;
- mutex_unlock(&iommu_cb_set.cb_info[idx].lock);
- return 0;
- }
- EXPORT_SYMBOL(cam_smmu_destroy_handle);
- static void cam_smmu_deinit_cb(struct cam_context_bank_info *cb)
- {
- if (cb->io_support && cb->domain)
- cb->domain = NULL;
- if (cb->shared_support) {
- gen_pool_destroy(cb->shared_mem_pool);
- cb->shared_mem_pool = NULL;
- }
- if (cb->scratch_buf_support) {
- kfree(cb->scratch_map.bitmap);
- cb->scratch_map.bitmap = NULL;
- }
- }
- static void cam_smmu_release_cb(struct platform_device *pdev)
- {
- int i = 0;
- for (i = 0; i < iommu_cb_set.cb_num; i++)
- cam_smmu_deinit_cb(&iommu_cb_set.cb_info[i]);
- devm_kfree(&pdev->dev, iommu_cb_set.cb_info);
- iommu_cb_set.cb_num = 0;
- }
- static int cam_smmu_setup_cb(struct cam_context_bank_info *cb,
- struct device *dev)
- {
- int rc = 0;
- if (!cb || !dev) {
- CAM_ERR(CAM_SMMU, "Error: invalid input params");
- return -EINVAL;
- }
- cb->dev = dev;
- cb->is_fw_allocated = false;
- cb->is_secheap_allocated = false;
- cb->is_fwuncached_buf_allocated = false;
- atomic64_set(&cb->monitor_head, -1);
- /* Create a pool with 64K granularity for supporting shared memory */
- if (cb->shared_support) {
- cb->shared_mem_pool = gen_pool_create(
- SHARED_MEM_POOL_GRANULARITY, -1);
- if (!cb->shared_mem_pool)
- return -ENOMEM;
- rc = gen_pool_add(cb->shared_mem_pool,
- cb->shared_info.iova_start,
- cb->shared_info.iova_len,
- -1);
- CAM_DBG(CAM_SMMU, "Shared mem start->%lX",
- (unsigned long)cb->shared_info.iova_start);
- CAM_DBG(CAM_SMMU, "Shared mem len->%zu",
- cb->shared_info.iova_len);
- if (rc) {
- CAM_ERR(CAM_SMMU, "Genpool chunk creation failed");
- gen_pool_destroy(cb->shared_mem_pool);
- cb->shared_mem_pool = NULL;
- return rc;
- }
- }
- if (cb->scratch_buf_support) {
- rc = cam_smmu_init_scratch_map(&cb->scratch_map,
- cb->scratch_info.iova_start,
- cb->scratch_info.iova_len,
- 0);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU,
- "Error: failed to create scratch map");
- rc = -ENODEV;
- goto end;
- }
- }
- /* create a virtual mapping */
- if (cb->io_support) {
- cb->domain = iommu_get_domain_for_dev(dev);
- if (IS_ERR_OR_NULL(cb->domain)) {
- CAM_ERR(CAM_SMMU, "Error: create domain Failed");
- rc = -ENODEV;
- goto end;
- }
- /* Enable custom iommu features, if applicable */
- cam_smmu_util_iommu_custom(dev, cb->discard_iova_start,
- cb->discard_iova_len);
- cb->state = CAM_SMMU_ATTACH;
- } else {
- CAM_ERR(CAM_SMMU, "Context bank does not have IO region");
- rc = -ENODEV;
- goto end;
- }
- return rc;
- end:
- if (cb->shared_support) {
- gen_pool_destroy(cb->shared_mem_pool);
- cb->shared_mem_pool = NULL;
- }
- if (cb->scratch_buf_support) {
- kfree(cb->scratch_map.bitmap);
- cb->scratch_map.bitmap = NULL;
- }
- return rc;
- }
- static int cam_alloc_smmu_context_banks(struct device *dev)
- {
- struct device_node *domains_child_node = NULL;
- if (!dev) {
- CAM_ERR(CAM_SMMU, "Error: Invalid device");
- return -ENODEV;
- }
- iommu_cb_set.cb_num = 0;
- /* traverse thru all the child nodes and increment the cb count */
- for_each_available_child_of_node(dev->of_node, domains_child_node) {
- if (of_device_is_compatible(domains_child_node,
- "qcom,msm-cam-smmu-cb"))
- iommu_cb_set.cb_num++;
- if (of_device_is_compatible(domains_child_node,
- "qcom,qsmmu-cam-cb"))
- iommu_cb_set.cb_num++;
- }
- if (iommu_cb_set.cb_num == 0) {
- CAM_ERR(CAM_SMMU, "Error: no context banks present");
- return -ENOENT;
- }
- /* allocate memory for the context banks */
- iommu_cb_set.cb_info = devm_kzalloc(dev,
- iommu_cb_set.cb_num * sizeof(struct cam_context_bank_info),
- GFP_KERNEL);
- if (!iommu_cb_set.cb_info) {
- CAM_ERR(CAM_SMMU, "Error: cannot allocate context banks");
- return -ENOMEM;
- }
- cam_smmu_reset_iommu_table(CAM_SMMU_TABLE_INIT);
- iommu_cb_set.cb_init_count = 0;
- CAM_DBG(CAM_SMMU, "no of context banks :%d", iommu_cb_set.cb_num);
- return 0;
- }
- static int cam_smmu_get_discard_memory_regions(struct device_node *of_node,
- dma_addr_t *discard_iova_start, size_t *discard_iova_len)
- {
- uint32_t discard_iova[2] = { 0 };
- int num_values = 0;
- int rc = 0;
- if (!discard_iova_start || !discard_iova_len)
- return -EINVAL;
- *discard_iova_start = 0;
- *discard_iova_len = 0;
- num_values = of_property_count_u32_elems(of_node,
- "iova-region-discard");
- if (num_values <= 0) {
- CAM_DBG(CAM_UTIL, "No discard region specified");
- return 0;
- } else if (num_values != 2) {
- CAM_ERR(CAM_UTIL, "Invalid discard region specified %d",
- num_values);
- return -EINVAL;
- }
- rc = of_property_read_u32_array(of_node,
- "iova-region-discard",
- discard_iova, num_values);
- if (rc) {
- CAM_ERR(CAM_UTIL, "Can not read discard region %d", num_values);
- return rc;
- } else if (!discard_iova[0] || !discard_iova[1]) {
- CAM_ERR(CAM_UTIL,
- "Incorrect Discard region specified [0x%x 0x%x]",
- discard_iova[0], discard_iova[1]);
- return -EINVAL;
- }
- CAM_DBG(CAM_UTIL, "Discard region [0x%x 0x%x]",
- discard_iova[0], discard_iova[0] + discard_iova[1]);
- *discard_iova_start = discard_iova[0];
- *discard_iova_len = discard_iova[1];
- return 0;
- }
- static int cam_smmu_get_memory_regions_info(struct device_node *of_node,
- struct cam_context_bank_info *cb)
- {
- int rc = 0;
- struct device_node *mem_map_node = NULL;
- struct device_node *child_node = NULL;
- dma_addr_t region_start = 0;
- size_t region_len = 0;
- uint32_t region_id;
- uint32_t qdss_region_phy_addr;
- const char *region_name;
- int num_regions = 0;
- if (!of_node || !cb) {
- CAM_ERR(CAM_SMMU, "Invalid argument(s)");
- return -EINVAL;
- }
- mem_map_node = of_get_child_by_name(of_node, "iova-mem-map");
- cb->is_secure = of_property_read_bool(of_node, "qcom,secure-cb");
- /*
- * We always expect a memory map node, except when it is a secure
- * context bank.
- */
- if (!mem_map_node) {
- if (cb->is_secure)
- return 0;
- CAM_ERR(CAM_SMMU, "iova-mem-map not present");
- return -EINVAL;
- }
- for_each_available_child_of_node(mem_map_node, child_node) {
- qdss_region_phy_addr = 0;
- num_regions++;
- rc = of_property_read_string(child_node,
- "iova-region-name", ®ion_name);
- if (rc < 0) {
- of_node_put(mem_map_node);
- CAM_ERR(CAM_SMMU, "IOVA region not found");
- return -EINVAL;
- }
- if (iommu_cb_set.is_expanded_memory) {
- rc = of_property_read_u64(child_node, "iova-region-start", ®ion_start);
- if (rc < 0) {
- of_node_put(mem_map_node);
- CAM_ERR(CAM_SMMU, "Failed to read iova-region-start");
- return -EINVAL;
- }
- rc = of_property_read_u64(child_node, "iova-region-len",
- (uint64_t *)®ion_len);
- if (rc < 0) {
- of_node_put(mem_map_node);
- CAM_ERR(CAM_SMMU, "Failed to read iova-region-len");
- return -EINVAL;
- }
- } else {
- rc = of_property_read_u32(child_node, "iova-region-start",
- (uint32_t *)®ion_start);
- if (rc < 0) {
- of_node_put(mem_map_node);
- CAM_ERR(CAM_SMMU, "Failed to read iova-region-start");
- return -EINVAL;
- }
- rc = of_property_read_u32(child_node, "iova-region-len",
- (uint32_t *)®ion_len);
- if (rc < 0) {
- of_node_put(mem_map_node);
- CAM_ERR(CAM_SMMU, "Failed to read iova-region-len");
- return -EINVAL;
- }
- }
- rc = of_property_read_u32(child_node, "iova-region-id", ®ion_id);
- if (rc < 0) {
- of_node_put(mem_map_node);
- CAM_ERR(CAM_SMMU, "Failed to read iova-region-id");
- return -EINVAL;
- }
- if (strcmp(region_name, qdss_region_name) == 0) {
- rc = of_property_read_u32(child_node,
- "qdss-phy-addr", &qdss_region_phy_addr);
- if (rc < 0) {
- of_node_put(mem_map_node);
- CAM_ERR(CAM_SMMU,
- "Failed to read qdss phy addr");
- return -EINVAL;
- }
- }
- switch (region_id) {
- case CAM_SMMU_REGION_FIRMWARE:
- cb->firmware_support = 1;
- cb->firmware_info.iova_start = region_start;
- cb->firmware_info.iova_len = region_len;
- break;
- case CAM_SMMU_REGION_SHARED:
- cb->shared_support = 1;
- cb->shared_info.iova_start = region_start;
- cb->shared_info.iova_len = region_len;
- break;
- case CAM_SMMU_REGION_SCRATCH:
- cb->scratch_buf_support = 1;
- cb->scratch_info.iova_start = region_start;
- cb->scratch_info.iova_len = region_len;
- break;
- case CAM_SMMU_REGION_IO:
- cb->io_support = 1;
- cb->io_info.iova_start = region_start;
- cb->io_info.iova_len = region_len;
- rc = cam_smmu_get_discard_memory_regions(child_node,
- &cb->io_info.discard_iova_start,
- &cb->io_info.discard_iova_len);
- if (rc) {
- CAM_ERR(CAM_SMMU,
- "Invalid Discard region specified in IO region, rc=%d",
- rc);
- of_node_put(mem_map_node);
- return -EINVAL;
- }
- break;
- case CAM_SMMU_REGION_SECHEAP:
- cb->secheap_support = 1;
- cb->secheap_info.iova_start = region_start;
- cb->secheap_info.iova_len = region_len;
- break;
- case CAM_SMMU_REGION_FWUNCACHED:
- cb->fwuncached_region_support = 1;
- cb->fwuncached_region.iova_start = region_start;
- cb->fwuncached_region.iova_len = region_len;
- break;
- case CAM_SMMU_REGION_QDSS:
- cb->qdss_support = 1;
- cb->qdss_info.iova_start = region_start;
- cb->qdss_info.iova_len = region_len;
- cb->qdss_phy_addr = qdss_region_phy_addr;
- break;
- default:
- CAM_ERR(CAM_SMMU,
- "Incorrect region id present in DT file: %d",
- region_id);
- }
- CAM_DBG(CAM_SMMU, "Found label -> %s", cb->name[0]);
- CAM_DBG(CAM_SMMU, "Found region -> %s", region_name);
- CAM_DBG(CAM_SMMU, "region_start -> %X", region_start);
- CAM_DBG(CAM_SMMU, "region_len -> %X", region_len);
- CAM_DBG(CAM_SMMU, "region_id -> %X", region_id);
- }
- if (cb->io_support) {
- rc = cam_smmu_get_discard_memory_regions(of_node,
- &cb->discard_iova_start,
- &cb->discard_iova_len);
- if (rc) {
- CAM_ERR(CAM_SMMU,
- "Invalid Discard region specified in CB, rc=%d",
- rc);
- of_node_put(mem_map_node);
- return -EINVAL;
- }
- /* Make sure Discard region is properly specified */
- if ((cb->discard_iova_start !=
- cb->io_info.discard_iova_start) ||
- (cb->discard_iova_len !=
- cb->io_info.discard_iova_len)) {
- CAM_ERR(CAM_SMMU,
- "Mismatch Discard region specified, [0x%x 0x%x] [0x%x 0x%x]",
- cb->discard_iova_start,
- cb->discard_iova_len,
- cb->io_info.discard_iova_start,
- cb->io_info.discard_iova_len);
- of_node_put(mem_map_node);
- return -EINVAL;
- } else if (cb->discard_iova_start && cb->discard_iova_len) {
- if ((cb->discard_iova_start <=
- cb->io_info.iova_start) ||
- (cb->discard_iova_start >=
- cb->io_info.iova_start + cb->io_info.iova_len) ||
- (cb->discard_iova_start + cb->discard_iova_len >=
- cb->io_info.iova_start + cb->io_info.iova_len)) {
- CAM_ERR(CAM_SMMU,
- "[%s] : Incorrect Discard region specified [0x%x 0x%x] in [0x%x 0x%x]",
- cb->name[0],
- cb->discard_iova_start,
- cb->discard_iova_start + cb->discard_iova_len,
- cb->io_info.iova_start,
- cb->io_info.iova_start + cb->io_info.iova_len);
- of_node_put(mem_map_node);
- return -EINVAL;
- }
- CAM_INFO(CAM_SMMU,
- "[%s] : Discard region specified [0x%x 0x%x] in [0x%x 0x%x]",
- cb->name[0],
- cb->discard_iova_start,
- cb->discard_iova_start + cb->discard_iova_len,
- cb->io_info.iova_start,
- cb->io_info.iova_start + cb->io_info.iova_len);
- }
- }
- of_node_put(mem_map_node);
- if (!num_regions) {
- CAM_ERR(CAM_SMMU,
- "No memory regions found, at least one needed");
- rc = -ENODEV;
- }
- return rc;
- }
- static int cam_populate_smmu_context_banks(struct device *dev,
- enum cam_iommu_type type)
- {
- int rc = 0;
- struct cam_context_bank_info *cb;
- struct device *ctx = NULL;
- int i = 0;
- bool dma_coherent, dma_coherent_hint;
- if (!dev) {
- CAM_ERR(CAM_SMMU, "Error: Invalid device");
- return -ENODEV;
- }
- /* check the bounds */
- if (iommu_cb_set.cb_init_count >= iommu_cb_set.cb_num) {
- CAM_ERR(CAM_SMMU, "Error: populate more than allocated cb");
- rc = -EBADHANDLE;
- goto cb_init_fail;
- }
- /* read the context bank from cb set */
- cb = &iommu_cb_set.cb_info[iommu_cb_set.cb_init_count];
- cb->is_mul_client =
- of_property_read_bool(dev->of_node, "multiple-client-devices");
- cb->num_shared_hdl = of_property_count_strings(dev->of_node,
- "cam-smmu-label");
- if (cb->num_shared_hdl >
- CAM_SMMU_SHARED_HDL_MAX) {
- CAM_ERR(CAM_CDM, "Invalid count of client names count=%d",
- cb->num_shared_hdl);
- rc = -EINVAL;
- return rc;
- }
- /* set the name of the context bank */
- for (i = 0; i < cb->num_shared_hdl; i++)
- rc = of_property_read_string_index(dev->of_node,
- "cam-smmu-label", i, &cb->name[i]);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU,
- "Error: failed to read label from sub device");
- goto cb_init_fail;
- }
- rc = cam_smmu_get_memory_regions_info(dev->of_node,
- cb);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU, "Error: Getting region info");
- return rc;
- }
- if (cb->is_secure) {
- /* increment count to next bank */
- cb->dev = dev;
- iommu_cb_set.cb_init_count++;
- return 0;
- }
- /* set up the iommu mapping for the context bank */
- if (type == CAM_QSMMU) {
- CAM_ERR(CAM_SMMU, "Error: QSMMU ctx not supported for : %s",
- cb->name[0]);
- return -ENODEV;
- }
- ctx = dev;
- CAM_DBG(CAM_SMMU, "getting Arm SMMU ctx : %s", cb->name[0]);
- cb->coherency_mode = CAM_SMMU_NO_COHERENCY;
- dma_coherent = of_property_read_bool(dev->of_node, "dma-coherent");
- dma_coherent_hint = of_property_read_bool(dev->of_node,
- "dma-coherent-hint-cached");
- if (dma_coherent && dma_coherent_hint) {
- CAM_ERR(CAM_SMMU,
- "[%s] : Cannot enable both dma-coherent and dma-coherent-hint-cached",
- cb->name[0]);
- return -EBADR;
- }
- if (dma_coherent)
- cb->coherency_mode = CAM_SMMU_DMA_COHERENT;
- else if (dma_coherent_hint)
- cb->coherency_mode = CAM_SMMU_DMA_COHERENT_HINT_CACHED;
- CAM_DBG(CAM_SMMU, "[%s] : io cohereny mode %d", cb->name[0],
- cb->coherency_mode);
- rc = cam_smmu_setup_cb(cb, ctx);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU, "Error: failed to setup cb : %s",
- cb->name[0]);
- goto cb_init_fail;
- }
- if (cb->io_support && cb->domain)
- iommu_set_fault_handler(cb->domain,
- cam_smmu_iommu_fault_handler,
- (void *)cb->name[0]);
- if (!dev->dma_parms)
- dev->dma_parms = devm_kzalloc(dev,
- sizeof(*dev->dma_parms), GFP_KERNEL);
- if (!dev->dma_parms) {
- CAM_WARN(CAM_SMMU,
- "Failed to allocate dma_params");
- dev->dma_parms = NULL;
- goto end;
- }
- dma_set_max_seg_size(dev, DMA_BIT_MASK(32));
- dma_set_seg_boundary(dev, (unsigned long)DMA_BIT_MASK(64));
- end:
- /* increment count to next bank */
- iommu_cb_set.cb_init_count++;
- CAM_DBG(CAM_SMMU, "X: cb init count :%d", iommu_cb_set.cb_init_count);
- cb_init_fail:
- return rc;
- }
- static void cam_smmu_mini_dump_entries(
- struct cam_smmu_mini_dump_cb_info *target,
- struct cam_context_bank_info *src)
- {
- int i = 0;
- int64_t state_head = 0;
- uint32_t index, num_entries, oldest_entry;
- struct timespec64 *ts = NULL;
- state_head = atomic64_read(&src->monitor_head);
- if (state_head == -1) {
- return;
- } else if (state_head < CAM_SMMU_MONITOR_MAX_ENTRIES) {
- num_entries = state_head;
- oldest_entry = 0;
- } else {
- num_entries = CAM_SMMU_MONITOR_MAX_ENTRIES;
- div_u64_rem(state_head + 1,
- CAM_SMMU_MONITOR_MAX_ENTRIES, &oldest_entry);
- }
- index = oldest_entry;
- for (i = 0; i < num_entries; i++) {
- ts = &src->monitor_entries[index].timestamp;
- memcpy(&target->mapping[index],
- &src->monitor_entries[index],
- sizeof(struct cam_smmu_monitor));
- index = (index + 1) % CAM_SMMU_MONITOR_MAX_ENTRIES;
- }
- }
- static unsigned long cam_smmu_mini_dump_cb(void *dst, unsigned long len)
- {
- struct cam_smmu_mini_dump_cb_info *cb_md;
- struct cam_smmu_mini_dump_info *md;
- struct cam_context_bank_info *cb;
- unsigned long dumped_len = 0;
- unsigned long remain_len = len;
- uint32_t i = 0, j = 0;
- if (!dst || len < sizeof(*md)) {
- CAM_ERR(CAM_SMMU, "Invalid params dst: %pk len:%lu",
- dst, len);
- return 0;
- }
- md = (struct cam_smmu_mini_dump_info *)dst;
- md->cb_num = 0;
- md->cb = (struct cam_smmu_mini_dump_cb_info *)
- ((uint8_t *)dst + sizeof(*md));
- dumped_len += sizeof(*md);
- remain_len = len - dumped_len;
- for (i = 0; i < iommu_cb_set.cb_num; i++) {
- if (remain_len < sizeof(*cb_md))
- goto end;
- cb = &iommu_cb_set.cb_info[i];
- cb_md = &md->cb[i];
- cb_md->is_mul_client = cb->is_mul_client;
- cb_md->is_secure = cb->is_secure;
- cb_md->is_fw_allocated = cb->is_fw_allocated;
- cb_md->is_secheap_allocated = cb->is_secheap_allocated;
- cb_md->is_fwuncached_buf_allocated = cb->is_fwuncached_buf_allocated;
- cb_md->is_qdss_allocated = cb->is_qdss_allocated;
- cb_md->scratch_buf_support = cb->scratch_buf_support;
- cb_md->firmware_support = cb->firmware_support;
- cb_md->shared_support = cb->shared_support;
- cb_md->io_support = cb->io_support;
- cb_md->fwuncached_region_support = cb->fwuncached_region_support;
- cb_md->qdss_support = cb->qdss_support;
- cb_md->coherency_mode = cb->coherency_mode;
- cb_md->state = cb->state;
- cb_md->va_start = cb->va_start;
- cb_md->discard_iova_start = cb->discard_iova_start;
- cb_md->qdss_phy_addr = cb->qdss_phy_addr;
- cb_md->va_len = cb->va_len;
- cb_md->io_mapping_size = cb->io_mapping_size;
- cb_md->shared_mapping_size = cb->shared_mapping_size;
- cb_md->discard_iova_len = cb->discard_iova_len;
- cb_md->handle = cb->handle;
- cb_md->device_count = cb->device_count;
- cb_md->num_shared_hdl = cb->num_shared_hdl;
- cb_md->secure_count = cb->secure_count;
- cb_md->cb_count = cb->cb_count;
- cb_md->pf_count = cb->pf_count;
- memcpy(&cb_md->scratch_info, &cb->scratch_info,
- sizeof(struct cam_smmu_region_info));
- memcpy(&cb_md->firmware_info, &cb->firmware_info,
- sizeof(struct cam_smmu_region_info));
- memcpy(&cb_md->shared_info, &cb->shared_info,
- sizeof(struct cam_smmu_region_info));
- memcpy(&cb_md->io_info, &cb->io_info,
- sizeof(struct cam_smmu_region_info));
- memcpy(&cb_md->secheap_info, &cb->secheap_info,
- sizeof(struct cam_smmu_region_info));
- memcpy(&cb_md->fwuncached_region, &cb->fwuncached_region,
- sizeof(struct cam_smmu_region_info));
- memcpy(&cb_md->qdss_info, &cb->qdss_info,
- sizeof(struct cam_smmu_region_info));
- memcpy(&cb_md->secheap_buf, &cb->secheap_buf,
- sizeof(struct region_buf_info));
- memcpy(&cb_md->fwuncached_reg_buf, &cb->fwuncached_reg_buf,
- sizeof(struct region_buf_info));
- for (j = 0; j < iommu_cb_set.cb_info[i].num_shared_hdl; j++)
- scnprintf(cb_md->name[j], 16, cb->name[j]);
- cam_smmu_mini_dump_entries(cb_md, cb);
- dumped_len += sizeof(*cb_md);
- remain_len = len - dumped_len;
- md->cb_num++;
- }
- end:
- return dumped_len;
- };
- static int cam_smmu_create_debug_fs(void)
- {
- int rc = 0;
- struct dentry *dbgfileptr = NULL;
- if (!cam_debugfs_available())
- return 0;
- rc = cam_debugfs_create_subdir("smmu", &dbgfileptr);
- if (rc) {
- CAM_ERR(CAM_SMMU,"DebugFS could not create directory!");
- rc = -ENOENT;
- goto end;
- }
- /* Store parent inode for cleanup in caller */
- iommu_cb_set.dentry = dbgfileptr;
- debugfs_create_bool("cb_dump_enable", 0644,
- iommu_cb_set.dentry, &iommu_cb_set.cb_dump_enable);
- debugfs_create_bool("map_profile_enable", 0644,
- iommu_cb_set.dentry, &iommu_cb_set.map_profile_enable);
- end:
- return rc;
- }
- static int cam_smmu_fw_dev_component_bind(struct device *dev,
- struct device *master_dev, void *data)
- {
- struct platform_device *pdev = to_platform_device(dev);
- icp_fw.fw_dev = &pdev->dev;
- icp_fw.fw_kva = NULL;
- icp_fw.fw_hdl = 0;
- CAM_DBG(CAM_SMMU, "FW dev component bound successfully");
- return 0;
- }
- static void cam_smmu_fw_dev_component_unbind(struct device *dev,
- struct device *master_dev, void *data)
- {
- struct platform_device *pdev = to_platform_device(dev);
- CAM_DBG(CAM_SMMU, "Unbinding component: %s", pdev->name);
- }
- const static struct component_ops cam_smmu_fw_dev_component_ops = {
- .bind = cam_smmu_fw_dev_component_bind,
- .unbind = cam_smmu_fw_dev_component_unbind,
- };
- static int cam_smmu_cb_component_bind(struct device *dev,
- struct device *master_dev, void *data)
- {
- int rc = 0;
- struct platform_device *pdev = to_platform_device(dev);
- rc = cam_populate_smmu_context_banks(dev, CAM_ARM_SMMU);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU, "Error: populating context banks");
- cam_smmu_release_cb(pdev);
- return -ENOMEM;
- }
- CAM_DBG(CAM_SMMU, "CB component bound successfully");
- return 0;
- }
- static void cam_smmu_cb_component_unbind(struct device *dev,
- struct device *master_dev, void *data)
- {
- struct platform_device *pdev = to_platform_device(dev);
- CAM_DBG(CAM_SMMU, "Unbinding component: %s", pdev->name);
- }
- const static struct component_ops cam_smmu_cb_component_ops = {
- .bind = cam_smmu_cb_component_bind,
- .unbind = cam_smmu_cb_component_unbind,
- };
- static int cam_smmu_cb_qsmmu_component_bind(struct device *dev,
- struct device *master_dev, void *data)
- {
- int rc = 0;
- rc = cam_populate_smmu_context_banks(dev, CAM_QSMMU);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU, "Failed in populating context banks");
- return -ENOMEM;
- }
- CAM_DBG(CAM_SMMU, "QSMMU CB component bound successfully");
- return 0;
- }
- static void cam_smmu_cb_qsmmu_component_unbind(struct device *dev,
- struct device *master_dev, void *data)
- {
- struct platform_device *pdev = to_platform_device(dev);
- CAM_DBG(CAM_SMMU, "Unbinding component: %s", pdev->name);
- }
- const static struct component_ops cam_smmu_cb_qsmmu_component_ops = {
- .bind = cam_smmu_cb_qsmmu_component_bind,
- .unbind = cam_smmu_cb_qsmmu_component_unbind,
- };
- static int cam_smmu_component_bind(struct device *dev,
- struct device *master_dev, void *data)
- {
- INIT_WORK(&iommu_cb_set.smmu_work, cam_smmu_page_fault_work);
- mutex_init(&iommu_cb_set.payload_list_lock);
- INIT_LIST_HEAD(&iommu_cb_set.payload_list);
- cam_smmu_create_debug_fs();
- iommu_cb_set.force_cache_allocs =
- of_property_read_bool(dev->of_node, "force_cache_allocs");
- iommu_cb_set.need_shared_buffer_padding =
- of_property_read_bool(dev->of_node, "need_shared_buffer_padding");
- iommu_cb_set.is_expanded_memory =
- of_property_read_bool(dev->of_node, "expanded_memory");
- cam_common_register_mini_dump_cb(cam_smmu_mini_dump_cb,
- "cam_smmu");
- CAM_DBG(CAM_SMMU, "Main component bound successfully");
- return 0;
- }
- static void cam_smmu_component_unbind(struct device *dev,
- struct device *master_dev, void *data)
- {
- struct platform_device *pdev = to_platform_device(dev);
- /* release all the context banks and memory allocated */
- cam_smmu_reset_iommu_table(CAM_SMMU_TABLE_DEINIT);
- if (dev && dev->dma_parms) {
- devm_kfree(dev, dev->dma_parms);
- dev->dma_parms = NULL;
- }
- cam_smmu_release_cb(pdev);
- iommu_cb_set.dentry = NULL;
- }
- const static struct component_ops cam_smmu_component_ops = {
- .bind = cam_smmu_component_bind,
- .unbind = cam_smmu_component_unbind,
- };
- static int cam_smmu_probe(struct platform_device *pdev)
- {
- int rc = 0;
- struct device *dev = &pdev->dev;
- dev->dma_parms = NULL;
- CAM_DBG(CAM_SMMU, "Adding SMMU component: %s", pdev->name);
- if (of_device_is_compatible(dev->of_node, "qcom,msm-cam-smmu")) {
- rc = cam_alloc_smmu_context_banks(dev);
- if (rc < 0) {
- CAM_ERR(CAM_SMMU, "Failed in allocating context banks");
- return -ENOMEM;
- }
- rc = component_add(&pdev->dev, &cam_smmu_component_ops);
- } else if (of_device_is_compatible(dev->of_node,
- "qcom,msm-cam-smmu-cb")) {
- rc = component_add(&pdev->dev, &cam_smmu_cb_component_ops);
- } else if (of_device_is_compatible(dev->of_node, "qcom,qsmmu-cam-cb")) {
- rc = component_add(&pdev->dev,
- &cam_smmu_cb_qsmmu_component_ops);
- } else if (of_device_is_compatible(dev->of_node,
- "qcom,msm-cam-smmu-fw-dev")) {
- rc = component_add(&pdev->dev, &cam_smmu_fw_dev_component_ops);
- } else {
- CAM_ERR(CAM_SMMU, "Unrecognized child device: %s", pdev->name);
- rc = -ENODEV;
- }
- if (rc < 0)
- CAM_ERR(CAM_SMMU, "failed to add component rc: %d", rc);
- return rc;
- }
- static int cam_smmu_remove(struct platform_device *pdev)
- {
- struct device *dev = &pdev->dev;
- CAM_DBG(CAM_SMMU, "Removing SMMU component: %s", pdev->name);
- if (of_device_is_compatible(dev->of_node, "qcom,msm-cam-smmu")) {
- component_del(&pdev->dev, &cam_smmu_component_ops);
- } else if (of_device_is_compatible(dev->of_node,
- "qcom,msm-cam-smmu-cb")) {
- component_del(&pdev->dev, &cam_smmu_cb_component_ops);
- } else if (of_device_is_compatible(dev->of_node, "qcom,qsmmu-cam-cb")) {
- component_del(&pdev->dev, &cam_smmu_cb_qsmmu_component_ops);
- } else if (of_device_is_compatible(dev->of_node,
- "qcom,msm-cam-smmu-fw-dev")) {
- component_del(&pdev->dev, &cam_smmu_fw_dev_component_ops);
- } else {
- CAM_ERR(CAM_SMMU, "Unrecognized child device: %s", pdev->name);
- return -ENODEV;
- }
- return 0;
- }
- struct platform_driver cam_smmu_driver = {
- .probe = cam_smmu_probe,
- .remove = cam_smmu_remove,
- .driver = {
- .name = "msm_cam_smmu",
- .owner = THIS_MODULE,
- .of_match_table = msm_cam_smmu_dt_match,
- .suppress_bind_attrs = true,
- },
- };
- int cam_smmu_init_module(void)
- {
- return platform_driver_register(&cam_smmu_driver);
- }
- void cam_smmu_exit_module(void)
- {
- platform_driver_unregister(&cam_smmu_driver);
- }
- MODULE_DESCRIPTION("MSM Camera SMMU driver");
- MODULE_LICENSE("GPL v2");
|