[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <F3DBB1B3EF102E4994C89758CFCA32412C59EA@DBDE01.ent.ti.com>
Date: Fri, 8 Feb 2013 03:04:08 +0000
From: "Kumar, Anil" <anilkumar.v@...com>
To: "Nori, Sekhar" <nsekhar@...com>
CC: "devicetree-discuss@...ts.ozlabs.org"
<devicetree-discuss@...ts.ozlabs.org>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"davinci-linux-open-source@...ux.davincidsp.com"
<davinci-linux-open-source@...ux.davincidsp.com>,
"linux@....linux.org.uk" <linux@....linux.org.uk>,
"khilman@...prootsystems.com" <khilman@...prootsystems.com>,
"hs@...x.de" <hs@...x.de>, "Porter, Matt" <mporter@...com>,
"broonie@...nsource.wolfsonmicro.com"
<broonie@...nsource.wolfsonmicro.com>,
"mchehab@...hat.com" <mchehab@...hat.com>,
"Bedia, Vaibhav" <vaibhav.bedia@...com>,
"Cousson, Benoit" <b-cousson@...com>,
"tony@...mide.com" <tony@...mide.com>,
"grant.likely@...retlab.ca" <grant.likely@...retlab.ca>,
"rob.herring@...xeda.com" <rob.herring@...xeda.com>
Subject: RE: [PATCH V2 2/2] ARM: davinci: restart: fix wdt to machine
restart with DT
Hi Sekhar,
Thanks for the review.
On Thu, Feb 07, 2013 at 23:45:53, Nori, Sekhar wrote:
>
> On 2/6/2013 9:30 AM, Kumar, Anil wrote:
> > In non DT case da8xx_register_watchdog() is called to register platform device
> > "da8xx_wdt_device" by board file. But in DT case it is not called and wdt
> > device get registered via wdt DT node.
> >
> > Currently code is passing platform device "da8xx_wdt_device" in
> > "davinci_watchdog_reset" function in both DT and non DT case and that
> > leads to crash in DT boot.
> >
> > Update restart function to make it generic DaVinci machine restart
>
> s/DaVinci/da8xx. Also, subject can simply be "ARM: davinci: da850 DT:
> add support for machine reboot" since reboot never worked with DT
> before, "fix" isn't really appropriate.
ok
>
> > in case of DT and non DT boot.
> >
> > Signed-off-by: Kumar, Anil <anilkumar.v@...com>
> > ---
> > :100644 100644 2d5502d... 1df68fd... M arch/arm/mach-davinci/devices-da8xx.c
> > :100644 100644 700d311... ef9f70e... M arch/arm/mach-davinci/include/mach/da8xx.h
> > arch/arm/mach-davinci/devices-da8xx.c | 14 ++++++++++++--
> > arch/arm/mach-davinci/include/mach/da8xx.h | 1 -
> > 2 files changed, 12 insertions(+), 3 deletions(-)
> >
> > diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c
> > index 2d5502d..1df68fd 100644
> > --- a/arch/arm/mach-davinci/devices-da8xx.c
> > +++ b/arch/arm/mach-davinci/devices-da8xx.c
> > @@ -359,7 +359,7 @@ static struct resource da8xx_watchdog_resources[] = {
> > },
> > };
> >
> > -struct platform_device da8xx_wdt_device = {
> > +static struct platform_device da8xx_wdt_device = {
>
> Making of da8xx_wdt_device static should find a mention in description.
Ok,
I made da8xx_wdt_device structure static as it is used only
in file. I will update description for this.
>
> > .name = "watchdog",
> > .id = -1,
> > .num_resources = ARRAY_SIZE(da8xx_watchdog_resources),
> > @@ -368,7 +368,17 @@ struct platform_device da8xx_wdt_device = {
> >
> > void da8xx_restart(char mode, const char *cmd)
> > {
> > - davinci_watchdog_reset(&da8xx_wdt_device);
> > + struct device *dev = NULL;
> > + struct platform_device *wdt_device = NULL;
>
> No need to initialize these variables here.
Ok,
I think no need to define wdt_device, can be used as
davinci_watchdog_reset(to_platform_device(dev));
>
> > +
> > + dev = bus_find_device_by_name(&platform_bus_type, NULL, "watchdog");
> > + if (!dev) {
> > + pr_err("wdt device not found to machine reboot\n");
>
> Rather: "%s: failed to find watchdog device", __func__
ok
Thanks,
Anil
Powered by blists - more mailing lists