1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-w90x900/clock.c
5 * Copyright (c) 2008 Nuvoton technology corporation
7 * Wan ZongShun <mcuos.com@gmail.com>
10 #include <linux/module.h>
11 #include <linux/kernel.h>
12 #include <linux/list.h>
13 #include <linux/errno.h>
14 #include <linux/err.h>
15 #include <linux/string.h>
16 #include <linux/clk.h>
17 #include <linux/spinlock.h>
18 #include <linux/platform_device.h>
21 #include <mach/hardware.h>
27 static DEFINE_SPINLOCK(clocks_lock
);
29 int clk_enable(struct clk
*clk
)
33 spin_lock_irqsave(&clocks_lock
, flags
);
34 if (clk
->enabled
++ == 0)
35 (clk
->enable
)(clk
, 1);
36 spin_unlock_irqrestore(&clocks_lock
, flags
);
40 EXPORT_SYMBOL(clk_enable
);
42 void clk_disable(struct clk
*clk
)
49 WARN_ON(clk
->enabled
== 0);
51 spin_lock_irqsave(&clocks_lock
, flags
);
52 if (--clk
->enabled
== 0)
53 (clk
->enable
)(clk
, 0);
54 spin_unlock_irqrestore(&clocks_lock
, flags
);
56 EXPORT_SYMBOL(clk_disable
);
58 unsigned long clk_get_rate(struct clk
*clk
)
62 EXPORT_SYMBOL(clk_get_rate
);
64 void nuc900_clk_enable(struct clk
*clk
, int enable
)
66 unsigned int clocks
= clk
->cken
;
69 clken
= __raw_readl(W90X900_VA_CLKPWR
);
76 __raw_writel(clken
, W90X900_VA_CLKPWR
);
79 void nuc900_subclk_enable(struct clk
*clk
, int enable
)
81 unsigned int clocks
= clk
->cken
;
84 clken
= __raw_readl(W90X900_VA_CLKPWR
+ SUBCLK
);
91 __raw_writel(clken
, W90X900_VA_CLKPWR
+ SUBCLK
);
94 /* dummy functions, should not be called */
95 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
100 EXPORT_SYMBOL(clk_round_rate
);
102 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
107 EXPORT_SYMBOL(clk_set_rate
);
109 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
114 EXPORT_SYMBOL(clk_set_parent
);
116 struct clk
*clk_get_parent(struct clk
*clk
)
121 EXPORT_SYMBOL(clk_get_parent
);