@@ -24,6 +24,10 @@ config GENERIC_CLK_DIVIDER
bool
depends on GENERIC_CLK
+config GENERIC_CLK_MUX
+ bool
+ depends on GENERIC_CLK
+
config GENERIC_CLK_SYSFS
bool "Clock tree topology and debug info"
depends on EXPERIMENTAL && GENERIC_CLK
@@ -3,4 +3,5 @@ obj-$(CONFIG_CLKDEV_LOOKUP) += clkdev.o
obj-$(CONFIG_GENERIC_CLK) += clk.o
obj-$(CONFIG_GENERIC_CLK_BASIC) += clk-basic.o
obj-$(CONFIG_GENERIC_CLK_DIVIDER) += clk-divider.o
+obj-$(CONFIG_GENERIC_CLK_MUX) += clk-mux.o
obj-$(CONFIG_GENERIC_CLK_SYSFS) += clk-sysfs.o
new file mode 100644
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2011 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
+ * Copyright (C) 2011 Richard Zhao, Linaro <richard.zhao@linaro.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * Standard functionality for the common clock API.
+ */
+#include <linux/module.h>
+#include <linux/clk.h>
+#include <linux/io.h>
+#include <linux/err.h>
+
+#define to_clk_mux(ck) container_of(ck, struct clk_mux, clk)
+
+static struct clk *clk_mux_get_parent(struct clk *clk)
+{
+ struct clk_mux *mux = to_clk_mux(clk);
+ u32 val;
+
+ val = readl(mux->reg) >> mux->shift;
+ val &= (1 << mux->width) - 1;
+
+ if (val >= mux->num_clks)
+ return ERR_PTR(-EINVAL);
+
+ return mux->clks[val];
+}
+
+static int clk_mux_set_parent(struct clk *clk, struct clk *parent)
+{
+ struct clk_mux *mux = to_clk_mux(clk);
+ u32 val;
+ int i;
+ unsigned long flags = 0;
+
+ for (i = 0; i < mux->num_clks; i++)
+ if (mux->clks[i] == parent)
+ break;
+
+ if (i == mux->num_clks)
+ return -EINVAL;
+
+ if (mux->lock)
+ spin_lock_irqsave(mux->lock, flags);
+
+ val = readl(mux->reg);
+ val &= ~(((1 << mux->width) - 1) << mux->shift);
+ val |= i << mux->shift;
+ writel(val, mux->reg);
+
+ if (mux->lock)
+ spin_unlock_irqrestore(mux->lock, flags);
+
+ return 0;
+}
+
+struct clk_hw_ops clk_mux_ops = {
+ .get_parent = clk_mux_get_parent,
+ .set_parent = clk_mux_set_parent,
+};
+EXPORT_SYMBOL_GPL(clk_mux_ops);
@@ -202,6 +202,39 @@ extern struct clk_hw_ops clk_divider_ops;
#endif /* CONFIG_GENERIC_CLK_DIVIDER */
+#ifdef CONFIG_GENERIC_CLK_MUX
+
+#include <linux/spinlock.h>
+
+/**
+ * clock multiplexer
+ *
+ * @reg the register this multiplexer can be configured with
+ * @shift the shift to the start bit of this multiplexer
+ * @width the width in bits of this multiplexer
+ * @num_clks number of parent clocks
+ * @lock register lock
+ * @clks array of possible parents for this multiplexer. Can contain
+ * holes with NULL in it for invalid register settings
+ *
+ * This clock implements get_parent/set_parent. prepare/unprepare,
+ * enable/disable and get_rate operations are passed through to the parent,
+ * the rate is not adjustable.
+ */
+struct clk_mux {
+ struct clk clk;
+ void __iomem *reg;
+ unsigned char shift;
+ unsigned char width;
+ unsigned char num_clks;
+ spinlock_t *lock;
+ struct clk **clks;
+};
+
+extern struct clk_hw_ops clk_mux_ops;
+
+#endif /* CONFIG_GENERIC_CLK_MUX */
+
/**
* clk_init - initialize the data structures in a struct clk
* @dev: device initializing this clk, placeholder for now