From: "Cousson, Benoit" <b-cousson@ti.com>
To: "Gopinath, Thara" <thara@ti.com>
Cc: "Varadarajan, Charulatha" <charu@ti.com>,
"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
"paul@pwsan.com" <paul@pwsan.com>,
"khilman@deeprootsystems.com" <khilman@deeprootsystems.com>,
"Sripathy, Vishwanath" <vishwanath.bs@ti.com>,
"Sawant, Anand" <sawant@ti.com>
Subject: Re: [PATCH v4 2/9] OMAP3: PM: Adding smartreflex driver support.
Date: Tue, 02 Nov 2010 12:50:57 +0100 [thread overview]
Message-ID: <4CCFFB21.5060305@ti.com> (raw)
In-Reply-To: <5A47E75E594F054BAF48C5E4FC4B92AB035ECA9D57@dbde02.ent.ti.com>
On 10/28/2010 5:27 PM, Gopinath, Thara wrote:
>
>
>>> -----Original Message-----
>>> From: Varadarajan, Charulatha
>>> Sent: Thursday, October 28, 2010 11:09 AM
>>> To: Gopinath, Thara; linux-omap@vger.kernel.org
>>> Cc: paul@pwsan.com; khilman@deeprootsystems.com; Cousson, Benoit; Sripathy,
>>> Vishwanath; Sawant, Anand; Gopinath, Thara
>>> Subject: RE: [PATCH v4 2/9] OMAP3: PM: Adding smartreflex driver support.
>>>
>>>
>>> Thara,
>>>
>>>> -----Original Message-----
>>>> From: linux-omap-owner@vger.kernel.org
>>>> [mailto:linux-omap-owner@vger.kernel.org] On Behalf Of Thara Gopinath
>>>> Sent: Wednesday, October 27, 2010 9:41 PM
>>>> To: linux-omap@vger.kernel.org
>>>> Cc: paul@pwsan.com; khilman@deeprootsystems.com; Cousson,
>>>> Benoit; Sripathy, Vishwanath; Sawant, Anand; Gopinath, Thara
>>>> Subject: [PATCH v4 2/9] OMAP3: PM: Adding smartreflex driver support.
>>>>
>>>> SmartReflex modules do adaptive voltage control for real-time
>>>> voltage adjustments. With Smartreflex the power supply voltage
>>>> can be adapted to the silicon performance(manufacturing process,
>>>> temperature induced performance, age induced performance etc).
>>>>
>>>> There are differnet classes of smartreflex implementation.
>>>> Class-0: Manufacturing Test Calibration
>>>> Class-1: Boot-Time Software Calibration
>>>> Class-2: Continuous Software Calibration
>>>> Class-3: Continuous Hardware Calibration
>>>> Class-4: Fully Integrated Power Management
>>>>
>>>> OMAP3 has two smartreflex modules one associated with VDD MPU and the
>>>> other associated with VDD CORE.
>>>> This patch adds support for smartreflex driver. The driver
>>>> is designed
>>>> for Class-1 , Class-2 and Class-3 support and is a platform driver.
>>>> Smartreflex driver can be enabled through a Kconfig option
>>>> "SmartReflex support" under "System type"->"TI OMAP
>>>> implementations" menu.
>>>>
>>>> Smartreflex autocompensation feature can be enabled runtime through
>>>> a debug fs option.
>>>> To enable smartreflex autocompensation feature
>>>> echo 1> /debug/voltage/vdd_<X>/smartreflex/autocomp
>>>> To disable smartreflex autocompensation feature
>>>> echo 0> /debug/voltage/vdd_<X>/smartreflex/autocomp
>>>>
>>>> where X can be mpu, core , iva etc.
>>>>
>>>> This patch contains code originally in linux omap pm branch.
>>>> Major contributors to this driver are
>>>> Lesly A M, Rajendra Nayak, Kalle Jokiniemi, Paul Walmsley,
>>>> Nishant Menon, Kevin Hilman.
>>>>
>>>> Signed-off-by: Thara Gopinath<thara@ti.com>
>>>> ---
>>>> arch/arm/mach-omap2/Makefile | 1 +
>>>> arch/arm/mach-omap2/smartreflex.c | 975
>>>> +++++++++++++++++++++++++
>>>> arch/arm/plat-omap/Kconfig | 36 +
>>>> arch/arm/plat-omap/include/plat/smartreflex.h | 271 +++++++
>>>> 4 files changed, 1283 insertions(+), 0 deletions(-)
>>>> create mode 100644 arch/arm/mach-omap2/smartreflex.c
>>>> create mode 100644 arch/arm/plat-omap/include/plat/smartreflex.h
>>>>
>>>
>>> <<snip>>
>>>
>>>> +static int __init omap_sr_probe(struct platform_device *pdev)
>>>> +{
>>>> + struct omap_sr *sr_info = kzalloc(sizeof(struct
>>>> omap_sr), GFP_KERNEL);
>>>> + struct omap_device *odev = to_omap_device(pdev);
>>>
>>> Patch3 should be ordered before patch2 in your series. Otherwise,
>>> this would fail during a git-bisect.
>
> Again why ?? All patches individually compile and boot.
>>>
>>>> + struct omap_sr_data *pdata = pdev->dev.platform_data;
>>>> + struct resource *mem, *irq;
>>>> + struct dentry *vdd_dbg_dir, *dbg_dir;
>>>> + int ret = 0;
>>>> +
>>>> + if (!sr_info) {
>>>> + dev_err(&pdev->dev, "%s: unable to allocate sr_info\n",
>>>> + __func__);
>>>> + return -ENOMEM;
>>>> + }
>>>> +
>>>> + if (!pdata) {
>>>> + dev_err(&pdev->dev, "%s: platform data
>>>> missing\n", __func__);
>>>> + return -EINVAL;
>>>> + }
>>>> +
>>>> + mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>>>> + if (!mem) {
>>>> + dev_err(&pdev->dev, "%s: no mem resource\n", __func__);
>>>> + ret = -ENODEV;
>>>> + goto err_free_devinfo;
>>>> + }
>>>> +
>>>> + irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
>>>> +
>>>> + pm_runtime_enable(&pdev->dev);
>>>> +
>>>> + sr_info->pdev = pdev;
>>>> + sr_info->srid = pdev->id;
>>>> + sr_info->voltdm = pdata->voltdm;
>>>> + sr_info->autocomp_active = false;
>>>> + sr_info->ip_type = odev->hwmods[0]->class->rev;
>>>
>>> I am not sure if it is okay to get hwmods-info in the driver.
>>> To avoid too many indirections, it can be obtained before
>>> omap_device_build() of the device and passed to the driver.
> mmm. yep we could do it also. Maybe Kevin/Benoit needs to confirm the
> correct way of doing this.
Yep, I fully agree with Charu. You'd better copy that information at
omap_device build time. Getting hwmod internal stuff directly is bad.
Benoit
>
> Regards
> Thara
>>>
>>>> + sr_info->base = ioremap(mem->start, resource_size(mem));
>>>> + if (!sr_info->base) {
>>>> + dev_err(&pdev->dev, "%s: ioremap fail\n", __func__);
>>>> + ret = -ENOMEM;
>>>> + goto err_release_region;
>>>> + }
>>>
>>> <<snip>>
>>>
>>> -V Charulatha
next prev parent reply other threads:[~2010-11-02 11:50 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-28 5:39 [PATCH v4 2/9] OMAP3: PM: Adding smartreflex driver support Varadarajan, Charulatha
2010-10-28 15:27 ` Gopinath, Thara
2010-10-29 4:53 ` Varadarajan, Charulatha
2010-10-29 4:55 ` Gopinath, Thara
2010-10-29 5:00 ` Varadarajan, Charulatha
2010-11-02 11:50 ` Cousson, Benoit [this message]
-- strict thread matches above, loose matches on Subject: below --
2010-10-27 16:10 [PATCH v4 0/9] OMAP3: Adding Smartreflex and Voltage " Thara Gopinath
2010-10-27 16:10 ` [PATCH v4 2/9] OMAP3: PM: Adding smartreflex " Thara Gopinath
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4CCFFB21.5060305@ti.com \
--to=b-cousson@ti.com \
--cc=charu@ti.com \
--cc=khilman@deeprootsystems.com \
--cc=linux-omap@vger.kernel.org \
--cc=paul@pwsan.com \
--cc=sawant@ti.com \
--cc=thara@ti.com \
--cc=vishwanath.bs@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.