xref: /openbmc/linux/include/linux/clk.h (revision 5279fc402ae59361a224d641d5823b21b4206232)
1f8ce2547SRussell King /*
2f8ce2547SRussell King  *  linux/include/linux/clk.h
3f8ce2547SRussell King  *
4f8ce2547SRussell King  *  Copyright (C) 2004 ARM Limited.
5f8ce2547SRussell King  *  Written by Deep Blue Solutions Limited.
6b2476490SMike Turquette  *  Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
7f8ce2547SRussell King  *
8f8ce2547SRussell King  * This program is free software; you can redistribute it and/or modify
9f8ce2547SRussell King  * it under the terms of the GNU General Public License version 2 as
10f8ce2547SRussell King  * published by the Free Software Foundation.
11f8ce2547SRussell King  */
12686f8c5dSTodd Poynor #ifndef __LINUX_CLK_H
13686f8c5dSTodd Poynor #define __LINUX_CLK_H
14f8ce2547SRussell King 
159f1612d3SShawn Guo #include <linux/err.h>
1640d3e0f4SRussell King #include <linux/kernel.h>
17b2476490SMike Turquette #include <linux/notifier.h>
1840d3e0f4SRussell King 
19f8ce2547SRussell King struct device;
20f8ce2547SRussell King 
21f8ce2547SRussell King struct clk;
22f8ce2547SRussell King 
23b2476490SMike Turquette #ifdef CONFIG_COMMON_CLK
24b2476490SMike Turquette 
25b2476490SMike Turquette /**
26b2476490SMike Turquette  * DOC: clk notifier callback types
27b2476490SMike Turquette  *
28b2476490SMike Turquette  * PRE_RATE_CHANGE - called immediately before the clk rate is changed,
29b2476490SMike Turquette  *     to indicate that the rate change will proceed.  Drivers must
30b2476490SMike Turquette  *     immediately terminate any operations that will be affected by the
31fb72a059SSoren Brinkmann  *     rate change.  Callbacks may either return NOTIFY_DONE, NOTIFY_OK,
32fb72a059SSoren Brinkmann  *     NOTIFY_STOP or NOTIFY_BAD.
33b2476490SMike Turquette  *
34b2476490SMike Turquette  * ABORT_RATE_CHANGE: called if the rate change failed for some reason
35b2476490SMike Turquette  *     after PRE_RATE_CHANGE.  In this case, all registered notifiers on
36b2476490SMike Turquette  *     the clk will be called with ABORT_RATE_CHANGE. Callbacks must
37fb72a059SSoren Brinkmann  *     always return NOTIFY_DONE or NOTIFY_OK.
38b2476490SMike Turquette  *
39b2476490SMike Turquette  * POST_RATE_CHANGE - called after the clk rate change has successfully
40fb72a059SSoren Brinkmann  *     completed.  Callbacks must always return NOTIFY_DONE or NOTIFY_OK.
41b2476490SMike Turquette  *
42b2476490SMike Turquette  */
43b2476490SMike Turquette #define PRE_RATE_CHANGE			BIT(0)
44b2476490SMike Turquette #define POST_RATE_CHANGE		BIT(1)
45b2476490SMike Turquette #define ABORT_RATE_CHANGE		BIT(2)
46b2476490SMike Turquette 
47b2476490SMike Turquette /**
48b2476490SMike Turquette  * struct clk_notifier - associate a clk with a notifier
49b2476490SMike Turquette  * @clk: struct clk * to associate the notifier with
50b2476490SMike Turquette  * @notifier_head: a blocking_notifier_head for this clk
51b2476490SMike Turquette  * @node: linked list pointers
52b2476490SMike Turquette  *
53b2476490SMike Turquette  * A list of struct clk_notifier is maintained by the notifier code.
54b2476490SMike Turquette  * An entry is created whenever code registers the first notifier on a
55b2476490SMike Turquette  * particular @clk.  Future notifiers on that @clk are added to the
56b2476490SMike Turquette  * @notifier_head.
57b2476490SMike Turquette  */
58b2476490SMike Turquette struct clk_notifier {
59b2476490SMike Turquette 	struct clk			*clk;
60b2476490SMike Turquette 	struct srcu_notifier_head	notifier_head;
61b2476490SMike Turquette 	struct list_head		node;
62b2476490SMike Turquette };
63b2476490SMike Turquette 
64b2476490SMike Turquette /**
65b2476490SMike Turquette  * struct clk_notifier_data - rate data to pass to the notifier callback
66b2476490SMike Turquette  * @clk: struct clk * being changed
67b2476490SMike Turquette  * @old_rate: previous rate of this clk
68b2476490SMike Turquette  * @new_rate: new rate of this clk
69b2476490SMike Turquette  *
70b2476490SMike Turquette  * For a pre-notifier, old_rate is the clk's rate before this rate
71b2476490SMike Turquette  * change, and new_rate is what the rate will be in the future.  For a
72b2476490SMike Turquette  * post-notifier, old_rate and new_rate are both set to the clk's
73b2476490SMike Turquette  * current rate (this was done to optimize the implementation).
74b2476490SMike Turquette  */
75b2476490SMike Turquette struct clk_notifier_data {
76b2476490SMike Turquette 	struct clk		*clk;
77b2476490SMike Turquette 	unsigned long		old_rate;
78b2476490SMike Turquette 	unsigned long		new_rate;
79b2476490SMike Turquette };
80b2476490SMike Turquette 
81b2476490SMike Turquette int clk_notifier_register(struct clk *clk, struct notifier_block *nb);
82b2476490SMike Turquette 
83b2476490SMike Turquette int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb);
84b2476490SMike Turquette 
85*5279fc40SBoris BREZILLON /**
86*5279fc40SBoris BREZILLON  * clk_get_accuracy - obtain the clock accuracy in ppb (parts per billion)
87*5279fc40SBoris BREZILLON  *		      for a clock source.
88*5279fc40SBoris BREZILLON  * @clk: clock source
89*5279fc40SBoris BREZILLON  *
90*5279fc40SBoris BREZILLON  * This gets the clock source accuracy expressed in ppb.
91*5279fc40SBoris BREZILLON  * A perfect clock returns 0.
92*5279fc40SBoris BREZILLON  */
93*5279fc40SBoris BREZILLON long clk_get_accuracy(struct clk *clk);
94*5279fc40SBoris BREZILLON 
95*5279fc40SBoris BREZILLON #else
96*5279fc40SBoris BREZILLON 
97*5279fc40SBoris BREZILLON static inline long clk_get_accuracy(struct clk *clk)
98*5279fc40SBoris BREZILLON {
99*5279fc40SBoris BREZILLON 	return -ENOTSUPP;
100*5279fc40SBoris BREZILLON }
101*5279fc40SBoris BREZILLON 
1027e87aed9SMark Brown #endif
103b2476490SMike Turquette 
104f8ce2547SRussell King /**
10593abe8e4SViresh Kumar  * clk_prepare - prepare a clock source
10693abe8e4SViresh Kumar  * @clk: clock source
10793abe8e4SViresh Kumar  *
10893abe8e4SViresh Kumar  * This prepares the clock source for use.
10993abe8e4SViresh Kumar  *
11093abe8e4SViresh Kumar  * Must not be called from within atomic context.
11193abe8e4SViresh Kumar  */
11293abe8e4SViresh Kumar #ifdef CONFIG_HAVE_CLK_PREPARE
11393abe8e4SViresh Kumar int clk_prepare(struct clk *clk);
11493abe8e4SViresh Kumar #else
11593abe8e4SViresh Kumar static inline int clk_prepare(struct clk *clk)
11693abe8e4SViresh Kumar {
11793abe8e4SViresh Kumar 	might_sleep();
11893abe8e4SViresh Kumar 	return 0;
11993abe8e4SViresh Kumar }
12093abe8e4SViresh Kumar #endif
12193abe8e4SViresh Kumar 
12293abe8e4SViresh Kumar /**
12393abe8e4SViresh Kumar  * clk_unprepare - undo preparation of a clock source
12493abe8e4SViresh Kumar  * @clk: clock source
12593abe8e4SViresh Kumar  *
12693abe8e4SViresh Kumar  * This undoes a previously prepared clock.  The caller must balance
12793abe8e4SViresh Kumar  * the number of prepare and unprepare calls.
12893abe8e4SViresh Kumar  *
12993abe8e4SViresh Kumar  * Must not be called from within atomic context.
13093abe8e4SViresh Kumar  */
13193abe8e4SViresh Kumar #ifdef CONFIG_HAVE_CLK_PREPARE
13293abe8e4SViresh Kumar void clk_unprepare(struct clk *clk);
13393abe8e4SViresh Kumar #else
13493abe8e4SViresh Kumar static inline void clk_unprepare(struct clk *clk)
13593abe8e4SViresh Kumar {
13693abe8e4SViresh Kumar 	might_sleep();
13793abe8e4SViresh Kumar }
13893abe8e4SViresh Kumar #endif
13993abe8e4SViresh Kumar 
14093abe8e4SViresh Kumar #ifdef CONFIG_HAVE_CLK
14193abe8e4SViresh Kumar /**
142f8ce2547SRussell King  * clk_get - lookup and obtain a reference to a clock producer.
143f8ce2547SRussell King  * @dev: device for clock "consumer"
144a58b3a4aSJan-Simon Möller  * @id: clock consumer ID
145f8ce2547SRussell King  *
146f8ce2547SRussell King  * Returns a struct clk corresponding to the clock producer, or
147f8ce2547SRussell King  * valid IS_ERR() condition containing errno.  The implementation
148f8ce2547SRussell King  * uses @dev and @id to determine the clock consumer, and thereby
149f8ce2547SRussell King  * the clock producer.  (IOW, @id may be identical strings, but
150f8ce2547SRussell King  * clk_get may return different clock producers depending on @dev.)
151f8ce2547SRussell King  *
152f8ce2547SRussell King  * Drivers must assume that the clock source is not enabled.
153f7ad160bSAlex Raimondi  *
154f7ad160bSAlex Raimondi  * clk_get should not be called from within interrupt context.
155f8ce2547SRussell King  */
156f8ce2547SRussell King struct clk *clk_get(struct device *dev, const char *id);
157f8ce2547SRussell King 
158f8ce2547SRussell King /**
159a8a97db9SMark Brown  * devm_clk_get - lookup and obtain a managed reference to a clock producer.
160a8a97db9SMark Brown  * @dev: device for clock "consumer"
161a58b3a4aSJan-Simon Möller  * @id: clock consumer ID
162a8a97db9SMark Brown  *
163a8a97db9SMark Brown  * Returns a struct clk corresponding to the clock producer, or
164a8a97db9SMark Brown  * valid IS_ERR() condition containing errno.  The implementation
165a8a97db9SMark Brown  * uses @dev and @id to determine the clock consumer, and thereby
166a8a97db9SMark Brown  * the clock producer.  (IOW, @id may be identical strings, but
167a8a97db9SMark Brown  * clk_get may return different clock producers depending on @dev.)
168a8a97db9SMark Brown  *
169a8a97db9SMark Brown  * Drivers must assume that the clock source is not enabled.
170a8a97db9SMark Brown  *
171a8a97db9SMark Brown  * devm_clk_get should not be called from within interrupt context.
172a8a97db9SMark Brown  *
173a8a97db9SMark Brown  * The clock will automatically be freed when the device is unbound
174a8a97db9SMark Brown  * from the bus.
175a8a97db9SMark Brown  */
176a8a97db9SMark Brown struct clk *devm_clk_get(struct device *dev, const char *id);
177a8a97db9SMark Brown 
178a8a97db9SMark Brown /**
179f8ce2547SRussell King  * clk_enable - inform the system when the clock source should be running.
180f8ce2547SRussell King  * @clk: clock source
181f8ce2547SRussell King  *
182f8ce2547SRussell King  * If the clock can not be enabled/disabled, this should return success.
183f8ce2547SRussell King  *
18440d3e0f4SRussell King  * May be called from atomic contexts.
18540d3e0f4SRussell King  *
186f8ce2547SRussell King  * Returns success (0) or negative errno.
187f8ce2547SRussell King  */
188f8ce2547SRussell King int clk_enable(struct clk *clk);
189f8ce2547SRussell King 
190f8ce2547SRussell King /**
191f8ce2547SRussell King  * clk_disable - inform the system when the clock source is no longer required.
192f8ce2547SRussell King  * @clk: clock source
193f8ce2547SRussell King  *
194f8ce2547SRussell King  * Inform the system that a clock source is no longer required by
195f8ce2547SRussell King  * a driver and may be shut down.
196f8ce2547SRussell King  *
19740d3e0f4SRussell King  * May be called from atomic contexts.
19840d3e0f4SRussell King  *
199f8ce2547SRussell King  * Implementation detail: if the clock source is shared between
200f8ce2547SRussell King  * multiple drivers, clk_enable() calls must be balanced by the
201f8ce2547SRussell King  * same number of clk_disable() calls for the clock source to be
202f8ce2547SRussell King  * disabled.
203f8ce2547SRussell King  */
204f8ce2547SRussell King void clk_disable(struct clk *clk);
205f8ce2547SRussell King 
206f8ce2547SRussell King /**
207f8ce2547SRussell King  * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
208f8ce2547SRussell King  *		  This is only valid once the clock source has been enabled.
209f8ce2547SRussell King  * @clk: clock source
210f8ce2547SRussell King  */
211f8ce2547SRussell King unsigned long clk_get_rate(struct clk *clk);
212f8ce2547SRussell King 
213f8ce2547SRussell King /**
214f8ce2547SRussell King  * clk_put	- "free" the clock source
215f8ce2547SRussell King  * @clk: clock source
216f8ce2547SRussell King  *
217f8ce2547SRussell King  * Note: drivers must ensure that all clk_enable calls made on this
218f8ce2547SRussell King  * clock source are balanced by clk_disable calls prior to calling
219f8ce2547SRussell King  * this function.
220f7ad160bSAlex Raimondi  *
221f7ad160bSAlex Raimondi  * clk_put should not be called from within interrupt context.
222f8ce2547SRussell King  */
223f8ce2547SRussell King void clk_put(struct clk *clk);
224f8ce2547SRussell King 
225a8a97db9SMark Brown /**
226a8a97db9SMark Brown  * devm_clk_put	- "free" a managed clock source
227a8a97db9SMark Brown  * @dev: device used to acuqire the clock
228a8a97db9SMark Brown  * @clk: clock source acquired with devm_clk_get()
229a8a97db9SMark Brown  *
230a8a97db9SMark Brown  * Note: drivers must ensure that all clk_enable calls made on this
231a8a97db9SMark Brown  * clock source are balanced by clk_disable calls prior to calling
232a8a97db9SMark Brown  * this function.
233a8a97db9SMark Brown  *
234a8a97db9SMark Brown  * clk_put should not be called from within interrupt context.
235a8a97db9SMark Brown  */
236a8a97db9SMark Brown void devm_clk_put(struct device *dev, struct clk *clk);
237f8ce2547SRussell King 
238f8ce2547SRussell King /*
239f8ce2547SRussell King  * The remaining APIs are optional for machine class support.
240f8ce2547SRussell King  */
241f8ce2547SRussell King 
242f8ce2547SRussell King 
243f8ce2547SRussell King /**
244f8ce2547SRussell King  * clk_round_rate - adjust a rate to the exact rate a clock can provide
245f8ce2547SRussell King  * @clk: clock source
246f8ce2547SRussell King  * @rate: desired clock rate in Hz
247f8ce2547SRussell King  *
248f8ce2547SRussell King  * Returns rounded clock rate in Hz, or negative errno.
249f8ce2547SRussell King  */
250f8ce2547SRussell King long clk_round_rate(struct clk *clk, unsigned long rate);
251f8ce2547SRussell King 
252f8ce2547SRussell King /**
253f8ce2547SRussell King  * clk_set_rate - set the clock rate for a clock source
254f8ce2547SRussell King  * @clk: clock source
255f8ce2547SRussell King  * @rate: desired clock rate in Hz
256f8ce2547SRussell King  *
257f8ce2547SRussell King  * Returns success (0) or negative errno.
258f8ce2547SRussell King  */
259f8ce2547SRussell King int clk_set_rate(struct clk *clk, unsigned long rate);
260f8ce2547SRussell King 
261f8ce2547SRussell King /**
262f8ce2547SRussell King  * clk_set_parent - set the parent clock source for this clock
263f8ce2547SRussell King  * @clk: clock source
264f8ce2547SRussell King  * @parent: parent clock source
265f8ce2547SRussell King  *
266f8ce2547SRussell King  * Returns success (0) or negative errno.
267f8ce2547SRussell King  */
268f8ce2547SRussell King int clk_set_parent(struct clk *clk, struct clk *parent);
269f8ce2547SRussell King 
270f8ce2547SRussell King /**
271f8ce2547SRussell King  * clk_get_parent - get the parent clock source for this clock
272f8ce2547SRussell King  * @clk: clock source
273f8ce2547SRussell King  *
274f8ce2547SRussell King  * Returns struct clk corresponding to parent clock source, or
275f8ce2547SRussell King  * valid IS_ERR() condition containing errno.
276f8ce2547SRussell King  */
277f8ce2547SRussell King struct clk *clk_get_parent(struct clk *clk);
278f8ce2547SRussell King 
27905fd8e73SSascha Hauer /**
28005fd8e73SSascha Hauer  * clk_get_sys - get a clock based upon the device name
28105fd8e73SSascha Hauer  * @dev_id: device name
28205fd8e73SSascha Hauer  * @con_id: connection ID
28305fd8e73SSascha Hauer  *
28405fd8e73SSascha Hauer  * Returns a struct clk corresponding to the clock producer, or
28505fd8e73SSascha Hauer  * valid IS_ERR() condition containing errno.  The implementation
28605fd8e73SSascha Hauer  * uses @dev_id and @con_id to determine the clock consumer, and
28705fd8e73SSascha Hauer  * thereby the clock producer. In contrast to clk_get() this function
28805fd8e73SSascha Hauer  * takes the device name instead of the device itself for identification.
28905fd8e73SSascha Hauer  *
29005fd8e73SSascha Hauer  * Drivers must assume that the clock source is not enabled.
29105fd8e73SSascha Hauer  *
29205fd8e73SSascha Hauer  * clk_get_sys should not be called from within interrupt context.
29305fd8e73SSascha Hauer  */
29405fd8e73SSascha Hauer struct clk *clk_get_sys(const char *dev_id, const char *con_id);
29505fd8e73SSascha Hauer 
29693abe8e4SViresh Kumar #else /* !CONFIG_HAVE_CLK */
29793abe8e4SViresh Kumar 
29893abe8e4SViresh Kumar static inline struct clk *clk_get(struct device *dev, const char *id)
29993abe8e4SViresh Kumar {
30093abe8e4SViresh Kumar 	return NULL;
30193abe8e4SViresh Kumar }
30293abe8e4SViresh Kumar 
30393abe8e4SViresh Kumar static inline struct clk *devm_clk_get(struct device *dev, const char *id)
30493abe8e4SViresh Kumar {
30593abe8e4SViresh Kumar 	return NULL;
30693abe8e4SViresh Kumar }
30793abe8e4SViresh Kumar 
30893abe8e4SViresh Kumar static inline void clk_put(struct clk *clk) {}
30993abe8e4SViresh Kumar 
31093abe8e4SViresh Kumar static inline void devm_clk_put(struct device *dev, struct clk *clk) {}
31193abe8e4SViresh Kumar 
31293abe8e4SViresh Kumar static inline int clk_enable(struct clk *clk)
31393abe8e4SViresh Kumar {
31493abe8e4SViresh Kumar 	return 0;
31593abe8e4SViresh Kumar }
31693abe8e4SViresh Kumar 
31793abe8e4SViresh Kumar static inline void clk_disable(struct clk *clk) {}
31893abe8e4SViresh Kumar 
31993abe8e4SViresh Kumar static inline unsigned long clk_get_rate(struct clk *clk)
32093abe8e4SViresh Kumar {
32193abe8e4SViresh Kumar 	return 0;
32293abe8e4SViresh Kumar }
32393abe8e4SViresh Kumar 
32493abe8e4SViresh Kumar static inline int clk_set_rate(struct clk *clk, unsigned long rate)
32593abe8e4SViresh Kumar {
32693abe8e4SViresh Kumar 	return 0;
32793abe8e4SViresh Kumar }
32893abe8e4SViresh Kumar 
32993abe8e4SViresh Kumar static inline long clk_round_rate(struct clk *clk, unsigned long rate)
33093abe8e4SViresh Kumar {
33193abe8e4SViresh Kumar 	return 0;
33293abe8e4SViresh Kumar }
33393abe8e4SViresh Kumar 
33493abe8e4SViresh Kumar static inline int clk_set_parent(struct clk *clk, struct clk *parent)
33593abe8e4SViresh Kumar {
33693abe8e4SViresh Kumar 	return 0;
33793abe8e4SViresh Kumar }
33893abe8e4SViresh Kumar 
33993abe8e4SViresh Kumar static inline struct clk *clk_get_parent(struct clk *clk)
34093abe8e4SViresh Kumar {
34193abe8e4SViresh Kumar 	return NULL;
34293abe8e4SViresh Kumar }
34393abe8e4SViresh Kumar 
34493abe8e4SViresh Kumar #endif
34593abe8e4SViresh Kumar 
34693abe8e4SViresh Kumar /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
34793abe8e4SViresh Kumar static inline int clk_prepare_enable(struct clk *clk)
34893abe8e4SViresh Kumar {
34993abe8e4SViresh Kumar 	int ret;
35093abe8e4SViresh Kumar 
35193abe8e4SViresh Kumar 	ret = clk_prepare(clk);
35293abe8e4SViresh Kumar 	if (ret)
35393abe8e4SViresh Kumar 		return ret;
35493abe8e4SViresh Kumar 	ret = clk_enable(clk);
35593abe8e4SViresh Kumar 	if (ret)
35693abe8e4SViresh Kumar 		clk_unprepare(clk);
35793abe8e4SViresh Kumar 
35893abe8e4SViresh Kumar 	return ret;
35993abe8e4SViresh Kumar }
36093abe8e4SViresh Kumar 
36193abe8e4SViresh Kumar /* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
36293abe8e4SViresh Kumar static inline void clk_disable_unprepare(struct clk *clk)
36393abe8e4SViresh Kumar {
36493abe8e4SViresh Kumar 	clk_disable(clk);
36593abe8e4SViresh Kumar 	clk_unprepare(clk);
36693abe8e4SViresh Kumar }
36793abe8e4SViresh Kumar 
368c0683039STony Lindgren /**
369c0683039STony Lindgren  * clk_add_alias - add a new clock alias
370c0683039STony Lindgren  * @alias: name for clock alias
371c0683039STony Lindgren  * @alias_dev_name: device name
372c0683039STony Lindgren  * @id: platform specific clock name
373c0683039STony Lindgren  * @dev: device
374c0683039STony Lindgren  *
375c0683039STony Lindgren  * Allows using generic clock names for drivers by adding a new alias.
376c0683039STony Lindgren  * Assumes clkdev, see clkdev.h for more info.
377c0683039STony Lindgren  */
378c0683039STony Lindgren int clk_add_alias(const char *alias, const char *alias_dev_name, char *id,
379c0683039STony Lindgren 			struct device *dev);
380c0683039STony Lindgren 
381766e6a4eSGrant Likely struct device_node;
382766e6a4eSGrant Likely struct of_phandle_args;
383766e6a4eSGrant Likely 
384137f8a72SRob Herring #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
385766e6a4eSGrant Likely struct clk *of_clk_get(struct device_node *np, int index);
386766e6a4eSGrant Likely struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
387766e6a4eSGrant Likely struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);
388766e6a4eSGrant Likely #else
389766e6a4eSGrant Likely static inline struct clk *of_clk_get(struct device_node *np, int index)
390766e6a4eSGrant Likely {
3919f1612d3SShawn Guo 	return ERR_PTR(-ENOENT);
392766e6a4eSGrant Likely }
393766e6a4eSGrant Likely static inline struct clk *of_clk_get_by_name(struct device_node *np,
394766e6a4eSGrant Likely 					     const char *name)
395766e6a4eSGrant Likely {
3969f1612d3SShawn Guo 	return ERR_PTR(-ENOENT);
397766e6a4eSGrant Likely }
398766e6a4eSGrant Likely #endif
399766e6a4eSGrant Likely 
400f8ce2547SRussell King #endif
401