amd64_edac.c 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. #include <linux/ras.h>
  3. #include <linux/string_choices.h>
  4. #include "amd64_edac.h"
  5. #include <asm/amd/nb.h>
  6. #include <asm/amd/node.h>
  7. static struct edac_pci_ctl_info *pci_ctl;
  8. /*
  9. * Set by command line parameter. If BIOS has enabled the ECC, this override is
  10. * cleared to prevent re-enabling the hardware by this driver.
  11. */
  12. static int ecc_enable_override;
  13. module_param(ecc_enable_override, int, 0644);
  14. static struct msr __percpu *msrs;
  15. static inline u32 get_umc_reg(struct amd64_pvt *pvt, u32 reg)
  16. {
  17. if (!pvt->flags.zn_regs_v2)
  18. return reg;
  19. switch (reg) {
  20. case UMCCH_ADDR_MASK_SEC: return UMCCH_ADDR_MASK_SEC_DDR5;
  21. case UMCCH_DIMM_CFG: return UMCCH_DIMM_CFG_DDR5;
  22. }
  23. WARN_ONCE(1, "%s: unknown register 0x%x", __func__, reg);
  24. return 0;
  25. }
  26. /* Per-node stuff */
  27. static struct ecc_settings **ecc_stngs;
  28. /* Device for the PCI component */
  29. static struct device *pci_ctl_dev;
  30. /*
  31. * Valid scrub rates for the K8 hardware memory scrubber. We map the scrubbing
  32. * bandwidth to a valid bit pattern. The 'set' operation finds the 'matching-
  33. * or higher value'.
  34. *
  35. *FIXME: Produce a better mapping/linearisation.
  36. */
  37. static const struct scrubrate {
  38. u32 scrubval; /* bit pattern for scrub rate */
  39. u32 bandwidth; /* bandwidth consumed (bytes/sec) */
  40. } scrubrates[] = {
  41. { 0x01, 1600000000UL},
  42. { 0x02, 800000000UL},
  43. { 0x03, 400000000UL},
  44. { 0x04, 200000000UL},
  45. { 0x05, 100000000UL},
  46. { 0x06, 50000000UL},
  47. { 0x07, 25000000UL},
  48. { 0x08, 12284069UL},
  49. { 0x09, 6274509UL},
  50. { 0x0A, 3121951UL},
  51. { 0x0B, 1560975UL},
  52. { 0x0C, 781440UL},
  53. { 0x0D, 390720UL},
  54. { 0x0E, 195300UL},
  55. { 0x0F, 97650UL},
  56. { 0x10, 48854UL},
  57. { 0x11, 24427UL},
  58. { 0x12, 12213UL},
  59. { 0x13, 6101UL},
  60. { 0x14, 3051UL},
  61. { 0x15, 1523UL},
  62. { 0x16, 761UL},
  63. { 0x00, 0UL}, /* scrubbing off */
  64. };
  65. int __amd64_read_pci_cfg_dword(struct pci_dev *pdev, int offset,
  66. u32 *val, const char *func)
  67. {
  68. int err = 0;
  69. err = pci_read_config_dword(pdev, offset, val);
  70. if (err)
  71. amd64_warn("%s: error reading F%dx%03x.\n",
  72. func, PCI_FUNC(pdev->devfn), offset);
  73. return pcibios_err_to_errno(err);
  74. }
  75. int __amd64_write_pci_cfg_dword(struct pci_dev *pdev, int offset,
  76. u32 val, const char *func)
  77. {
  78. int err = 0;
  79. err = pci_write_config_dword(pdev, offset, val);
  80. if (err)
  81. amd64_warn("%s: error writing to F%dx%03x.\n",
  82. func, PCI_FUNC(pdev->devfn), offset);
  83. return pcibios_err_to_errno(err);
  84. }
  85. /*
  86. * Select DCT to which PCI cfg accesses are routed
  87. */
  88. static void f15h_select_dct(struct amd64_pvt *pvt, u8 dct)
  89. {
  90. u32 reg = 0;
  91. amd64_read_pci_cfg(pvt->F1, DCT_CFG_SEL, &reg);
  92. reg &= (pvt->model == 0x30) ? ~3 : ~1;
  93. reg |= dct;
  94. amd64_write_pci_cfg(pvt->F1, DCT_CFG_SEL, reg);
  95. }
  96. /*
  97. *
  98. * Depending on the family, F2 DCT reads need special handling:
  99. *
  100. * K8: has a single DCT only and no address offsets >= 0x100
  101. *
  102. * F10h: each DCT has its own set of regs
  103. * DCT0 -> F2x040..
  104. * DCT1 -> F2x140..
  105. *
  106. * F16h: has only 1 DCT
  107. *
  108. * F15h: we select which DCT we access using F1x10C[DctCfgSel]
  109. */
  110. static inline int amd64_read_dct_pci_cfg(struct amd64_pvt *pvt, u8 dct,
  111. int offset, u32 *val)
  112. {
  113. switch (pvt->fam) {
  114. case 0xf:
  115. if (dct || offset >= 0x100)
  116. return -EINVAL;
  117. break;
  118. case 0x10:
  119. if (dct) {
  120. /*
  121. * Note: If ganging is enabled, barring the regs
  122. * F2x[1,0]98 and F2x[1,0]9C; reads reads to F2x1xx
  123. * return 0. (cf. Section 2.8.1 F10h BKDG)
  124. */
  125. if (dct_ganging_enabled(pvt))
  126. return 0;
  127. offset += 0x100;
  128. }
  129. break;
  130. case 0x15:
  131. /*
  132. * F15h: F2x1xx addresses do not map explicitly to DCT1.
  133. * We should select which DCT we access using F1x10C[DctCfgSel]
  134. */
  135. dct = (dct && pvt->model == 0x30) ? 3 : dct;
  136. f15h_select_dct(pvt, dct);
  137. break;
  138. case 0x16:
  139. if (dct)
  140. return -EINVAL;
  141. break;
  142. default:
  143. break;
  144. }
  145. return amd64_read_pci_cfg(pvt->F2, offset, val);
  146. }
  147. /*
  148. * Memory scrubber control interface. For K8, memory scrubbing is handled by
  149. * hardware and can involve L2 cache, dcache as well as the main memory. With
  150. * F10, this is extended to L3 cache scrubbing on CPU models sporting that
  151. * functionality.
  152. *
  153. * This causes the "units" for the scrubbing speed to vary from 64 byte blocks
  154. * (dram) over to cache lines. This is nasty, so we will use bandwidth in
  155. * bytes/sec for the setting.
  156. *
  157. * Currently, we only do dram scrubbing. If the scrubbing is done in software on
  158. * other archs, we might not have access to the caches directly.
  159. */
  160. /*
  161. * Scan the scrub rate mapping table for a close or matching bandwidth value to
  162. * issue. If requested is too big, then use last maximum value found.
  163. */
  164. static int __set_scrub_rate(struct amd64_pvt *pvt, u32 new_bw, u32 min_rate)
  165. {
  166. u32 scrubval;
  167. int i;
  168. /*
  169. * map the configured rate (new_bw) to a value specific to the AMD64
  170. * memory controller and apply to register. Search for the first
  171. * bandwidth entry that is greater or equal than the setting requested
  172. * and program that. If at last entry, turn off DRAM scrubbing.
  173. *
  174. * If no suitable bandwidth is found, turn off DRAM scrubbing entirely
  175. * by falling back to the last element in scrubrates[].
  176. */
  177. for (i = 0; i < ARRAY_SIZE(scrubrates) - 1; i++) {
  178. /*
  179. * skip scrub rates which aren't recommended
  180. * (see F10 BKDG, F3x58)
  181. */
  182. if (scrubrates[i].scrubval < min_rate)
  183. continue;
  184. if (scrubrates[i].bandwidth <= new_bw)
  185. break;
  186. }
  187. scrubval = scrubrates[i].scrubval;
  188. if (pvt->fam == 0x15 && pvt->model == 0x60) {
  189. f15h_select_dct(pvt, 0);
  190. pci_write_bits32(pvt->F2, F15H_M60H_SCRCTRL, scrubval, 0x001F);
  191. f15h_select_dct(pvt, 1);
  192. pci_write_bits32(pvt->F2, F15H_M60H_SCRCTRL, scrubval, 0x001F);
  193. } else {
  194. pci_write_bits32(pvt->F3, SCRCTRL, scrubval, 0x001F);
  195. }
  196. if (scrubval)
  197. return scrubrates[i].bandwidth;
  198. return 0;
  199. }
  200. static int set_scrub_rate(struct mem_ctl_info *mci, u32 bw)
  201. {
  202. struct amd64_pvt *pvt = mci->pvt_info;
  203. u32 min_scrubrate = 0x5;
  204. if (pvt->fam == 0xf)
  205. min_scrubrate = 0x0;
  206. if (pvt->fam == 0x15) {
  207. /* Erratum #505 */
  208. if (pvt->model < 0x10)
  209. f15h_select_dct(pvt, 0);
  210. if (pvt->model == 0x60)
  211. min_scrubrate = 0x6;
  212. }
  213. return __set_scrub_rate(pvt, bw, min_scrubrate);
  214. }
  215. static int get_scrub_rate(struct mem_ctl_info *mci)
  216. {
  217. struct amd64_pvt *pvt = mci->pvt_info;
  218. int i, retval = -EINVAL;
  219. u32 scrubval = 0;
  220. if (pvt->fam == 0x15) {
  221. /* Erratum #505 */
  222. if (pvt->model < 0x10)
  223. f15h_select_dct(pvt, 0);
  224. if (pvt->model == 0x60)
  225. amd64_read_pci_cfg(pvt->F2, F15H_M60H_SCRCTRL, &scrubval);
  226. else
  227. amd64_read_pci_cfg(pvt->F3, SCRCTRL, &scrubval);
  228. } else {
  229. amd64_read_pci_cfg(pvt->F3, SCRCTRL, &scrubval);
  230. }
  231. scrubval = scrubval & 0x001F;
  232. for (i = 0; i < ARRAY_SIZE(scrubrates); i++) {
  233. if (scrubrates[i].scrubval == scrubval) {
  234. retval = scrubrates[i].bandwidth;
  235. break;
  236. }
  237. }
  238. return retval;
  239. }
  240. /*
  241. * returns true if the SysAddr given by sys_addr matches the
  242. * DRAM base/limit associated with node_id
  243. */
  244. static bool base_limit_match(struct amd64_pvt *pvt, u64 sys_addr, u8 nid)
  245. {
  246. u64 addr;
  247. /* The K8 treats this as a 40-bit value. However, bits 63-40 will be
  248. * all ones if the most significant implemented address bit is 1.
  249. * Here we discard bits 63-40. See section 3.4.2 of AMD publication
  250. * 24592: AMD x86-64 Architecture Programmer's Manual Volume 1
  251. * Application Programming.
  252. */
  253. addr = sys_addr & 0x000000ffffffffffull;
  254. return ((addr >= get_dram_base(pvt, nid)) &&
  255. (addr <= get_dram_limit(pvt, nid)));
  256. }
  257. /*
  258. * Attempt to map a SysAddr to a node. On success, return a pointer to the
  259. * mem_ctl_info structure for the node that the SysAddr maps to.
  260. *
  261. * On failure, return NULL.
  262. */
  263. static struct mem_ctl_info *find_mc_by_sys_addr(struct mem_ctl_info *mci,
  264. u64 sys_addr)
  265. {
  266. struct amd64_pvt *pvt;
  267. u8 node_id;
  268. u32 intlv_en, bits;
  269. /*
  270. * Here we use the DRAM Base (section 3.4.4.1) and DRAM Limit (section
  271. * 3.4.4.2) registers to map the SysAddr to a node ID.
  272. */
  273. pvt = mci->pvt_info;
  274. /*
  275. * The value of this field should be the same for all DRAM Base
  276. * registers. Therefore we arbitrarily choose to read it from the
  277. * register for node 0.
  278. */
  279. intlv_en = dram_intlv_en(pvt, 0);
  280. if (intlv_en == 0) {
  281. for (node_id = 0; node_id < DRAM_RANGES; node_id++) {
  282. if (base_limit_match(pvt, sys_addr, node_id))
  283. goto found;
  284. }
  285. goto err_no_match;
  286. }
  287. if (unlikely((intlv_en != 0x01) &&
  288. (intlv_en != 0x03) &&
  289. (intlv_en != 0x07))) {
  290. amd64_warn("DRAM Base[IntlvEn] junk value: 0x%x, BIOS bug?\n", intlv_en);
  291. return NULL;
  292. }
  293. bits = (((u32) sys_addr) >> 12) & intlv_en;
  294. for (node_id = 0; ; ) {
  295. if ((dram_intlv_sel(pvt, node_id) & intlv_en) == bits)
  296. break; /* intlv_sel field matches */
  297. if (++node_id >= DRAM_RANGES)
  298. goto err_no_match;
  299. }
  300. /* sanity test for sys_addr */
  301. if (unlikely(!base_limit_match(pvt, sys_addr, node_id))) {
  302. amd64_warn("%s: sys_addr 0x%llx falls outside base/limit address"
  303. "range for node %d with node interleaving enabled.\n",
  304. __func__, sys_addr, node_id);
  305. return NULL;
  306. }
  307. found:
  308. return edac_mc_find((int)node_id);
  309. err_no_match:
  310. edac_dbg(2, "sys_addr 0x%lx doesn't match any node\n",
  311. (unsigned long)sys_addr);
  312. return NULL;
  313. }
  314. /*
  315. * compute the CS base address of the @csrow on the DRAM controller @dct.
  316. * For details see F2x[5C:40] in the processor's BKDG
  317. */
  318. static void get_cs_base_and_mask(struct amd64_pvt *pvt, int csrow, u8 dct,
  319. u64 *base, u64 *mask)
  320. {
  321. u64 csbase, csmask, base_bits, mask_bits;
  322. u8 addr_shift;
  323. if (pvt->fam == 0xf && pvt->ext_model < K8_REV_F) {
  324. csbase = pvt->csels[dct].csbases[csrow];
  325. csmask = pvt->csels[dct].csmasks[csrow];
  326. base_bits = GENMASK_ULL(31, 21) | GENMASK_ULL(15, 9);
  327. mask_bits = GENMASK_ULL(29, 21) | GENMASK_ULL(15, 9);
  328. addr_shift = 4;
  329. /*
  330. * F16h and F15h, models 30h and later need two addr_shift values:
  331. * 8 for high and 6 for low (cf. F16h BKDG).
  332. */
  333. } else if (pvt->fam == 0x16 ||
  334. (pvt->fam == 0x15 && pvt->model >= 0x30)) {
  335. csbase = pvt->csels[dct].csbases[csrow];
  336. csmask = pvt->csels[dct].csmasks[csrow >> 1];
  337. *base = (csbase & GENMASK_ULL(15, 5)) << 6;
  338. *base |= (csbase & GENMASK_ULL(30, 19)) << 8;
  339. *mask = ~0ULL;
  340. /* poke holes for the csmask */
  341. *mask &= ~((GENMASK_ULL(15, 5) << 6) |
  342. (GENMASK_ULL(30, 19) << 8));
  343. *mask |= (csmask & GENMASK_ULL(15, 5)) << 6;
  344. *mask |= (csmask & GENMASK_ULL(30, 19)) << 8;
  345. return;
  346. } else {
  347. csbase = pvt->csels[dct].csbases[csrow];
  348. csmask = pvt->csels[dct].csmasks[csrow >> 1];
  349. addr_shift = 8;
  350. if (pvt->fam == 0x15)
  351. base_bits = mask_bits =
  352. GENMASK_ULL(30,19) | GENMASK_ULL(13,5);
  353. else
  354. base_bits = mask_bits =
  355. GENMASK_ULL(28,19) | GENMASK_ULL(13,5);
  356. }
  357. *base = (csbase & base_bits) << addr_shift;
  358. *mask = ~0ULL;
  359. /* poke holes for the csmask */
  360. *mask &= ~(mask_bits << addr_shift);
  361. /* OR them in */
  362. *mask |= (csmask & mask_bits) << addr_shift;
  363. }
  364. #define for_each_chip_select(i, dct, pvt) \
  365. for (i = 0; i < pvt->csels[dct].b_cnt; i++)
  366. #define chip_select_base(i, dct, pvt) \
  367. pvt->csels[dct].csbases[i]
  368. #define for_each_chip_select_mask(i, dct, pvt) \
  369. for (i = 0; i < pvt->csels[dct].m_cnt; i++)
  370. #define for_each_umc(i) \
  371. for (i = 0; i < pvt->max_mcs; i++)
  372. /*
  373. * @input_addr is an InputAddr associated with the node given by mci. Return the
  374. * csrow that input_addr maps to, or -1 on failure (no csrow claims input_addr).
  375. */
  376. static int input_addr_to_csrow(struct mem_ctl_info *mci, u64 input_addr)
  377. {
  378. struct amd64_pvt *pvt;
  379. int csrow;
  380. u64 base, mask;
  381. pvt = mci->pvt_info;
  382. for_each_chip_select(csrow, 0, pvt) {
  383. if (!csrow_enabled(csrow, 0, pvt))
  384. continue;
  385. get_cs_base_and_mask(pvt, csrow, 0, &base, &mask);
  386. mask = ~mask;
  387. if ((input_addr & mask) == (base & mask)) {
  388. edac_dbg(2, "InputAddr 0x%lx matches csrow %d (node %d)\n",
  389. (unsigned long)input_addr, csrow,
  390. pvt->mc_node_id);
  391. return csrow;
  392. }
  393. }
  394. edac_dbg(2, "no matching csrow for InputAddr 0x%lx (MC node %d)\n",
  395. (unsigned long)input_addr, pvt->mc_node_id);
  396. return -1;
  397. }
  398. /*
  399. * Obtain info from the DRAM Hole Address Register (section 3.4.8, pub #26094)
  400. * for the node represented by mci. Info is passed back in *hole_base,
  401. * *hole_offset, and *hole_size. Function returns 0 if info is valid or 1 if
  402. * info is invalid. Info may be invalid for either of the following reasons:
  403. *
  404. * - The revision of the node is not E or greater. In this case, the DRAM Hole
  405. * Address Register does not exist.
  406. *
  407. * - The DramHoleValid bit is cleared in the DRAM Hole Address Register,
  408. * indicating that its contents are not valid.
  409. *
  410. * The values passed back in *hole_base, *hole_offset, and *hole_size are
  411. * complete 32-bit values despite the fact that the bitfields in the DHAR
  412. * only represent bits 31-24 of the base and offset values.
  413. */
  414. static int get_dram_hole_info(struct mem_ctl_info *mci, u64 *hole_base,
  415. u64 *hole_offset, u64 *hole_size)
  416. {
  417. struct amd64_pvt *pvt = mci->pvt_info;
  418. /* only revE and later have the DRAM Hole Address Register */
  419. if (pvt->fam == 0xf && pvt->ext_model < K8_REV_E) {
  420. edac_dbg(1, " revision %d for node %d does not support DHAR\n",
  421. pvt->ext_model, pvt->mc_node_id);
  422. return 1;
  423. }
  424. /* valid for Fam10h and above */
  425. if (pvt->fam >= 0x10 && !dhar_mem_hoist_valid(pvt)) {
  426. edac_dbg(1, " Dram Memory Hoisting is DISABLED on this system\n");
  427. return 1;
  428. }
  429. if (!dhar_valid(pvt)) {
  430. edac_dbg(1, " Dram Memory Hoisting is DISABLED on this node %d\n",
  431. pvt->mc_node_id);
  432. return 1;
  433. }
  434. /* This node has Memory Hoisting */
  435. /* +------------------+--------------------+--------------------+-----
  436. * | memory | DRAM hole | relocated |
  437. * | [0, (x - 1)] | [x, 0xffffffff] | addresses from |
  438. * | | | DRAM hole |
  439. * | | | [0x100000000, |
  440. * | | | (0x100000000+ |
  441. * | | | (0xffffffff-x))] |
  442. * +------------------+--------------------+--------------------+-----
  443. *
  444. * Above is a diagram of physical memory showing the DRAM hole and the
  445. * relocated addresses from the DRAM hole. As shown, the DRAM hole
  446. * starts at address x (the base address) and extends through address
  447. * 0xffffffff. The DRAM Hole Address Register (DHAR) relocates the
  448. * addresses in the hole so that they start at 0x100000000.
  449. */
  450. *hole_base = dhar_base(pvt);
  451. *hole_size = (1ULL << 32) - *hole_base;
  452. *hole_offset = (pvt->fam > 0xf) ? f10_dhar_offset(pvt)
  453. : k8_dhar_offset(pvt);
  454. edac_dbg(1, " DHAR info for node %d base 0x%lx offset 0x%lx size 0x%lx\n",
  455. pvt->mc_node_id, (unsigned long)*hole_base,
  456. (unsigned long)*hole_offset, (unsigned long)*hole_size);
  457. return 0;
  458. }
  459. #ifdef CONFIG_EDAC_DEBUG
  460. #define EDAC_DCT_ATTR_SHOW(reg) \
  461. static ssize_t reg##_show(struct device *dev, \
  462. struct device_attribute *mattr, char *data) \
  463. { \
  464. struct mem_ctl_info *mci = to_mci(dev); \
  465. struct amd64_pvt *pvt = mci->pvt_info; \
  466. \
  467. return sprintf(data, "0x%016llx\n", (u64)pvt->reg); \
  468. }
  469. EDAC_DCT_ATTR_SHOW(dhar);
  470. EDAC_DCT_ATTR_SHOW(dbam0);
  471. EDAC_DCT_ATTR_SHOW(top_mem);
  472. EDAC_DCT_ATTR_SHOW(top_mem2);
  473. static ssize_t dram_hole_show(struct device *dev, struct device_attribute *mattr,
  474. char *data)
  475. {
  476. struct mem_ctl_info *mci = to_mci(dev);
  477. u64 hole_base = 0;
  478. u64 hole_offset = 0;
  479. u64 hole_size = 0;
  480. get_dram_hole_info(mci, &hole_base, &hole_offset, &hole_size);
  481. return sprintf(data, "%llx %llx %llx\n", hole_base, hole_offset,
  482. hole_size);
  483. }
  484. /*
  485. * update NUM_DBG_ATTRS in case you add new members
  486. */
  487. static DEVICE_ATTR(dhar, S_IRUGO, dhar_show, NULL);
  488. static DEVICE_ATTR(dbam, S_IRUGO, dbam0_show, NULL);
  489. static DEVICE_ATTR(topmem, S_IRUGO, top_mem_show, NULL);
  490. static DEVICE_ATTR(topmem2, S_IRUGO, top_mem2_show, NULL);
  491. static DEVICE_ATTR_RO(dram_hole);
  492. static struct attribute *dbg_attrs[] = {
  493. &dev_attr_dhar.attr,
  494. &dev_attr_dbam.attr,
  495. &dev_attr_topmem.attr,
  496. &dev_attr_topmem2.attr,
  497. &dev_attr_dram_hole.attr,
  498. NULL
  499. };
  500. static const struct attribute_group dbg_group = {
  501. .attrs = dbg_attrs,
  502. };
  503. static ssize_t inject_section_show(struct device *dev,
  504. struct device_attribute *mattr, char *buf)
  505. {
  506. struct mem_ctl_info *mci = to_mci(dev);
  507. struct amd64_pvt *pvt = mci->pvt_info;
  508. return sprintf(buf, "0x%x\n", pvt->injection.section);
  509. }
  510. /*
  511. * store error injection section value which refers to one of 4 16-byte sections
  512. * within a 64-byte cacheline
  513. *
  514. * range: 0..3
  515. */
  516. static ssize_t inject_section_store(struct device *dev,
  517. struct device_attribute *mattr,
  518. const char *data, size_t count)
  519. {
  520. struct mem_ctl_info *mci = to_mci(dev);
  521. struct amd64_pvt *pvt = mci->pvt_info;
  522. unsigned long value;
  523. int ret;
  524. ret = kstrtoul(data, 10, &value);
  525. if (ret < 0)
  526. return ret;
  527. if (value > 3) {
  528. amd64_warn("%s: invalid section 0x%lx\n", __func__, value);
  529. return -EINVAL;
  530. }
  531. pvt->injection.section = (u32) value;
  532. return count;
  533. }
  534. static ssize_t inject_word_show(struct device *dev,
  535. struct device_attribute *mattr, char *buf)
  536. {
  537. struct mem_ctl_info *mci = to_mci(dev);
  538. struct amd64_pvt *pvt = mci->pvt_info;
  539. return sprintf(buf, "0x%x\n", pvt->injection.word);
  540. }
  541. /*
  542. * store error injection word value which refers to one of 9 16-bit word of the
  543. * 16-byte (128-bit + ECC bits) section
  544. *
  545. * range: 0..8
  546. */
  547. static ssize_t inject_word_store(struct device *dev,
  548. struct device_attribute *mattr,
  549. const char *data, size_t count)
  550. {
  551. struct mem_ctl_info *mci = to_mci(dev);
  552. struct amd64_pvt *pvt = mci->pvt_info;
  553. unsigned long value;
  554. int ret;
  555. ret = kstrtoul(data, 10, &value);
  556. if (ret < 0)
  557. return ret;
  558. if (value > 8) {
  559. amd64_warn("%s: invalid word 0x%lx\n", __func__, value);
  560. return -EINVAL;
  561. }
  562. pvt->injection.word = (u32) value;
  563. return count;
  564. }
  565. static ssize_t inject_ecc_vector_show(struct device *dev,
  566. struct device_attribute *mattr,
  567. char *buf)
  568. {
  569. struct mem_ctl_info *mci = to_mci(dev);
  570. struct amd64_pvt *pvt = mci->pvt_info;
  571. return sprintf(buf, "0x%x\n", pvt->injection.bit_map);
  572. }
  573. /*
  574. * store 16 bit error injection vector which enables injecting errors to the
  575. * corresponding bit within the error injection word above. When used during a
  576. * DRAM ECC read, it holds the contents of the of the DRAM ECC bits.
  577. */
  578. static ssize_t inject_ecc_vector_store(struct device *dev,
  579. struct device_attribute *mattr,
  580. const char *data, size_t count)
  581. {
  582. struct mem_ctl_info *mci = to_mci(dev);
  583. struct amd64_pvt *pvt = mci->pvt_info;
  584. unsigned long value;
  585. int ret;
  586. ret = kstrtoul(data, 16, &value);
  587. if (ret < 0)
  588. return ret;
  589. if (value & 0xFFFF0000) {
  590. amd64_warn("%s: invalid EccVector: 0x%lx\n", __func__, value);
  591. return -EINVAL;
  592. }
  593. pvt->injection.bit_map = (u32) value;
  594. return count;
  595. }
  596. /*
  597. * Do a DRAM ECC read. Assemble staged values in the pvt area, format into
  598. * fields needed by the injection registers and read the NB Array Data Port.
  599. */
  600. static ssize_t inject_read_store(struct device *dev,
  601. struct device_attribute *mattr,
  602. const char *data, size_t count)
  603. {
  604. struct mem_ctl_info *mci = to_mci(dev);
  605. struct amd64_pvt *pvt = mci->pvt_info;
  606. unsigned long value;
  607. u32 section, word_bits;
  608. int ret;
  609. ret = kstrtoul(data, 10, &value);
  610. if (ret < 0)
  611. return ret;
  612. /* Form value to choose 16-byte section of cacheline */
  613. section = F10_NB_ARRAY_DRAM | SET_NB_ARRAY_ADDR(pvt->injection.section);
  614. amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_ADDR, section);
  615. word_bits = SET_NB_DRAM_INJECTION_READ(pvt->injection);
  616. /* Issue 'word' and 'bit' along with the READ request */
  617. amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_DATA, word_bits);
  618. edac_dbg(0, "section=0x%x word_bits=0x%x\n", section, word_bits);
  619. return count;
  620. }
  621. /*
  622. * Do a DRAM ECC write. Assemble staged values in the pvt area and format into
  623. * fields needed by the injection registers.
  624. */
  625. static ssize_t inject_write_store(struct device *dev,
  626. struct device_attribute *mattr,
  627. const char *data, size_t count)
  628. {
  629. struct mem_ctl_info *mci = to_mci(dev);
  630. struct amd64_pvt *pvt = mci->pvt_info;
  631. u32 section, word_bits, tmp;
  632. unsigned long value;
  633. int ret;
  634. ret = kstrtoul(data, 10, &value);
  635. if (ret < 0)
  636. return ret;
  637. /* Form value to choose 16-byte section of cacheline */
  638. section = F10_NB_ARRAY_DRAM | SET_NB_ARRAY_ADDR(pvt->injection.section);
  639. amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_ADDR, section);
  640. word_bits = SET_NB_DRAM_INJECTION_WRITE(pvt->injection);
  641. pr_notice_once("Don't forget to decrease MCE polling interval in\n"
  642. "/sys/bus/machinecheck/devices/machinecheck<CPUNUM>/check_interval\n"
  643. "so that you can get the error report faster.\n");
  644. on_each_cpu(disable_caches, NULL, 1);
  645. /* Issue 'word' and 'bit' along with the READ request */
  646. amd64_write_pci_cfg(pvt->F3, F10_NB_ARRAY_DATA, word_bits);
  647. retry:
  648. /* wait until injection happens */
  649. amd64_read_pci_cfg(pvt->F3, F10_NB_ARRAY_DATA, &tmp);
  650. if (tmp & F10_NB_ARR_ECC_WR_REQ) {
  651. cpu_relax();
  652. goto retry;
  653. }
  654. on_each_cpu(enable_caches, NULL, 1);
  655. edac_dbg(0, "section=0x%x word_bits=0x%x\n", section, word_bits);
  656. return count;
  657. }
  658. /*
  659. * update NUM_INJ_ATTRS in case you add new members
  660. */
  661. static DEVICE_ATTR_RW(inject_section);
  662. static DEVICE_ATTR_RW(inject_word);
  663. static DEVICE_ATTR_RW(inject_ecc_vector);
  664. static DEVICE_ATTR_WO(inject_write);
  665. static DEVICE_ATTR_WO(inject_read);
  666. static struct attribute *inj_attrs[] = {
  667. &dev_attr_inject_section.attr,
  668. &dev_attr_inject_word.attr,
  669. &dev_attr_inject_ecc_vector.attr,
  670. &dev_attr_inject_write.attr,
  671. &dev_attr_inject_read.attr,
  672. NULL
  673. };
  674. static umode_t inj_is_visible(struct kobject *kobj, struct attribute *attr, int idx)
  675. {
  676. struct device *dev = kobj_to_dev(kobj);
  677. struct mem_ctl_info *mci = container_of(dev, struct mem_ctl_info, dev);
  678. struct amd64_pvt *pvt = mci->pvt_info;
  679. /* Families which have that injection hw */
  680. if (pvt->fam >= 0x10 && pvt->fam <= 0x16)
  681. return attr->mode;
  682. return 0;
  683. }
  684. static const struct attribute_group inj_group = {
  685. .attrs = inj_attrs,
  686. .is_visible = inj_is_visible,
  687. };
  688. #endif /* CONFIG_EDAC_DEBUG */
  689. /*
  690. * Return the DramAddr that the SysAddr given by @sys_addr maps to. It is
  691. * assumed that sys_addr maps to the node given by mci.
  692. *
  693. * The first part of section 3.4.4 (p. 70) shows how the DRAM Base (section
  694. * 3.4.4.1) and DRAM Limit (section 3.4.4.2) registers are used to translate a
  695. * SysAddr to a DramAddr. If the DRAM Hole Address Register (DHAR) is enabled,
  696. * then it is also involved in translating a SysAddr to a DramAddr. Sections
  697. * 3.4.8 and 3.5.8.2 describe the DHAR and how it is used for memory hoisting.
  698. * These parts of the documentation are unclear. I interpret them as follows:
  699. *
  700. * When node n receives a SysAddr, it processes the SysAddr as follows:
  701. *
  702. * 1. It extracts the DRAMBase and DRAMLimit values from the DRAM Base and DRAM
  703. * Limit registers for node n. If the SysAddr is not within the range
  704. * specified by the base and limit values, then node n ignores the Sysaddr
  705. * (since it does not map to node n). Otherwise continue to step 2 below.
  706. *
  707. * 2. If the DramHoleValid bit of the DHAR for node n is clear, the DHAR is
  708. * disabled so skip to step 3 below. Otherwise see if the SysAddr is within
  709. * the range of relocated addresses (starting at 0x100000000) from the DRAM
  710. * hole. If not, skip to step 3 below. Else get the value of the
  711. * DramHoleOffset field from the DHAR. To obtain the DramAddr, subtract the
  712. * offset defined by this value from the SysAddr.
  713. *
  714. * 3. Obtain the base address for node n from the DRAMBase field of the DRAM
  715. * Base register for node n. To obtain the DramAddr, subtract the base
  716. * address from the SysAddr, as shown near the start of section 3.4.4 (p.70).
  717. */
  718. static u64 sys_addr_to_dram_addr(struct mem_ctl_info *mci, u64 sys_addr)
  719. {
  720. struct amd64_pvt *pvt = mci->pvt_info;
  721. u64 dram_base, hole_base, hole_offset, hole_size, dram_addr;
  722. int ret;
  723. dram_base = get_dram_base(pvt, pvt->mc_node_id);
  724. ret = get_dram_hole_info(mci, &hole_base, &hole_offset, &hole_size);
  725. if (!ret) {
  726. if ((sys_addr >= (1ULL << 32)) &&
  727. (sys_addr < ((1ULL << 32) + hole_size))) {
  728. /* use DHAR to translate SysAddr to DramAddr */
  729. dram_addr = sys_addr - hole_offset;
  730. edac_dbg(2, "using DHAR to translate SysAddr 0x%lx to DramAddr 0x%lx\n",
  731. (unsigned long)sys_addr,
  732. (unsigned long)dram_addr);
  733. return dram_addr;
  734. }
  735. }
  736. /*
  737. * Translate the SysAddr to a DramAddr as shown near the start of
  738. * section 3.4.4 (p. 70). Although sys_addr is a 64-bit value, the k8
  739. * only deals with 40-bit values. Therefore we discard bits 63-40 of
  740. * sys_addr below. If bit 39 of sys_addr is 1 then the bits we
  741. * discard are all 1s. Otherwise the bits we discard are all 0s. See
  742. * section 3.4.2 of AMD publication 24592: AMD x86-64 Architecture
  743. * Programmer's Manual Volume 1 Application Programming.
  744. */
  745. dram_addr = (sys_addr & GENMASK_ULL(39, 0)) - dram_base;
  746. edac_dbg(2, "using DRAM Base register to translate SysAddr 0x%lx to DramAddr 0x%lx\n",
  747. (unsigned long)sys_addr, (unsigned long)dram_addr);
  748. return dram_addr;
  749. }
  750. /*
  751. * @intlv_en is the value of the IntlvEn field from a DRAM Base register
  752. * (section 3.4.4.1). Return the number of bits from a SysAddr that are used
  753. * for node interleaving.
  754. */
  755. static int num_node_interleave_bits(unsigned intlv_en)
  756. {
  757. static const int intlv_shift_table[] = { 0, 1, 0, 2, 0, 0, 0, 3 };
  758. int n;
  759. BUG_ON(intlv_en > 7);
  760. n = intlv_shift_table[intlv_en];
  761. return n;
  762. }
  763. /* Translate the DramAddr given by @dram_addr to an InputAddr. */
  764. static u64 dram_addr_to_input_addr(struct mem_ctl_info *mci, u64 dram_addr)
  765. {
  766. struct amd64_pvt *pvt;
  767. int intlv_shift;
  768. u64 input_addr;
  769. pvt = mci->pvt_info;
  770. /*
  771. * See the start of section 3.4.4 (p. 70, BKDG #26094, K8, revA-E)
  772. * concerning translating a DramAddr to an InputAddr.
  773. */
  774. intlv_shift = num_node_interleave_bits(dram_intlv_en(pvt, 0));
  775. input_addr = ((dram_addr >> intlv_shift) & GENMASK_ULL(35, 12)) +
  776. (dram_addr & 0xfff);
  777. edac_dbg(2, " Intlv Shift=%d DramAddr=0x%lx maps to InputAddr=0x%lx\n",
  778. intlv_shift, (unsigned long)dram_addr,
  779. (unsigned long)input_addr);
  780. return input_addr;
  781. }
  782. /*
  783. * Translate the SysAddr represented by @sys_addr to an InputAddr. It is
  784. * assumed that @sys_addr maps to the node given by mci.
  785. */
  786. static u64 sys_addr_to_input_addr(struct mem_ctl_info *mci, u64 sys_addr)
  787. {
  788. u64 input_addr;
  789. input_addr =
  790. dram_addr_to_input_addr(mci, sys_addr_to_dram_addr(mci, sys_addr));
  791. edac_dbg(2, "SysAddr 0x%lx translates to InputAddr 0x%lx\n",
  792. (unsigned long)sys_addr, (unsigned long)input_addr);
  793. return input_addr;
  794. }
  795. /* Map the Error address to a PAGE and PAGE OFFSET. */
  796. static inline void error_address_to_page_and_offset(u64 error_address,
  797. struct err_info *err)
  798. {
  799. err->page = (u32) (error_address >> PAGE_SHIFT);
  800. err->offset = ((u32) error_address) & ~PAGE_MASK;
  801. }
  802. /*
  803. * @sys_addr is an error address (a SysAddr) extracted from the MCA NB Address
  804. * Low (section 3.6.4.5) and MCA NB Address High (section 3.6.4.6) registers
  805. * of a node that detected an ECC memory error. mci represents the node that
  806. * the error address maps to (possibly different from the node that detected
  807. * the error). Return the number of the csrow that sys_addr maps to, or -1 on
  808. * error.
  809. */
  810. static int sys_addr_to_csrow(struct mem_ctl_info *mci, u64 sys_addr)
  811. {
  812. int csrow;
  813. csrow = input_addr_to_csrow(mci, sys_addr_to_input_addr(mci, sys_addr));
  814. if (csrow == -1)
  815. amd64_mc_err(mci, "Failed to translate InputAddr to csrow for "
  816. "address 0x%lx\n", (unsigned long)sys_addr);
  817. return csrow;
  818. }
  819. /*
  820. * See AMD PPR DF::LclNodeTypeMap
  821. *
  822. * This register gives information for nodes of the same type within a system.
  823. *
  824. * Reading this register from a GPU node will tell how many GPU nodes are in the
  825. * system and what the lowest AMD Node ID value is for the GPU nodes. Use this
  826. * info to fixup the Linux logical "Node ID" value set in the AMD NB code and EDAC.
  827. */
  828. static struct local_node_map {
  829. u16 node_count;
  830. u16 base_node_id;
  831. } gpu_node_map;
  832. #define PCI_DEVICE_ID_AMD_MI200_DF_F1 0x14d1
  833. #define REG_LOCAL_NODE_TYPE_MAP 0x144
  834. /* Local Node Type Map (LNTM) fields */
  835. #define LNTM_NODE_COUNT GENMASK(27, 16)
  836. #define LNTM_BASE_NODE_ID GENMASK(11, 0)
  837. static int gpu_get_node_map(struct amd64_pvt *pvt)
  838. {
  839. struct pci_dev *pdev;
  840. int ret;
  841. u32 tmp;
  842. /*
  843. * Mapping of nodes from hardware-provided AMD Node ID to a
  844. * Linux logical one is applicable for MI200 models. Therefore,
  845. * return early for other heterogeneous systems.
  846. */
  847. if (pvt->F3->device != PCI_DEVICE_ID_AMD_MI200_DF_F3)
  848. return 0;
  849. /*
  850. * Node ID 0 is reserved for CPUs. Therefore, a non-zero Node ID
  851. * means the values have been already cached.
  852. */
  853. if (gpu_node_map.base_node_id)
  854. return 0;
  855. pdev = pci_get_device(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_MI200_DF_F1, NULL);
  856. if (!pdev) {
  857. ret = -ENODEV;
  858. goto out;
  859. }
  860. ret = pci_read_config_dword(pdev, REG_LOCAL_NODE_TYPE_MAP, &tmp);
  861. if (ret) {
  862. ret = pcibios_err_to_errno(ret);
  863. goto out;
  864. }
  865. gpu_node_map.node_count = FIELD_GET(LNTM_NODE_COUNT, tmp);
  866. gpu_node_map.base_node_id = FIELD_GET(LNTM_BASE_NODE_ID, tmp);
  867. out:
  868. pci_dev_put(pdev);
  869. return ret;
  870. }
  871. static int fixup_node_id(int node_id, struct mce *m)
  872. {
  873. /* MCA_IPID[InstanceIdHi] give the AMD Node ID for the bank. */
  874. u8 nid = (m->ipid >> 44) & 0xF;
  875. if (smca_get_bank_type(m->extcpu, m->bank) != SMCA_UMC_V2)
  876. return node_id;
  877. /* Nodes below the GPU base node are CPU nodes and don't need a fixup. */
  878. if (nid < gpu_node_map.base_node_id)
  879. return node_id;
  880. /* Convert the hardware-provided AMD Node ID to a Linux logical one. */
  881. return nid - gpu_node_map.base_node_id + 1;
  882. }
  883. static int get_channel_from_ecc_syndrome(struct mem_ctl_info *, u16);
  884. /*
  885. * Determine if the DIMMs have ECC enabled. ECC is enabled ONLY if all the DIMMs
  886. * are ECC capable.
  887. */
  888. static unsigned long dct_determine_edac_cap(struct amd64_pvt *pvt)
  889. {
  890. unsigned long edac_cap = EDAC_FLAG_NONE;
  891. u8 bit;
  892. bit = (pvt->fam > 0xf || pvt->ext_model >= K8_REV_F)
  893. ? 19
  894. : 17;
  895. if (pvt->dclr0 & BIT(bit))
  896. edac_cap = EDAC_FLAG_SECDED;
  897. return edac_cap;
  898. }
  899. static unsigned long umc_determine_edac_cap(struct amd64_pvt *pvt)
  900. {
  901. u8 i, umc_en_mask = 0, dimm_ecc_en_mask = 0;
  902. unsigned long edac_cap = EDAC_FLAG_NONE;
  903. for_each_umc(i) {
  904. if (!(pvt->umc[i].sdp_ctrl & UMC_SDP_INIT))
  905. continue;
  906. umc_en_mask |= BIT(i);
  907. /* UMC Configuration bit 12 (DimmEccEn) */
  908. if (pvt->umc[i].umc_cfg & BIT(12))
  909. dimm_ecc_en_mask |= BIT(i);
  910. }
  911. if (umc_en_mask == dimm_ecc_en_mask)
  912. edac_cap = EDAC_FLAG_SECDED;
  913. return edac_cap;
  914. }
  915. /*
  916. * debug routine to display the memory sizes of all logical DIMMs and its
  917. * CSROWs
  918. */
  919. static void dct_debug_display_dimm_sizes(struct amd64_pvt *pvt, u8 ctrl)
  920. {
  921. u32 *dcsb = ctrl ? pvt->csels[1].csbases : pvt->csels[0].csbases;
  922. u32 dbam = ctrl ? pvt->dbam1 : pvt->dbam0;
  923. int dimm, size0, size1;
  924. if (pvt->fam == 0xf) {
  925. /* K8 families < revF not supported yet */
  926. if (pvt->ext_model < K8_REV_F)
  927. return;
  928. WARN_ON(ctrl != 0);
  929. }
  930. if (pvt->fam == 0x10) {
  931. dbam = (ctrl && !dct_ganging_enabled(pvt)) ? pvt->dbam1
  932. : pvt->dbam0;
  933. dcsb = (ctrl && !dct_ganging_enabled(pvt)) ?
  934. pvt->csels[1].csbases :
  935. pvt->csels[0].csbases;
  936. } else if (ctrl) {
  937. dbam = pvt->dbam0;
  938. dcsb = pvt->csels[1].csbases;
  939. }
  940. edac_dbg(1, "F2x%d80 (DRAM Bank Address Mapping): 0x%08x\n",
  941. ctrl, dbam);
  942. edac_printk(KERN_DEBUG, EDAC_MC, "DCT%d chip selects:\n", ctrl);
  943. /* Dump memory sizes for DIMM and its CSROWs */
  944. for (dimm = 0; dimm < 4; dimm++) {
  945. size0 = 0;
  946. if (dcsb[dimm * 2] & DCSB_CS_ENABLE)
  947. /*
  948. * For F15m60h, we need multiplier for LRDIMM cs_size
  949. * calculation. We pass dimm value to the dbam_to_cs
  950. * mapper so we can find the multiplier from the
  951. * corresponding DCSM.
  952. */
  953. size0 = pvt->ops->dbam_to_cs(pvt, ctrl,
  954. DBAM_DIMM(dimm, dbam),
  955. dimm);
  956. size1 = 0;
  957. if (dcsb[dimm * 2 + 1] & DCSB_CS_ENABLE)
  958. size1 = pvt->ops->dbam_to_cs(pvt, ctrl,
  959. DBAM_DIMM(dimm, dbam),
  960. dimm);
  961. amd64_info(EDAC_MC ": %d: %5dMB %d: %5dMB\n",
  962. dimm * 2, size0,
  963. dimm * 2 + 1, size1);
  964. }
  965. }
  966. static void debug_dump_dramcfg_low(struct amd64_pvt *pvt, u32 dclr, int chan)
  967. {
  968. edac_dbg(1, "F2x%d90 (DRAM Cfg Low): 0x%08x\n", chan, dclr);
  969. if (pvt->dram_type == MEM_LRDDR3) {
  970. u32 dcsm = pvt->csels[chan].csmasks[0];
  971. /*
  972. * It's assumed all LRDIMMs in a DCT are going to be of
  973. * same 'type' until proven otherwise. So, use a cs
  974. * value of '0' here to get dcsm value.
  975. */
  976. edac_dbg(1, " LRDIMM %dx rank multiply\n", (dcsm & 0x3));
  977. }
  978. edac_dbg(1, "All DIMMs support ECC: %s\n", str_yes_no(dclr & BIT(19)));
  979. edac_dbg(1, " PAR/ERR parity: %s\n",
  980. str_enabled_disabled(dclr & BIT(8)));
  981. if (pvt->fam == 0x10)
  982. edac_dbg(1, " DCT 128bit mode width: %s\n",
  983. (dclr & BIT(11)) ? "128b" : "64b");
  984. edac_dbg(1, " x4 logical DIMMs present: L0: %s L1: %s L2: %s L3: %s\n",
  985. str_yes_no(dclr & BIT(12)),
  986. str_yes_no(dclr & BIT(13)),
  987. str_yes_no(dclr & BIT(14)),
  988. str_yes_no(dclr & BIT(15)));
  989. }
  990. #define CS_EVEN_PRIMARY BIT(0)
  991. #define CS_ODD_PRIMARY BIT(1)
  992. #define CS_EVEN_SECONDARY BIT(2)
  993. #define CS_ODD_SECONDARY BIT(3)
  994. #define CS_3R_INTERLEAVE BIT(4)
  995. #define CS_EVEN (CS_EVEN_PRIMARY | CS_EVEN_SECONDARY)
  996. #define CS_ODD (CS_ODD_PRIMARY | CS_ODD_SECONDARY)
  997. static int umc_get_cs_mode(int dimm, u8 ctrl, struct amd64_pvt *pvt)
  998. {
  999. u8 base, count = 0;
  1000. int cs_mode = 0;
  1001. if (csrow_enabled(2 * dimm, ctrl, pvt))
  1002. cs_mode |= CS_EVEN_PRIMARY;
  1003. if (csrow_enabled(2 * dimm + 1, ctrl, pvt))
  1004. cs_mode |= CS_ODD_PRIMARY;
  1005. if (csrow_sec_enabled(2 * dimm, ctrl, pvt))
  1006. cs_mode |= CS_EVEN_SECONDARY;
  1007. if (csrow_sec_enabled(2 * dimm + 1, ctrl, pvt))
  1008. cs_mode |= CS_ODD_SECONDARY;
  1009. /*
  1010. * 3 Rank inteleaving support.
  1011. * There should be only three bases enabled and their two masks should
  1012. * be equal.
  1013. */
  1014. for_each_chip_select(base, ctrl, pvt)
  1015. count += csrow_enabled(base, ctrl, pvt);
  1016. if (count == 3 &&
  1017. pvt->csels[ctrl].csmasks[0] == pvt->csels[ctrl].csmasks[1]) {
  1018. edac_dbg(1, "3R interleaving in use.\n");
  1019. cs_mode |= CS_3R_INTERLEAVE;
  1020. }
  1021. return cs_mode;
  1022. }
  1023. static int calculate_cs_size(u32 mask, unsigned int cs_mode)
  1024. {
  1025. int msb, weight, num_zero_bits;
  1026. u32 deinterleaved_mask;
  1027. if (!mask)
  1028. return 0;
  1029. /*
  1030. * The number of zero bits in the mask is equal to the number of bits
  1031. * in a full mask minus the number of bits in the current mask.
  1032. *
  1033. * The MSB is the number of bits in the full mask because BIT[0] is
  1034. * always 0.
  1035. *
  1036. * In the special 3 Rank interleaving case, a single bit is flipped
  1037. * without swapping with the most significant bit. This can be handled
  1038. * by keeping the MSB where it is and ignoring the single zero bit.
  1039. */
  1040. msb = fls(mask) - 1;
  1041. weight = hweight_long(mask);
  1042. num_zero_bits = msb - weight - !!(cs_mode & CS_3R_INTERLEAVE);
  1043. /* Take the number of zero bits off from the top of the mask. */
  1044. deinterleaved_mask = GENMASK(msb - num_zero_bits, 1);
  1045. edac_dbg(1, " Deinterleaved AddrMask: 0x%x\n", deinterleaved_mask);
  1046. return (deinterleaved_mask >> 2) + 1;
  1047. }
  1048. static int __addr_mask_to_cs_size(u32 addr_mask, u32 addr_mask_sec,
  1049. unsigned int cs_mode, int csrow_nr, int dimm)
  1050. {
  1051. int size;
  1052. edac_dbg(1, "CS%d DIMM%d AddrMasks:\n", csrow_nr, dimm);
  1053. edac_dbg(1, " Primary AddrMask: 0x%x\n", addr_mask);
  1054. /* Register [31:1] = Address [39:9]. Size is in kBs here. */
  1055. size = calculate_cs_size(addr_mask, cs_mode);
  1056. edac_dbg(1, " Secondary AddrMask: 0x%x\n", addr_mask_sec);
  1057. size += calculate_cs_size(addr_mask_sec, cs_mode);
  1058. /* Return size in MBs. */
  1059. return size >> 10;
  1060. }
  1061. static int umc_addr_mask_to_cs_size(struct amd64_pvt *pvt, u8 umc,
  1062. unsigned int cs_mode, int csrow_nr)
  1063. {
  1064. u32 addr_mask = 0, addr_mask_sec = 0;
  1065. int cs_mask_nr = csrow_nr;
  1066. int dimm, size = 0;
  1067. /* No Chip Selects are enabled. */
  1068. if (!cs_mode)
  1069. return size;
  1070. /* Requested size of an even CS but none are enabled. */
  1071. if (!(cs_mode & CS_EVEN) && !(csrow_nr & 1))
  1072. return size;
  1073. /* Requested size of an odd CS but none are enabled. */
  1074. if (!(cs_mode & CS_ODD) && (csrow_nr & 1))
  1075. return size;
  1076. /*
  1077. * Family 17h introduced systems with one mask per DIMM,
  1078. * and two Chip Selects per DIMM.
  1079. *
  1080. * CS0 and CS1 -> MASK0 / DIMM0
  1081. * CS2 and CS3 -> MASK1 / DIMM1
  1082. *
  1083. * Family 19h Model 10h introduced systems with one mask per Chip Select,
  1084. * and two Chip Selects per DIMM.
  1085. *
  1086. * CS0 -> MASK0 -> DIMM0
  1087. * CS1 -> MASK1 -> DIMM0
  1088. * CS2 -> MASK2 -> DIMM1
  1089. * CS3 -> MASK3 -> DIMM1
  1090. *
  1091. * Keep the mask number equal to the Chip Select number for newer systems,
  1092. * and shift the mask number for older systems.
  1093. */
  1094. dimm = csrow_nr >> 1;
  1095. if (!pvt->flags.zn_regs_v2)
  1096. cs_mask_nr >>= 1;
  1097. if (cs_mode & (CS_EVEN_PRIMARY | CS_ODD_PRIMARY))
  1098. addr_mask = pvt->csels[umc].csmasks[cs_mask_nr];
  1099. if (cs_mode & (CS_EVEN_SECONDARY | CS_ODD_SECONDARY))
  1100. addr_mask_sec = pvt->csels[umc].csmasks_sec[cs_mask_nr];
  1101. return __addr_mask_to_cs_size(addr_mask, addr_mask_sec, cs_mode, csrow_nr, dimm);
  1102. }
  1103. static void umc_debug_display_dimm_sizes(struct amd64_pvt *pvt, u8 ctrl)
  1104. {
  1105. int dimm, size0, size1, cs0, cs1, cs_mode;
  1106. edac_printk(KERN_DEBUG, EDAC_MC, "UMC%d chip selects:\n", ctrl);
  1107. for (dimm = 0; dimm < 2; dimm++) {
  1108. cs0 = dimm * 2;
  1109. cs1 = dimm * 2 + 1;
  1110. cs_mode = umc_get_cs_mode(dimm, ctrl, pvt);
  1111. size0 = umc_addr_mask_to_cs_size(pvt, ctrl, cs_mode, cs0);
  1112. size1 = umc_addr_mask_to_cs_size(pvt, ctrl, cs_mode, cs1);
  1113. amd64_info(EDAC_MC ": %d: %5dMB %d: %5dMB\n",
  1114. cs0, size0,
  1115. cs1, size1);
  1116. }
  1117. }
  1118. static void umc_dump_misc_regs(struct amd64_pvt *pvt)
  1119. {
  1120. struct amd64_umc *umc;
  1121. u32 i;
  1122. for_each_umc(i) {
  1123. umc = &pvt->umc[i];
  1124. edac_dbg(1, "UMC%d DIMM cfg: 0x%x\n", i, umc->dimm_cfg);
  1125. edac_dbg(1, "UMC%d UMC cfg: 0x%x\n", i, umc->umc_cfg);
  1126. edac_dbg(1, "UMC%d SDP ctrl: 0x%x\n", i, umc->sdp_ctrl);
  1127. edac_dbg(1, "UMC%d ECC ctrl: 0x%x\n", i, umc->ecc_ctrl);
  1128. edac_dbg(1, "UMC%d UMC cap high: 0x%x\n", i, umc->umc_cap_hi);
  1129. edac_dbg(1, "UMC%d ECC capable: %s, ChipKill ECC capable: %s\n",
  1130. i, str_yes_no(umc->umc_cap_hi & BIT(30)),
  1131. str_yes_no(umc->umc_cap_hi & BIT(31)));
  1132. edac_dbg(1, "UMC%d All DIMMs support ECC: %s\n",
  1133. i, str_yes_no(umc->umc_cfg & BIT(12)));
  1134. edac_dbg(1, "UMC%d x4 DIMMs present: %s\n",
  1135. i, str_yes_no(umc->dimm_cfg & BIT(6)));
  1136. edac_dbg(1, "UMC%d x16 DIMMs present: %s\n",
  1137. i, str_yes_no(umc->dimm_cfg & BIT(7)));
  1138. umc_debug_display_dimm_sizes(pvt, i);
  1139. }
  1140. }
  1141. static void dct_dump_misc_regs(struct amd64_pvt *pvt)
  1142. {
  1143. edac_dbg(1, "F3xE8 (NB Cap): 0x%08x\n", pvt->nbcap);
  1144. edac_dbg(1, " NB two channel DRAM capable: %s\n",
  1145. str_yes_no(pvt->nbcap & NBCAP_DCT_DUAL));
  1146. edac_dbg(1, " ECC capable: %s, ChipKill ECC capable: %s\n",
  1147. str_yes_no(pvt->nbcap & NBCAP_SECDED),
  1148. str_yes_no(pvt->nbcap & NBCAP_CHIPKILL));
  1149. debug_dump_dramcfg_low(pvt, pvt->dclr0, 0);
  1150. edac_dbg(1, "F3xB0 (Online Spare): 0x%08x\n", pvt->online_spare);
  1151. edac_dbg(1, "F1xF0 (DRAM Hole Address): 0x%08x, base: 0x%08x, offset: 0x%08x\n",
  1152. pvt->dhar, dhar_base(pvt),
  1153. (pvt->fam == 0xf) ? k8_dhar_offset(pvt)
  1154. : f10_dhar_offset(pvt));
  1155. dct_debug_display_dimm_sizes(pvt, 0);
  1156. /* everything below this point is Fam10h and above */
  1157. if (pvt->fam == 0xf)
  1158. return;
  1159. dct_debug_display_dimm_sizes(pvt, 1);
  1160. /* Only if NOT ganged does dclr1 have valid info */
  1161. if (!dct_ganging_enabled(pvt))
  1162. debug_dump_dramcfg_low(pvt, pvt->dclr1, 1);
  1163. edac_dbg(1, " DramHoleValid: %s\n", str_yes_no(dhar_valid(pvt)));
  1164. amd64_info("using x%u syndromes.\n", pvt->ecc_sym_sz);
  1165. }
  1166. /*
  1167. * See BKDG, F2x[1,0][5C:40], F2[1,0][6C:60]
  1168. */
  1169. static void dct_prep_chip_selects(struct amd64_pvt *pvt)
  1170. {
  1171. if (pvt->fam == 0xf && pvt->ext_model < K8_REV_F) {
  1172. pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 8;
  1173. pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 8;
  1174. } else if (pvt->fam == 0x15 && pvt->model == 0x30) {
  1175. pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 4;
  1176. pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 2;
  1177. } else {
  1178. pvt->csels[0].b_cnt = pvt->csels[1].b_cnt = 8;
  1179. pvt->csels[0].m_cnt = pvt->csels[1].m_cnt = 4;
  1180. }
  1181. }
  1182. static void umc_prep_chip_selects(struct amd64_pvt *pvt)
  1183. {
  1184. int umc;
  1185. for_each_umc(umc) {
  1186. pvt->csels[umc].b_cnt = 4;
  1187. pvt->csels[umc].m_cnt = pvt->flags.zn_regs_v2 ? 4 : 2;
  1188. }
  1189. }
  1190. static void umc_read_base_mask(struct amd64_pvt *pvt)
  1191. {
  1192. u32 umc_base_reg, umc_base_reg_sec;
  1193. u32 umc_mask_reg, umc_mask_reg_sec;
  1194. u32 base_reg, base_reg_sec;
  1195. u32 mask_reg, mask_reg_sec;
  1196. u32 *base, *base_sec;
  1197. u32 *mask, *mask_sec;
  1198. int cs, umc;
  1199. u32 tmp;
  1200. for_each_umc(umc) {
  1201. umc_base_reg = get_umc_base(umc) + UMCCH_BASE_ADDR;
  1202. umc_base_reg_sec = get_umc_base(umc) + UMCCH_BASE_ADDR_SEC;
  1203. for_each_chip_select(cs, umc, pvt) {
  1204. base = &pvt->csels[umc].csbases[cs];
  1205. base_sec = &pvt->csels[umc].csbases_sec[cs];
  1206. base_reg = umc_base_reg + (cs * 4);
  1207. base_reg_sec = umc_base_reg_sec + (cs * 4);
  1208. if (!amd_smn_read(pvt->mc_node_id, base_reg, &tmp)) {
  1209. *base = tmp;
  1210. edac_dbg(0, " DCSB%d[%d]=0x%08x reg: 0x%x\n",
  1211. umc, cs, *base, base_reg);
  1212. }
  1213. if (!amd_smn_read(pvt->mc_node_id, base_reg_sec, &tmp)) {
  1214. *base_sec = tmp;
  1215. edac_dbg(0, " DCSB_SEC%d[%d]=0x%08x reg: 0x%x\n",
  1216. umc, cs, *base_sec, base_reg_sec);
  1217. }
  1218. }
  1219. umc_mask_reg = get_umc_base(umc) + UMCCH_ADDR_MASK;
  1220. umc_mask_reg_sec = get_umc_base(umc) + get_umc_reg(pvt, UMCCH_ADDR_MASK_SEC);
  1221. for_each_chip_select_mask(cs, umc, pvt) {
  1222. mask = &pvt->csels[umc].csmasks[cs];
  1223. mask_sec = &pvt->csels[umc].csmasks_sec[cs];
  1224. mask_reg = umc_mask_reg + (cs * 4);
  1225. mask_reg_sec = umc_mask_reg_sec + (cs * 4);
  1226. if (!amd_smn_read(pvt->mc_node_id, mask_reg, &tmp)) {
  1227. *mask = tmp;
  1228. edac_dbg(0, " DCSM%d[%d]=0x%08x reg: 0x%x\n",
  1229. umc, cs, *mask, mask_reg);
  1230. }
  1231. if (!amd_smn_read(pvt->mc_node_id, mask_reg_sec, &tmp)) {
  1232. *mask_sec = tmp;
  1233. edac_dbg(0, " DCSM_SEC%d[%d]=0x%08x reg: 0x%x\n",
  1234. umc, cs, *mask_sec, mask_reg_sec);
  1235. }
  1236. }
  1237. }
  1238. }
  1239. /*
  1240. * Function 2 Offset F10_DCSB0; read in the DCS Base and DCS Mask registers
  1241. */
  1242. static void dct_read_base_mask(struct amd64_pvt *pvt)
  1243. {
  1244. int cs;
  1245. for_each_chip_select(cs, 0, pvt) {
  1246. int reg0 = DCSB0 + (cs * 4);
  1247. int reg1 = DCSB1 + (cs * 4);
  1248. u32 *base0 = &pvt->csels[0].csbases[cs];
  1249. u32 *base1 = &pvt->csels[1].csbases[cs];
  1250. if (!amd64_read_dct_pci_cfg(pvt, 0, reg0, base0))
  1251. edac_dbg(0, " DCSB0[%d]=0x%08x reg: F2x%x\n",
  1252. cs, *base0, reg0);
  1253. if (pvt->fam == 0xf)
  1254. continue;
  1255. if (!amd64_read_dct_pci_cfg(pvt, 1, reg0, base1))
  1256. edac_dbg(0, " DCSB1[%d]=0x%08x reg: F2x%x\n",
  1257. cs, *base1, (pvt->fam == 0x10) ? reg1
  1258. : reg0);
  1259. }
  1260. for_each_chip_select_mask(cs, 0, pvt) {
  1261. int reg0 = DCSM0 + (cs * 4);
  1262. int reg1 = DCSM1 + (cs * 4);
  1263. u32 *mask0 = &pvt->csels[0].csmasks[cs];
  1264. u32 *mask1 = &pvt->csels[1].csmasks[cs];
  1265. if (!amd64_read_dct_pci_cfg(pvt, 0, reg0, mask0))
  1266. edac_dbg(0, " DCSM0[%d]=0x%08x reg: F2x%x\n",
  1267. cs, *mask0, reg0);
  1268. if (pvt->fam == 0xf)
  1269. continue;
  1270. if (!amd64_read_dct_pci_cfg(pvt, 1, reg0, mask1))
  1271. edac_dbg(0, " DCSM1[%d]=0x%08x reg: F2x%x\n",
  1272. cs, *mask1, (pvt->fam == 0x10) ? reg1
  1273. : reg0);
  1274. }
  1275. }
  1276. static void umc_determine_memory_type(struct amd64_pvt *pvt)
  1277. {
  1278. struct amd64_umc *umc;
  1279. u32 i;
  1280. for_each_umc(i) {
  1281. umc = &pvt->umc[i];
  1282. if (!(umc->sdp_ctrl & UMC_SDP_INIT)) {
  1283. umc->dram_type = MEM_EMPTY;
  1284. continue;
  1285. }
  1286. /*
  1287. * Check if the system supports the "DDR Type" field in UMC Config
  1288. * and has DDR5 DIMMs in use.
  1289. */
  1290. if (pvt->flags.zn_regs_v2 && ((umc->umc_cfg & GENMASK(2, 0)) == 0x1)) {
  1291. if (umc->dimm_cfg & BIT(5))
  1292. umc->dram_type = MEM_LRDDR5;
  1293. else if (umc->dimm_cfg & BIT(4))
  1294. umc->dram_type = MEM_RDDR5;
  1295. else
  1296. umc->dram_type = MEM_DDR5;
  1297. } else {
  1298. if (umc->dimm_cfg & BIT(5))
  1299. umc->dram_type = MEM_LRDDR4;
  1300. else if (umc->dimm_cfg & BIT(4))
  1301. umc->dram_type = MEM_RDDR4;
  1302. else
  1303. umc->dram_type = MEM_DDR4;
  1304. }
  1305. edac_dbg(1, " UMC%d DIMM type: %s\n", i, edac_mem_types[umc->dram_type]);
  1306. }
  1307. }
  1308. static void dct_determine_memory_type(struct amd64_pvt *pvt)
  1309. {
  1310. u32 dram_ctrl, dcsm;
  1311. switch (pvt->fam) {
  1312. case 0xf:
  1313. if (pvt->ext_model >= K8_REV_F)
  1314. goto ddr3;
  1315. pvt->dram_type = (pvt->dclr0 & BIT(18)) ? MEM_DDR : MEM_RDDR;
  1316. return;
  1317. case 0x10:
  1318. if (pvt->dchr0 & DDR3_MODE)
  1319. goto ddr3;
  1320. pvt->dram_type = (pvt->dclr0 & BIT(16)) ? MEM_DDR2 : MEM_RDDR2;
  1321. return;
  1322. case 0x15:
  1323. if (pvt->model < 0x60)
  1324. goto ddr3;
  1325. /*
  1326. * Model 0x60h needs special handling:
  1327. *
  1328. * We use a Chip Select value of '0' to obtain dcsm.
  1329. * Theoretically, it is possible to populate LRDIMMs of different
  1330. * 'Rank' value on a DCT. But this is not the common case. So,
  1331. * it's reasonable to assume all DIMMs are going to be of same
  1332. * 'type' until proven otherwise.
  1333. */
  1334. amd64_read_dct_pci_cfg(pvt, 0, DRAM_CONTROL, &dram_ctrl);
  1335. dcsm = pvt->csels[0].csmasks[0];
  1336. if (((dram_ctrl >> 8) & 0x7) == 0x2)
  1337. pvt->dram_type = MEM_DDR4;
  1338. else if (pvt->dclr0 & BIT(16))
  1339. pvt->dram_type = MEM_DDR3;
  1340. else if (dcsm & 0x3)
  1341. pvt->dram_type = MEM_LRDDR3;
  1342. else
  1343. pvt->dram_type = MEM_RDDR3;
  1344. return;
  1345. case 0x16:
  1346. goto ddr3;
  1347. default:
  1348. WARN(1, KERN_ERR "%s: Family??? 0x%x\n", __func__, pvt->fam);
  1349. pvt->dram_type = MEM_EMPTY;
  1350. }
  1351. edac_dbg(1, " DIMM type: %s\n", edac_mem_types[pvt->dram_type]);
  1352. return;
  1353. ddr3:
  1354. pvt->dram_type = (pvt->dclr0 & BIT(16)) ? MEM_DDR3 : MEM_RDDR3;
  1355. }
  1356. /* On F10h and later ErrAddr is MC4_ADDR[47:1] */
  1357. static u64 get_error_address(struct amd64_pvt *pvt, struct mce *m)
  1358. {
  1359. u16 mce_nid = topology_amd_node_id(m->extcpu);
  1360. struct mem_ctl_info *mci;
  1361. u8 start_bit = 1;
  1362. u8 end_bit = 47;
  1363. u64 addr;
  1364. mci = edac_mc_find(mce_nid);
  1365. if (!mci)
  1366. return 0;
  1367. pvt = mci->pvt_info;
  1368. if (pvt->fam == 0xf) {
  1369. start_bit = 3;
  1370. end_bit = 39;
  1371. }
  1372. addr = m->addr & GENMASK_ULL(end_bit, start_bit);
  1373. /*
  1374. * Erratum 637 workaround
  1375. */
  1376. if (pvt->fam == 0x15) {
  1377. u64 cc6_base, tmp_addr;
  1378. u32 tmp;
  1379. u8 intlv_en;
  1380. if ((addr & GENMASK_ULL(47, 24)) >> 24 != 0x00fdf7)
  1381. return addr;
  1382. amd64_read_pci_cfg(pvt->F1, DRAM_LOCAL_NODE_LIM, &tmp);
  1383. intlv_en = tmp >> 21 & 0x7;
  1384. /* add [47:27] + 3 trailing bits */
  1385. cc6_base = (tmp & GENMASK_ULL(20, 0)) << 3;
  1386. /* reverse and add DramIntlvEn */
  1387. cc6_base |= intlv_en ^ 0x7;
  1388. /* pin at [47:24] */
  1389. cc6_base <<= 24;
  1390. if (!intlv_en)
  1391. return cc6_base | (addr & GENMASK_ULL(23, 0));
  1392. amd64_read_pci_cfg(pvt->F1, DRAM_LOCAL_NODE_BASE, &tmp);
  1393. /* faster log2 */
  1394. tmp_addr = (addr & GENMASK_ULL(23, 12)) << __fls(intlv_en + 1);
  1395. /* OR DramIntlvSel into bits [14:12] */
  1396. tmp_addr |= (tmp & GENMASK_ULL(23, 21)) >> 9;
  1397. /* add remaining [11:0] bits from original MC4_ADDR */
  1398. tmp_addr |= addr & GENMASK_ULL(11, 0);
  1399. return cc6_base | tmp_addr;
  1400. }
  1401. return addr;
  1402. }
  1403. static struct pci_dev *pci_get_related_function(unsigned int vendor,
  1404. unsigned int device,
  1405. struct pci_dev *related)
  1406. {
  1407. struct pci_dev *dev = NULL;
  1408. while ((dev = pci_get_device(vendor, device, dev))) {
  1409. if (pci_domain_nr(dev->bus) == pci_domain_nr(related->bus) &&
  1410. (dev->bus->number == related->bus->number) &&
  1411. (PCI_SLOT(dev->devfn) == PCI_SLOT(related->devfn)))
  1412. break;
  1413. }
  1414. return dev;
  1415. }
  1416. static void read_dram_base_limit_regs(struct amd64_pvt *pvt, unsigned range)
  1417. {
  1418. struct amd_northbridge *nb;
  1419. struct pci_dev *f1 = NULL;
  1420. unsigned int pci_func;
  1421. int off = range << 3;
  1422. u32 llim;
  1423. amd64_read_pci_cfg(pvt->F1, DRAM_BASE_LO + off, &pvt->ranges[range].base.lo);
  1424. amd64_read_pci_cfg(pvt->F1, DRAM_LIMIT_LO + off, &pvt->ranges[range].lim.lo);
  1425. if (pvt->fam == 0xf)
  1426. return;
  1427. if (!dram_rw(pvt, range))
  1428. return;
  1429. amd64_read_pci_cfg(pvt->F1, DRAM_BASE_HI + off, &pvt->ranges[range].base.hi);
  1430. amd64_read_pci_cfg(pvt->F1, DRAM_LIMIT_HI + off, &pvt->ranges[range].lim.hi);
  1431. /* F15h: factor in CC6 save area by reading dst node's limit reg */
  1432. if (pvt->fam != 0x15)
  1433. return;
  1434. nb = node_to_amd_nb(dram_dst_node(pvt, range));
  1435. if (WARN_ON(!nb))
  1436. return;
  1437. if (pvt->model == 0x60)
  1438. pci_func = PCI_DEVICE_ID_AMD_15H_M60H_NB_F1;
  1439. else if (pvt->model == 0x30)
  1440. pci_func = PCI_DEVICE_ID_AMD_15H_M30H_NB_F1;
  1441. else
  1442. pci_func = PCI_DEVICE_ID_AMD_15H_NB_F1;
  1443. f1 = pci_get_related_function(nb->misc->vendor, pci_func, nb->misc);
  1444. if (WARN_ON(!f1))
  1445. return;
  1446. amd64_read_pci_cfg(f1, DRAM_LOCAL_NODE_LIM, &llim);
  1447. pvt->ranges[range].lim.lo &= GENMASK_ULL(15, 0);
  1448. /* {[39:27],111b} */
  1449. pvt->ranges[range].lim.lo |= ((llim & 0x1fff) << 3 | 0x7) << 16;
  1450. pvt->ranges[range].lim.hi &= GENMASK_ULL(7, 0);
  1451. /* [47:40] */
  1452. pvt->ranges[range].lim.hi |= llim >> 13;
  1453. pci_dev_put(f1);
  1454. }
  1455. static void k8_map_sysaddr_to_csrow(struct mem_ctl_info *mci, u64 sys_addr,
  1456. struct err_info *err)
  1457. {
  1458. struct amd64_pvt *pvt = mci->pvt_info;
  1459. error_address_to_page_and_offset(sys_addr, err);
  1460. /*
  1461. * Find out which node the error address belongs to. This may be
  1462. * different from the node that detected the error.
  1463. */
  1464. err->src_mci = find_mc_by_sys_addr(mci, sys_addr);
  1465. if (!err->src_mci) {
  1466. amd64_mc_err(mci, "failed to map error addr 0x%lx to a node\n",
  1467. (unsigned long)sys_addr);
  1468. err->err_code = ERR_NODE;
  1469. return;
  1470. }
  1471. /* Now map the sys_addr to a CSROW */
  1472. err->csrow = sys_addr_to_csrow(err->src_mci, sys_addr);
  1473. if (err->csrow < 0) {
  1474. err->err_code = ERR_CSROW;
  1475. return;
  1476. }
  1477. /* CHIPKILL enabled */
  1478. if (pvt->nbcfg & NBCFG_CHIPKILL) {
  1479. err->channel = get_channel_from_ecc_syndrome(mci, err->syndrome);
  1480. if (err->channel < 0) {
  1481. /*
  1482. * Syndrome didn't map, so we don't know which of the
  1483. * 2 DIMMs is in error. So we need to ID 'both' of them
  1484. * as suspect.
  1485. */
  1486. amd64_mc_warn(err->src_mci, "unknown syndrome 0x%04x - "
  1487. "possible error reporting race\n",
  1488. err->syndrome);
  1489. err->err_code = ERR_CHANNEL;
  1490. return;
  1491. }
  1492. } else {
  1493. /*
  1494. * non-chipkill ecc mode
  1495. *
  1496. * The k8 documentation is unclear about how to determine the
  1497. * channel number when using non-chipkill memory. This method
  1498. * was obtained from email communication with someone at AMD.
  1499. * (Wish the email was placed in this comment - norsk)
  1500. */
  1501. err->channel = ((sys_addr & BIT(3)) != 0);
  1502. }
  1503. }
  1504. static int ddr2_cs_size(unsigned i, bool dct_width)
  1505. {
  1506. unsigned shift = 0;
  1507. if (i <= 2)
  1508. shift = i;
  1509. else if (!(i & 0x1))
  1510. shift = i >> 1;
  1511. else
  1512. shift = (i + 1) >> 1;
  1513. return 128 << (shift + !!dct_width);
  1514. }
  1515. static int k8_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
  1516. unsigned cs_mode, int cs_mask_nr)
  1517. {
  1518. u32 dclr = dct ? pvt->dclr1 : pvt->dclr0;
  1519. if (pvt->ext_model >= K8_REV_F) {
  1520. WARN_ON(cs_mode > 11);
  1521. return ddr2_cs_size(cs_mode, dclr & WIDTH_128);
  1522. }
  1523. else if (pvt->ext_model >= K8_REV_D) {
  1524. unsigned diff;
  1525. WARN_ON(cs_mode > 10);
  1526. /*
  1527. * the below calculation, besides trying to win an obfuscated C
  1528. * contest, maps cs_mode values to DIMM chip select sizes. The
  1529. * mappings are:
  1530. *
  1531. * cs_mode CS size (mb)
  1532. * ======= ============
  1533. * 0 32
  1534. * 1 64
  1535. * 2 128
  1536. * 3 128
  1537. * 4 256
  1538. * 5 512
  1539. * 6 256
  1540. * 7 512
  1541. * 8 1024
  1542. * 9 1024
  1543. * 10 2048
  1544. *
  1545. * Basically, it calculates a value with which to shift the
  1546. * smallest CS size of 32MB.
  1547. *
  1548. * ddr[23]_cs_size have a similar purpose.
  1549. */
  1550. diff = cs_mode/3 + (unsigned)(cs_mode > 5);
  1551. return 32 << (cs_mode - diff);
  1552. }
  1553. else {
  1554. WARN_ON(cs_mode > 6);
  1555. return 32 << cs_mode;
  1556. }
  1557. }
  1558. static int ddr3_cs_size(unsigned i, bool dct_width)
  1559. {
  1560. unsigned shift = 0;
  1561. int cs_size = 0;
  1562. if (i == 0 || i == 3 || i == 4)
  1563. cs_size = -1;
  1564. else if (i <= 2)
  1565. shift = i;
  1566. else if (i == 12)
  1567. shift = 7;
  1568. else if (!(i & 0x1))
  1569. shift = i >> 1;
  1570. else
  1571. shift = (i + 1) >> 1;
  1572. if (cs_size != -1)
  1573. cs_size = (128 * (1 << !!dct_width)) << shift;
  1574. return cs_size;
  1575. }
  1576. static int ddr3_lrdimm_cs_size(unsigned i, unsigned rank_multiply)
  1577. {
  1578. unsigned shift = 0;
  1579. int cs_size = 0;
  1580. if (i < 4 || i == 6)
  1581. cs_size = -1;
  1582. else if (i == 12)
  1583. shift = 7;
  1584. else if (!(i & 0x1))
  1585. shift = i >> 1;
  1586. else
  1587. shift = (i + 1) >> 1;
  1588. if (cs_size != -1)
  1589. cs_size = rank_multiply * (128 << shift);
  1590. return cs_size;
  1591. }
  1592. static int ddr4_cs_size(unsigned i)
  1593. {
  1594. int cs_size = 0;
  1595. if (i == 0)
  1596. cs_size = -1;
  1597. else if (i == 1)
  1598. cs_size = 1024;
  1599. else
  1600. /* Min cs_size = 1G */
  1601. cs_size = 1024 * (1 << (i >> 1));
  1602. return cs_size;
  1603. }
  1604. static int f10_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
  1605. unsigned cs_mode, int cs_mask_nr)
  1606. {
  1607. u32 dclr = dct ? pvt->dclr1 : pvt->dclr0;
  1608. WARN_ON(cs_mode > 11);
  1609. if (pvt->dchr0 & DDR3_MODE || pvt->dchr1 & DDR3_MODE)
  1610. return ddr3_cs_size(cs_mode, dclr & WIDTH_128);
  1611. else
  1612. return ddr2_cs_size(cs_mode, dclr & WIDTH_128);
  1613. }
  1614. /*
  1615. * F15h supports only 64bit DCT interfaces
  1616. */
  1617. static int f15_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
  1618. unsigned cs_mode, int cs_mask_nr)
  1619. {
  1620. WARN_ON(cs_mode > 12);
  1621. return ddr3_cs_size(cs_mode, false);
  1622. }
  1623. /* F15h M60h supports DDR4 mapping as well.. */
  1624. static int f15_m60h_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
  1625. unsigned cs_mode, int cs_mask_nr)
  1626. {
  1627. int cs_size;
  1628. u32 dcsm = pvt->csels[dct].csmasks[cs_mask_nr];
  1629. WARN_ON(cs_mode > 12);
  1630. if (pvt->dram_type == MEM_DDR4) {
  1631. if (cs_mode > 9)
  1632. return -1;
  1633. cs_size = ddr4_cs_size(cs_mode);
  1634. } else if (pvt->dram_type == MEM_LRDDR3) {
  1635. unsigned rank_multiply = dcsm & 0xf;
  1636. if (rank_multiply == 3)
  1637. rank_multiply = 4;
  1638. cs_size = ddr3_lrdimm_cs_size(cs_mode, rank_multiply);
  1639. } else {
  1640. /* Minimum cs size is 512mb for F15hM60h*/
  1641. if (cs_mode == 0x1)
  1642. return -1;
  1643. cs_size = ddr3_cs_size(cs_mode, false);
  1644. }
  1645. return cs_size;
  1646. }
  1647. /*
  1648. * F16h and F15h model 30h have only limited cs_modes.
  1649. */
  1650. static int f16_dbam_to_chip_select(struct amd64_pvt *pvt, u8 dct,
  1651. unsigned cs_mode, int cs_mask_nr)
  1652. {
  1653. WARN_ON(cs_mode > 12);
  1654. if (cs_mode == 6 || cs_mode == 8 ||
  1655. cs_mode == 9 || cs_mode == 12)
  1656. return -1;
  1657. else
  1658. return ddr3_cs_size(cs_mode, false);
  1659. }
  1660. static void read_dram_ctl_register(struct amd64_pvt *pvt)
  1661. {
  1662. if (pvt->fam == 0xf)
  1663. return;
  1664. if (!amd64_read_pci_cfg(pvt->F2, DCT_SEL_LO, &pvt->dct_sel_lo)) {
  1665. edac_dbg(0, "F2x110 (DCTSelLow): 0x%08x, High range addrs at: 0x%x\n",
  1666. pvt->dct_sel_lo, dct_sel_baseaddr(pvt));
  1667. edac_dbg(0, " DCTs operate in %s mode\n",
  1668. (dct_ganging_enabled(pvt) ? "ganged" : "unganged"));
  1669. if (!dct_ganging_enabled(pvt))
  1670. edac_dbg(0, " Address range split per DCT: %s\n",
  1671. str_yes_no(dct_high_range_enabled(pvt)));
  1672. edac_dbg(0, " data interleave for ECC: %s, DRAM cleared since last warm reset: %s\n",
  1673. str_enabled_disabled(dct_data_intlv_enabled(pvt)),
  1674. str_yes_no(dct_memory_cleared(pvt)));
  1675. edac_dbg(0, " channel interleave: %s, "
  1676. "interleave bits selector: 0x%x\n",
  1677. str_enabled_disabled(dct_interleave_enabled(pvt)),
  1678. dct_sel_interleave_addr(pvt));
  1679. }
  1680. amd64_read_pci_cfg(pvt->F2, DCT_SEL_HI, &pvt->dct_sel_hi);
  1681. }
  1682. /*
  1683. * Determine channel (DCT) based on the interleaving mode (see F15h M30h BKDG,
  1684. * 2.10.12 Memory Interleaving Modes).
  1685. */
  1686. static u8 f15_m30h_determine_channel(struct amd64_pvt *pvt, u64 sys_addr,
  1687. u8 intlv_en, int num_dcts_intlv,
  1688. u32 dct_sel)
  1689. {
  1690. u8 channel = 0;
  1691. u8 select;
  1692. if (!(intlv_en))
  1693. return (u8)(dct_sel);
  1694. if (num_dcts_intlv == 2) {
  1695. select = (sys_addr >> 8) & 0x3;
  1696. channel = select ? 0x3 : 0;
  1697. } else if (num_dcts_intlv == 4) {
  1698. u8 intlv_addr = dct_sel_interleave_addr(pvt);
  1699. switch (intlv_addr) {
  1700. case 0x4:
  1701. channel = (sys_addr >> 8) & 0x3;
  1702. break;
  1703. case 0x5:
  1704. channel = (sys_addr >> 9) & 0x3;
  1705. break;
  1706. }
  1707. }
  1708. return channel;
  1709. }
  1710. /*
  1711. * Determine channel (DCT) based on the interleaving mode: F10h BKDG, 2.8.9 Memory
  1712. * Interleaving Modes.
  1713. */
  1714. static u8 f1x_determine_channel(struct amd64_pvt *pvt, u64 sys_addr,
  1715. bool hi_range_sel, u8 intlv_en)
  1716. {
  1717. u8 dct_sel_high = (pvt->dct_sel_lo >> 1) & 1;
  1718. if (dct_ganging_enabled(pvt))
  1719. return 0;
  1720. if (hi_range_sel)
  1721. return dct_sel_high;
  1722. /*
  1723. * see F2x110[DctSelIntLvAddr] - channel interleave mode
  1724. */
  1725. if (dct_interleave_enabled(pvt)) {
  1726. u8 intlv_addr = dct_sel_interleave_addr(pvt);
  1727. /* return DCT select function: 0=DCT0, 1=DCT1 */
  1728. if (!intlv_addr)
  1729. return sys_addr >> 6 & 1;
  1730. if (intlv_addr & 0x2) {
  1731. u8 shift = intlv_addr & 0x1 ? 9 : 6;
  1732. u32 temp = hweight_long((u32) ((sys_addr >> 16) & 0x1F)) & 1;
  1733. return ((sys_addr >> shift) & 1) ^ temp;
  1734. }
  1735. if (intlv_addr & 0x4) {
  1736. u8 shift = intlv_addr & 0x1 ? 9 : 8;
  1737. return (sys_addr >> shift) & 1;
  1738. }
  1739. return (sys_addr >> (12 + hweight8(intlv_en))) & 1;
  1740. }
  1741. if (dct_high_range_enabled(pvt))
  1742. return ~dct_sel_high & 1;
  1743. return 0;
  1744. }
  1745. /* Convert the sys_addr to the normalized DCT address */
  1746. static u64 f1x_get_norm_dct_addr(struct amd64_pvt *pvt, u8 range,
  1747. u64 sys_addr, bool hi_rng,
  1748. u32 dct_sel_base_addr)
  1749. {
  1750. u64 chan_off;
  1751. u64 dram_base = get_dram_base(pvt, range);
  1752. u64 hole_off = f10_dhar_offset(pvt);
  1753. u64 dct_sel_base_off = (u64)(pvt->dct_sel_hi & 0xFFFFFC00) << 16;
  1754. if (hi_rng) {
  1755. /*
  1756. * if
  1757. * base address of high range is below 4Gb
  1758. * (bits [47:27] at [31:11])
  1759. * DRAM address space on this DCT is hoisted above 4Gb &&
  1760. * sys_addr > 4Gb
  1761. *
  1762. * remove hole offset from sys_addr
  1763. * else
  1764. * remove high range offset from sys_addr
  1765. */
  1766. if ((!(dct_sel_base_addr >> 16) ||
  1767. dct_sel_base_addr < dhar_base(pvt)) &&
  1768. dhar_valid(pvt) &&
  1769. (sys_addr >= BIT_64(32)))
  1770. chan_off = hole_off;
  1771. else
  1772. chan_off = dct_sel_base_off;
  1773. } else {
  1774. /*
  1775. * if
  1776. * we have a valid hole &&
  1777. * sys_addr > 4Gb
  1778. *
  1779. * remove hole
  1780. * else
  1781. * remove dram base to normalize to DCT address
  1782. */
  1783. if (dhar_valid(pvt) && (sys_addr >= BIT_64(32)))
  1784. chan_off = hole_off;
  1785. else
  1786. chan_off = dram_base;
  1787. }
  1788. return (sys_addr & GENMASK_ULL(47,6)) - (chan_off & GENMASK_ULL(47,23));
  1789. }
  1790. /*
  1791. * checks if the csrow passed in is marked as SPARED, if so returns the new
  1792. * spare row
  1793. */
  1794. static int f10_process_possible_spare(struct amd64_pvt *pvt, u8 dct, int csrow)
  1795. {
  1796. int tmp_cs;
  1797. if (online_spare_swap_done(pvt, dct) &&
  1798. csrow == online_spare_bad_dramcs(pvt, dct)) {
  1799. for_each_chip_select(tmp_cs, dct, pvt) {
  1800. if (chip_select_base(tmp_cs, dct, pvt) & 0x2) {
  1801. csrow = tmp_cs;
  1802. break;
  1803. }
  1804. }
  1805. }
  1806. return csrow;
  1807. }
  1808. /*
  1809. * Iterate over the DRAM DCT "base" and "mask" registers looking for a
  1810. * SystemAddr match on the specified 'ChannelSelect' and 'NodeID'
  1811. *
  1812. * Return:
  1813. * -EINVAL: NOT FOUND
  1814. * 0..csrow = Chip-Select Row
  1815. */
  1816. static int f1x_lookup_addr_in_dct(u64 in_addr, u8 nid, u8 dct)
  1817. {
  1818. struct mem_ctl_info *mci;
  1819. struct amd64_pvt *pvt;
  1820. u64 cs_base, cs_mask;
  1821. int cs_found = -EINVAL;
  1822. int csrow;
  1823. mci = edac_mc_find(nid);
  1824. if (!mci)
  1825. return cs_found;
  1826. pvt = mci->pvt_info;
  1827. edac_dbg(1, "input addr: 0x%llx, DCT: %d\n", in_addr, dct);
  1828. for_each_chip_select(csrow, dct, pvt) {
  1829. if (!csrow_enabled(csrow, dct, pvt))
  1830. continue;
  1831. get_cs_base_and_mask(pvt, csrow, dct, &cs_base, &cs_mask);
  1832. edac_dbg(1, " CSROW=%d CSBase=0x%llx CSMask=0x%llx\n",
  1833. csrow, cs_base, cs_mask);
  1834. cs_mask = ~cs_mask;
  1835. edac_dbg(1, " (InputAddr & ~CSMask)=0x%llx (CSBase & ~CSMask)=0x%llx\n",
  1836. (in_addr & cs_mask), (cs_base & cs_mask));
  1837. if ((in_addr & cs_mask) == (cs_base & cs_mask)) {
  1838. if (pvt->fam == 0x15 && pvt->model >= 0x30) {
  1839. cs_found = csrow;
  1840. break;
  1841. }
  1842. cs_found = f10_process_possible_spare(pvt, dct, csrow);
  1843. edac_dbg(1, " MATCH csrow=%d\n", cs_found);
  1844. break;
  1845. }
  1846. }
  1847. return cs_found;
  1848. }
  1849. /*
  1850. * See F2x10C. Non-interleaved graphics framebuffer memory under the 16G is
  1851. * swapped with a region located at the bottom of memory so that the GPU can use
  1852. * the interleaved region and thus two channels.
  1853. */
  1854. static u64 f1x_swap_interleaved_region(struct amd64_pvt *pvt, u64 sys_addr)
  1855. {
  1856. u32 swap_reg, swap_base, swap_limit, rgn_size, tmp_addr;
  1857. if (pvt->fam == 0x10) {
  1858. /* only revC3 and revE have that feature */
  1859. if (pvt->model < 4 || (pvt->model < 0xa && pvt->stepping < 3))
  1860. return sys_addr;
  1861. }
  1862. amd64_read_pci_cfg(pvt->F2, SWAP_INTLV_REG, &swap_reg);
  1863. if (!(swap_reg & 0x1))
  1864. return sys_addr;
  1865. swap_base = (swap_reg >> 3) & 0x7f;
  1866. swap_limit = (swap_reg >> 11) & 0x7f;
  1867. rgn_size = (swap_reg >> 20) & 0x7f;
  1868. tmp_addr = sys_addr >> 27;
  1869. if (!(sys_addr >> 34) &&
  1870. (((tmp_addr >= swap_base) &&
  1871. (tmp_addr <= swap_limit)) ||
  1872. (tmp_addr < rgn_size)))
  1873. return sys_addr ^ (u64)swap_base << 27;
  1874. return sys_addr;
  1875. }
  1876. /* For a given @dram_range, check if @sys_addr falls within it. */
  1877. static int f1x_match_to_this_node(struct amd64_pvt *pvt, unsigned range,
  1878. u64 sys_addr, int *chan_sel)
  1879. {
  1880. int cs_found = -EINVAL;
  1881. u64 chan_addr;
  1882. u32 dct_sel_base;
  1883. u8 channel;
  1884. bool high_range = false;
  1885. u8 node_id = dram_dst_node(pvt, range);
  1886. u8 intlv_en = dram_intlv_en(pvt, range);
  1887. u32 intlv_sel = dram_intlv_sel(pvt, range);
  1888. edac_dbg(1, "(range %d) SystemAddr= 0x%llx Limit=0x%llx\n",
  1889. range, sys_addr, get_dram_limit(pvt, range));
  1890. if (dhar_valid(pvt) &&
  1891. dhar_base(pvt) <= sys_addr &&
  1892. sys_addr < BIT_64(32)) {
  1893. amd64_warn("Huh? Address is in the MMIO hole: 0x%016llx\n",
  1894. sys_addr);
  1895. return -EINVAL;
  1896. }
  1897. if (intlv_en && (intlv_sel != ((sys_addr >> 12) & intlv_en)))
  1898. return -EINVAL;
  1899. sys_addr = f1x_swap_interleaved_region(pvt, sys_addr);
  1900. dct_sel_base = dct_sel_baseaddr(pvt);
  1901. /*
  1902. * check whether addresses >= DctSelBaseAddr[47:27] are to be used to
  1903. * select between DCT0 and DCT1.
  1904. */
  1905. if (dct_high_range_enabled(pvt) &&
  1906. !dct_ganging_enabled(pvt) &&
  1907. ((sys_addr >> 27) >= (dct_sel_base >> 11)))
  1908. high_range = true;
  1909. channel = f1x_determine_channel(pvt, sys_addr, high_range, intlv_en);
  1910. chan_addr = f1x_get_norm_dct_addr(pvt, range, sys_addr,
  1911. high_range, dct_sel_base);
  1912. /* Remove node interleaving, see F1x120 */
  1913. if (intlv_en)
  1914. chan_addr = ((chan_addr >> (12 + hweight8(intlv_en))) << 12) |
  1915. (chan_addr & 0xfff);
  1916. /* remove channel interleave */
  1917. if (dct_interleave_enabled(pvt) &&
  1918. !dct_high_range_enabled(pvt) &&
  1919. !dct_ganging_enabled(pvt)) {
  1920. if (dct_sel_interleave_addr(pvt) != 1) {
  1921. if (dct_sel_interleave_addr(pvt) == 0x3)
  1922. /* hash 9 */
  1923. chan_addr = ((chan_addr >> 10) << 9) |
  1924. (chan_addr & 0x1ff);
  1925. else
  1926. /* A[6] or hash 6 */
  1927. chan_addr = ((chan_addr >> 7) << 6) |
  1928. (chan_addr & 0x3f);
  1929. } else
  1930. /* A[12] */
  1931. chan_addr = ((chan_addr >> 13) << 12) |
  1932. (chan_addr & 0xfff);
  1933. }
  1934. edac_dbg(1, " Normalized DCT addr: 0x%llx\n", chan_addr);
  1935. cs_found = f1x_lookup_addr_in_dct(chan_addr, node_id, channel);
  1936. if (cs_found >= 0)
  1937. *chan_sel = channel;
  1938. return cs_found;
  1939. }
  1940. static int f15_m30h_match_to_this_node(struct amd64_pvt *pvt, unsigned range,
  1941. u64 sys_addr, int *chan_sel)
  1942. {
  1943. int cs_found = -EINVAL;
  1944. int num_dcts_intlv = 0;
  1945. u64 chan_addr, chan_offset;
  1946. u64 dct_base, dct_limit;
  1947. u32 dct_cont_base_reg, dct_cont_limit_reg, tmp;
  1948. u8 channel, alias_channel, leg_mmio_hole, dct_sel, dct_offset_en;
  1949. u64 dhar_offset = f10_dhar_offset(pvt);
  1950. u8 intlv_addr = dct_sel_interleave_addr(pvt);
  1951. u8 node_id = dram_dst_node(pvt, range);
  1952. u8 intlv_en = dram_intlv_en(pvt, range);
  1953. amd64_read_pci_cfg(pvt->F1, DRAM_CONT_BASE, &dct_cont_base_reg);
  1954. amd64_read_pci_cfg(pvt->F1, DRAM_CONT_LIMIT, &dct_cont_limit_reg);
  1955. dct_offset_en = (u8) ((dct_cont_base_reg >> 3) & BIT(0));
  1956. dct_sel = (u8) ((dct_cont_base_reg >> 4) & 0x7);
  1957. edac_dbg(1, "(range %d) SystemAddr= 0x%llx Limit=0x%llx\n",
  1958. range, sys_addr, get_dram_limit(pvt, range));
  1959. if (!(get_dram_base(pvt, range) <= sys_addr) &&
  1960. !(get_dram_limit(pvt, range) >= sys_addr))
  1961. return -EINVAL;
  1962. if (dhar_valid(pvt) &&
  1963. dhar_base(pvt) <= sys_addr &&
  1964. sys_addr < BIT_64(32)) {
  1965. amd64_warn("Huh? Address is in the MMIO hole: 0x%016llx\n",
  1966. sys_addr);
  1967. return -EINVAL;
  1968. }
  1969. /* Verify sys_addr is within DCT Range. */
  1970. dct_base = (u64) dct_sel_baseaddr(pvt);
  1971. dct_limit = (dct_cont_limit_reg >> 11) & 0x1FFF;
  1972. if (!(dct_cont_base_reg & BIT(0)) &&
  1973. !(dct_base <= (sys_addr >> 27) &&
  1974. dct_limit >= (sys_addr >> 27)))
  1975. return -EINVAL;
  1976. /* Verify number of dct's that participate in channel interleaving. */
  1977. num_dcts_intlv = (int) hweight8(intlv_en);
  1978. if (!(num_dcts_intlv % 2 == 0) || (num_dcts_intlv > 4))
  1979. return -EINVAL;
  1980. if (pvt->model >= 0x60)
  1981. channel = f1x_determine_channel(pvt, sys_addr, false, intlv_en);
  1982. else
  1983. channel = f15_m30h_determine_channel(pvt, sys_addr, intlv_en,
  1984. num_dcts_intlv, dct_sel);
  1985. /* Verify we stay within the MAX number of channels allowed */
  1986. if (channel > 3)
  1987. return -EINVAL;
  1988. leg_mmio_hole = (u8) (dct_cont_base_reg >> 1 & BIT(0));
  1989. /* Get normalized DCT addr */
  1990. if (leg_mmio_hole && (sys_addr >= BIT_64(32)))
  1991. chan_offset = dhar_offset;
  1992. else
  1993. chan_offset = dct_base << 27;
  1994. chan_addr = sys_addr - chan_offset;
  1995. /* remove channel interleave */
  1996. if (num_dcts_intlv == 2) {
  1997. if (intlv_addr == 0x4)
  1998. chan_addr = ((chan_addr >> 9) << 8) |
  1999. (chan_addr & 0xff);
  2000. else if (intlv_addr == 0x5)
  2001. chan_addr = ((chan_addr >> 10) << 9) |
  2002. (chan_addr & 0x1ff);
  2003. else
  2004. return -EINVAL;
  2005. } else if (num_dcts_intlv == 4) {
  2006. if (intlv_addr == 0x4)
  2007. chan_addr = ((chan_addr >> 10) << 8) |
  2008. (chan_addr & 0xff);
  2009. else if (intlv_addr == 0x5)
  2010. chan_addr = ((chan_addr >> 11) << 9) |
  2011. (chan_addr & 0x1ff);
  2012. else
  2013. return -EINVAL;
  2014. }
  2015. if (dct_offset_en) {
  2016. amd64_read_pci_cfg(pvt->F1,
  2017. DRAM_CONT_HIGH_OFF + (int) channel * 4,
  2018. &tmp);
  2019. chan_addr += (u64) ((tmp >> 11) & 0xfff) << 27;
  2020. }
  2021. f15h_select_dct(pvt, channel);
  2022. edac_dbg(1, " Normalized DCT addr: 0x%llx\n", chan_addr);
  2023. /*
  2024. * Find Chip select:
  2025. * if channel = 3, then alias it to 1. This is because, in F15 M30h,
  2026. * there is support for 4 DCT's, but only 2 are currently functional.
  2027. * They are DCT0 and DCT3. But we have read all registers of DCT3 into
  2028. * pvt->csels[1]. So we need to use '1' here to get correct info.
  2029. * Refer F15 M30h BKDG Section 2.10 and 2.10.3 for clarifications.
  2030. */
  2031. alias_channel = (channel == 3) ? 1 : channel;
  2032. cs_found = f1x_lookup_addr_in_dct(chan_addr, node_id, alias_channel);
  2033. if (cs_found >= 0)
  2034. *chan_sel = alias_channel;
  2035. return cs_found;
  2036. }
  2037. static int f1x_translate_sysaddr_to_cs(struct amd64_pvt *pvt,
  2038. u64 sys_addr,
  2039. int *chan_sel)
  2040. {
  2041. int cs_found = -EINVAL;
  2042. unsigned range;
  2043. for (range = 0; range < DRAM_RANGES; range++) {
  2044. if (!dram_rw(pvt, range))
  2045. continue;
  2046. if (pvt->fam == 0x15 && pvt->model >= 0x30)
  2047. cs_found = f15_m30h_match_to_this_node(pvt, range,
  2048. sys_addr,
  2049. chan_sel);
  2050. else if ((get_dram_base(pvt, range) <= sys_addr) &&
  2051. (get_dram_limit(pvt, range) >= sys_addr)) {
  2052. cs_found = f1x_match_to_this_node(pvt, range,
  2053. sys_addr, chan_sel);
  2054. if (cs_found >= 0)
  2055. break;
  2056. }
  2057. }
  2058. return cs_found;
  2059. }
  2060. /*
  2061. * For reference see "2.8.5 Routing DRAM Requests" in F10 BKDG. This code maps
  2062. * a @sys_addr to NodeID, DCT (channel) and chip select (CSROW).
  2063. *
  2064. * The @sys_addr is usually an error address received from the hardware
  2065. * (MCX_ADDR).
  2066. */
  2067. static void f1x_map_sysaddr_to_csrow(struct mem_ctl_info *mci, u64 sys_addr,
  2068. struct err_info *err)
  2069. {
  2070. struct amd64_pvt *pvt = mci->pvt_info;
  2071. error_address_to_page_and_offset(sys_addr, err);
  2072. err->csrow = f1x_translate_sysaddr_to_cs(pvt, sys_addr, &err->channel);
  2073. if (err->csrow < 0) {
  2074. err->err_code = ERR_CSROW;
  2075. return;
  2076. }
  2077. /*
  2078. * We need the syndromes for channel detection only when we're
  2079. * ganged. Otherwise @chan should already contain the channel at
  2080. * this point.
  2081. */
  2082. if (dct_ganging_enabled(pvt))
  2083. err->channel = get_channel_from_ecc_syndrome(mci, err->syndrome);
  2084. }
  2085. /*
  2086. * These are tables of eigenvectors (one per line) which can be used for the
  2087. * construction of the syndrome tables. The modified syndrome search algorithm
  2088. * uses those to find the symbol in error and thus the DIMM.
  2089. *
  2090. * Algorithm courtesy of Ross LaFetra from AMD.
  2091. */
  2092. static const u16 x4_vectors[] = {
  2093. 0x2f57, 0x1afe, 0x66cc, 0xdd88,
  2094. 0x11eb, 0x3396, 0x7f4c, 0xeac8,
  2095. 0x0001, 0x0002, 0x0004, 0x0008,
  2096. 0x1013, 0x3032, 0x4044, 0x8088,
  2097. 0x106b, 0x30d6, 0x70fc, 0xe0a8,
  2098. 0x4857, 0xc4fe, 0x13cc, 0x3288,
  2099. 0x1ac5, 0x2f4a, 0x5394, 0xa1e8,
  2100. 0x1f39, 0x251e, 0xbd6c, 0x6bd8,
  2101. 0x15c1, 0x2a42, 0x89ac, 0x4758,
  2102. 0x2b03, 0x1602, 0x4f0c, 0xca08,
  2103. 0x1f07, 0x3a0e, 0x6b04, 0xbd08,
  2104. 0x8ba7, 0x465e, 0x244c, 0x1cc8,
  2105. 0x2b87, 0x164e, 0x642c, 0xdc18,
  2106. 0x40b9, 0x80de, 0x1094, 0x20e8,
  2107. 0x27db, 0x1eb6, 0x9dac, 0x7b58,
  2108. 0x11c1, 0x2242, 0x84ac, 0x4c58,
  2109. 0x1be5, 0x2d7a, 0x5e34, 0xa718,
  2110. 0x4b39, 0x8d1e, 0x14b4, 0x28d8,
  2111. 0x4c97, 0xc87e, 0x11fc, 0x33a8,
  2112. 0x8e97, 0x497e, 0x2ffc, 0x1aa8,
  2113. 0x16b3, 0x3d62, 0x4f34, 0x8518,
  2114. 0x1e2f, 0x391a, 0x5cac, 0xf858,
  2115. 0x1d9f, 0x3b7a, 0x572c, 0xfe18,
  2116. 0x15f5, 0x2a5a, 0x5264, 0xa3b8,
  2117. 0x1dbb, 0x3b66, 0x715c, 0xe3f8,
  2118. 0x4397, 0xc27e, 0x17fc, 0x3ea8,
  2119. 0x1617, 0x3d3e, 0x6464, 0xb8b8,
  2120. 0x23ff, 0x12aa, 0xab6c, 0x56d8,
  2121. 0x2dfb, 0x1ba6, 0x913c, 0x7328,
  2122. 0x185d, 0x2ca6, 0x7914, 0x9e28,
  2123. 0x171b, 0x3e36, 0x7d7c, 0xebe8,
  2124. 0x4199, 0x82ee, 0x19f4, 0x2e58,
  2125. 0x4807, 0xc40e, 0x130c, 0x3208,
  2126. 0x1905, 0x2e0a, 0x5804, 0xac08,
  2127. 0x213f, 0x132a, 0xadfc, 0x5ba8,
  2128. 0x19a9, 0x2efe, 0xb5cc, 0x6f88,
  2129. };
  2130. static const u16 x8_vectors[] = {
  2131. 0x0145, 0x028a, 0x2374, 0x43c8, 0xa1f0, 0x0520, 0x0a40, 0x1480,
  2132. 0x0211, 0x0422, 0x0844, 0x1088, 0x01b0, 0x44e0, 0x23c0, 0xed80,
  2133. 0x1011, 0x0116, 0x022c, 0x0458, 0x08b0, 0x8c60, 0x2740, 0x4e80,
  2134. 0x0411, 0x0822, 0x1044, 0x0158, 0x02b0, 0x2360, 0x46c0, 0xab80,
  2135. 0x0811, 0x1022, 0x012c, 0x0258, 0x04b0, 0x4660, 0x8cc0, 0x2780,
  2136. 0x2071, 0x40e2, 0xa0c4, 0x0108, 0x0210, 0x0420, 0x0840, 0x1080,
  2137. 0x4071, 0x80e2, 0x0104, 0x0208, 0x0410, 0x0820, 0x1040, 0x2080,
  2138. 0x8071, 0x0102, 0x0204, 0x0408, 0x0810, 0x1020, 0x2040, 0x4080,
  2139. 0x019d, 0x03d6, 0x136c, 0x2198, 0x50b0, 0xb2e0, 0x0740, 0x0e80,
  2140. 0x0189, 0x03ea, 0x072c, 0x0e58, 0x1cb0, 0x56e0, 0x37c0, 0xf580,
  2141. 0x01fd, 0x0376, 0x06ec, 0x0bb8, 0x1110, 0x2220, 0x4440, 0x8880,
  2142. 0x0163, 0x02c6, 0x1104, 0x0758, 0x0eb0, 0x2be0, 0x6140, 0xc280,
  2143. 0x02fd, 0x01c6, 0x0b5c, 0x1108, 0x07b0, 0x25a0, 0x8840, 0x6180,
  2144. 0x0801, 0x012e, 0x025c, 0x04b8, 0x1370, 0x26e0, 0x57c0, 0xb580,
  2145. 0x0401, 0x0802, 0x015c, 0x02b8, 0x22b0, 0x13e0, 0x7140, 0xe280,
  2146. 0x0201, 0x0402, 0x0804, 0x01b8, 0x11b0, 0x31a0, 0x8040, 0x7180,
  2147. 0x0101, 0x0202, 0x0404, 0x0808, 0x1010, 0x2020, 0x4040, 0x8080,
  2148. 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080,
  2149. 0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000, 0x8000,
  2150. };
  2151. static int decode_syndrome(u16 syndrome, const u16 *vectors, unsigned num_vecs,
  2152. unsigned v_dim)
  2153. {
  2154. unsigned int i, err_sym;
  2155. for (err_sym = 0; err_sym < num_vecs / v_dim; err_sym++) {
  2156. u16 s = syndrome;
  2157. unsigned v_idx = err_sym * v_dim;
  2158. unsigned v_end = (err_sym + 1) * v_dim;
  2159. /* walk over all 16 bits of the syndrome */
  2160. for (i = 1; i < (1U << 16); i <<= 1) {
  2161. /* if bit is set in that eigenvector... */
  2162. if (v_idx < v_end && vectors[v_idx] & i) {
  2163. u16 ev_comp = vectors[v_idx++];
  2164. /* ... and bit set in the modified syndrome, */
  2165. if (s & i) {
  2166. /* remove it. */
  2167. s ^= ev_comp;
  2168. if (!s)
  2169. return err_sym;
  2170. }
  2171. } else if (s & i)
  2172. /* can't get to zero, move to next symbol */
  2173. break;
  2174. }
  2175. }
  2176. edac_dbg(0, "syndrome(%x) not found\n", syndrome);
  2177. return -1;
  2178. }
  2179. static int map_err_sym_to_channel(int err_sym, int sym_size)
  2180. {
  2181. if (sym_size == 4)
  2182. switch (err_sym) {
  2183. case 0x20:
  2184. case 0x21:
  2185. return 0;
  2186. case 0x22:
  2187. case 0x23:
  2188. return 1;
  2189. default:
  2190. return err_sym >> 4;
  2191. }
  2192. /* x8 symbols */
  2193. else
  2194. switch (err_sym) {
  2195. /* imaginary bits not in a DIMM */
  2196. case 0x10:
  2197. WARN(1, KERN_ERR "Invalid error symbol: 0x%x\n",
  2198. err_sym);
  2199. return -1;
  2200. case 0x11:
  2201. return 0;
  2202. case 0x12:
  2203. return 1;
  2204. default:
  2205. return err_sym >> 3;
  2206. }
  2207. return -1;
  2208. }
  2209. static int get_channel_from_ecc_syndrome(struct mem_ctl_info *mci, u16 syndrome)
  2210. {
  2211. struct amd64_pvt *pvt = mci->pvt_info;
  2212. int err_sym = -1;
  2213. if (pvt->ecc_sym_sz == 8)
  2214. err_sym = decode_syndrome(syndrome, x8_vectors,
  2215. ARRAY_SIZE(x8_vectors),
  2216. pvt->ecc_sym_sz);
  2217. else if (pvt->ecc_sym_sz == 4)
  2218. err_sym = decode_syndrome(syndrome, x4_vectors,
  2219. ARRAY_SIZE(x4_vectors),
  2220. pvt->ecc_sym_sz);
  2221. else {
  2222. amd64_warn("Illegal syndrome type: %u\n", pvt->ecc_sym_sz);
  2223. return err_sym;
  2224. }
  2225. return map_err_sym_to_channel(err_sym, pvt->ecc_sym_sz);
  2226. }
  2227. static void __log_ecc_error(struct mem_ctl_info *mci, struct err_info *err,
  2228. u8 ecc_type)
  2229. {
  2230. enum hw_event_mc_err_type err_type;
  2231. const char *string;
  2232. if (ecc_type == 2)
  2233. err_type = HW_EVENT_ERR_CORRECTED;
  2234. else if (ecc_type == 1)
  2235. err_type = HW_EVENT_ERR_UNCORRECTED;
  2236. else if (ecc_type == 3)
  2237. err_type = HW_EVENT_ERR_DEFERRED;
  2238. else {
  2239. WARN(1, "Something is rotten in the state of Denmark.\n");
  2240. return;
  2241. }
  2242. switch (err->err_code) {
  2243. case DECODE_OK:
  2244. string = "";
  2245. break;
  2246. case ERR_NODE:
  2247. string = "Failed to map error addr to a node";
  2248. break;
  2249. case ERR_CSROW:
  2250. string = "Failed to map error addr to a csrow";
  2251. break;
  2252. case ERR_CHANNEL:
  2253. string = "Unknown syndrome - possible error reporting race";
  2254. break;
  2255. case ERR_SYND:
  2256. string = "MCA_SYND not valid - unknown syndrome and csrow";
  2257. break;
  2258. case ERR_NORM_ADDR:
  2259. string = "Cannot decode normalized address";
  2260. break;
  2261. default:
  2262. string = "WTF error";
  2263. break;
  2264. }
  2265. edac_mc_handle_error(err_type, mci, 1,
  2266. err->page, err->offset, err->syndrome,
  2267. err->csrow, err->channel, -1,
  2268. string, "");
  2269. }
  2270. static inline void decode_bus_error(int node_id, struct mce *m)
  2271. {
  2272. struct mem_ctl_info *mci;
  2273. struct amd64_pvt *pvt;
  2274. u8 ecc_type = (m->status >> 45) & 0x3;
  2275. u8 xec = XEC(m->status, 0x1f);
  2276. u16 ec = EC(m->status);
  2277. u64 sys_addr;
  2278. struct err_info err;
  2279. mci = edac_mc_find(node_id);
  2280. if (!mci)
  2281. return;
  2282. pvt = mci->pvt_info;
  2283. /* Bail out early if this was an 'observed' error */
  2284. if (PP(ec) == NBSL_PP_OBS)
  2285. return;
  2286. /* Do only ECC errors */
  2287. if (xec && xec != F10_NBSL_EXT_ERR_ECC)
  2288. return;
  2289. memset(&err, 0, sizeof(err));
  2290. sys_addr = get_error_address(pvt, m);
  2291. if (ecc_type == 2)
  2292. err.syndrome = extract_syndrome(m->status);
  2293. pvt->ops->map_sysaddr_to_csrow(mci, sys_addr, &err);
  2294. __log_ecc_error(mci, &err, ecc_type);
  2295. }
  2296. /*
  2297. * To find the UMC channel represented by this bank we need to match on its
  2298. * instance_id. The instance_id of a bank is held in the lower 32 bits of its
  2299. * IPID.
  2300. *
  2301. * Currently, we can derive the channel number by looking at the 6th nibble in
  2302. * the instance_id. For example, instance_id=0xYXXXXX where Y is the channel
  2303. * number.
  2304. *
  2305. * For DRAM ECC errors, the Chip Select number is given in bits [2:0] of
  2306. * the MCA_SYND[ErrorInformation] field.
  2307. */
  2308. static void umc_get_err_info(struct mce *m, struct err_info *err)
  2309. {
  2310. err->channel = (m->ipid & GENMASK(31, 0)) >> 20;
  2311. err->csrow = m->synd & 0x7;
  2312. }
  2313. static void decode_umc_error(int node_id, struct mce *m)
  2314. {
  2315. u8 ecc_type = (m->status >> 45) & 0x3;
  2316. struct mem_ctl_info *mci;
  2317. unsigned long sys_addr;
  2318. struct amd64_pvt *pvt;
  2319. struct atl_err a_err;
  2320. struct err_info err;
  2321. node_id = fixup_node_id(node_id, m);
  2322. mci = edac_mc_find(node_id);
  2323. if (!mci)
  2324. return;
  2325. pvt = mci->pvt_info;
  2326. memset(&err, 0, sizeof(err));
  2327. if (m->status & MCI_STATUS_DEFERRED)
  2328. ecc_type = 3;
  2329. if (!(m->status & MCI_STATUS_SYNDV)) {
  2330. err.err_code = ERR_SYND;
  2331. goto log_error;
  2332. }
  2333. if (ecc_type == 2) {
  2334. u8 length = (m->synd >> 18) & 0x3f;
  2335. if (length)
  2336. err.syndrome = (m->synd >> 32) & GENMASK(length - 1, 0);
  2337. else
  2338. err.err_code = ERR_CHANNEL;
  2339. }
  2340. pvt->ops->get_err_info(m, &err);
  2341. a_err.addr = m->addr;
  2342. a_err.ipid = m->ipid;
  2343. a_err.cpu = m->extcpu;
  2344. sys_addr = amd_convert_umc_mca_addr_to_sys_addr(&a_err);
  2345. if (IS_ERR_VALUE(sys_addr)) {
  2346. err.err_code = ERR_NORM_ADDR;
  2347. goto log_error;
  2348. }
  2349. error_address_to_page_and_offset(sys_addr, &err);
  2350. log_error:
  2351. __log_ecc_error(mci, &err, ecc_type);
  2352. }
  2353. /*
  2354. * Use pvt->F3 which contains the F3 CPU PCI device to get the related
  2355. * F1 (AddrMap) and F2 (Dct) devices. Return negative value on error.
  2356. */
  2357. static int
  2358. reserve_mc_sibling_devs(struct amd64_pvt *pvt, u16 pci_id1, u16 pci_id2)
  2359. {
  2360. /* Reserve the ADDRESS MAP Device */
  2361. pvt->F1 = pci_get_related_function(pvt->F3->vendor, pci_id1, pvt->F3);
  2362. if (!pvt->F1) {
  2363. edac_dbg(1, "F1 not found: device 0x%x\n", pci_id1);
  2364. return -ENODEV;
  2365. }
  2366. /* Reserve the DCT Device */
  2367. pvt->F2 = pci_get_related_function(pvt->F3->vendor, pci_id2, pvt->F3);
  2368. if (!pvt->F2) {
  2369. pci_dev_put(pvt->F1);
  2370. pvt->F1 = NULL;
  2371. edac_dbg(1, "F2 not found: device 0x%x\n", pci_id2);
  2372. return -ENODEV;
  2373. }
  2374. if (!pci_ctl_dev)
  2375. pci_ctl_dev = &pvt->F2->dev;
  2376. edac_dbg(1, "F1: %s\n", pci_name(pvt->F1));
  2377. edac_dbg(1, "F2: %s\n", pci_name(pvt->F2));
  2378. edac_dbg(1, "F3: %s\n", pci_name(pvt->F3));
  2379. return 0;
  2380. }
  2381. static void determine_ecc_sym_sz(struct amd64_pvt *pvt)
  2382. {
  2383. pvt->ecc_sym_sz = 4;
  2384. if (pvt->fam >= 0x10) {
  2385. u32 tmp;
  2386. amd64_read_pci_cfg(pvt->F3, EXT_NB_MCA_CFG, &tmp);
  2387. /* F16h has only DCT0, so no need to read dbam1. */
  2388. if (pvt->fam != 0x16)
  2389. amd64_read_dct_pci_cfg(pvt, 1, DBAM0, &pvt->dbam1);
  2390. /* F10h, revD and later can do x8 ECC too. */
  2391. if ((pvt->fam > 0x10 || pvt->model > 7) && tmp & BIT(25))
  2392. pvt->ecc_sym_sz = 8;
  2393. }
  2394. }
  2395. /*
  2396. * Retrieve the hardware registers of the memory controller.
  2397. */
  2398. static void umc_read_mc_regs(struct amd64_pvt *pvt)
  2399. {
  2400. u8 nid = pvt->mc_node_id;
  2401. struct amd64_umc *umc;
  2402. u32 i, tmp, umc_base;
  2403. /* Read registers from each UMC */
  2404. for_each_umc(i) {
  2405. umc_base = get_umc_base(i);
  2406. umc = &pvt->umc[i];
  2407. if (!amd_smn_read(nid, umc_base + get_umc_reg(pvt, UMCCH_DIMM_CFG), &tmp))
  2408. umc->dimm_cfg = tmp;
  2409. if (!amd_smn_read(nid, umc_base + UMCCH_UMC_CFG, &tmp))
  2410. umc->umc_cfg = tmp;
  2411. if (!amd_smn_read(nid, umc_base + UMCCH_SDP_CTRL, &tmp))
  2412. umc->sdp_ctrl = tmp;
  2413. if (!amd_smn_read(nid, umc_base + UMCCH_ECC_CTRL, &tmp))
  2414. umc->ecc_ctrl = tmp;
  2415. if (!amd_smn_read(nid, umc_base + UMCCH_UMC_CAP_HI, &tmp))
  2416. umc->umc_cap_hi = tmp;
  2417. }
  2418. }
  2419. /*
  2420. * Retrieve the hardware registers of the memory controller (this includes the
  2421. * 'Address Map' and 'Misc' device regs)
  2422. */
  2423. static void dct_read_mc_regs(struct amd64_pvt *pvt)
  2424. {
  2425. unsigned int range;
  2426. u64 msr_val;
  2427. /*
  2428. * Retrieve TOP_MEM and TOP_MEM2; no masking off of reserved bits since
  2429. * those are Read-As-Zero.
  2430. */
  2431. rdmsrq(MSR_K8_TOP_MEM1, pvt->top_mem);
  2432. edac_dbg(0, " TOP_MEM: 0x%016llx\n", pvt->top_mem);
  2433. /* Check first whether TOP_MEM2 is enabled: */
  2434. rdmsrq(MSR_AMD64_SYSCFG, msr_val);
  2435. if (msr_val & BIT(21)) {
  2436. rdmsrq(MSR_K8_TOP_MEM2, pvt->top_mem2);
  2437. edac_dbg(0, " TOP_MEM2: 0x%016llx\n", pvt->top_mem2);
  2438. } else {
  2439. edac_dbg(0, " TOP_MEM2 disabled\n");
  2440. }
  2441. amd64_read_pci_cfg(pvt->F3, NBCAP, &pvt->nbcap);
  2442. read_dram_ctl_register(pvt);
  2443. for (range = 0; range < DRAM_RANGES; range++) {
  2444. u8 rw;
  2445. /* read settings for this DRAM range */
  2446. read_dram_base_limit_regs(pvt, range);
  2447. rw = dram_rw(pvt, range);
  2448. if (!rw)
  2449. continue;
  2450. edac_dbg(1, " DRAM range[%d], base: 0x%016llx; limit: 0x%016llx\n",
  2451. range,
  2452. get_dram_base(pvt, range),
  2453. get_dram_limit(pvt, range));
  2454. edac_dbg(1, " IntlvEn=%s; Range access: %s%s IntlvSel=%d DstNode=%d\n",
  2455. dram_intlv_en(pvt, range) ? "Enabled" : "Disabled",
  2456. (rw & 0x1) ? "R" : "-",
  2457. (rw & 0x2) ? "W" : "-",
  2458. dram_intlv_sel(pvt, range),
  2459. dram_dst_node(pvt, range));
  2460. }
  2461. amd64_read_pci_cfg(pvt->F1, DHAR, &pvt->dhar);
  2462. amd64_read_dct_pci_cfg(pvt, 0, DBAM0, &pvt->dbam0);
  2463. amd64_read_pci_cfg(pvt->F3, F10_ONLINE_SPARE, &pvt->online_spare);
  2464. amd64_read_dct_pci_cfg(pvt, 0, DCLR0, &pvt->dclr0);
  2465. amd64_read_dct_pci_cfg(pvt, 0, DCHR0, &pvt->dchr0);
  2466. if (!dct_ganging_enabled(pvt)) {
  2467. amd64_read_dct_pci_cfg(pvt, 1, DCLR0, &pvt->dclr1);
  2468. amd64_read_dct_pci_cfg(pvt, 1, DCHR0, &pvt->dchr1);
  2469. }
  2470. determine_ecc_sym_sz(pvt);
  2471. }
  2472. /*
  2473. * NOTE: CPU Revision Dependent code
  2474. *
  2475. * Input:
  2476. * @csrow_nr ChipSelect Row Number (0..NUM_CHIPSELECTS-1)
  2477. * k8 private pointer to -->
  2478. * DRAM Bank Address mapping register
  2479. * node_id
  2480. * DCL register where dual_channel_active is
  2481. *
  2482. * The DBAM register consists of 4 sets of 4 bits each definitions:
  2483. *
  2484. * Bits: CSROWs
  2485. * 0-3 CSROWs 0 and 1
  2486. * 4-7 CSROWs 2 and 3
  2487. * 8-11 CSROWs 4 and 5
  2488. * 12-15 CSROWs 6 and 7
  2489. *
  2490. * Values range from: 0 to 15
  2491. * The meaning of the values depends on CPU revision and dual-channel state,
  2492. * see relevant BKDG more info.
  2493. *
  2494. * The memory controller provides for total of only 8 CSROWs in its current
  2495. * architecture. Each "pair" of CSROWs normally represents just one DIMM in
  2496. * single channel or two (2) DIMMs in dual channel mode.
  2497. *
  2498. * The following code logic collapses the various tables for CSROW based on CPU
  2499. * revision.
  2500. *
  2501. * Returns:
  2502. * The number of PAGE_SIZE pages on the specified CSROW number it
  2503. * encompasses
  2504. *
  2505. */
  2506. static u32 dct_get_csrow_nr_pages(struct amd64_pvt *pvt, u8 dct, int csrow_nr)
  2507. {
  2508. u32 dbam = dct ? pvt->dbam1 : pvt->dbam0;
  2509. u32 cs_mode, nr_pages;
  2510. csrow_nr >>= 1;
  2511. cs_mode = DBAM_DIMM(csrow_nr, dbam);
  2512. nr_pages = pvt->ops->dbam_to_cs(pvt, dct, cs_mode, csrow_nr);
  2513. nr_pages <<= 20 - PAGE_SHIFT;
  2514. edac_dbg(0, "csrow: %d, channel: %d, DBAM idx: %d\n",
  2515. csrow_nr, dct, cs_mode);
  2516. edac_dbg(0, "nr_pages/channel: %u\n", nr_pages);
  2517. return nr_pages;
  2518. }
  2519. static u32 umc_get_csrow_nr_pages(struct amd64_pvt *pvt, u8 dct, int csrow_nr_orig)
  2520. {
  2521. int csrow_nr = csrow_nr_orig;
  2522. u32 cs_mode, nr_pages;
  2523. cs_mode = umc_get_cs_mode(csrow_nr >> 1, dct, pvt);
  2524. nr_pages = umc_addr_mask_to_cs_size(pvt, dct, cs_mode, csrow_nr);
  2525. nr_pages <<= 20 - PAGE_SHIFT;
  2526. edac_dbg(0, "csrow: %d, channel: %d, cs_mode %d\n",
  2527. csrow_nr_orig, dct, cs_mode);
  2528. edac_dbg(0, "nr_pages/channel: %u\n", nr_pages);
  2529. return nr_pages;
  2530. }
  2531. static void umc_init_csrows(struct mem_ctl_info *mci)
  2532. {
  2533. struct amd64_pvt *pvt = mci->pvt_info;
  2534. enum edac_type edac_mode = EDAC_NONE;
  2535. enum dev_type dev_type = DEV_UNKNOWN;
  2536. struct dimm_info *dimm;
  2537. u8 umc, cs;
  2538. if (mci->edac_ctl_cap & EDAC_FLAG_S16ECD16ED) {
  2539. edac_mode = EDAC_S16ECD16ED;
  2540. dev_type = DEV_X16;
  2541. } else if (mci->edac_ctl_cap & EDAC_FLAG_S8ECD8ED) {
  2542. edac_mode = EDAC_S8ECD8ED;
  2543. dev_type = DEV_X8;
  2544. } else if (mci->edac_ctl_cap & EDAC_FLAG_S4ECD4ED) {
  2545. edac_mode = EDAC_S4ECD4ED;
  2546. dev_type = DEV_X4;
  2547. } else if (mci->edac_ctl_cap & EDAC_FLAG_SECDED) {
  2548. edac_mode = EDAC_SECDED;
  2549. }
  2550. for_each_umc(umc) {
  2551. for_each_chip_select(cs, umc, pvt) {
  2552. if (!csrow_enabled(cs, umc, pvt))
  2553. continue;
  2554. dimm = mci->csrows[cs]->channels[umc]->dimm;
  2555. edac_dbg(1, "MC node: %d, csrow: %d\n",
  2556. pvt->mc_node_id, cs);
  2557. dimm->nr_pages = umc_get_csrow_nr_pages(pvt, umc, cs);
  2558. dimm->mtype = pvt->umc[umc].dram_type;
  2559. dimm->edac_mode = edac_mode;
  2560. dimm->dtype = dev_type;
  2561. dimm->grain = 64;
  2562. }
  2563. }
  2564. }
  2565. /*
  2566. * Initialize the array of csrow attribute instances, based on the values
  2567. * from pci config hardware registers.
  2568. */
  2569. static void dct_init_csrows(struct mem_ctl_info *mci)
  2570. {
  2571. struct amd64_pvt *pvt = mci->pvt_info;
  2572. enum edac_type edac_mode = EDAC_NONE;
  2573. struct csrow_info *csrow;
  2574. struct dimm_info *dimm;
  2575. int nr_pages = 0;
  2576. int i, j;
  2577. u32 val;
  2578. amd64_read_pci_cfg(pvt->F3, NBCFG, &val);
  2579. pvt->nbcfg = val;
  2580. edac_dbg(0, "node %d, NBCFG=0x%08x[ChipKillEccCap: %d|DramEccEn: %d]\n",
  2581. pvt->mc_node_id, val,
  2582. !!(val & NBCFG_CHIPKILL), !!(val & NBCFG_ECC_ENABLE));
  2583. /*
  2584. * We iterate over DCT0 here but we look at DCT1 in parallel, if needed.
  2585. */
  2586. for_each_chip_select(i, 0, pvt) {
  2587. bool row_dct0 = !!csrow_enabled(i, 0, pvt);
  2588. bool row_dct1 = false;
  2589. if (pvt->fam != 0xf)
  2590. row_dct1 = !!csrow_enabled(i, 1, pvt);
  2591. if (!row_dct0 && !row_dct1)
  2592. continue;
  2593. csrow = mci->csrows[i];
  2594. edac_dbg(1, "MC node: %d, csrow: %d\n",
  2595. pvt->mc_node_id, i);
  2596. if (row_dct0) {
  2597. nr_pages = dct_get_csrow_nr_pages(pvt, 0, i);
  2598. csrow->channels[0]->dimm->nr_pages = nr_pages;
  2599. }
  2600. /* K8 has only one DCT */
  2601. if (pvt->fam != 0xf && row_dct1) {
  2602. int row_dct1_pages = dct_get_csrow_nr_pages(pvt, 1, i);
  2603. csrow->channels[1]->dimm->nr_pages = row_dct1_pages;
  2604. nr_pages += row_dct1_pages;
  2605. }
  2606. edac_dbg(1, "Total csrow%d pages: %u\n", i, nr_pages);
  2607. /* Determine DIMM ECC mode: */
  2608. if (pvt->nbcfg & NBCFG_ECC_ENABLE) {
  2609. edac_mode = (pvt->nbcfg & NBCFG_CHIPKILL)
  2610. ? EDAC_S4ECD4ED
  2611. : EDAC_SECDED;
  2612. }
  2613. for (j = 0; j < pvt->max_mcs; j++) {
  2614. dimm = csrow->channels[j]->dimm;
  2615. dimm->mtype = pvt->dram_type;
  2616. dimm->edac_mode = edac_mode;
  2617. dimm->grain = 64;
  2618. }
  2619. }
  2620. }
  2621. /* get all cores on this DCT */
  2622. static void get_cpus_on_this_dct_cpumask(struct cpumask *mask, u16 nid)
  2623. {
  2624. int cpu;
  2625. for_each_online_cpu(cpu)
  2626. if (topology_amd_node_id(cpu) == nid)
  2627. cpumask_set_cpu(cpu, mask);
  2628. }
  2629. /* check MCG_CTL on all the cpus on this node */
  2630. static bool nb_mce_bank_enabled_on_node(u16 nid)
  2631. {
  2632. cpumask_var_t mask;
  2633. int cpu, nbe;
  2634. bool ret = false;
  2635. if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
  2636. amd64_warn("%s: Error allocating mask\n", __func__);
  2637. return false;
  2638. }
  2639. get_cpus_on_this_dct_cpumask(mask, nid);
  2640. rdmsr_on_cpus(mask, MSR_IA32_MCG_CTL, msrs);
  2641. for_each_cpu(cpu, mask) {
  2642. struct msr *reg = per_cpu_ptr(msrs, cpu);
  2643. nbe = reg->l & MSR_MCGCTL_NBE;
  2644. edac_dbg(0, "core: %u, MCG_CTL: 0x%llx, NB MSR is %s\n",
  2645. cpu, reg->q, str_enabled_disabled(nbe));
  2646. if (!nbe)
  2647. goto out;
  2648. }
  2649. ret = true;
  2650. out:
  2651. free_cpumask_var(mask);
  2652. return ret;
  2653. }
  2654. static int toggle_ecc_err_reporting(struct ecc_settings *s, u16 nid, bool on)
  2655. {
  2656. cpumask_var_t cmask;
  2657. int cpu;
  2658. if (!zalloc_cpumask_var(&cmask, GFP_KERNEL)) {
  2659. amd64_warn("%s: error allocating mask\n", __func__);
  2660. return -ENOMEM;
  2661. }
  2662. get_cpus_on_this_dct_cpumask(cmask, nid);
  2663. rdmsr_on_cpus(cmask, MSR_IA32_MCG_CTL, msrs);
  2664. for_each_cpu(cpu, cmask) {
  2665. struct msr *reg = per_cpu_ptr(msrs, cpu);
  2666. if (on) {
  2667. if (reg->l & MSR_MCGCTL_NBE)
  2668. s->flags.nb_mce_enable = 1;
  2669. reg->l |= MSR_MCGCTL_NBE;
  2670. } else {
  2671. /*
  2672. * Turn off NB MCE reporting only when it was off before
  2673. */
  2674. if (!s->flags.nb_mce_enable)
  2675. reg->l &= ~MSR_MCGCTL_NBE;
  2676. }
  2677. }
  2678. wrmsr_on_cpus(cmask, MSR_IA32_MCG_CTL, msrs);
  2679. free_cpumask_var(cmask);
  2680. return 0;
  2681. }
  2682. static bool enable_ecc_error_reporting(struct ecc_settings *s, u16 nid,
  2683. struct pci_dev *F3)
  2684. {
  2685. bool ret = true;
  2686. u32 value, mask = 0x3; /* UECC/CECC enable */
  2687. if (toggle_ecc_err_reporting(s, nid, ON)) {
  2688. amd64_warn("Error enabling ECC reporting over MCGCTL!\n");
  2689. return false;
  2690. }
  2691. amd64_read_pci_cfg(F3, NBCTL, &value);
  2692. s->old_nbctl = value & mask;
  2693. s->nbctl_valid = true;
  2694. value |= mask;
  2695. amd64_write_pci_cfg(F3, NBCTL, value);
  2696. amd64_read_pci_cfg(F3, NBCFG, &value);
  2697. edac_dbg(0, "1: node %d, NBCFG=0x%08x[DramEccEn: %d]\n",
  2698. nid, value, !!(value & NBCFG_ECC_ENABLE));
  2699. if (!(value & NBCFG_ECC_ENABLE)) {
  2700. amd64_warn("DRAM ECC disabled on this node, enabling...\n");
  2701. s->flags.nb_ecc_prev = 0;
  2702. /* Attempt to turn on DRAM ECC Enable */
  2703. value |= NBCFG_ECC_ENABLE;
  2704. amd64_write_pci_cfg(F3, NBCFG, value);
  2705. amd64_read_pci_cfg(F3, NBCFG, &value);
  2706. if (!(value & NBCFG_ECC_ENABLE)) {
  2707. amd64_warn("Hardware rejected DRAM ECC enable,"
  2708. "check memory DIMM configuration.\n");
  2709. ret = false;
  2710. } else {
  2711. amd64_info("Hardware accepted DRAM ECC Enable\n");
  2712. }
  2713. } else {
  2714. s->flags.nb_ecc_prev = 1;
  2715. }
  2716. edac_dbg(0, "2: node %d, NBCFG=0x%08x[DramEccEn: %d]\n",
  2717. nid, value, !!(value & NBCFG_ECC_ENABLE));
  2718. return ret;
  2719. }
  2720. static void restore_ecc_error_reporting(struct ecc_settings *s, u16 nid,
  2721. struct pci_dev *F3)
  2722. {
  2723. u32 value, mask = 0x3; /* UECC/CECC enable */
  2724. if (!s->nbctl_valid)
  2725. return;
  2726. amd64_read_pci_cfg(F3, NBCTL, &value);
  2727. value &= ~mask;
  2728. value |= s->old_nbctl;
  2729. amd64_write_pci_cfg(F3, NBCTL, value);
  2730. /* restore previous BIOS DRAM ECC "off" setting we force-enabled */
  2731. if (!s->flags.nb_ecc_prev) {
  2732. amd64_read_pci_cfg(F3, NBCFG, &value);
  2733. value &= ~NBCFG_ECC_ENABLE;
  2734. amd64_write_pci_cfg(F3, NBCFG, value);
  2735. }
  2736. /* restore the NB Enable MCGCTL bit */
  2737. if (toggle_ecc_err_reporting(s, nid, OFF))
  2738. amd64_warn("Error restoring NB MCGCTL settings!\n");
  2739. }
  2740. static bool dct_ecc_enabled(struct amd64_pvt *pvt)
  2741. {
  2742. u16 nid = pvt->mc_node_id;
  2743. bool nb_mce_en = false;
  2744. u8 ecc_en = 0;
  2745. u32 value;
  2746. amd64_read_pci_cfg(pvt->F3, NBCFG, &value);
  2747. ecc_en = !!(value & NBCFG_ECC_ENABLE);
  2748. nb_mce_en = nb_mce_bank_enabled_on_node(nid);
  2749. if (!nb_mce_en)
  2750. edac_dbg(0, "NB MCE bank disabled, set MSR 0x%08x[4] on node %d to enable.\n",
  2751. MSR_IA32_MCG_CTL, nid);
  2752. edac_dbg(3, "Node %d: DRAM ECC %s.\n", nid, str_enabled_disabled(ecc_en));
  2753. return ecc_en && nb_mce_en;
  2754. }
  2755. static bool umc_ecc_enabled(struct amd64_pvt *pvt)
  2756. {
  2757. struct amd64_umc *umc;
  2758. bool ecc_en = false;
  2759. int i;
  2760. /* Check whether at least one UMC is enabled: */
  2761. for_each_umc(i) {
  2762. umc = &pvt->umc[i];
  2763. if (umc->sdp_ctrl & UMC_SDP_INIT &&
  2764. umc->umc_cap_hi & UMC_ECC_ENABLED) {
  2765. ecc_en = true;
  2766. break;
  2767. }
  2768. }
  2769. edac_dbg(3, "Node %d: DRAM ECC %s.\n", pvt->mc_node_id, str_enabled_disabled(ecc_en));
  2770. return ecc_en;
  2771. }
  2772. static inline void
  2773. umc_determine_edac_ctl_cap(struct mem_ctl_info *mci, struct amd64_pvt *pvt)
  2774. {
  2775. u8 i, ecc_en = 1, cpk_en = 1, dev_x4 = 1, dev_x16 = 1;
  2776. for_each_umc(i) {
  2777. if (pvt->umc[i].sdp_ctrl & UMC_SDP_INIT) {
  2778. ecc_en &= !!(pvt->umc[i].umc_cap_hi & UMC_ECC_ENABLED);
  2779. cpk_en &= !!(pvt->umc[i].umc_cap_hi & UMC_ECC_CHIPKILL_CAP);
  2780. dev_x4 &= !!(pvt->umc[i].dimm_cfg & BIT(6));
  2781. dev_x16 &= !!(pvt->umc[i].dimm_cfg & BIT(7));
  2782. }
  2783. }
  2784. /* Set chipkill only if ECC is enabled: */
  2785. if (ecc_en) {
  2786. mci->edac_ctl_cap |= EDAC_FLAG_SECDED;
  2787. if (!cpk_en)
  2788. return;
  2789. if (dev_x4)
  2790. mci->edac_ctl_cap |= EDAC_FLAG_S4ECD4ED;
  2791. else if (dev_x16)
  2792. mci->edac_ctl_cap |= EDAC_FLAG_S16ECD16ED;
  2793. else
  2794. mci->edac_ctl_cap |= EDAC_FLAG_S8ECD8ED;
  2795. }
  2796. }
  2797. static void dct_setup_mci_misc_attrs(struct mem_ctl_info *mci)
  2798. {
  2799. struct amd64_pvt *pvt = mci->pvt_info;
  2800. mci->mtype_cap = MEM_FLAG_DDR2 | MEM_FLAG_RDDR2;
  2801. mci->edac_ctl_cap = EDAC_FLAG_NONE;
  2802. if (pvt->nbcap & NBCAP_SECDED)
  2803. mci->edac_ctl_cap |= EDAC_FLAG_SECDED;
  2804. if (pvt->nbcap & NBCAP_CHIPKILL)
  2805. mci->edac_ctl_cap |= EDAC_FLAG_S4ECD4ED;
  2806. mci->edac_cap = dct_determine_edac_cap(pvt);
  2807. mci->mod_name = EDAC_MOD_STR;
  2808. mci->ctl_name = pvt->ctl_name;
  2809. mci->dev_name = pci_name(pvt->F3);
  2810. mci->ctl_page_to_phys = NULL;
  2811. /* memory scrubber interface */
  2812. mci->set_sdram_scrub_rate = set_scrub_rate;
  2813. mci->get_sdram_scrub_rate = get_scrub_rate;
  2814. dct_init_csrows(mci);
  2815. }
  2816. static void umc_setup_mci_misc_attrs(struct mem_ctl_info *mci)
  2817. {
  2818. struct amd64_pvt *pvt = mci->pvt_info;
  2819. mci->mtype_cap = MEM_FLAG_DDR4 | MEM_FLAG_RDDR4;
  2820. mci->edac_ctl_cap = EDAC_FLAG_NONE;
  2821. umc_determine_edac_ctl_cap(mci, pvt);
  2822. mci->edac_cap = umc_determine_edac_cap(pvt);
  2823. mci->mod_name = EDAC_MOD_STR;
  2824. mci->ctl_name = pvt->ctl_name;
  2825. mci->dev_name = pci_name(pvt->F3);
  2826. mci->ctl_page_to_phys = NULL;
  2827. umc_init_csrows(mci);
  2828. }
  2829. static int dct_hw_info_get(struct amd64_pvt *pvt)
  2830. {
  2831. int ret = reserve_mc_sibling_devs(pvt, pvt->f1_id, pvt->f2_id);
  2832. if (ret)
  2833. return ret;
  2834. dct_prep_chip_selects(pvt);
  2835. dct_read_base_mask(pvt);
  2836. dct_read_mc_regs(pvt);
  2837. dct_determine_memory_type(pvt);
  2838. return 0;
  2839. }
  2840. static int umc_hw_info_get(struct amd64_pvt *pvt)
  2841. {
  2842. pvt->umc = kzalloc_objs(struct amd64_umc, pvt->max_mcs);
  2843. if (!pvt->umc)
  2844. return -ENOMEM;
  2845. umc_prep_chip_selects(pvt);
  2846. umc_read_base_mask(pvt);
  2847. umc_read_mc_regs(pvt);
  2848. umc_determine_memory_type(pvt);
  2849. return 0;
  2850. }
  2851. /*
  2852. * The CPUs have one channel per UMC, so UMC number is equivalent to a
  2853. * channel number. The GPUs have 8 channels per UMC, so the UMC number no
  2854. * longer works as a channel number.
  2855. *
  2856. * The channel number within a GPU UMC is given in MCA_IPID[15:12].
  2857. * However, the IDs are split such that two UMC values go to one UMC, and
  2858. * the channel numbers are split in two groups of four.
  2859. *
  2860. * Refer to comment on gpu_get_umc_base().
  2861. *
  2862. * For example,
  2863. * UMC0 CH[3:0] = 0x0005[3:0]000
  2864. * UMC0 CH[7:4] = 0x0015[3:0]000
  2865. * UMC1 CH[3:0] = 0x0025[3:0]000
  2866. * UMC1 CH[7:4] = 0x0035[3:0]000
  2867. */
  2868. static void gpu_get_err_info(struct mce *m, struct err_info *err)
  2869. {
  2870. u8 ch = (m->ipid & GENMASK(31, 0)) >> 20;
  2871. u8 phy = ((m->ipid >> 12) & 0xf);
  2872. err->channel = ch % 2 ? phy + 4 : phy;
  2873. err->csrow = phy;
  2874. }
  2875. static int gpu_addr_mask_to_cs_size(struct amd64_pvt *pvt, u8 umc,
  2876. unsigned int cs_mode, int csrow_nr)
  2877. {
  2878. u32 addr_mask = pvt->csels[umc].csmasks[csrow_nr];
  2879. u32 addr_mask_sec = pvt->csels[umc].csmasks_sec[csrow_nr];
  2880. return __addr_mask_to_cs_size(addr_mask, addr_mask_sec, cs_mode, csrow_nr, csrow_nr >> 1);
  2881. }
  2882. static void gpu_debug_display_dimm_sizes(struct amd64_pvt *pvt, u8 ctrl)
  2883. {
  2884. int size, cs_mode, cs = 0;
  2885. edac_printk(KERN_DEBUG, EDAC_MC, "UMC%d chip selects:\n", ctrl);
  2886. cs_mode = CS_EVEN_PRIMARY | CS_ODD_PRIMARY;
  2887. for_each_chip_select(cs, ctrl, pvt) {
  2888. size = gpu_addr_mask_to_cs_size(pvt, ctrl, cs_mode, cs);
  2889. amd64_info(EDAC_MC ": %d: %5dMB\n", cs, size);
  2890. }
  2891. }
  2892. static void gpu_dump_misc_regs(struct amd64_pvt *pvt)
  2893. {
  2894. struct amd64_umc *umc;
  2895. u32 i;
  2896. for_each_umc(i) {
  2897. umc = &pvt->umc[i];
  2898. edac_dbg(1, "UMC%d UMC cfg: 0x%x\n", i, umc->umc_cfg);
  2899. edac_dbg(1, "UMC%d SDP ctrl: 0x%x\n", i, umc->sdp_ctrl);
  2900. edac_dbg(1, "UMC%d ECC ctrl: 0x%x\n", i, umc->ecc_ctrl);
  2901. edac_dbg(1, "UMC%d All HBMs support ECC: yes\n", i);
  2902. gpu_debug_display_dimm_sizes(pvt, i);
  2903. }
  2904. }
  2905. static u32 gpu_get_csrow_nr_pages(struct amd64_pvt *pvt, u8 dct, int csrow_nr)
  2906. {
  2907. u32 nr_pages;
  2908. int cs_mode = CS_EVEN_PRIMARY | CS_ODD_PRIMARY;
  2909. nr_pages = gpu_addr_mask_to_cs_size(pvt, dct, cs_mode, csrow_nr);
  2910. nr_pages <<= 20 - PAGE_SHIFT;
  2911. edac_dbg(0, "csrow: %d, channel: %d\n", csrow_nr, dct);
  2912. edac_dbg(0, "nr_pages/channel: %u\n", nr_pages);
  2913. return nr_pages;
  2914. }
  2915. static void gpu_init_csrows(struct mem_ctl_info *mci)
  2916. {
  2917. struct amd64_pvt *pvt = mci->pvt_info;
  2918. struct dimm_info *dimm;
  2919. u8 umc, cs;
  2920. for_each_umc(umc) {
  2921. for_each_chip_select(cs, umc, pvt) {
  2922. if (!csrow_enabled(cs, umc, pvt))
  2923. continue;
  2924. dimm = mci->csrows[umc]->channels[cs]->dimm;
  2925. edac_dbg(1, "MC node: %d, csrow: %d\n",
  2926. pvt->mc_node_id, cs);
  2927. dimm->nr_pages = gpu_get_csrow_nr_pages(pvt, umc, cs);
  2928. dimm->edac_mode = EDAC_SECDED;
  2929. dimm->mtype = pvt->dram_type;
  2930. dimm->dtype = DEV_X16;
  2931. dimm->grain = 64;
  2932. }
  2933. }
  2934. }
  2935. static void gpu_setup_mci_misc_attrs(struct mem_ctl_info *mci)
  2936. {
  2937. struct amd64_pvt *pvt = mci->pvt_info;
  2938. mci->mtype_cap = MEM_FLAG_HBM2;
  2939. mci->edac_ctl_cap = EDAC_FLAG_SECDED;
  2940. mci->edac_cap = EDAC_FLAG_EC;
  2941. mci->mod_name = EDAC_MOD_STR;
  2942. mci->ctl_name = pvt->ctl_name;
  2943. mci->dev_name = pci_name(pvt->F3);
  2944. mci->ctl_page_to_phys = NULL;
  2945. gpu_init_csrows(mci);
  2946. }
  2947. /* ECC is enabled by default on GPU nodes */
  2948. static bool gpu_ecc_enabled(struct amd64_pvt *pvt)
  2949. {
  2950. return true;
  2951. }
  2952. static inline u32 gpu_get_umc_base(struct amd64_pvt *pvt, u8 umc, u8 channel)
  2953. {
  2954. /*
  2955. * On CPUs, there is one channel per UMC, so UMC numbering equals
  2956. * channel numbering. On GPUs, there are eight channels per UMC,
  2957. * so the channel numbering is different from UMC numbering.
  2958. *
  2959. * On CPU nodes channels are selected in 6th nibble
  2960. * UMC chY[3:0]= [(chY*2 + 1) : (chY*2)]50000;
  2961. *
  2962. * On GPU nodes channels are selected in 3rd nibble
  2963. * HBM chX[3:0]= [Y ]5X[3:0]000;
  2964. * HBM chX[7:4]= [Y+1]5X[3:0]000
  2965. *
  2966. * On MI300 APU nodes, same as GPU nodes but channels are selected
  2967. * in the base address of 0x90000
  2968. */
  2969. umc *= 2;
  2970. if (channel >= 4)
  2971. umc++;
  2972. return pvt->gpu_umc_base + (umc << 20) + ((channel % 4) << 12);
  2973. }
  2974. static void gpu_read_mc_regs(struct amd64_pvt *pvt)
  2975. {
  2976. u8 nid = pvt->mc_node_id;
  2977. struct amd64_umc *umc;
  2978. u32 i, tmp, umc_base;
  2979. /* Read registers from each UMC */
  2980. for_each_umc(i) {
  2981. umc_base = gpu_get_umc_base(pvt, i, 0);
  2982. umc = &pvt->umc[i];
  2983. if (!amd_smn_read(nid, umc_base + UMCCH_UMC_CFG, &tmp))
  2984. umc->umc_cfg = tmp;
  2985. if (!amd_smn_read(nid, umc_base + UMCCH_SDP_CTRL, &tmp))
  2986. umc->sdp_ctrl = tmp;
  2987. if (!amd_smn_read(nid, umc_base + UMCCH_ECC_CTRL, &tmp))
  2988. umc->ecc_ctrl = tmp;
  2989. }
  2990. }
  2991. static void gpu_read_base_mask(struct amd64_pvt *pvt)
  2992. {
  2993. u32 base_reg, mask_reg;
  2994. u32 *base, *mask;
  2995. int umc, cs;
  2996. for_each_umc(umc) {
  2997. for_each_chip_select(cs, umc, pvt) {
  2998. base_reg = gpu_get_umc_base(pvt, umc, cs) + UMCCH_BASE_ADDR;
  2999. base = &pvt->csels[umc].csbases[cs];
  3000. if (!amd_smn_read(pvt->mc_node_id, base_reg, base)) {
  3001. edac_dbg(0, " DCSB%d[%d]=0x%08x reg: 0x%x\n",
  3002. umc, cs, *base, base_reg);
  3003. }
  3004. mask_reg = gpu_get_umc_base(pvt, umc, cs) + UMCCH_ADDR_MASK;
  3005. mask = &pvt->csels[umc].csmasks[cs];
  3006. if (!amd_smn_read(pvt->mc_node_id, mask_reg, mask)) {
  3007. edac_dbg(0, " DCSM%d[%d]=0x%08x reg: 0x%x\n",
  3008. umc, cs, *mask, mask_reg);
  3009. }
  3010. }
  3011. }
  3012. }
  3013. static void gpu_prep_chip_selects(struct amd64_pvt *pvt)
  3014. {
  3015. int umc;
  3016. for_each_umc(umc) {
  3017. pvt->csels[umc].b_cnt = 8;
  3018. pvt->csels[umc].m_cnt = 8;
  3019. }
  3020. }
  3021. static int gpu_hw_info_get(struct amd64_pvt *pvt)
  3022. {
  3023. int ret;
  3024. ret = gpu_get_node_map(pvt);
  3025. if (ret)
  3026. return ret;
  3027. pvt->umc = kzalloc_objs(struct amd64_umc, pvt->max_mcs);
  3028. if (!pvt->umc)
  3029. return -ENOMEM;
  3030. gpu_prep_chip_selects(pvt);
  3031. gpu_read_base_mask(pvt);
  3032. gpu_read_mc_regs(pvt);
  3033. return 0;
  3034. }
  3035. static void hw_info_put(struct amd64_pvt *pvt)
  3036. {
  3037. pci_dev_put(pvt->F1);
  3038. pci_dev_put(pvt->F2);
  3039. kfree(pvt->umc);
  3040. kfree(pvt->csels);
  3041. }
  3042. static struct low_ops umc_ops = {
  3043. .hw_info_get = umc_hw_info_get,
  3044. .ecc_enabled = umc_ecc_enabled,
  3045. .setup_mci_misc_attrs = umc_setup_mci_misc_attrs,
  3046. .dump_misc_regs = umc_dump_misc_regs,
  3047. .get_err_info = umc_get_err_info,
  3048. };
  3049. static struct low_ops gpu_ops = {
  3050. .hw_info_get = gpu_hw_info_get,
  3051. .ecc_enabled = gpu_ecc_enabled,
  3052. .setup_mci_misc_attrs = gpu_setup_mci_misc_attrs,
  3053. .dump_misc_regs = gpu_dump_misc_regs,
  3054. .get_err_info = gpu_get_err_info,
  3055. };
  3056. /* Use Family 16h versions for defaults and adjust as needed below. */
  3057. static struct low_ops dct_ops = {
  3058. .map_sysaddr_to_csrow = f1x_map_sysaddr_to_csrow,
  3059. .dbam_to_cs = f16_dbam_to_chip_select,
  3060. .hw_info_get = dct_hw_info_get,
  3061. .ecc_enabled = dct_ecc_enabled,
  3062. .setup_mci_misc_attrs = dct_setup_mci_misc_attrs,
  3063. .dump_misc_regs = dct_dump_misc_regs,
  3064. };
  3065. static int per_family_init(struct amd64_pvt *pvt)
  3066. {
  3067. pvt->ext_model = boot_cpu_data.x86_model >> 4;
  3068. pvt->stepping = boot_cpu_data.x86_stepping;
  3069. pvt->model = boot_cpu_data.x86_model;
  3070. pvt->fam = boot_cpu_data.x86;
  3071. char *tmp_name = NULL;
  3072. pvt->max_mcs = 2;
  3073. /*
  3074. * Decide on which ops group to use here and do any family/model
  3075. * overrides below.
  3076. */
  3077. if (pvt->fam >= 0x17)
  3078. pvt->ops = &umc_ops;
  3079. else
  3080. pvt->ops = &dct_ops;
  3081. switch (pvt->fam) {
  3082. case 0xf:
  3083. tmp_name = (pvt->ext_model >= K8_REV_F) ?
  3084. "K8 revF or later" : "K8 revE or earlier";
  3085. pvt->f1_id = PCI_DEVICE_ID_AMD_K8_NB_ADDRMAP;
  3086. pvt->f2_id = PCI_DEVICE_ID_AMD_K8_NB_MEMCTL;
  3087. pvt->ops->map_sysaddr_to_csrow = k8_map_sysaddr_to_csrow;
  3088. pvt->ops->dbam_to_cs = k8_dbam_to_chip_select;
  3089. break;
  3090. case 0x10:
  3091. pvt->f1_id = PCI_DEVICE_ID_AMD_10H_NB_MAP;
  3092. pvt->f2_id = PCI_DEVICE_ID_AMD_10H_NB_DRAM;
  3093. pvt->ops->dbam_to_cs = f10_dbam_to_chip_select;
  3094. break;
  3095. case 0x15:
  3096. switch (pvt->model) {
  3097. case 0x30:
  3098. pvt->f1_id = PCI_DEVICE_ID_AMD_15H_M30H_NB_F1;
  3099. pvt->f2_id = PCI_DEVICE_ID_AMD_15H_M30H_NB_F2;
  3100. break;
  3101. case 0x60:
  3102. pvt->f1_id = PCI_DEVICE_ID_AMD_15H_M60H_NB_F1;
  3103. pvt->f2_id = PCI_DEVICE_ID_AMD_15H_M60H_NB_F2;
  3104. pvt->ops->dbam_to_cs = f15_m60h_dbam_to_chip_select;
  3105. break;
  3106. case 0x13:
  3107. /* Richland is only client */
  3108. return -ENODEV;
  3109. default:
  3110. pvt->f1_id = PCI_DEVICE_ID_AMD_15H_NB_F1;
  3111. pvt->f2_id = PCI_DEVICE_ID_AMD_15H_NB_F2;
  3112. pvt->ops->dbam_to_cs = f15_dbam_to_chip_select;
  3113. break;
  3114. }
  3115. break;
  3116. case 0x16:
  3117. switch (pvt->model) {
  3118. case 0x30:
  3119. pvt->f1_id = PCI_DEVICE_ID_AMD_16H_M30H_NB_F1;
  3120. pvt->f2_id = PCI_DEVICE_ID_AMD_16H_M30H_NB_F2;
  3121. break;
  3122. default:
  3123. pvt->f1_id = PCI_DEVICE_ID_AMD_16H_NB_F1;
  3124. pvt->f2_id = PCI_DEVICE_ID_AMD_16H_NB_F2;
  3125. break;
  3126. }
  3127. break;
  3128. case 0x17:
  3129. switch (pvt->model) {
  3130. case 0x30 ... 0x3f:
  3131. pvt->max_mcs = 8;
  3132. break;
  3133. default:
  3134. break;
  3135. }
  3136. break;
  3137. case 0x18:
  3138. break;
  3139. case 0x19:
  3140. switch (pvt->model) {
  3141. case 0x00 ... 0x0f:
  3142. pvt->max_mcs = 8;
  3143. break;
  3144. case 0x10 ... 0x1f:
  3145. pvt->max_mcs = 12;
  3146. pvt->flags.zn_regs_v2 = 1;
  3147. break;
  3148. case 0x30 ... 0x3f:
  3149. if (pvt->F3->device == PCI_DEVICE_ID_AMD_MI200_DF_F3) {
  3150. tmp_name = "MI200";
  3151. pvt->max_mcs = 4;
  3152. pvt->dram_type = MEM_HBM2;
  3153. pvt->gpu_umc_base = 0x50000;
  3154. pvt->ops = &gpu_ops;
  3155. } else {
  3156. pvt->max_mcs = 8;
  3157. }
  3158. break;
  3159. case 0x60 ... 0x6f:
  3160. pvt->flags.zn_regs_v2 = 1;
  3161. break;
  3162. case 0x70 ... 0x7f:
  3163. pvt->max_mcs = 4;
  3164. pvt->flags.zn_regs_v2 = 1;
  3165. break;
  3166. case 0x90 ... 0x9f:
  3167. pvt->max_mcs = 4;
  3168. pvt->dram_type = MEM_HBM3;
  3169. pvt->gpu_umc_base = 0x90000;
  3170. pvt->ops = &gpu_ops;
  3171. break;
  3172. case 0xa0 ... 0xaf:
  3173. pvt->max_mcs = 12;
  3174. pvt->flags.zn_regs_v2 = 1;
  3175. break;
  3176. }
  3177. break;
  3178. case 0x1A:
  3179. switch (pvt->model) {
  3180. case 0x00 ... 0x1f:
  3181. pvt->max_mcs = 12;
  3182. pvt->flags.zn_regs_v2 = 1;
  3183. break;
  3184. case 0x40 ... 0x4f:
  3185. pvt->flags.zn_regs_v2 = 1;
  3186. break;
  3187. case 0x50 ... 0x57:
  3188. case 0xc0 ... 0xc7:
  3189. pvt->max_mcs = 16;
  3190. pvt->flags.zn_regs_v2 = 1;
  3191. break;
  3192. case 0x90 ... 0x9f:
  3193. case 0xa0 ... 0xaf:
  3194. pvt->max_mcs = 8;
  3195. pvt->flags.zn_regs_v2 = 1;
  3196. break;
  3197. }
  3198. break;
  3199. default:
  3200. amd64_err("Unsupported family!\n");
  3201. return -ENODEV;
  3202. }
  3203. if (tmp_name)
  3204. scnprintf(pvt->ctl_name, sizeof(pvt->ctl_name), "%s", tmp_name);
  3205. else
  3206. scnprintf(pvt->ctl_name, sizeof(pvt->ctl_name), "F%02Xh_M%02Xh",
  3207. pvt->fam, pvt->model);
  3208. pvt->csels = kzalloc_objs(*pvt->csels, pvt->max_mcs);
  3209. if (!pvt->csels)
  3210. return -ENOMEM;
  3211. return 0;
  3212. }
  3213. static const struct attribute_group *amd64_edac_attr_groups[] = {
  3214. #ifdef CONFIG_EDAC_DEBUG
  3215. &dbg_group,
  3216. &inj_group,
  3217. #endif
  3218. NULL
  3219. };
  3220. /*
  3221. * For heterogeneous and APU models EDAC CHIP_SELECT and CHANNEL layers
  3222. * should be swapped to fit into the layers.
  3223. */
  3224. static unsigned int get_layer_size(struct amd64_pvt *pvt, u8 layer)
  3225. {
  3226. bool is_gpu = (pvt->ops == &gpu_ops);
  3227. if (!layer)
  3228. return is_gpu ? pvt->max_mcs
  3229. : pvt->csels[0].b_cnt;
  3230. else
  3231. return is_gpu ? pvt->csels[0].b_cnt
  3232. : pvt->max_mcs;
  3233. }
  3234. static int init_one_instance(struct amd64_pvt *pvt)
  3235. {
  3236. struct mem_ctl_info *mci = NULL;
  3237. struct edac_mc_layer layers[2];
  3238. int ret = -ENOMEM;
  3239. layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;
  3240. layers[0].size = get_layer_size(pvt, 0);
  3241. layers[0].is_virt_csrow = true;
  3242. layers[1].type = EDAC_MC_LAYER_CHANNEL;
  3243. layers[1].size = get_layer_size(pvt, 1);
  3244. layers[1].is_virt_csrow = false;
  3245. mci = edac_mc_alloc(pvt->mc_node_id, ARRAY_SIZE(layers), layers, 0);
  3246. if (!mci)
  3247. return ret;
  3248. mci->pvt_info = pvt;
  3249. mci->pdev = &pvt->F3->dev;
  3250. pvt->ops->setup_mci_misc_attrs(mci);
  3251. ret = -ENODEV;
  3252. if (edac_mc_add_mc_with_groups(mci, amd64_edac_attr_groups)) {
  3253. edac_dbg(1, "failed edac_mc_add_mc()\n");
  3254. edac_mc_free(mci);
  3255. return ret;
  3256. }
  3257. return 0;
  3258. }
  3259. static bool instance_has_memory(struct amd64_pvt *pvt)
  3260. {
  3261. bool cs_enabled = false;
  3262. int cs = 0, dct = 0;
  3263. for (dct = 0; dct < pvt->max_mcs; dct++) {
  3264. for_each_chip_select(cs, dct, pvt)
  3265. cs_enabled |= csrow_enabled(cs, dct, pvt);
  3266. }
  3267. return cs_enabled;
  3268. }
  3269. static int probe_one_instance(unsigned int nid)
  3270. {
  3271. struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
  3272. struct amd64_pvt *pvt = NULL;
  3273. struct ecc_settings *s;
  3274. int ret;
  3275. ret = -ENOMEM;
  3276. s = kzalloc_obj(struct ecc_settings);
  3277. if (!s)
  3278. goto err_out;
  3279. ecc_stngs[nid] = s;
  3280. pvt = kzalloc_obj(struct amd64_pvt);
  3281. if (!pvt)
  3282. goto err_settings;
  3283. pvt->mc_node_id = nid;
  3284. pvt->F3 = F3;
  3285. ret = per_family_init(pvt);
  3286. if (ret < 0)
  3287. goto err_enable;
  3288. ret = pvt->ops->hw_info_get(pvt);
  3289. if (ret < 0)
  3290. goto err_enable;
  3291. ret = 0;
  3292. if (!instance_has_memory(pvt)) {
  3293. amd64_info("Node %d: No DIMMs detected.\n", nid);
  3294. goto err_enable;
  3295. }
  3296. if (!pvt->ops->ecc_enabled(pvt)) {
  3297. ret = -ENODEV;
  3298. if (!ecc_enable_override)
  3299. goto err_enable;
  3300. if (boot_cpu_data.x86 >= 0x17) {
  3301. amd64_warn("Forcing ECC on is not recommended on newer systems. Please enable ECC in BIOS.");
  3302. goto err_enable;
  3303. } else
  3304. amd64_warn("Forcing ECC on!\n");
  3305. if (!enable_ecc_error_reporting(s, nid, F3))
  3306. goto err_enable;
  3307. }
  3308. ret = init_one_instance(pvt);
  3309. if (ret < 0) {
  3310. amd64_err("Error probing instance: %d\n", nid);
  3311. if (boot_cpu_data.x86 < 0x17)
  3312. restore_ecc_error_reporting(s, nid, F3);
  3313. goto err_enable;
  3314. }
  3315. amd64_info("%s detected (node %d).\n", pvt->ctl_name, pvt->mc_node_id);
  3316. /* Display and decode various registers for debug purposes. */
  3317. pvt->ops->dump_misc_regs(pvt);
  3318. return ret;
  3319. err_enable:
  3320. hw_info_put(pvt);
  3321. kfree(pvt);
  3322. err_settings:
  3323. kfree(s);
  3324. ecc_stngs[nid] = NULL;
  3325. err_out:
  3326. return ret;
  3327. }
  3328. static void remove_one_instance(unsigned int nid)
  3329. {
  3330. struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
  3331. struct ecc_settings *s = ecc_stngs[nid];
  3332. struct mem_ctl_info *mci;
  3333. struct amd64_pvt *pvt;
  3334. /* Remove from EDAC CORE tracking list */
  3335. mci = edac_mc_del_mc(&F3->dev);
  3336. if (!mci)
  3337. return;
  3338. pvt = mci->pvt_info;
  3339. restore_ecc_error_reporting(s, nid, F3);
  3340. kfree(ecc_stngs[nid]);
  3341. ecc_stngs[nid] = NULL;
  3342. /* Free the EDAC CORE resources */
  3343. mci->pvt_info = NULL;
  3344. hw_info_put(pvt);
  3345. kfree(pvt);
  3346. edac_mc_free(mci);
  3347. }
  3348. static void setup_pci_device(void)
  3349. {
  3350. if (pci_ctl)
  3351. return;
  3352. pci_ctl = edac_pci_create_generic_ctl(pci_ctl_dev, EDAC_MOD_STR);
  3353. if (!pci_ctl) {
  3354. pr_warn("%s(): Unable to create PCI control\n", __func__);
  3355. pr_warn("%s(): PCI error report via EDAC not set\n", __func__);
  3356. }
  3357. }
  3358. static const struct x86_cpu_id amd64_cpuids[] = {
  3359. X86_MATCH_VENDOR_FAM(AMD, 0x0F, NULL),
  3360. X86_MATCH_VENDOR_FAM(AMD, 0x10, NULL),
  3361. X86_MATCH_VENDOR_FAM(AMD, 0x15, NULL),
  3362. X86_MATCH_VENDOR_FAM(AMD, 0x16, NULL),
  3363. X86_MATCH_VENDOR_FAM(AMD, 0x17, NULL),
  3364. X86_MATCH_VENDOR_FAM(HYGON, 0x18, NULL),
  3365. X86_MATCH_VENDOR_FAM(AMD, 0x19, NULL),
  3366. X86_MATCH_VENDOR_FAM(AMD, 0x1A, NULL),
  3367. { }
  3368. };
  3369. MODULE_DEVICE_TABLE(x86cpu, amd64_cpuids);
  3370. static int __init amd64_edac_init(void)
  3371. {
  3372. const char *owner;
  3373. int err = -ENODEV;
  3374. int i;
  3375. if (ghes_get_devices())
  3376. return -EBUSY;
  3377. owner = edac_get_owner();
  3378. if (owner && strncmp(owner, EDAC_MOD_STR, sizeof(EDAC_MOD_STR)))
  3379. return -EBUSY;
  3380. if (!x86_match_cpu(amd64_cpuids))
  3381. return -ENODEV;
  3382. if (!amd_nb_num())
  3383. return -ENODEV;
  3384. opstate_init();
  3385. err = -ENOMEM;
  3386. ecc_stngs = kzalloc_objs(ecc_stngs[0], amd_nb_num());
  3387. if (!ecc_stngs)
  3388. goto err_free;
  3389. msrs = msrs_alloc();
  3390. if (!msrs)
  3391. goto err_free;
  3392. for (i = 0; i < amd_nb_num(); i++) {
  3393. err = probe_one_instance(i);
  3394. if (err) {
  3395. /* unwind properly */
  3396. while (--i >= 0)
  3397. remove_one_instance(i);
  3398. goto err_pci;
  3399. }
  3400. }
  3401. if (!edac_has_mcs()) {
  3402. err = -ENODEV;
  3403. goto err_pci;
  3404. }
  3405. /* register stuff with EDAC MCE */
  3406. if (boot_cpu_data.x86 >= 0x17) {
  3407. amd_register_ecc_decoder(decode_umc_error);
  3408. } else {
  3409. amd_register_ecc_decoder(decode_bus_error);
  3410. setup_pci_device();
  3411. }
  3412. #ifdef CONFIG_X86_32
  3413. amd64_err("%s on 32-bit is unsupported. USE AT YOUR OWN RISK!\n", EDAC_MOD_STR);
  3414. #endif
  3415. return 0;
  3416. err_pci:
  3417. pci_ctl_dev = NULL;
  3418. msrs_free(msrs);
  3419. msrs = NULL;
  3420. err_free:
  3421. kfree(ecc_stngs);
  3422. ecc_stngs = NULL;
  3423. return err;
  3424. }
  3425. static void __exit amd64_edac_exit(void)
  3426. {
  3427. int i;
  3428. if (pci_ctl)
  3429. edac_pci_release_generic_ctl(pci_ctl);
  3430. /* unregister from EDAC MCE */
  3431. if (boot_cpu_data.x86 >= 0x17)
  3432. amd_unregister_ecc_decoder(decode_umc_error);
  3433. else
  3434. amd_unregister_ecc_decoder(decode_bus_error);
  3435. for (i = 0; i < amd_nb_num(); i++)
  3436. remove_one_instance(i);
  3437. kfree(ecc_stngs);
  3438. ecc_stngs = NULL;
  3439. pci_ctl_dev = NULL;
  3440. msrs_free(msrs);
  3441. msrs = NULL;
  3442. }
  3443. module_init(amd64_edac_init);
  3444. module_exit(amd64_edac_exit);
  3445. MODULE_LICENSE("GPL");
  3446. MODULE_AUTHOR("SoftwareBitMaker: Doug Thompson, Dave Peterson, Thayne Harbaugh; AMD");
  3447. MODULE_DESCRIPTION("MC support for AMD64 memory controllers");
  3448. module_param(edac_op_state, int, 0444);
  3449. MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");