mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
11801e9de2
Most notable here is probably the addition of basic support for the BCM2835, an SoC used in some of the Roku 2 players as well as the much-hyped Raspberry Pi, cleaned up and contributed by Stephen Warren. It's still early days on mainline support, with just the basics working. But it has to start somewhere! Beyond that there's some conversions of clock infrastructure on tegra to common clock, misc updates for several other platforms, and OMAP now has its own bus (under drivers/bus) to manage its devices through. This branch adds two new directories outside of arch/arm: drivers/irqchip for new irq controllers, and drivers/bus for the above OMAP bus. It's expected that some of the other platforms will migrate parts of their platforms to those directories over time as well. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJQaO2SAAoJEIwa5zzehBx3TBIQAJYc+vpAqiv8MLQ1XV3cLiIP X57fxM9u1A+uXpXsiCTGR+ga8W4a5tlfGMXDBnl/K2bnFs2x11b9NkFLDJ7mdkih J4c/iOWT/mT5suLnnybyg6ZGaxGkAKou2AumiSmkazmq5hGG67hkpAOqFEfDK0J2 Au7/6VN6GZXgiwt8nYaAB/qR5NVcww4m/6GQ2looaWgRLT/wgC3W2ZKvw6zEdl2J OxOpwf2ujG/75zLQaxTeZ5rKnGtAXH4v0KhY9CWQacQPi4L2MVCrvUrDB4j0as4H Wmsu7g6fZA9Vlf1aW/mlDY1ftozfbDaKORoYVS+CsWhm1oiQI5t+sAWRTkbbS85t pobgKfFdvNsl9kS1zRdEddK2tyotwtXh2jz+P/s1l95hfqZ8IdVBJNMlcrHRINOI 2iQXFfGRhCCqMcfFiGXJ43tYja/aCsaIc4M5TrEma57czZT5jK8HSLh0ZUmFYDoe /TfUegVhFASmkNTk7dVZgZ2UoQVkv4lWs+xuf8YgX3UalWgl/YIRRFl4NnylGlEc jjrX3MjXATqXzLPEZaf8dRZHIpB6FYmZq1QqaoefcUQ46gBOueThElZP3sNWR8a2 MOtknauLfLwQbrcH5CmqKpIpXTB4LKgbf/omH2jQlxBhQ5t7PXHVD1NFsbZbwM8J RVCZb4PwqEwOt/wibTrk =BCp4 -----END PGP SIGNATURE----- Merge tag 'soc' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc Pull ARM soc-specific updates from Olof Johansson: "Most notable here is probably the addition of basic support for the BCM2835, an SoC used in some of the Roku 2 players as well as the much-hyped Raspberry Pi, cleaned up and contributed by Stephen Warren. It's still early days on mainline support, with just the basics working. But it has to start somewhere! Beyond that there's some conversions of clock infrastructure on tegra to common clock, misc updates for several other platforms, and OMAP now has its own bus (under drivers/bus) to manage its devices through. This branch adds two new directories outside of arch/arm: drivers/irqchip for new irq controllers, and drivers/bus for the above OMAP bus. It's expected that some of the other platforms will migrate parts of their platforms to those directories over time as well." Fix up trivial conflicts with the clk infrastructure changes. * tag 'soc' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (62 commits) ARM: shmobile: add new __iomem annotation for new code ARM: LPC32xx: Support GPI 28 ARM: LPC32xx: Platform update for devicetree completion of spi-pl022 ARM: LPC32xx: Board cleanup irqchip: fill in empty Kconfig ARM: SAMSUNG: Add check for NULL in clock interface ARM: EXYNOS: Put PCM, Slimbus, Spdif clocks to off state ARM: EXYNOS: Add bus clock for FIMD ARM: SAMSUNG: Fix HDMI related warnings ARM: S3C24XX: Add .get_rate callback for "camif-upll" clock ARM: EXYNOS: Fix incorrect help text ARM: EXYNOS: Turn off clocks for NAND, OneNAND and TSI controllers ARM: OMAP: AM33xx hwmod: fixup SPI after platform_data move MAINTAINERS: add an entry for the BCM2835 ARM sub-architecture ARM: bcm2835: instantiate console UART ARM: bcm2835: add stub clock driver ARM: bcm2835: add system timer ARM: bcm2835: add interrupt controller driver ARM: add infra-structure for BCM2835 and Raspberry Pi ARM: tegra20: add CPU hotplug support ...
470 lines
9.7 KiB
C
470 lines
9.7 KiB
C
/* linux/arch/arm/plat-s3c24xx/clock.c
|
|
*
|
|
* Copyright 2004-2005 Simtec Electronics
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
*
|
|
* S3C24XX Core clock control support
|
|
*
|
|
* Based on, and code from linux/arch/arm/mach-versatile/clock.c
|
|
**
|
|
** Copyright (C) 2004 ARM Limited.
|
|
** Written by Deep Blue Solutions Limited.
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/list.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/err.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/device.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/ioport.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/io.h>
|
|
#if defined(CONFIG_DEBUG_FS)
|
|
#include <linux/debugfs.h>
|
|
#endif
|
|
|
|
#include <mach/hardware.h>
|
|
#include <asm/irq.h>
|
|
|
|
#include <plat/cpu-freq.h>
|
|
|
|
#include <plat/clock.h>
|
|
#include <plat/cpu.h>
|
|
|
|
#include <linux/serial_core.h>
|
|
#include <plat/regs-serial.h> /* for s3c24xx_uart_devs */
|
|
|
|
/* clock information */
|
|
|
|
static LIST_HEAD(clocks);
|
|
|
|
/* We originally used an mutex here, but some contexts (see resume)
|
|
* are calling functions such as clk_set_parent() with IRQs disabled
|
|
* causing an BUG to be triggered.
|
|
*/
|
|
DEFINE_SPINLOCK(clocks_lock);
|
|
|
|
/* Global watchdog clock used by arch_wtd_reset() callback */
|
|
struct clk *s3c2410_wdtclk;
|
|
static int __init s3c_wdt_reset_init(void)
|
|
{
|
|
s3c2410_wdtclk = clk_get(NULL, "watchdog");
|
|
if (IS_ERR(s3c2410_wdtclk))
|
|
printk(KERN_WARNING "%s: warning: cannot get watchdog clock\n", __func__);
|
|
return 0;
|
|
}
|
|
arch_initcall(s3c_wdt_reset_init);
|
|
|
|
/* enable and disable calls for use with the clk struct */
|
|
|
|
static int clk_null_enable(struct clk *clk, int enable)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int clk_enable(struct clk *clk)
|
|
{
|
|
unsigned long flags;
|
|
|
|
if (IS_ERR(clk) || clk == NULL)
|
|
return -EINVAL;
|
|
|
|
clk_enable(clk->parent);
|
|
|
|
spin_lock_irqsave(&clocks_lock, flags);
|
|
|
|
if ((clk->usage++) == 0)
|
|
(clk->enable)(clk, 1);
|
|
|
|
spin_unlock_irqrestore(&clocks_lock, flags);
|
|
return 0;
|
|
}
|
|
|
|
void clk_disable(struct clk *clk)
|
|
{
|
|
unsigned long flags;
|
|
|
|
if (IS_ERR(clk) || clk == NULL)
|
|
return;
|
|
|
|
spin_lock_irqsave(&clocks_lock, flags);
|
|
|
|
if ((--clk->usage) == 0)
|
|
(clk->enable)(clk, 0);
|
|
|
|
spin_unlock_irqrestore(&clocks_lock, flags);
|
|
clk_disable(clk->parent);
|
|
}
|
|
|
|
|
|
unsigned long clk_get_rate(struct clk *clk)
|
|
{
|
|
if (IS_ERR_OR_NULL(clk))
|
|
return 0;
|
|
|
|
if (clk->rate != 0)
|
|
return clk->rate;
|
|
|
|
if (clk->ops != NULL && clk->ops->get_rate != NULL)
|
|
return (clk->ops->get_rate)(clk);
|
|
|
|
if (clk->parent != NULL)
|
|
return clk_get_rate(clk->parent);
|
|
|
|
return clk->rate;
|
|
}
|
|
|
|
long clk_round_rate(struct clk *clk, unsigned long rate)
|
|
{
|
|
if (!IS_ERR_OR_NULL(clk) && clk->ops && clk->ops->round_rate)
|
|
return (clk->ops->round_rate)(clk, rate);
|
|
|
|
return rate;
|
|
}
|
|
|
|
int clk_set_rate(struct clk *clk, unsigned long rate)
|
|
{
|
|
unsigned long flags;
|
|
int ret;
|
|
|
|
if (IS_ERR_OR_NULL(clk))
|
|
return -EINVAL;
|
|
|
|
/* We do not default just do a clk->rate = rate as
|
|
* the clock may have been made this way by choice.
|
|
*/
|
|
|
|
WARN_ON(clk->ops == NULL);
|
|
WARN_ON(clk->ops && clk->ops->set_rate == NULL);
|
|
|
|
if (clk->ops == NULL || clk->ops->set_rate == NULL)
|
|
return -EINVAL;
|
|
|
|
spin_lock_irqsave(&clocks_lock, flags);
|
|
ret = (clk->ops->set_rate)(clk, rate);
|
|
spin_unlock_irqrestore(&clocks_lock, flags);
|
|
|
|
return ret;
|
|
}
|
|
|
|
struct clk *clk_get_parent(struct clk *clk)
|
|
{
|
|
return clk->parent;
|
|
}
|
|
|
|
int clk_set_parent(struct clk *clk, struct clk *parent)
|
|
{
|
|
unsigned long flags;
|
|
int ret = 0;
|
|
|
|
if (IS_ERR_OR_NULL(clk) || IS_ERR_OR_NULL(parent))
|
|
return -EINVAL;
|
|
|
|
spin_lock_irqsave(&clocks_lock, flags);
|
|
|
|
if (clk->ops && clk->ops->set_parent)
|
|
ret = (clk->ops->set_parent)(clk, parent);
|
|
|
|
spin_unlock_irqrestore(&clocks_lock, flags);
|
|
|
|
return ret;
|
|
}
|
|
|
|
EXPORT_SYMBOL(clk_enable);
|
|
EXPORT_SYMBOL(clk_disable);
|
|
EXPORT_SYMBOL(clk_get_rate);
|
|
EXPORT_SYMBOL(clk_round_rate);
|
|
EXPORT_SYMBOL(clk_set_rate);
|
|
EXPORT_SYMBOL(clk_get_parent);
|
|
EXPORT_SYMBOL(clk_set_parent);
|
|
|
|
/* base clocks */
|
|
|
|
int clk_default_setrate(struct clk *clk, unsigned long rate)
|
|
{
|
|
clk->rate = rate;
|
|
return 0;
|
|
}
|
|
|
|
struct clk_ops clk_ops_def_setrate = {
|
|
.set_rate = clk_default_setrate,
|
|
};
|
|
|
|
struct clk clk_xtal = {
|
|
.name = "xtal",
|
|
.rate = 0,
|
|
.parent = NULL,
|
|
.ctrlbit = 0,
|
|
};
|
|
|
|
struct clk clk_ext = {
|
|
.name = "ext",
|
|
};
|
|
|
|
struct clk clk_epll = {
|
|
.name = "epll",
|
|
};
|
|
|
|
struct clk clk_mpll = {
|
|
.name = "mpll",
|
|
.ops = &clk_ops_def_setrate,
|
|
};
|
|
|
|
struct clk clk_upll = {
|
|
.name = "upll",
|
|
.parent = NULL,
|
|
.ctrlbit = 0,
|
|
};
|
|
|
|
struct clk clk_f = {
|
|
.name = "fclk",
|
|
.rate = 0,
|
|
.parent = &clk_mpll,
|
|
.ctrlbit = 0,
|
|
};
|
|
|
|
struct clk clk_h = {
|
|
.name = "hclk",
|
|
.rate = 0,
|
|
.parent = NULL,
|
|
.ctrlbit = 0,
|
|
.ops = &clk_ops_def_setrate,
|
|
};
|
|
|
|
struct clk clk_p = {
|
|
.name = "pclk",
|
|
.rate = 0,
|
|
.parent = NULL,
|
|
.ctrlbit = 0,
|
|
.ops = &clk_ops_def_setrate,
|
|
};
|
|
|
|
struct clk clk_usb_bus = {
|
|
.name = "usb-bus",
|
|
.rate = 0,
|
|
.parent = &clk_upll,
|
|
};
|
|
|
|
|
|
struct clk s3c24xx_uclk = {
|
|
.name = "uclk",
|
|
};
|
|
|
|
/* initialise the clock system */
|
|
|
|
/**
|
|
* s3c24xx_register_clock() - register a clock
|
|
* @clk: The clock to register
|
|
*
|
|
* Add the specified clock to the list of clocks known by the system.
|
|
*/
|
|
int s3c24xx_register_clock(struct clk *clk)
|
|
{
|
|
if (clk->enable == NULL)
|
|
clk->enable = clk_null_enable;
|
|
|
|
/* fill up the clk_lookup structure and register it*/
|
|
clk->lookup.dev_id = clk->devname;
|
|
clk->lookup.con_id = clk->name;
|
|
clk->lookup.clk = clk;
|
|
clkdev_add(&clk->lookup);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* s3c24xx_register_clocks() - register an array of clock pointers
|
|
* @clks: Pointer to an array of struct clk pointers
|
|
* @nr_clks: The number of clocks in the @clks array.
|
|
*
|
|
* Call s3c24xx_register_clock() for all the clock pointers contained
|
|
* in the @clks list. Returns the number of failures.
|
|
*/
|
|
int s3c24xx_register_clocks(struct clk **clks, int nr_clks)
|
|
{
|
|
int fails = 0;
|
|
|
|
for (; nr_clks > 0; nr_clks--, clks++) {
|
|
if (s3c24xx_register_clock(*clks) < 0) {
|
|
struct clk *clk = *clks;
|
|
printk(KERN_ERR "%s: failed to register %p: %s\n",
|
|
__func__, clk, clk->name);
|
|
fails++;
|
|
}
|
|
}
|
|
|
|
return fails;
|
|
}
|
|
|
|
/**
|
|
* s3c_register_clocks() - register an array of clocks
|
|
* @clkp: Pointer to the first clock in the array.
|
|
* @nr_clks: Number of clocks to register.
|
|
*
|
|
* Call s3c24xx_register_clock() on the @clkp array given, printing an
|
|
* error if it fails to register the clock (unlikely).
|
|
*/
|
|
void __init s3c_register_clocks(struct clk *clkp, int nr_clks)
|
|
{
|
|
int ret;
|
|
|
|
for (; nr_clks > 0; nr_clks--, clkp++) {
|
|
ret = s3c24xx_register_clock(clkp);
|
|
|
|
if (ret < 0) {
|
|
printk(KERN_ERR "Failed to register clock %s (%d)\n",
|
|
clkp->name, ret);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* s3c_disable_clocks() - disable an array of clocks
|
|
* @clkp: Pointer to the first clock in the array.
|
|
* @nr_clks: Number of clocks to register.
|
|
*
|
|
* for internal use only at initialisation time. disable the clocks in the
|
|
* @clkp array.
|
|
*/
|
|
|
|
void __init s3c_disable_clocks(struct clk *clkp, int nr_clks)
|
|
{
|
|
for (; nr_clks > 0; nr_clks--, clkp++)
|
|
(clkp->enable)(clkp, 0);
|
|
}
|
|
|
|
/* initialise all the clocks */
|
|
|
|
int __init s3c24xx_register_baseclocks(unsigned long xtal)
|
|
{
|
|
printk(KERN_INFO "S3C24XX Clocks, Copyright 2004 Simtec Electronics\n");
|
|
|
|
clk_xtal.rate = xtal;
|
|
|
|
/* register our clocks */
|
|
|
|
if (s3c24xx_register_clock(&clk_xtal) < 0)
|
|
printk(KERN_ERR "failed to register master xtal\n");
|
|
|
|
if (s3c24xx_register_clock(&clk_mpll) < 0)
|
|
printk(KERN_ERR "failed to register mpll clock\n");
|
|
|
|
if (s3c24xx_register_clock(&clk_upll) < 0)
|
|
printk(KERN_ERR "failed to register upll clock\n");
|
|
|
|
if (s3c24xx_register_clock(&clk_f) < 0)
|
|
printk(KERN_ERR "failed to register cpu fclk\n");
|
|
|
|
if (s3c24xx_register_clock(&clk_h) < 0)
|
|
printk(KERN_ERR "failed to register cpu hclk\n");
|
|
|
|
if (s3c24xx_register_clock(&clk_p) < 0)
|
|
printk(KERN_ERR "failed to register cpu pclk\n");
|
|
|
|
return 0;
|
|
}
|
|
|
|
#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
|
|
/* debugfs support to trace clock tree hierarchy and attributes */
|
|
|
|
static struct dentry *clk_debugfs_root;
|
|
|
|
static int clk_debugfs_register_one(struct clk *c)
|
|
{
|
|
int err;
|
|
struct dentry *d;
|
|
struct clk *pa = c->parent;
|
|
char s[255];
|
|
char *p = s;
|
|
|
|
p += sprintf(p, "%s", c->devname);
|
|
|
|
d = debugfs_create_dir(s, pa ? pa->dent : clk_debugfs_root);
|
|
if (!d)
|
|
return -ENOMEM;
|
|
|
|
c->dent = d;
|
|
|
|
d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usage);
|
|
if (!d) {
|
|
err = -ENOMEM;
|
|
goto err_out;
|
|
}
|
|
|
|
d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
|
|
if (!d) {
|
|
err = -ENOMEM;
|
|
goto err_out;
|
|
}
|
|
return 0;
|
|
|
|
err_out:
|
|
debugfs_remove_recursive(c->dent);
|
|
return err;
|
|
}
|
|
|
|
static int clk_debugfs_register(struct clk *c)
|
|
{
|
|
int err;
|
|
struct clk *pa = c->parent;
|
|
|
|
if (pa && !pa->dent) {
|
|
err = clk_debugfs_register(pa);
|
|
if (err)
|
|
return err;
|
|
}
|
|
|
|
if (!c->dent) {
|
|
err = clk_debugfs_register_one(c);
|
|
if (err)
|
|
return err;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int __init clk_debugfs_init(void)
|
|
{
|
|
struct clk *c;
|
|
struct dentry *d;
|
|
int err;
|
|
|
|
d = debugfs_create_dir("clock", NULL);
|
|
if (!d)
|
|
return -ENOMEM;
|
|
clk_debugfs_root = d;
|
|
|
|
list_for_each_entry(c, &clocks, list) {
|
|
err = clk_debugfs_register(c);
|
|
if (err)
|
|
goto err_out;
|
|
}
|
|
return 0;
|
|
|
|
err_out:
|
|
debugfs_remove_recursive(clk_debugfs_root);
|
|
return err;
|
|
}
|
|
late_initcall(clk_debugfs_init);
|
|
|
|
#endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */
|