| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096 |
- // SPDX-License-Identifier: GPL-2.0
- /*
- * Kunit tests for clk framework
- */
- #include <linux/clk.h>
- #include <linux/clk-provider.h>
- #include <linux/of.h>
- #include <linux/platform_device.h>
- /* Needed for clk_hw_get_clk() */
- #include "clk.h"
- #include <kunit/clk.h>
- #include <kunit/of.h>
- #include <kunit/platform_device.h>
- #include <kunit/test.h>
- #include "clk_parent_data_test.h"
- static const struct clk_ops empty_clk_ops = { };
- #define DUMMY_CLOCK_INIT_RATE (42 * 1000 * 1000)
- #define DUMMY_CLOCK_RATE_1 (142 * 1000 * 1000)
- #define DUMMY_CLOCK_RATE_2 (242 * 1000 * 1000)
- struct clk_dummy_context {
- struct clk_hw hw;
- unsigned long rate;
- };
- static unsigned long clk_dummy_recalc_rate(struct clk_hw *hw,
- unsigned long parent_rate)
- {
- struct clk_dummy_context *ctx =
- container_of(hw, struct clk_dummy_context, hw);
- return ctx->rate;
- }
- static int clk_dummy_determine_rate(struct clk_hw *hw,
- struct clk_rate_request *req)
- {
- /* Just return the same rate without modifying it */
- return 0;
- }
- static int clk_dummy_maximize_rate(struct clk_hw *hw,
- struct clk_rate_request *req)
- {
- /*
- * If there's a maximum set, always run the clock at the maximum
- * allowed.
- */
- if (req->max_rate < ULONG_MAX)
- req->rate = req->max_rate;
- return 0;
- }
- static int clk_dummy_minimize_rate(struct clk_hw *hw,
- struct clk_rate_request *req)
- {
- /*
- * If there's a minimum set, always run the clock at the minimum
- * allowed.
- */
- if (req->min_rate > 0)
- req->rate = req->min_rate;
- return 0;
- }
- static int clk_dummy_set_rate(struct clk_hw *hw,
- unsigned long rate,
- unsigned long parent_rate)
- {
- struct clk_dummy_context *ctx =
- container_of(hw, struct clk_dummy_context, hw);
- ctx->rate = rate;
- return 0;
- }
- static int clk_dummy_single_set_parent(struct clk_hw *hw, u8 index)
- {
- if (index >= clk_hw_get_num_parents(hw))
- return -EINVAL;
- return 0;
- }
- static u8 clk_dummy_single_get_parent(struct clk_hw *hw)
- {
- return 0;
- }
- static const struct clk_ops clk_dummy_rate_ops = {
- .recalc_rate = clk_dummy_recalc_rate,
- .determine_rate = clk_dummy_determine_rate,
- .set_rate = clk_dummy_set_rate,
- };
- static const struct clk_ops clk_dummy_maximize_rate_ops = {
- .recalc_rate = clk_dummy_recalc_rate,
- .determine_rate = clk_dummy_maximize_rate,
- .set_rate = clk_dummy_set_rate,
- };
- static const struct clk_ops clk_dummy_minimize_rate_ops = {
- .recalc_rate = clk_dummy_recalc_rate,
- .determine_rate = clk_dummy_minimize_rate,
- .set_rate = clk_dummy_set_rate,
- };
- static const struct clk_ops clk_dummy_single_parent_ops = {
- /*
- * FIXME: Even though we should probably be able to use
- * __clk_mux_determine_rate() here, if we use it and call
- * clk_round_rate() or clk_set_rate() with a rate lower than
- * what all the parents can provide, it will return -EINVAL.
- *
- * This is due to the fact that it has the undocumented
- * behaviour to always pick up the closest rate higher than the
- * requested rate. If we get something lower, it thus considers
- * that it's not acceptable and will return an error.
- *
- * It's somewhat inconsistent and creates a weird threshold
- * between rates above the parent rate which would be rounded to
- * what the parent can provide, but rates below will simply
- * return an error.
- */
- .determine_rate = __clk_mux_determine_rate_closest,
- .set_parent = clk_dummy_single_set_parent,
- .get_parent = clk_dummy_single_get_parent,
- };
- struct clk_multiple_parent_ctx {
- struct clk_dummy_context parents_ctx[2];
- struct clk_hw hw;
- u8 current_parent;
- };
- static int clk_multiple_parents_mux_set_parent(struct clk_hw *hw, u8 index)
- {
- struct clk_multiple_parent_ctx *ctx =
- container_of(hw, struct clk_multiple_parent_ctx, hw);
- if (index >= clk_hw_get_num_parents(hw))
- return -EINVAL;
- ctx->current_parent = index;
- return 0;
- }
- static u8 clk_multiple_parents_mux_get_parent(struct clk_hw *hw)
- {
- struct clk_multiple_parent_ctx *ctx =
- container_of(hw, struct clk_multiple_parent_ctx, hw);
- return ctx->current_parent;
- }
- static const struct clk_ops clk_multiple_parents_mux_ops = {
- .get_parent = clk_multiple_parents_mux_get_parent,
- .set_parent = clk_multiple_parents_mux_set_parent,
- .determine_rate = __clk_mux_determine_rate_closest,
- };
- static const struct clk_ops clk_multiple_parents_no_reparent_mux_ops = {
- .determine_rate = clk_hw_determine_rate_no_reparent,
- .get_parent = clk_multiple_parents_mux_get_parent,
- .set_parent = clk_multiple_parents_mux_set_parent,
- };
- static int clk_test_init_with_ops(struct kunit *test, const struct clk_ops *ops)
- {
- struct clk_dummy_context *ctx;
- struct clk_init_data init = { };
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- ctx->rate = DUMMY_CLOCK_INIT_RATE;
- test->priv = ctx;
- init.name = "test_dummy_rate";
- init.ops = ops;
- ctx->hw.init = &init;
- ret = clk_hw_register(NULL, &ctx->hw);
- if (ret)
- return ret;
- return 0;
- }
- static int clk_test_init(struct kunit *test)
- {
- return clk_test_init_with_ops(test, &clk_dummy_rate_ops);
- }
- static int clk_maximize_test_init(struct kunit *test)
- {
- return clk_test_init_with_ops(test, &clk_dummy_maximize_rate_ops);
- }
- static int clk_minimize_test_init(struct kunit *test)
- {
- return clk_test_init_with_ops(test, &clk_dummy_minimize_rate_ops);
- }
- static void clk_test_exit(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- clk_hw_unregister(&ctx->hw);
- }
- /*
- * Test that the actual rate matches what is returned by clk_get_rate()
- */
- static void clk_test_get_rate(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, ctx->rate);
- clk_put(clk);
- }
- /*
- * Test that, after a call to clk_set_rate(), the rate returned by
- * clk_get_rate() matches.
- *
- * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't
- * modify the requested rate, which is our case in clk_dummy_rate_ops.
- */
- static void clk_test_set_get_rate(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_1),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- clk_put(clk);
- }
- /*
- * Test that, after several calls to clk_set_rate(), the rate returned
- * by clk_get_rate() matches the last one.
- *
- * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't
- * modify the requested rate, which is our case in clk_dummy_rate_ops.
- */
- static void clk_test_set_set_get_rate(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_1),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that clk_round_rate and clk_set_rate are consitent and will
- * return the same frequency.
- */
- static void clk_test_round_set_get_rate(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long set_rate;
- long rounded_rate;
- rounded_rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_1);
- KUNIT_ASSERT_GT(test, rounded_rate, 0);
- KUNIT_EXPECT_EQ(test, rounded_rate, DUMMY_CLOCK_RATE_1);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_1),
- 0);
- set_rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, set_rate, 0);
- KUNIT_EXPECT_EQ(test, rounded_rate, set_rate);
- clk_put(clk);
- }
- static struct kunit_case clk_test_cases[] = {
- KUNIT_CASE(clk_test_get_rate),
- KUNIT_CASE(clk_test_set_get_rate),
- KUNIT_CASE(clk_test_set_set_get_rate),
- KUNIT_CASE(clk_test_round_set_get_rate),
- {}
- };
- /*
- * Test suite for a basic rate clock, without any parent.
- *
- * These tests exercise the rate API with simple scenarios
- */
- static struct kunit_suite clk_test_suite = {
- .name = "clk-test",
- .init = clk_test_init,
- .exit = clk_test_exit,
- .test_cases = clk_test_cases,
- };
- static int clk_uncached_test_init(struct kunit *test)
- {
- struct clk_dummy_context *ctx;
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->rate = DUMMY_CLOCK_INIT_RATE;
- ctx->hw.init = CLK_HW_INIT_NO_PARENT("test-clk",
- &clk_dummy_rate_ops,
- CLK_GET_RATE_NOCACHE);
- ret = clk_hw_register(NULL, &ctx->hw);
- if (ret)
- return ret;
- return 0;
- }
- /*
- * Test that for an uncached clock, the clock framework doesn't cache
- * the rate and clk_get_rate() will return the underlying clock rate
- * even if it changed.
- */
- static void clk_test_uncached_get_rate(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_INIT_RATE);
- /* We change the rate behind the clock framework's back */
- ctx->rate = DUMMY_CLOCK_RATE_1;
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- clk_put(clk);
- }
- /*
- * Test that for an uncached clock, clk_set_rate_range() will work
- * properly if the rate hasn't changed.
- */
- static void clk_test_uncached_set_range(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that for an uncached clock, clk_set_rate_range() will work
- * properly if the rate has changed in hardware.
- *
- * In this case, it means that if the rate wasn't initially in the range
- * we're trying to set, but got changed at some point into the range
- * without the kernel knowing about it, its rate shouldn't be affected.
- */
- static void clk_test_uncached_updated_rate_set_range(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- /* We change the rate behind the clock framework's back */
- ctx->rate = DUMMY_CLOCK_RATE_1 + 1000;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1 + 1000);
- clk_put(clk);
- }
- static struct kunit_case clk_uncached_test_cases[] = {
- KUNIT_CASE(clk_test_uncached_get_rate),
- KUNIT_CASE(clk_test_uncached_set_range),
- KUNIT_CASE(clk_test_uncached_updated_rate_set_range),
- {}
- };
- /*
- * Test suite for a basic, uncached, rate clock, without any parent.
- *
- * These tests exercise the rate API with simple scenarios
- */
- static struct kunit_suite clk_uncached_test_suite = {
- .name = "clk-uncached-test",
- .init = clk_uncached_test_init,
- .exit = clk_test_exit,
- .test_cases = clk_uncached_test_cases,
- };
- static int
- clk_multiple_parents_mux_test_init(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx;
- const char *parents[2] = { "parent-0", "parent-1"};
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->parents_ctx[0].hw.init = CLK_HW_INIT_NO_PARENT("parent-0",
- &clk_dummy_rate_ops,
- 0);
- ctx->parents_ctx[0].rate = DUMMY_CLOCK_RATE_1;
- ret = clk_hw_register_kunit(test, NULL, &ctx->parents_ctx[0].hw);
- if (ret)
- return ret;
- ctx->parents_ctx[1].hw.init = CLK_HW_INIT_NO_PARENT("parent-1",
- &clk_dummy_rate_ops,
- 0);
- ctx->parents_ctx[1].rate = DUMMY_CLOCK_RATE_2;
- ret = clk_hw_register_kunit(test, NULL, &ctx->parents_ctx[1].hw);
- if (ret)
- return ret;
- ctx->current_parent = 0;
- ctx->hw.init = CLK_HW_INIT_PARENTS("test-mux", parents,
- &clk_multiple_parents_mux_ops,
- CLK_SET_RATE_PARENT);
- ret = clk_hw_register_kunit(test, NULL, &ctx->hw);
- if (ret)
- return ret;
- return 0;
- }
- /*
- * Test that for a clock with multiple parents, clk_get_parent()
- * actually returns the current one.
- */
- static void
- clk_test_multiple_parents_mux_get_parent(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent = clk_hw_get_clk(&ctx->parents_ctx[0].hw, NULL);
- KUNIT_EXPECT_TRUE(test, clk_is_match(clk_get_parent(clk), parent));
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that for a clock with a multiple parents, clk_has_parent()
- * actually reports all of them as parents.
- */
- static void
- clk_test_multiple_parents_mux_has_parent(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent;
- parent = clk_hw_get_clk(&ctx->parents_ctx[0].hw, NULL);
- KUNIT_EXPECT_TRUE(test, clk_has_parent(clk, parent));
- clk_put(parent);
- parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_EXPECT_TRUE(test, clk_has_parent(clk, parent));
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that for a clock with a multiple parents, if we set a range on
- * that clock and the parent is changed, its rate after the reparenting
- * is still within the range we asked for.
- *
- * FIXME: clk_set_parent() only does the reparenting but doesn't
- * reevaluate whether the new clock rate is within its boundaries or
- * not.
- */
- static void
- clk_test_multiple_parents_mux_set_range_set_parent_get_rate(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk_kunit(test, hw, NULL);
- struct clk *parent1, *parent2;
- unsigned long rate;
- int ret;
- kunit_skip(test, "This needs to be fixed in the core.");
- parent1 = clk_hw_get_clk_kunit(test, &ctx->parents_ctx[0].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent1);
- KUNIT_ASSERT_TRUE(test, clk_is_match(clk_get_parent(clk), parent1));
- parent2 = clk_hw_get_clk_kunit(test, &ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent2);
- ret = clk_set_rate(parent1, DUMMY_CLOCK_RATE_1);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_rate(parent2, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1 - 1000,
- DUMMY_CLOCK_RATE_1 + 1000);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_parent(clk, parent2);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1 - 1000);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_1 + 1000);
- }
- static struct kunit_case clk_multiple_parents_mux_test_cases[] = {
- KUNIT_CASE(clk_test_multiple_parents_mux_get_parent),
- KUNIT_CASE(clk_test_multiple_parents_mux_has_parent),
- KUNIT_CASE(clk_test_multiple_parents_mux_set_range_set_parent_get_rate),
- {}
- };
- /*
- * Test suite for a basic mux clock with two parents, with
- * CLK_SET_RATE_PARENT on the child.
- *
- * These tests exercise the consumer API and check that the state of the
- * child and parents are sane and consistent.
- */
- static struct kunit_suite
- clk_multiple_parents_mux_test_suite = {
- .name = "clk-multiple-parents-mux-test",
- .init = clk_multiple_parents_mux_test_init,
- .test_cases = clk_multiple_parents_mux_test_cases,
- };
- static int
- clk_orphan_transparent_multiple_parent_mux_test_init(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx;
- const char *parents[2] = { "missing-parent", "proper-parent"};
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->parents_ctx[1].hw.init = CLK_HW_INIT_NO_PARENT("proper-parent",
- &clk_dummy_rate_ops,
- 0);
- ctx->parents_ctx[1].rate = DUMMY_CLOCK_INIT_RATE;
- ret = clk_hw_register_kunit(test, NULL, &ctx->parents_ctx[1].hw);
- if (ret)
- return ret;
- ctx->hw.init = CLK_HW_INIT_PARENTS("test-orphan-mux", parents,
- &clk_multiple_parents_mux_ops,
- CLK_SET_RATE_PARENT);
- ret = clk_hw_register_kunit(test, NULL, &ctx->hw);
- if (ret)
- return ret;
- return 0;
- }
- /*
- * Test that, for a mux whose current parent hasn't been registered yet and is
- * thus orphan, clk_get_parent() will return NULL.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_get_parent(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- KUNIT_EXPECT_PTR_EQ(test, clk_get_parent(clk), NULL);
- clk_put(clk);
- }
- /*
- * Test that, for a mux whose current parent hasn't been registered yet,
- * calling clk_set_parent() to a valid parent will properly update the
- * mux parent and its orphan status.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_set_parent(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent, *new_parent;
- int ret;
- parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- ret = clk_set_parent(clk, parent);
- KUNIT_ASSERT_EQ(test, ret, 0);
- new_parent = clk_get_parent(clk);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- KUNIT_EXPECT_TRUE(test, clk_is_match(parent, new_parent));
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that, for a mux that started orphan but got switched to a valid
- * parent, calling clk_drop_range() on the mux won't affect the parent
- * rate.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_set_parent_drop_range(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent;
- unsigned long parent_rate, new_parent_rate;
- int ret;
- parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- parent_rate = clk_get_rate(parent);
- KUNIT_ASSERT_GT(test, parent_rate, 0);
- ret = clk_set_parent(clk, parent);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_drop_range(clk);
- KUNIT_ASSERT_EQ(test, ret, 0);
- new_parent_rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, new_parent_rate, 0);
- KUNIT_EXPECT_EQ(test, parent_rate, new_parent_rate);
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that, for a mux that started orphan but got switched to a valid
- * parent, the rate of the mux and its new parent are consistent.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_set_parent_get_rate(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent;
- unsigned long parent_rate, rate;
- int ret;
- parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- parent_rate = clk_get_rate(parent);
- KUNIT_ASSERT_GT(test, parent_rate, 0);
- ret = clk_set_parent(clk, parent);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, parent_rate, rate);
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that, for a mux that started orphan but got switched to a valid
- * parent, calling clk_put() on the mux won't affect the parent rate.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_set_parent_put(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk *clk, *parent;
- unsigned long parent_rate, new_parent_rate;
- int ret;
- parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- clk = clk_hw_get_clk(&ctx->hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, clk);
- parent_rate = clk_get_rate(parent);
- KUNIT_ASSERT_GT(test, parent_rate, 0);
- ret = clk_set_parent(clk, parent);
- KUNIT_ASSERT_EQ(test, ret, 0);
- clk_put(clk);
- new_parent_rate = clk_get_rate(parent);
- KUNIT_ASSERT_GT(test, new_parent_rate, 0);
- KUNIT_EXPECT_EQ(test, parent_rate, new_parent_rate);
- clk_put(parent);
- }
- /*
- * Test that, for a mux that started orphan but got switched to a valid
- * parent, calling clk_set_rate_range() will affect the parent state if
- * its rate is out of range.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_set_parent_set_range_modified(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent;
- unsigned long rate;
- int ret;
- parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- ret = clk_set_parent(clk, parent);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_rate_range(clk, DUMMY_CLOCK_RATE_1, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that, for a mux that started orphan but got switched to a valid
- * parent, calling clk_set_rate_range() won't affect the parent state if
- * its rate is within range.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_set_parent_set_range_untouched(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent;
- unsigned long parent_rate, new_parent_rate;
- int ret;
- parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- parent_rate = clk_get_rate(parent);
- KUNIT_ASSERT_GT(test, parent_rate, 0);
- ret = clk_set_parent(clk, parent);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_rate_range(clk,
- DUMMY_CLOCK_INIT_RATE - 1000,
- DUMMY_CLOCK_INIT_RATE + 1000);
- KUNIT_ASSERT_EQ(test, ret, 0);
- new_parent_rate = clk_get_rate(parent);
- KUNIT_ASSERT_GT(test, new_parent_rate, 0);
- KUNIT_EXPECT_EQ(test, parent_rate, new_parent_rate);
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that, for a mux whose current parent hasn't been registered yet,
- * calling clk_set_rate_range() will succeed, and will be taken into
- * account when rounding a rate.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_set_range_round_rate(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- long rate;
- int ret;
- ret = clk_set_rate_range(clk, DUMMY_CLOCK_RATE_1, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_1 - 1000);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that, for a mux that started orphan, was assigned and rate and
- * then got switched to a valid parent, its rate is eventually within
- * range.
- *
- * FIXME: Even though we update the rate as part of clk_set_parent(), we
- * don't evaluate whether that new rate is within range and needs to be
- * adjusted.
- */
- static void
- clk_test_orphan_transparent_multiple_parent_mux_set_range_set_parent_get_rate(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk_kunit(test, hw, NULL);
- struct clk *parent;
- unsigned long rate;
- int ret;
- kunit_skip(test, "This needs to be fixed in the core.");
- clk_hw_set_rate_range(hw, DUMMY_CLOCK_RATE_1, DUMMY_CLOCK_RATE_2);
- parent = clk_hw_get_clk_kunit(test, &ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- ret = clk_set_parent(clk, parent);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- }
- static struct kunit_case clk_orphan_transparent_multiple_parent_mux_test_cases[] = {
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_get_parent),
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_set_parent),
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_set_parent_drop_range),
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_set_parent_get_rate),
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_set_parent_put),
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_set_parent_set_range_modified),
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_set_parent_set_range_untouched),
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_set_range_round_rate),
- KUNIT_CASE(clk_test_orphan_transparent_multiple_parent_mux_set_range_set_parent_get_rate),
- {}
- };
- /*
- * Test suite for a basic mux clock with two parents. The default parent
- * isn't registered, only the second parent is. By default, the clock
- * will thus be orphan.
- *
- * These tests exercise the behaviour of the consumer API when dealing
- * with an orphan clock, and how we deal with the transition to a valid
- * parent.
- */
- static struct kunit_suite clk_orphan_transparent_multiple_parent_mux_test_suite = {
- .name = "clk-orphan-transparent-multiple-parent-mux-test",
- .init = clk_orphan_transparent_multiple_parent_mux_test_init,
- .test_cases = clk_orphan_transparent_multiple_parent_mux_test_cases,
- };
- struct clk_single_parent_ctx {
- struct clk_dummy_context parent_ctx;
- struct clk_hw hw;
- };
- static int clk_single_parent_mux_test_init(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx;
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->parent_ctx.rate = DUMMY_CLOCK_INIT_RATE;
- ctx->parent_ctx.hw.init =
- CLK_HW_INIT_NO_PARENT("parent-clk",
- &clk_dummy_rate_ops,
- 0);
- ret = clk_hw_register_kunit(test, NULL, &ctx->parent_ctx.hw);
- if (ret)
- return ret;
- ctx->hw.init = CLK_HW_INIT("test-clk", "parent-clk",
- &clk_dummy_single_parent_ops,
- CLK_SET_RATE_PARENT);
- ret = clk_hw_register_kunit(test, NULL, &ctx->hw);
- if (ret)
- return ret;
- return 0;
- }
- static void
- clk_single_parent_mux_test_exit(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- clk_hw_unregister(&ctx->hw);
- clk_hw_unregister(&ctx->parent_ctx.hw);
- }
- /*
- * Test that for a clock with a single parent, clk_get_parent() actually
- * returns the parent.
- */
- static void
- clk_test_single_parent_mux_get_parent(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent = clk_hw_get_clk(&ctx->parent_ctx.hw, NULL);
- KUNIT_EXPECT_TRUE(test, clk_is_match(clk_get_parent(clk), parent));
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that for a clock with a single parent, clk_has_parent() actually
- * reports it as a parent.
- */
- static void
- clk_test_single_parent_mux_has_parent(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent = clk_hw_get_clk(&ctx->parent_ctx.hw, NULL);
- KUNIT_EXPECT_TRUE(test, clk_has_parent(clk, parent));
- clk_put(parent);
- clk_put(clk);
- }
- /*
- * Test that for a clock that can't modify its rate and with a single
- * parent, if we set disjoints range on the parent and then the child,
- * the second will return an error.
- *
- * FIXME: clk_set_rate_range() only considers the current clock when
- * evaluating whether ranges are disjoints and not the upstream clocks
- * ranges.
- */
- static void
- clk_test_single_parent_mux_set_range_disjoint_child_last(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk_kunit(test, hw, NULL);
- struct clk *parent;
- int ret;
- kunit_skip(test, "This needs to be fixed in the core.");
- parent = clk_get_parent(clk);
- KUNIT_ASSERT_PTR_NE(test, parent, NULL);
- ret = clk_set_rate_range(parent, 1000, 2000);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_rate_range(clk, 3000, 4000);
- KUNIT_EXPECT_LT(test, ret, 0);
- }
- /*
- * Test that for a clock that can't modify its rate and with a single
- * parent, if we set disjoints range on the child and then the parent,
- * the second will return an error.
- *
- * FIXME: clk_set_rate_range() only considers the current clock when
- * evaluating whether ranges are disjoints and not the downstream clocks
- * ranges.
- */
- static void
- clk_test_single_parent_mux_set_range_disjoint_parent_last(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk_kunit(test, hw, NULL);
- struct clk *parent;
- int ret;
- kunit_skip(test, "This needs to be fixed in the core.");
- parent = clk_get_parent(clk);
- KUNIT_ASSERT_PTR_NE(test, parent, NULL);
- ret = clk_set_rate_range(clk, 1000, 2000);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_rate_range(parent, 3000, 4000);
- KUNIT_EXPECT_LT(test, ret, 0);
- }
- /*
- * Test that for a clock that can't modify its rate and with a single
- * parent, if we set a range on the parent and then call
- * clk_round_rate(), the boundaries of the parent are taken into
- * account.
- */
- static void
- clk_test_single_parent_mux_set_range_round_rate_parent_only(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent;
- long rate;
- int ret;
- parent = clk_get_parent(clk);
- KUNIT_ASSERT_PTR_NE(test, parent, NULL);
- ret = clk_set_rate_range(parent, DUMMY_CLOCK_RATE_1, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_1 - 1000);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that for a clock that can't modify its rate and with a single
- * parent, if we set a range on the parent and a more restrictive one on
- * the child, and then call clk_round_rate(), the boundaries of the
- * two clocks are taken into account.
- */
- static void
- clk_test_single_parent_mux_set_range_round_rate_child_smaller(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent;
- long rate;
- int ret;
- parent = clk_get_parent(clk);
- KUNIT_ASSERT_PTR_NE(test, parent, NULL);
- ret = clk_set_rate_range(parent, DUMMY_CLOCK_RATE_1, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_rate_range(clk, DUMMY_CLOCK_RATE_1 + 1000, DUMMY_CLOCK_RATE_2 - 1000);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_1 - 1000);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1 + 1000);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2 - 1000);
- rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_2 + 1000);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1 + 1000);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2 - 1000);
- clk_put(clk);
- }
- /*
- * Test that for a clock that can't modify its rate and with a single
- * parent, if we set a range on the child and a more restrictive one on
- * the parent, and then call clk_round_rate(), the boundaries of the
- * two clocks are taken into account.
- */
- static void
- clk_test_single_parent_mux_set_range_round_rate_parent_smaller(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *parent;
- long rate;
- int ret;
- parent = clk_get_parent(clk);
- KUNIT_ASSERT_PTR_NE(test, parent, NULL);
- ret = clk_set_rate_range(parent, DUMMY_CLOCK_RATE_1 + 1000, DUMMY_CLOCK_RATE_2 - 1000);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = clk_set_rate_range(clk, DUMMY_CLOCK_RATE_1, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_1 - 1000);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1 + 1000);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2 - 1000);
- rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_2 + 1000);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1 + 1000);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2 - 1000);
- clk_put(clk);
- }
- static struct kunit_case clk_single_parent_mux_test_cases[] = {
- KUNIT_CASE(clk_test_single_parent_mux_get_parent),
- KUNIT_CASE(clk_test_single_parent_mux_has_parent),
- KUNIT_CASE(clk_test_single_parent_mux_set_range_disjoint_child_last),
- KUNIT_CASE(clk_test_single_parent_mux_set_range_disjoint_parent_last),
- KUNIT_CASE(clk_test_single_parent_mux_set_range_round_rate_child_smaller),
- KUNIT_CASE(clk_test_single_parent_mux_set_range_round_rate_parent_only),
- KUNIT_CASE(clk_test_single_parent_mux_set_range_round_rate_parent_smaller),
- {}
- };
- /*
- * Test suite for a basic mux clock with one parent, with
- * CLK_SET_RATE_PARENT on the child.
- *
- * These tests exercise the consumer API and check that the state of the
- * child and parent are sane and consistent.
- */
- static struct kunit_suite
- clk_single_parent_mux_test_suite = {
- .name = "clk-single-parent-mux-test",
- .init = clk_single_parent_mux_test_init,
- .test_cases = clk_single_parent_mux_test_cases,
- };
- static int clk_orphan_transparent_single_parent_mux_test_init(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx;
- struct clk_init_data init = { };
- const char * const parents[] = { "orphan_parent" };
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- init.name = "test_orphan_dummy_parent";
- init.ops = &clk_dummy_single_parent_ops;
- init.parent_names = parents;
- init.num_parents = ARRAY_SIZE(parents);
- init.flags = CLK_SET_RATE_PARENT;
- ctx->hw.init = &init;
- ret = clk_hw_register(NULL, &ctx->hw);
- if (ret)
- return ret;
- memset(&init, 0, sizeof(init));
- init.name = "orphan_parent";
- init.ops = &clk_dummy_rate_ops;
- ctx->parent_ctx.hw.init = &init;
- ctx->parent_ctx.rate = DUMMY_CLOCK_INIT_RATE;
- ret = clk_hw_register(NULL, &ctx->parent_ctx.hw);
- if (ret)
- return ret;
- return 0;
- }
- /*
- * Test that a mux-only clock, with an initial rate within a range,
- * will still have the same rate after the range has been enforced.
- *
- * See:
- * https://lore.kernel.org/linux-clk/7720158d-10a7-a17b-73a4-a8615c9c6d5c@collabora.com/
- */
- static void clk_test_orphan_transparent_parent_mux_set_range(struct kunit *test)
- {
- struct clk_single_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate, new_rate;
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- ctx->parent_ctx.rate - 1000,
- ctx->parent_ctx.rate + 1000),
- 0);
- new_rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, new_rate, 0);
- KUNIT_EXPECT_EQ(test, rate, new_rate);
- clk_put(clk);
- }
- static struct kunit_case clk_orphan_transparent_single_parent_mux_test_cases[] = {
- KUNIT_CASE(clk_test_orphan_transparent_parent_mux_set_range),
- {}
- };
- /*
- * Test suite for a basic mux clock with one parent. The parent is
- * registered after its child. The clock will thus be an orphan when
- * registered, but will no longer be when the tests run.
- *
- * These tests make sure a clock that used to be orphan has a sane,
- * consistent, behaviour.
- */
- static struct kunit_suite clk_orphan_transparent_single_parent_test_suite = {
- .name = "clk-orphan-transparent-single-parent-test",
- .init = clk_orphan_transparent_single_parent_mux_test_init,
- .exit = clk_single_parent_mux_test_exit,
- .test_cases = clk_orphan_transparent_single_parent_mux_test_cases,
- };
- struct clk_single_parent_two_lvl_ctx {
- struct clk_dummy_context parent_parent_ctx;
- struct clk_dummy_context parent_ctx;
- struct clk_hw hw;
- };
- static int
- clk_orphan_two_level_root_last_test_init(struct kunit *test)
- {
- struct clk_single_parent_two_lvl_ctx *ctx;
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->parent_ctx.hw.init =
- CLK_HW_INIT("intermediate-parent",
- "root-parent",
- &clk_dummy_single_parent_ops,
- CLK_SET_RATE_PARENT);
- ret = clk_hw_register(NULL, &ctx->parent_ctx.hw);
- if (ret)
- return ret;
- ctx->hw.init =
- CLK_HW_INIT("test-clk", "intermediate-parent",
- &clk_dummy_single_parent_ops,
- CLK_SET_RATE_PARENT);
- ret = clk_hw_register(NULL, &ctx->hw);
- if (ret)
- return ret;
- ctx->parent_parent_ctx.rate = DUMMY_CLOCK_INIT_RATE;
- ctx->parent_parent_ctx.hw.init =
- CLK_HW_INIT_NO_PARENT("root-parent",
- &clk_dummy_rate_ops,
- 0);
- ret = clk_hw_register(NULL, &ctx->parent_parent_ctx.hw);
- if (ret)
- return ret;
- return 0;
- }
- static void
- clk_orphan_two_level_root_last_test_exit(struct kunit *test)
- {
- struct clk_single_parent_two_lvl_ctx *ctx = test->priv;
- clk_hw_unregister(&ctx->hw);
- clk_hw_unregister(&ctx->parent_ctx.hw);
- clk_hw_unregister(&ctx->parent_parent_ctx.hw);
- }
- /*
- * Test that, for a clock whose parent used to be orphan, clk_get_rate()
- * will return the proper rate.
- */
- static void
- clk_orphan_two_level_root_last_test_get_rate(struct kunit *test)
- {
- struct clk_single_parent_two_lvl_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- rate = clk_get_rate(clk);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_INIT_RATE);
- clk_put(clk);
- }
- /*
- * Test that, for a clock whose parent used to be orphan,
- * clk_set_rate_range() won't affect its rate if it is already within
- * range.
- *
- * See (for Exynos 4210):
- * https://lore.kernel.org/linux-clk/366a0232-bb4a-c357-6aa8-636e398e05eb@samsung.com/
- */
- static void
- clk_orphan_two_level_root_last_test_set_range(struct kunit *test)
- {
- struct clk_single_parent_two_lvl_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- int ret;
- ret = clk_set_rate_range(clk,
- DUMMY_CLOCK_INIT_RATE - 1000,
- DUMMY_CLOCK_INIT_RATE + 1000);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_INIT_RATE);
- clk_put(clk);
- }
- static struct kunit_case
- clk_orphan_two_level_root_last_test_cases[] = {
- KUNIT_CASE(clk_orphan_two_level_root_last_test_get_rate),
- KUNIT_CASE(clk_orphan_two_level_root_last_test_set_range),
- {}
- };
- /*
- * Test suite for a basic, transparent, clock with a parent that is also
- * such a clock. The parent's parent is registered last, while the
- * parent and its child are registered in that order. The intermediate
- * and leaf clocks will thus be orphan when registered, but the leaf
- * clock itself will always have its parent and will never be
- * reparented. Indeed, it's only orphan because its parent is.
- *
- * These tests exercise the behaviour of the consumer API when dealing
- * with an orphan clock, and how we deal with the transition to a valid
- * parent.
- */
- static struct kunit_suite
- clk_orphan_two_level_root_last_test_suite = {
- .name = "clk-orphan-two-level-root-last-test",
- .init = clk_orphan_two_level_root_last_test_init,
- .exit = clk_orphan_two_level_root_last_test_exit,
- .test_cases = clk_orphan_two_level_root_last_test_cases,
- };
- /*
- * Test that clk_set_rate_range won't return an error for a valid range
- * and that it will make sure the rate of the clock is within the
- * boundaries.
- */
- static void clk_range_test_set_range(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that calling clk_set_rate_range with a minimum rate higher than
- * the maximum rate returns an error.
- */
- static void clk_range_test_set_range_invalid(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- KUNIT_EXPECT_LT(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1 + 1000,
- DUMMY_CLOCK_RATE_1),
- 0);
- clk_put(clk);
- }
- /*
- * Test that users can't set multiple, disjoints, range that would be
- * impossible to meet.
- */
- static void clk_range_test_multiple_disjoints_range(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *user1, *user2;
- user1 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user1);
- user2 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user2);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user1, 1000, 2000),
- 0);
- KUNIT_EXPECT_LT(test,
- clk_set_rate_range(user2, 3000, 4000),
- 0);
- clk_put(user2);
- clk_put(user1);
- }
- /*
- * Test that if our clock has some boundaries and we try to round a rate
- * lower than the minimum, the returned rate will be within range.
- */
- static void clk_range_test_set_range_round_rate_lower(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_1 - 1000);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that if our clock has some boundaries and we try to set a rate
- * higher than the maximum, the new rate will be within range.
- */
- static void clk_range_test_set_range_set_rate_lower(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_1 - 1000),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that if our clock has some boundaries and we try to round and
- * set a rate lower than the minimum, the rate returned by
- * clk_round_rate() will be consistent with the new rate set by
- * clk_set_rate().
- */
- static void clk_range_test_set_range_set_round_rate_consistent_lower(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- long rounded;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rounded = clk_round_rate(clk, DUMMY_CLOCK_RATE_1 - 1000);
- KUNIT_ASSERT_GT(test, rounded, 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_1 - 1000),
- 0);
- KUNIT_EXPECT_EQ(test, rounded, clk_get_rate(clk));
- clk_put(clk);
- }
- /*
- * Test that if our clock has some boundaries and we try to round a rate
- * higher than the maximum, the returned rate will be within range.
- */
- static void clk_range_test_set_range_round_rate_higher(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_round_rate(clk, DUMMY_CLOCK_RATE_2 + 1000);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that if our clock has some boundaries and we try to set a rate
- * higher than the maximum, the new rate will be within range.
- */
- static void clk_range_test_set_range_set_rate_higher(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_2 + 1000),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_GE(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_LE(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that if our clock has some boundaries and we try to round and
- * set a rate higher than the maximum, the rate returned by
- * clk_round_rate() will be consistent with the new rate set by
- * clk_set_rate().
- */
- static void clk_range_test_set_range_set_round_rate_consistent_higher(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- long rounded;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rounded = clk_round_rate(clk, DUMMY_CLOCK_RATE_2 + 1000);
- KUNIT_ASSERT_GT(test, rounded, 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_2 + 1000),
- 0);
- KUNIT_EXPECT_EQ(test, rounded, clk_get_rate(clk));
- clk_put(clk);
- }
- /*
- * Test that if our clock has a rate lower than the minimum set by a
- * call to clk_set_rate_range(), the rate will be raised to match the
- * new minimum.
- *
- * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't
- * modify the requested rate, which is our case in clk_dummy_rate_ops.
- */
- static void clk_range_test_set_range_get_rate_raised(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_1 - 1000),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- clk_put(clk);
- }
- /*
- * Test that if our clock has a rate higher than the maximum set by a
- * call to clk_set_rate_range(), the rate will be lowered to match the
- * new maximum.
- *
- * This assumes that clk_ops.determine_rate or clk_ops.round_rate won't
- * modify the requested rate, which is our case in clk_dummy_rate_ops.
- */
- static void clk_range_test_set_range_get_rate_lowered(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_2 + 1000),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- static struct kunit_case clk_range_test_cases[] = {
- KUNIT_CASE(clk_range_test_set_range),
- KUNIT_CASE(clk_range_test_set_range_invalid),
- KUNIT_CASE(clk_range_test_multiple_disjoints_range),
- KUNIT_CASE(clk_range_test_set_range_round_rate_lower),
- KUNIT_CASE(clk_range_test_set_range_set_rate_lower),
- KUNIT_CASE(clk_range_test_set_range_set_round_rate_consistent_lower),
- KUNIT_CASE(clk_range_test_set_range_round_rate_higher),
- KUNIT_CASE(clk_range_test_set_range_set_rate_higher),
- KUNIT_CASE(clk_range_test_set_range_set_round_rate_consistent_higher),
- KUNIT_CASE(clk_range_test_set_range_get_rate_raised),
- KUNIT_CASE(clk_range_test_set_range_get_rate_lowered),
- {}
- };
- /*
- * Test suite for a basic rate clock, without any parent.
- *
- * These tests exercise the rate range API: clk_set_rate_range(),
- * clk_set_min_rate(), clk_set_max_rate(), clk_drop_range().
- */
- static struct kunit_suite clk_range_test_suite = {
- .name = "clk-range-test",
- .init = clk_test_init,
- .exit = clk_test_exit,
- .test_cases = clk_range_test_cases,
- };
- /*
- * Test that if we have several subsequent calls to
- * clk_set_rate_range(), the core will reevaluate whether a new rate is
- * needed each and every time.
- *
- * With clk_dummy_maximize_rate_ops, this means that the rate will
- * trail along the maximum as it evolves.
- */
- static void clk_range_test_set_range_rate_maximized(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_2 + 1000),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2 - 1000),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2 - 1000);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(clk);
- }
- /*
- * Test that if we have several subsequent calls to
- * clk_set_rate_range(), across multiple users, the core will reevaluate
- * whether a new rate is needed each and every time.
- *
- * With clk_dummy_maximize_rate_ops, this means that the rate will
- * trail along the maximum as it evolves.
- */
- static void clk_range_test_multiple_set_range_rate_maximized(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *user1, *user2;
- unsigned long rate;
- user1 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user1);
- user2 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user2);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_2 + 1000),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user1,
- 0,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user2,
- 0,
- DUMMY_CLOCK_RATE_1),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_ASSERT_EQ(test,
- clk_drop_range(user2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(user2);
- clk_put(user1);
- clk_put(clk);
- }
- /*
- * Test that if we have several subsequent calls to
- * clk_set_rate_range(), across multiple users, the core will reevaluate
- * whether a new rate is needed, including when a user drop its clock.
- *
- * With clk_dummy_maximize_rate_ops, this means that the rate will
- * trail along the maximum as it evolves.
- */
- static void clk_range_test_multiple_set_range_rate_put_maximized(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *user1, *user2;
- unsigned long rate;
- user1 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user1);
- user2 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user2);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_2 + 1000),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user1,
- 0,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user2,
- 0,
- DUMMY_CLOCK_RATE_1),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- clk_put(user2);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(user1);
- clk_put(clk);
- }
- static struct kunit_case clk_range_maximize_test_cases[] = {
- KUNIT_CASE(clk_range_test_set_range_rate_maximized),
- KUNIT_CASE(clk_range_test_multiple_set_range_rate_maximized),
- KUNIT_CASE(clk_range_test_multiple_set_range_rate_put_maximized),
- {}
- };
- /*
- * Test suite for a basic rate clock, without any parent.
- *
- * These tests exercise the rate range API: clk_set_rate_range(),
- * clk_set_min_rate(), clk_set_max_rate(), clk_drop_range(), with a
- * driver that will always try to run at the highest possible rate.
- */
- static struct kunit_suite clk_range_maximize_test_suite = {
- .name = "clk-range-maximize-test",
- .init = clk_maximize_test_init,
- .exit = clk_test_exit,
- .test_cases = clk_range_maximize_test_cases,
- };
- /*
- * Test that if we have several subsequent calls to
- * clk_set_rate_range(), the core will reevaluate whether a new rate is
- * needed each and every time.
- *
- * With clk_dummy_minimize_rate_ops, this means that the rate will
- * trail along the minimum as it evolves.
- */
- static void clk_range_test_set_range_rate_minimized(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- unsigned long rate;
- KUNIT_ASSERT_EQ(test,
- clk_set_rate(clk, DUMMY_CLOCK_RATE_1 - 1000),
- 0);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1 + 1000,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1 + 1000);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(clk,
- DUMMY_CLOCK_RATE_1,
- DUMMY_CLOCK_RATE_2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- clk_put(clk);
- }
- /*
- * Test that if we have several subsequent calls to
- * clk_set_rate_range(), across multiple users, the core will reevaluate
- * whether a new rate is needed each and every time.
- *
- * With clk_dummy_minimize_rate_ops, this means that the rate will
- * trail along the minimum as it evolves.
- */
- static void clk_range_test_multiple_set_range_rate_minimized(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *user1, *user2;
- unsigned long rate;
- user1 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user1);
- user2 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user2);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user1,
- DUMMY_CLOCK_RATE_1,
- ULONG_MAX),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user2,
- DUMMY_CLOCK_RATE_2,
- ULONG_MAX),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- KUNIT_ASSERT_EQ(test,
- clk_drop_range(user2),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- clk_put(user2);
- clk_put(user1);
- clk_put(clk);
- }
- /*
- * Test that if we have several subsequent calls to
- * clk_set_rate_range(), across multiple users, the core will reevaluate
- * whether a new rate is needed, including when a user drop its clock.
- *
- * With clk_dummy_minimize_rate_ops, this means that the rate will
- * trail along the minimum as it evolves.
- */
- static void clk_range_test_multiple_set_range_rate_put_minimized(struct kunit *test)
- {
- struct clk_dummy_context *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *user1, *user2;
- unsigned long rate;
- user1 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user1);
- user2 = clk_hw_get_clk(hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, user2);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user1,
- DUMMY_CLOCK_RATE_1,
- ULONG_MAX),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_ASSERT_EQ(test,
- clk_set_rate_range(user2,
- DUMMY_CLOCK_RATE_2,
- ULONG_MAX),
- 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_2);
- clk_put(user2);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- clk_put(user1);
- clk_put(clk);
- }
- static struct kunit_case clk_range_minimize_test_cases[] = {
- KUNIT_CASE(clk_range_test_set_range_rate_minimized),
- KUNIT_CASE(clk_range_test_multiple_set_range_rate_minimized),
- KUNIT_CASE(clk_range_test_multiple_set_range_rate_put_minimized),
- {}
- };
- /*
- * Test suite for a basic rate clock, without any parent.
- *
- * These tests exercise the rate range API: clk_set_rate_range(),
- * clk_set_min_rate(), clk_set_max_rate(), clk_drop_range(), with a
- * driver that will always try to run at the lowest possible rate.
- */
- static struct kunit_suite clk_range_minimize_test_suite = {
- .name = "clk-range-minimize-test",
- .init = clk_minimize_test_init,
- .exit = clk_test_exit,
- .test_cases = clk_range_minimize_test_cases,
- };
- struct clk_leaf_mux_ctx {
- struct clk_multiple_parent_ctx mux_ctx;
- struct clk_hw hw;
- struct clk_hw parent;
- struct clk_rate_request *req;
- int (*determine_rate_func)(struct clk_hw *hw, struct clk_rate_request *req);
- };
- static int clk_leaf_mux_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
- {
- struct clk_leaf_mux_ctx *ctx = container_of(hw, struct clk_leaf_mux_ctx, hw);
- int ret;
- struct clk_rate_request *parent_req = ctx->req;
- clk_hw_forward_rate_request(hw, req, req->best_parent_hw, parent_req, req->rate);
- ret = ctx->determine_rate_func(req->best_parent_hw, parent_req);
- if (ret)
- return ret;
- req->rate = parent_req->rate;
- return 0;
- }
- static const struct clk_ops clk_leaf_mux_set_rate_parent_ops = {
- .determine_rate = clk_leaf_mux_determine_rate,
- .set_parent = clk_dummy_single_set_parent,
- .get_parent = clk_dummy_single_get_parent,
- };
- static int
- clk_leaf_mux_set_rate_parent_test_init(struct kunit *test)
- {
- struct clk_leaf_mux_ctx *ctx;
- const char *top_parents[2] = { "parent-0", "parent-1" };
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->mux_ctx.parents_ctx[0].hw.init = CLK_HW_INIT_NO_PARENT("parent-0",
- &clk_dummy_rate_ops,
- 0);
- ctx->mux_ctx.parents_ctx[0].rate = DUMMY_CLOCK_RATE_1;
- ret = clk_hw_register(NULL, &ctx->mux_ctx.parents_ctx[0].hw);
- if (ret)
- return ret;
- ctx->mux_ctx.parents_ctx[1].hw.init = CLK_HW_INIT_NO_PARENT("parent-1",
- &clk_dummy_rate_ops,
- 0);
- ctx->mux_ctx.parents_ctx[1].rate = DUMMY_CLOCK_RATE_2;
- ret = clk_hw_register(NULL, &ctx->mux_ctx.parents_ctx[1].hw);
- if (ret)
- return ret;
- ctx->mux_ctx.current_parent = 0;
- ctx->mux_ctx.hw.init = CLK_HW_INIT_PARENTS("test-mux", top_parents,
- &clk_multiple_parents_mux_ops,
- 0);
- ret = clk_hw_register(NULL, &ctx->mux_ctx.hw);
- if (ret)
- return ret;
- ctx->parent.init = CLK_HW_INIT_HW("test-parent", &ctx->mux_ctx.hw,
- &empty_clk_ops, CLK_SET_RATE_PARENT);
- ret = clk_hw_register(NULL, &ctx->parent);
- if (ret)
- return ret;
- ctx->hw.init = CLK_HW_INIT_HW("test-clock", &ctx->parent,
- &clk_leaf_mux_set_rate_parent_ops,
- CLK_SET_RATE_PARENT);
- ret = clk_hw_register(NULL, &ctx->hw);
- if (ret)
- return ret;
- return 0;
- }
- static void clk_leaf_mux_set_rate_parent_test_exit(struct kunit *test)
- {
- struct clk_leaf_mux_ctx *ctx = test->priv;
- clk_hw_unregister(&ctx->hw);
- clk_hw_unregister(&ctx->parent);
- clk_hw_unregister(&ctx->mux_ctx.hw);
- clk_hw_unregister(&ctx->mux_ctx.parents_ctx[0].hw);
- clk_hw_unregister(&ctx->mux_ctx.parents_ctx[1].hw);
- }
- struct clk_leaf_mux_set_rate_parent_determine_rate_test_case {
- const char *desc;
- int (*determine_rate_func)(struct clk_hw *hw, struct clk_rate_request *req);
- };
- static void
- clk_leaf_mux_set_rate_parent_determine_rate_test_case_to_desc(
- const struct clk_leaf_mux_set_rate_parent_determine_rate_test_case *t, char *desc)
- {
- strcpy(desc, t->desc);
- }
- static const struct clk_leaf_mux_set_rate_parent_determine_rate_test_case
- clk_leaf_mux_set_rate_parent_determine_rate_test_cases[] = {
- {
- /*
- * Test that __clk_determine_rate() on the parent that can't
- * change rate doesn't return a clk_rate_request structure with
- * the best_parent_hw pointer pointing to the parent.
- */
- .desc = "clk_leaf_mux_set_rate_parent__clk_determine_rate_proper_parent",
- .determine_rate_func = __clk_determine_rate,
- },
- {
- /*
- * Test that __clk_mux_determine_rate() on the parent that
- * can't change rate doesn't return a clk_rate_request
- * structure with the best_parent_hw pointer pointing to
- * the parent.
- */
- .desc = "clk_leaf_mux_set_rate_parent__clk_mux_determine_rate_proper_parent",
- .determine_rate_func = __clk_mux_determine_rate,
- },
- {
- /*
- * Test that __clk_mux_determine_rate_closest() on the parent
- * that can't change rate doesn't return a clk_rate_request
- * structure with the best_parent_hw pointer pointing to
- * the parent.
- */
- .desc = "clk_leaf_mux_set_rate_parent__clk_mux_determine_rate_closest_proper_parent",
- .determine_rate_func = __clk_mux_determine_rate_closest,
- },
- {
- /*
- * Test that clk_hw_determine_rate_no_reparent() on the parent
- * that can't change rate doesn't return a clk_rate_request
- * structure with the best_parent_hw pointer pointing to
- * the parent.
- */
- .desc = "clk_leaf_mux_set_rate_parent_clk_hw_determine_rate_no_reparent_proper_parent",
- .determine_rate_func = clk_hw_determine_rate_no_reparent,
- },
- };
- KUNIT_ARRAY_PARAM(clk_leaf_mux_set_rate_parent_determine_rate_test,
- clk_leaf_mux_set_rate_parent_determine_rate_test_cases,
- clk_leaf_mux_set_rate_parent_determine_rate_test_case_to_desc)
- /*
- * Test that when a clk that can't change rate itself calls a function like
- * __clk_determine_rate() on its parent it doesn't get back a clk_rate_request
- * structure that has the best_parent_hw pointer point to the clk_hw passed
- * into the determine rate function. See commit 262ca38f4b6e ("clk: Stop
- * forwarding clk_rate_requests to the parent") for more background.
- */
- static void clk_leaf_mux_set_rate_parent_determine_rate_test(struct kunit *test)
- {
- struct clk_leaf_mux_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk_rate_request req;
- unsigned long rate;
- const struct clk_leaf_mux_set_rate_parent_determine_rate_test_case *test_param;
- test_param = test->param_value;
- ctx->determine_rate_func = test_param->determine_rate_func;
- ctx->req = &req;
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_EQ(test, rate, DUMMY_CLOCK_RATE_1);
- KUNIT_ASSERT_EQ(test, DUMMY_CLOCK_RATE_2, clk_round_rate(clk, DUMMY_CLOCK_RATE_2));
- KUNIT_EXPECT_EQ(test, req.rate, DUMMY_CLOCK_RATE_2);
- KUNIT_EXPECT_EQ(test, req.best_parent_rate, DUMMY_CLOCK_RATE_2);
- KUNIT_EXPECT_PTR_EQ(test, req.best_parent_hw, &ctx->mux_ctx.hw);
- clk_put(clk);
- }
- static struct kunit_case clk_leaf_mux_set_rate_parent_test_cases[] = {
- KUNIT_CASE_PARAM(clk_leaf_mux_set_rate_parent_determine_rate_test,
- clk_leaf_mux_set_rate_parent_determine_rate_test_gen_params),
- {}
- };
- /*
- * Test suite for a clock whose parent is a pass-through clk whose parent is a
- * mux with multiple parents. The leaf and pass-through clocks have the
- * CLK_SET_RATE_PARENT flag, and will forward rate requests to the mux, which
- * will then select which parent is the best fit for a given rate.
- *
- * These tests exercise the behaviour of muxes, and the proper selection
- * of parents.
- */
- static struct kunit_suite clk_leaf_mux_set_rate_parent_test_suite = {
- .name = "clk-leaf-mux-set-rate-parent",
- .init = clk_leaf_mux_set_rate_parent_test_init,
- .exit = clk_leaf_mux_set_rate_parent_test_exit,
- .test_cases = clk_leaf_mux_set_rate_parent_test_cases,
- };
- struct clk_mux_notifier_rate_change {
- bool done;
- unsigned long old_rate;
- unsigned long new_rate;
- wait_queue_head_t wq;
- };
- struct clk_mux_notifier_ctx {
- struct clk_multiple_parent_ctx mux_ctx;
- struct clk *clk;
- struct notifier_block clk_nb;
- struct clk_mux_notifier_rate_change pre_rate_change;
- struct clk_mux_notifier_rate_change post_rate_change;
- };
- #define NOTIFIER_TIMEOUT_MS 100
- static int clk_mux_notifier_callback(struct notifier_block *nb,
- unsigned long action, void *data)
- {
- struct clk_notifier_data *clk_data = data;
- struct clk_mux_notifier_ctx *ctx = container_of(nb,
- struct clk_mux_notifier_ctx,
- clk_nb);
- if (action & PRE_RATE_CHANGE) {
- ctx->pre_rate_change.old_rate = clk_data->old_rate;
- ctx->pre_rate_change.new_rate = clk_data->new_rate;
- ctx->pre_rate_change.done = true;
- wake_up_interruptible(&ctx->pre_rate_change.wq);
- }
- if (action & POST_RATE_CHANGE) {
- ctx->post_rate_change.old_rate = clk_data->old_rate;
- ctx->post_rate_change.new_rate = clk_data->new_rate;
- ctx->post_rate_change.done = true;
- wake_up_interruptible(&ctx->post_rate_change.wq);
- }
- return 0;
- }
- static int clk_mux_notifier_test_init(struct kunit *test)
- {
- struct clk_mux_notifier_ctx *ctx;
- const char *top_parents[2] = { "parent-0", "parent-1" };
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->clk_nb.notifier_call = clk_mux_notifier_callback;
- init_waitqueue_head(&ctx->pre_rate_change.wq);
- init_waitqueue_head(&ctx->post_rate_change.wq);
- ctx->mux_ctx.parents_ctx[0].hw.init = CLK_HW_INIT_NO_PARENT("parent-0",
- &clk_dummy_rate_ops,
- 0);
- ctx->mux_ctx.parents_ctx[0].rate = DUMMY_CLOCK_RATE_1;
- ret = clk_hw_register(NULL, &ctx->mux_ctx.parents_ctx[0].hw);
- if (ret)
- return ret;
- ctx->mux_ctx.parents_ctx[1].hw.init = CLK_HW_INIT_NO_PARENT("parent-1",
- &clk_dummy_rate_ops,
- 0);
- ctx->mux_ctx.parents_ctx[1].rate = DUMMY_CLOCK_RATE_2;
- ret = clk_hw_register(NULL, &ctx->mux_ctx.parents_ctx[1].hw);
- if (ret)
- return ret;
- ctx->mux_ctx.current_parent = 0;
- ctx->mux_ctx.hw.init = CLK_HW_INIT_PARENTS("test-mux", top_parents,
- &clk_multiple_parents_mux_ops,
- 0);
- ret = clk_hw_register(NULL, &ctx->mux_ctx.hw);
- if (ret)
- return ret;
- ctx->clk = clk_hw_get_clk(&ctx->mux_ctx.hw, NULL);
- ret = clk_notifier_register(ctx->clk, &ctx->clk_nb);
- if (ret)
- return ret;
- return 0;
- }
- static void clk_mux_notifier_test_exit(struct kunit *test)
- {
- struct clk_mux_notifier_ctx *ctx = test->priv;
- struct clk *clk = ctx->clk;
- clk_notifier_unregister(clk, &ctx->clk_nb);
- clk_put(clk);
- clk_hw_unregister(&ctx->mux_ctx.hw);
- clk_hw_unregister(&ctx->mux_ctx.parents_ctx[0].hw);
- clk_hw_unregister(&ctx->mux_ctx.parents_ctx[1].hw);
- }
- /*
- * Test that if the we have a notifier registered on a mux, the core
- * will notify us when we switch to another parent, and with the proper
- * old and new rates.
- */
- static void clk_mux_notifier_set_parent_test(struct kunit *test)
- {
- struct clk_mux_notifier_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->mux_ctx.hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *new_parent = clk_hw_get_clk(&ctx->mux_ctx.parents_ctx[1].hw, NULL);
- int ret;
- ret = clk_set_parent(clk, new_parent);
- KUNIT_ASSERT_EQ(test, ret, 0);
- ret = wait_event_interruptible_timeout(ctx->pre_rate_change.wq,
- ctx->pre_rate_change.done,
- msecs_to_jiffies(NOTIFIER_TIMEOUT_MS));
- KUNIT_ASSERT_GT(test, ret, 0);
- KUNIT_EXPECT_EQ(test, ctx->pre_rate_change.old_rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_EQ(test, ctx->pre_rate_change.new_rate, DUMMY_CLOCK_RATE_2);
- ret = wait_event_interruptible_timeout(ctx->post_rate_change.wq,
- ctx->post_rate_change.done,
- msecs_to_jiffies(NOTIFIER_TIMEOUT_MS));
- KUNIT_ASSERT_GT(test, ret, 0);
- KUNIT_EXPECT_EQ(test, ctx->post_rate_change.old_rate, DUMMY_CLOCK_RATE_1);
- KUNIT_EXPECT_EQ(test, ctx->post_rate_change.new_rate, DUMMY_CLOCK_RATE_2);
- clk_put(new_parent);
- clk_put(clk);
- }
- static struct kunit_case clk_mux_notifier_test_cases[] = {
- KUNIT_CASE(clk_mux_notifier_set_parent_test),
- {}
- };
- /*
- * Test suite for a mux with multiple parents, and a notifier registered
- * on the mux.
- *
- * These tests exercise the behaviour of notifiers.
- */
- static struct kunit_suite clk_mux_notifier_test_suite = {
- .name = "clk-mux-notifier",
- .init = clk_mux_notifier_test_init,
- .exit = clk_mux_notifier_test_exit,
- .test_cases = clk_mux_notifier_test_cases,
- };
- static int
- clk_mux_no_reparent_test_init(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx;
- const char *parents[2] = { "parent-0", "parent-1"};
- int ret;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->parents_ctx[0].hw.init = CLK_HW_INIT_NO_PARENT("parent-0",
- &clk_dummy_rate_ops,
- 0);
- ctx->parents_ctx[0].rate = DUMMY_CLOCK_RATE_1;
- ret = clk_hw_register(NULL, &ctx->parents_ctx[0].hw);
- if (ret)
- return ret;
- ctx->parents_ctx[1].hw.init = CLK_HW_INIT_NO_PARENT("parent-1",
- &clk_dummy_rate_ops,
- 0);
- ctx->parents_ctx[1].rate = DUMMY_CLOCK_RATE_2;
- ret = clk_hw_register(NULL, &ctx->parents_ctx[1].hw);
- if (ret)
- return ret;
- ctx->current_parent = 0;
- ctx->hw.init = CLK_HW_INIT_PARENTS("test-mux", parents,
- &clk_multiple_parents_no_reparent_mux_ops,
- 0);
- ret = clk_hw_register(NULL, &ctx->hw);
- if (ret)
- return ret;
- return 0;
- }
- static void
- clk_mux_no_reparent_test_exit(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- clk_hw_unregister(&ctx->hw);
- clk_hw_unregister(&ctx->parents_ctx[0].hw);
- clk_hw_unregister(&ctx->parents_ctx[1].hw);
- }
- /*
- * Test that if the we have a mux that cannot change parent and we call
- * clk_round_rate() on it with a rate that should cause it to change
- * parent, it won't.
- */
- static void clk_mux_no_reparent_round_rate(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *other_parent, *parent;
- unsigned long other_parent_rate;
- unsigned long parent_rate;
- long rounded_rate;
- parent = clk_get_parent(clk);
- KUNIT_ASSERT_PTR_NE(test, parent, NULL);
- parent_rate = clk_get_rate(parent);
- KUNIT_ASSERT_GT(test, parent_rate, 0);
- other_parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, other_parent);
- KUNIT_ASSERT_FALSE(test, clk_is_match(parent, other_parent));
- other_parent_rate = clk_get_rate(other_parent);
- KUNIT_ASSERT_GT(test, other_parent_rate, 0);
- clk_put(other_parent);
- rounded_rate = clk_round_rate(clk, other_parent_rate);
- KUNIT_ASSERT_GT(test, rounded_rate, 0);
- KUNIT_EXPECT_EQ(test, rounded_rate, parent_rate);
- clk_put(clk);
- }
- /*
- * Test that if the we have a mux that cannot change parent and we call
- * clk_set_rate() on it with a rate that should cause it to change
- * parent, it won't.
- */
- static void clk_mux_no_reparent_set_rate(struct kunit *test)
- {
- struct clk_multiple_parent_ctx *ctx = test->priv;
- struct clk_hw *hw = &ctx->hw;
- struct clk *clk = clk_hw_get_clk(hw, NULL);
- struct clk *other_parent, *parent;
- unsigned long other_parent_rate;
- unsigned long parent_rate;
- unsigned long rate;
- int ret;
- parent = clk_get_parent(clk);
- KUNIT_ASSERT_PTR_NE(test, parent, NULL);
- parent_rate = clk_get_rate(parent);
- KUNIT_ASSERT_GT(test, parent_rate, 0);
- other_parent = clk_hw_get_clk(&ctx->parents_ctx[1].hw, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, other_parent);
- KUNIT_ASSERT_FALSE(test, clk_is_match(parent, other_parent));
- other_parent_rate = clk_get_rate(other_parent);
- KUNIT_ASSERT_GT(test, other_parent_rate, 0);
- clk_put(other_parent);
- ret = clk_set_rate(clk, other_parent_rate);
- KUNIT_ASSERT_EQ(test, ret, 0);
- rate = clk_get_rate(clk);
- KUNIT_ASSERT_GT(test, rate, 0);
- KUNIT_EXPECT_EQ(test, rate, parent_rate);
- clk_put(clk);
- }
- static struct kunit_case clk_mux_no_reparent_test_cases[] = {
- KUNIT_CASE(clk_mux_no_reparent_round_rate),
- KUNIT_CASE(clk_mux_no_reparent_set_rate),
- {}
- };
- /*
- * Test suite for a clock mux that isn't allowed to change parent, using
- * the clk_hw_determine_rate_no_reparent() helper.
- *
- * These tests exercise that helper, and the proper selection of
- * rates and parents.
- */
- static struct kunit_suite clk_mux_no_reparent_test_suite = {
- .name = "clk-mux-no-reparent",
- .init = clk_mux_no_reparent_test_init,
- .exit = clk_mux_no_reparent_test_exit,
- .test_cases = clk_mux_no_reparent_test_cases,
- };
- struct clk_register_clk_parent_data_test_case {
- const char *desc;
- struct clk_parent_data pdata;
- };
- static void
- clk_register_clk_parent_data_test_case_to_desc(
- const struct clk_register_clk_parent_data_test_case *t, char *desc)
- {
- strcpy(desc, t->desc);
- }
- static const struct clk_register_clk_parent_data_test_case
- clk_register_clk_parent_data_of_cases[] = {
- {
- /*
- * Test that a clk registered with a struct device_node can
- * find a parent based on struct clk_parent_data::index.
- */
- .desc = "clk_parent_data_of_index_test",
- .pdata.index = 0,
- },
- {
- /*
- * Test that a clk registered with a struct device_node can
- * find a parent based on struct clk_parent_data::fwname.
- */
- .desc = "clk_parent_data_of_fwname_test",
- .pdata.fw_name = CLK_PARENT_DATA_PARENT1,
- },
- {
- /*
- * Test that a clk registered with a struct device_node can
- * find a parent based on struct clk_parent_data::name.
- */
- .desc = "clk_parent_data_of_name_test",
- /* The index must be negative to indicate firmware not used */
- .pdata.index = -1,
- .pdata.name = CLK_PARENT_DATA_1MHZ_NAME,
- },
- {
- /*
- * Test that a clk registered with a struct device_node can
- * find a parent based on struct
- * clk_parent_data::{fw_name,name}.
- */
- .desc = "clk_parent_data_of_fwname_name_test",
- .pdata.fw_name = CLK_PARENT_DATA_PARENT1,
- .pdata.name = "not_matching",
- },
- {
- /*
- * Test that a clk registered with a struct device_node can
- * find a parent based on struct clk_parent_data::{index,name}.
- * Index takes priority.
- */
- .desc = "clk_parent_data_of_index_name_priority_test",
- .pdata.index = 0,
- .pdata.name = "not_matching",
- },
- {
- /*
- * Test that a clk registered with a struct device_node can
- * find a parent based on struct
- * clk_parent_data::{index,fwname,name}. The fw_name takes
- * priority over index and name.
- */
- .desc = "clk_parent_data_of_index_fwname_name_priority_test",
- .pdata.index = 1,
- .pdata.fw_name = CLK_PARENT_DATA_PARENT1,
- .pdata.name = "not_matching",
- },
- };
- KUNIT_ARRAY_PARAM(clk_register_clk_parent_data_of_test, clk_register_clk_parent_data_of_cases,
- clk_register_clk_parent_data_test_case_to_desc)
- /**
- * struct clk_register_clk_parent_data_of_ctx - Context for clk_parent_data OF tests
- * @np: device node of clk under test
- * @hw: clk_hw for clk under test
- */
- struct clk_register_clk_parent_data_of_ctx {
- struct device_node *np;
- struct clk_hw hw;
- };
- static int clk_register_clk_parent_data_of_test_init(struct kunit *test)
- {
- struct clk_register_clk_parent_data_of_ctx *ctx;
- KUNIT_ASSERT_EQ(test, 0,
- of_overlay_apply_kunit(test, kunit_clk_parent_data_test));
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- if (!ctx)
- return -ENOMEM;
- test->priv = ctx;
- ctx->np = of_find_compatible_node(NULL, NULL, "test,clk-parent-data");
- if (!ctx->np)
- return -ENODEV;
- of_node_put_kunit(test, ctx->np);
- return 0;
- }
- /*
- * Test that a clk registered with a struct device_node can find a parent based on
- * struct clk_parent_data when the hw member isn't set.
- */
- static void clk_register_clk_parent_data_of_test(struct kunit *test)
- {
- struct clk_register_clk_parent_data_of_ctx *ctx = test->priv;
- struct clk_hw *parent_hw;
- const struct clk_register_clk_parent_data_test_case *test_param;
- struct clk_init_data init = { };
- struct clk *expected_parent, *actual_parent;
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ctx->np);
- expected_parent = of_clk_get_kunit(test, ctx->np, 0);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, expected_parent);
- test_param = test->param_value;
- init.parent_data = &test_param->pdata;
- init.num_parents = 1;
- init.name = "parent_data_of_test_clk";
- init.ops = &clk_dummy_single_parent_ops;
- ctx->hw.init = &init;
- KUNIT_ASSERT_EQ(test, 0, of_clk_hw_register_kunit(test, ctx->np, &ctx->hw));
- parent_hw = clk_hw_get_parent(&ctx->hw);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent_hw);
- actual_parent = clk_hw_get_clk_kunit(test, parent_hw, __func__);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, actual_parent);
- KUNIT_EXPECT_TRUE(test, clk_is_match(expected_parent, actual_parent));
- }
- static struct kunit_case clk_register_clk_parent_data_of_test_cases[] = {
- KUNIT_CASE_PARAM(clk_register_clk_parent_data_of_test,
- clk_register_clk_parent_data_of_test_gen_params),
- {}
- };
- /*
- * Test suite for registering clks with struct clk_parent_data and a struct
- * device_node.
- */
- static struct kunit_suite clk_register_clk_parent_data_of_suite = {
- .name = "clk_register_clk_parent_data_of",
- .init = clk_register_clk_parent_data_of_test_init,
- .test_cases = clk_register_clk_parent_data_of_test_cases,
- };
- /**
- * struct clk_register_clk_parent_data_device_ctx - Context for clk_parent_data device tests
- * @dev: device of clk under test
- * @hw: clk_hw for clk under test
- * @pdrv: driver to attach to find @dev
- */
- struct clk_register_clk_parent_data_device_ctx {
- struct device *dev;
- struct clk_hw hw;
- struct platform_driver pdrv;
- };
- static inline struct clk_register_clk_parent_data_device_ctx *
- clk_register_clk_parent_data_driver_to_test_context(struct platform_device *pdev)
- {
- return container_of(to_platform_driver(pdev->dev.driver),
- struct clk_register_clk_parent_data_device_ctx, pdrv);
- }
- static int clk_register_clk_parent_data_device_probe(struct platform_device *pdev)
- {
- struct clk_register_clk_parent_data_device_ctx *ctx;
- ctx = clk_register_clk_parent_data_driver_to_test_context(pdev);
- ctx->dev = &pdev->dev;
- return 0;
- }
- static void clk_register_clk_parent_data_device_driver(struct kunit *test)
- {
- struct clk_register_clk_parent_data_device_ctx *ctx = test->priv;
- static const struct of_device_id match_table[] = {
- { .compatible = "test,clk-parent-data" },
- { }
- };
- ctx->pdrv.probe = clk_register_clk_parent_data_device_probe;
- ctx->pdrv.driver.of_match_table = match_table;
- ctx->pdrv.driver.name = __func__;
- ctx->pdrv.driver.owner = THIS_MODULE;
- KUNIT_ASSERT_EQ(test, 0, kunit_platform_driver_register(test, &ctx->pdrv));
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ctx->dev);
- }
- static const struct clk_register_clk_parent_data_test_case
- clk_register_clk_parent_data_device_cases[] = {
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::index.
- */
- .desc = "clk_parent_data_device_index_test",
- .pdata.index = 1,
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::fwname.
- */
- .desc = "clk_parent_data_device_fwname_test",
- .pdata.fw_name = CLK_PARENT_DATA_PARENT2,
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::name.
- */
- .desc = "clk_parent_data_device_name_test",
- /* The index must be negative to indicate firmware not used */
- .pdata.index = -1,
- .pdata.name = CLK_PARENT_DATA_50MHZ_NAME,
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::{fw_name,name}.
- */
- .desc = "clk_parent_data_device_fwname_name_test",
- .pdata.fw_name = CLK_PARENT_DATA_PARENT2,
- .pdata.name = "not_matching",
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::{index,name}. Index
- * takes priority.
- */
- .desc = "clk_parent_data_device_index_name_priority_test",
- .pdata.index = 1,
- .pdata.name = "not_matching",
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::{index,fwname,name}.
- * The fw_name takes priority over index and name.
- */
- .desc = "clk_parent_data_device_index_fwname_name_priority_test",
- .pdata.index = 0,
- .pdata.fw_name = CLK_PARENT_DATA_PARENT2,
- .pdata.name = "not_matching",
- },
- };
- KUNIT_ARRAY_PARAM(clk_register_clk_parent_data_device_test,
- clk_register_clk_parent_data_device_cases,
- clk_register_clk_parent_data_test_case_to_desc)
- /*
- * Test that a clk registered with a struct device can find a parent based on
- * struct clk_parent_data when the hw member isn't set.
- */
- static void clk_register_clk_parent_data_device_test(struct kunit *test)
- {
- struct clk_register_clk_parent_data_device_ctx *ctx;
- const struct clk_register_clk_parent_data_test_case *test_param;
- struct clk_hw *parent_hw;
- struct clk_init_data init = { };
- struct clk *expected_parent, *actual_parent;
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ctx);
- test->priv = ctx;
- clk_register_clk_parent_data_device_driver(test);
- expected_parent = clk_get_kunit(test, ctx->dev, "50");
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, expected_parent);
- test_param = test->param_value;
- init.parent_data = &test_param->pdata;
- init.num_parents = 1;
- init.name = "parent_data_device_test_clk";
- init.ops = &clk_dummy_single_parent_ops;
- ctx->hw.init = &init;
- KUNIT_ASSERT_EQ(test, 0, clk_hw_register_kunit(test, ctx->dev, &ctx->hw));
- parent_hw = clk_hw_get_parent(&ctx->hw);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent_hw);
- actual_parent = clk_hw_get_clk_kunit(test, parent_hw, __func__);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, actual_parent);
- KUNIT_EXPECT_TRUE(test, clk_is_match(expected_parent, actual_parent));
- }
- static const struct clk_register_clk_parent_data_test_case
- clk_register_clk_parent_data_device_hw_cases[] = {
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::hw.
- */
- .desc = "clk_parent_data_device_hw_index_test",
- /* The index must be negative to indicate firmware not used */
- .pdata.index = -1,
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::hw when
- * struct clk_parent_data::fw_name is set.
- */
- .desc = "clk_parent_data_device_hw_fwname_test",
- .pdata.fw_name = CLK_PARENT_DATA_PARENT2,
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::hw when struct
- * clk_parent_data::name is set.
- */
- .desc = "clk_parent_data_device_hw_name_test",
- /* The index must be negative to indicate firmware not used */
- .pdata.index = -1,
- .pdata.name = CLK_PARENT_DATA_50MHZ_NAME,
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::hw when struct
- * clk_parent_data::{fw_name,name} are set.
- */
- .desc = "clk_parent_data_device_hw_fwname_name_test",
- .pdata.fw_name = CLK_PARENT_DATA_PARENT2,
- .pdata.name = "not_matching",
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::hw when struct
- * clk_parent_data::index is set. The hw pointer takes
- * priority.
- */
- .desc = "clk_parent_data_device_hw_index_priority_test",
- .pdata.index = 0,
- },
- {
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::hw when
- * struct clk_parent_data::{index,fwname,name} are set.
- * The hw pointer takes priority over everything else.
- */
- .desc = "clk_parent_data_device_hw_index_fwname_name_priority_test",
- .pdata.index = 0,
- .pdata.fw_name = CLK_PARENT_DATA_PARENT2,
- .pdata.name = "not_matching",
- },
- };
- KUNIT_ARRAY_PARAM(clk_register_clk_parent_data_device_hw_test,
- clk_register_clk_parent_data_device_hw_cases,
- clk_register_clk_parent_data_test_case_to_desc)
- /*
- * Test that a clk registered with a struct device can find a
- * parent based on struct clk_parent_data::hw.
- */
- static void clk_register_clk_parent_data_device_hw_test(struct kunit *test)
- {
- struct clk_register_clk_parent_data_device_ctx *ctx;
- const struct clk_register_clk_parent_data_test_case *test_param;
- struct clk_dummy_context *parent;
- struct clk_hw *parent_hw;
- struct clk_parent_data pdata = { };
- struct clk_init_data init = { };
- ctx = kunit_kzalloc(test, sizeof(*ctx), GFP_KERNEL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ctx);
- test->priv = ctx;
- clk_register_clk_parent_data_device_driver(test);
- parent = kunit_kzalloc(test, sizeof(*parent), GFP_KERNEL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, parent);
- parent_hw = &parent->hw;
- parent_hw->init = CLK_HW_INIT_NO_PARENT("parent-clk",
- &clk_dummy_rate_ops, 0);
- KUNIT_ASSERT_EQ(test, 0, clk_hw_register_kunit(test, ctx->dev, parent_hw));
- test_param = test->param_value;
- memcpy(&pdata, &test_param->pdata, sizeof(pdata));
- pdata.hw = parent_hw;
- init.parent_data = &pdata;
- init.num_parents = 1;
- init.ops = &clk_dummy_single_parent_ops;
- init.name = "parent_data_device_hw_test_clk";
- ctx->hw.init = &init;
- KUNIT_ASSERT_EQ(test, 0, clk_hw_register_kunit(test, ctx->dev, &ctx->hw));
- KUNIT_EXPECT_PTR_EQ(test, parent_hw, clk_hw_get_parent(&ctx->hw));
- }
- static struct kunit_case clk_register_clk_parent_data_device_test_cases[] = {
- KUNIT_CASE_PARAM(clk_register_clk_parent_data_device_test,
- clk_register_clk_parent_data_device_test_gen_params),
- KUNIT_CASE_PARAM(clk_register_clk_parent_data_device_hw_test,
- clk_register_clk_parent_data_device_hw_test_gen_params),
- {}
- };
- static int clk_register_clk_parent_data_device_init(struct kunit *test)
- {
- KUNIT_ASSERT_EQ(test, 0,
- of_overlay_apply_kunit(test, kunit_clk_parent_data_test));
- return 0;
- }
- /*
- * Test suite for registering clks with struct clk_parent_data and a struct
- * device.
- */
- static struct kunit_suite clk_register_clk_parent_data_device_suite = {
- .name = "clk_register_clk_parent_data_device",
- .init = clk_register_clk_parent_data_device_init,
- .test_cases = clk_register_clk_parent_data_device_test_cases,
- };
- kunit_test_suites(
- &clk_leaf_mux_set_rate_parent_test_suite,
- &clk_test_suite,
- &clk_multiple_parents_mux_test_suite,
- &clk_mux_no_reparent_test_suite,
- &clk_mux_notifier_test_suite,
- &clk_orphan_transparent_multiple_parent_mux_test_suite,
- &clk_orphan_transparent_single_parent_test_suite,
- &clk_orphan_two_level_root_last_test_suite,
- &clk_range_test_suite,
- &clk_range_maximize_test_suite,
- &clk_range_minimize_test_suite,
- &clk_register_clk_parent_data_of_suite,
- &clk_register_clk_parent_data_device_suite,
- &clk_single_parent_mux_test_suite,
- &clk_uncached_test_suite,
- );
- MODULE_DESCRIPTION("Kunit tests for clk framework");
- MODULE_LICENSE("GPL v2");
|