Commit 5f7b9004 authored by Tony Lindgren's avatar Tony Lindgren

Merge tag 'omap-devel-b-for-3.6' of...

Merge tag 'omap-devel-b-for-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into devel-driver

Convert the OMAP HDQ1W driver to use runtime PM.  Make it available on
all OMAP2+ chips that appear to have it integrated.  Fix a problem
preventing it from being used on OMAP4.
parents 6b16351a c354a864
...@@ -672,43 +672,6 @@ void __init omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data) ...@@ -672,43 +672,6 @@ void __init omap242x_init_mmc(struct omap_mmc_platform_data **mmc_data)
#endif #endif
/*-------------------------------------------------------------------------*/
#if defined(CONFIG_HDQ_MASTER_OMAP) || defined(CONFIG_HDQ_MASTER_OMAP_MODULE)
#define OMAP_HDQ_BASE 0x480B2000
static struct resource omap_hdq_resources[] = {
{
.start = OMAP_HDQ_BASE,
.end = OMAP_HDQ_BASE + 0x1C,
.flags = IORESOURCE_MEM,
},
{
.start = INT_24XX_HDQ_IRQ,
.flags = IORESOURCE_IRQ,
},
};
static struct platform_device omap_hdq_dev = {
.name = "omap_hdq",
.id = 0,
.dev = {
.platform_data = NULL,
},
.num_resources = ARRAY_SIZE(omap_hdq_resources),
.resource = omap_hdq_resources,
};
static inline void omap_hdq_init(void)
{
if (cpu_is_omap2420())
return;
platform_device_register(&omap_hdq_dev);
}
#else
static inline void omap_hdq_init(void) {}
#endif
/*---------------------------------------------------------------------------*/
#if defined(CONFIG_VIDEO_OMAP2_VOUT) || \ #if defined(CONFIG_VIDEO_OMAP2_VOUT) || \
defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE) defined(CONFIG_VIDEO_OMAP2_VOUT_MODULE)
#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE) #if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
...@@ -753,7 +716,6 @@ static int __init omap2_init_devices(void) ...@@ -753,7 +716,6 @@ static int __init omap2_init_devices(void)
omap_init_mcspi(); omap_init_mcspi();
} }
omap_init_pmu(); omap_init_pmu();
omap_hdq_init();
omap_init_sti(); omap_init_sti();
omap_init_sham(); omap_init_sham();
omap_init_aes(); omap_init_aes();
......
...@@ -22,7 +22,13 @@ ...@@ -22,7 +22,13 @@
* 02110-1301 USA * 02110-1301 USA
*/ */
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/err.h>
#include <linux/platform_device.h>
#include <plat/omap_hwmod.h> #include <plat/omap_hwmod.h>
#include <plat/omap_device.h>
#include <plat/hdq1w.h> #include <plat/hdq1w.h>
#include "common.h" #include "common.h"
...@@ -70,3 +76,23 @@ int omap_hdq1w_reset(struct omap_hwmod *oh) ...@@ -70,3 +76,23 @@ int omap_hdq1w_reset(struct omap_hwmod *oh)
return 0; return 0;
} }
static int __init omap_init_hdq(void)
{
int id = -1;
struct platform_device *pdev;
struct omap_hwmod *oh;
char *oh_name = "hdq1w";
char *devname = "omap_hdq";
oh = omap_hwmod_lookup(oh_name);
if (!oh)
return 0;
pdev = omap_device_build(devname, id, oh, NULL, 0, NULL, 0, 0);
WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s.\n",
devname, oh->name);
return 0;
}
arch_initcall(omap_init_hdq);
...@@ -60,7 +60,7 @@ config W1_MASTER_GPIO ...@@ -60,7 +60,7 @@ config W1_MASTER_GPIO
config HDQ_MASTER_OMAP config HDQ_MASTER_OMAP
tristate "OMAP HDQ driver" tristate "OMAP HDQ driver"
depends on SOC_OMAP2430 || ARCH_OMAP3 depends on ARCH_OMAP2PLUS
help help
Say Y here if you want support for the 1-wire or HDQ Interface Say Y here if you want support for the 1-wire or HDQ Interface
on an OMAP processor. on an OMAP processor.
......
/* /*
* drivers/w1/masters/omap_hdq.c * drivers/w1/masters/omap_hdq.c
* *
* Copyright (C) 2007 Texas Instruments, Inc. * Copyright (C) 2007,2012 Texas Instruments, Inc.
* *
* This file is licensed under the terms of the GNU General Public License * This file is licensed under the terms of the GNU General Public License
* version 2. This program is licensed "as is" without any warranty of any * version 2. This program is licensed "as is" without any warranty of any
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/err.h> #include <linux/err.h>
#include <linux/clk.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/pm_runtime.h>
#include <asm/irq.h> #include <asm/irq.h>
#include <mach/hardware.h> #include <mach/hardware.h>
...@@ -61,8 +61,6 @@ struct hdq_data { ...@@ -61,8 +61,6 @@ struct hdq_data {
/* lock status update */ /* lock status update */
struct mutex hdq_mutex; struct mutex hdq_mutex;
int hdq_usecount; int hdq_usecount;
struct clk *hdq_ick;
struct clk *hdq_fck;
u8 hdq_irqstatus; u8 hdq_irqstatus;
/* device lock */ /* device lock */
spinlock_t hdq_spinlock; spinlock_t hdq_spinlock;
...@@ -102,20 +100,20 @@ static struct w1_bus_master omap_w1_master = { ...@@ -102,20 +100,20 @@ static struct w1_bus_master omap_w1_master = {
/* HDQ register I/O routines */ /* HDQ register I/O routines */
static inline u8 hdq_reg_in(struct hdq_data *hdq_data, u32 offset) static inline u8 hdq_reg_in(struct hdq_data *hdq_data, u32 offset)
{ {
return __raw_readb(hdq_data->hdq_base + offset); return __raw_readl(hdq_data->hdq_base + offset);
} }
static inline void hdq_reg_out(struct hdq_data *hdq_data, u32 offset, u8 val) static inline void hdq_reg_out(struct hdq_data *hdq_data, u32 offset, u8 val)
{ {
__raw_writeb(val, hdq_data->hdq_base + offset); __raw_writel(val, hdq_data->hdq_base + offset);
} }
static inline u8 hdq_reg_merge(struct hdq_data *hdq_data, u32 offset, static inline u8 hdq_reg_merge(struct hdq_data *hdq_data, u32 offset,
u8 val, u8 mask) u8 val, u8 mask)
{ {
u8 new_val = (__raw_readb(hdq_data->hdq_base + offset) & ~mask) u8 new_val = (__raw_readl(hdq_data->hdq_base + offset) & ~mask)
| (val & mask); | (val & mask);
__raw_writeb(new_val, hdq_data->hdq_base + offset); __raw_writel(new_val, hdq_data->hdq_base + offset);
return new_val; return new_val;
} }
...@@ -419,17 +417,8 @@ static int omap_hdq_get(struct hdq_data *hdq_data) ...@@ -419,17 +417,8 @@ static int omap_hdq_get(struct hdq_data *hdq_data)
hdq_data->hdq_usecount++; hdq_data->hdq_usecount++;
try_module_get(THIS_MODULE); try_module_get(THIS_MODULE);
if (1 == hdq_data->hdq_usecount) { if (1 == hdq_data->hdq_usecount) {
if (clk_enable(hdq_data->hdq_ick)) {
dev_dbg(hdq_data->dev, "Can not enable ick\n"); pm_runtime_get_sync(hdq_data->dev);
ret = -ENODEV;
goto clk_err;
}
if (clk_enable(hdq_data->hdq_fck)) {
dev_dbg(hdq_data->dev, "Can not enable fck\n");
clk_disable(hdq_data->hdq_ick);
ret = -ENODEV;
goto clk_err;
}
/* make sure HDQ is out of reset */ /* make sure HDQ is out of reset */
if (!(hdq_reg_in(hdq_data, OMAP_HDQ_SYSSTATUS) & if (!(hdq_reg_in(hdq_data, OMAP_HDQ_SYSSTATUS) &
...@@ -450,9 +439,6 @@ static int omap_hdq_get(struct hdq_data *hdq_data) ...@@ -450,9 +439,6 @@ static int omap_hdq_get(struct hdq_data *hdq_data)
} }
} }
clk_err:
clk_put(hdq_data->hdq_ick);
clk_put(hdq_data->hdq_fck);
out: out:
mutex_unlock(&hdq_data->hdq_mutex); mutex_unlock(&hdq_data->hdq_mutex);
rtn: rtn:
...@@ -475,10 +461,8 @@ static int omap_hdq_put(struct hdq_data *hdq_data) ...@@ -475,10 +461,8 @@ static int omap_hdq_put(struct hdq_data *hdq_data)
} else { } else {
hdq_data->hdq_usecount--; hdq_data->hdq_usecount--;
module_put(THIS_MODULE); module_put(THIS_MODULE);
if (0 == hdq_data->hdq_usecount) { if (0 == hdq_data->hdq_usecount)
clk_disable(hdq_data->hdq_ick); pm_runtime_put_sync(hdq_data->dev);
clk_disable(hdq_data->hdq_fck);
}
} }
mutex_unlock(&hdq_data->hdq_mutex); mutex_unlock(&hdq_data->hdq_mutex);
...@@ -591,35 +575,11 @@ static int __devinit omap_hdq_probe(struct platform_device *pdev) ...@@ -591,35 +575,11 @@ static int __devinit omap_hdq_probe(struct platform_device *pdev)
goto err_ioremap; goto err_ioremap;
} }
/* get interface & functional clock objects */
hdq_data->hdq_ick = clk_get(&pdev->dev, "ick");
if (IS_ERR(hdq_data->hdq_ick)) {
dev_dbg(&pdev->dev, "Can't get HDQ ick clock object\n");
ret = PTR_ERR(hdq_data->hdq_ick);
goto err_ick;
}
hdq_data->hdq_fck = clk_get(&pdev->dev, "fck");
if (IS_ERR(hdq_data->hdq_fck)) {
dev_dbg(&pdev->dev, "Can't get HDQ fck clock object\n");
ret = PTR_ERR(hdq_data->hdq_fck);
goto err_fck;
}
hdq_data->hdq_usecount = 0; hdq_data->hdq_usecount = 0;
mutex_init(&hdq_data->hdq_mutex); mutex_init(&hdq_data->hdq_mutex);
if (clk_enable(hdq_data->hdq_ick)) { pm_runtime_enable(&pdev->dev);
dev_dbg(&pdev->dev, "Can not enable ick\n"); pm_runtime_get_sync(&pdev->dev);
ret = -ENODEV;
goto err_intfclk;
}
if (clk_enable(hdq_data->hdq_fck)) {
dev_dbg(&pdev->dev, "Can not enable fck\n");
ret = -ENODEV;
goto err_fnclk;
}
rev = hdq_reg_in(hdq_data, OMAP_HDQ_REVISION); rev = hdq_reg_in(hdq_data, OMAP_HDQ_REVISION);
dev_info(&pdev->dev, "OMAP HDQ Hardware Rev %c.%c. Driver in %s mode\n", dev_info(&pdev->dev, "OMAP HDQ Hardware Rev %c.%c. Driver in %s mode\n",
...@@ -641,9 +601,7 @@ static int __devinit omap_hdq_probe(struct platform_device *pdev) ...@@ -641,9 +601,7 @@ static int __devinit omap_hdq_probe(struct platform_device *pdev)
omap_hdq_break(hdq_data); omap_hdq_break(hdq_data);
/* don't clock the HDQ until it is needed */ pm_runtime_put_sync(&pdev->dev);
clk_disable(hdq_data->hdq_ick);
clk_disable(hdq_data->hdq_fck);
omap_w1_master.data = hdq_data; omap_w1_master.data = hdq_data;
...@@ -655,20 +613,11 @@ static int __devinit omap_hdq_probe(struct platform_device *pdev) ...@@ -655,20 +613,11 @@ static int __devinit omap_hdq_probe(struct platform_device *pdev)
return 0; return 0;
err_w1:
err_irq: err_irq:
clk_disable(hdq_data->hdq_fck); pm_runtime_put_sync(&pdev->dev);
err_w1:
err_fnclk: pm_runtime_disable(&pdev->dev);
clk_disable(hdq_data->hdq_ick);
err_intfclk:
clk_put(hdq_data->hdq_fck);
err_fck:
clk_put(hdq_data->hdq_ick);
err_ick:
iounmap(hdq_data->hdq_base); iounmap(hdq_data->hdq_base);
err_ioremap: err_ioremap:
...@@ -696,8 +645,7 @@ static int omap_hdq_remove(struct platform_device *pdev) ...@@ -696,8 +645,7 @@ static int omap_hdq_remove(struct platform_device *pdev)
mutex_unlock(&hdq_data->hdq_mutex); mutex_unlock(&hdq_data->hdq_mutex);
/* remove module dependency */ /* remove module dependency */
clk_put(hdq_data->hdq_ick); pm_runtime_disable(&pdev->dev);
clk_put(hdq_data->hdq_fck);
free_irq(INT_24XX_HDQ_IRQ, hdq_data); free_irq(INT_24XX_HDQ_IRQ, hdq_data);
platform_set_drvdata(pdev, NULL); platform_set_drvdata(pdev, NULL);
iounmap(hdq_data->hdq_base); iounmap(hdq_data->hdq_base);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment