All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tushar Behera <trblinux@gmail.com>
To: Javier Martinez Canillas <javier@dowhile0.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>,
	Kevin Hilman <khilman@linaro.org>,
	Doug Anderson <dianders@google.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	linux-samsung-soc <linux-samsung-soc@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	Mike Turquette <mturquette@linaro.org>,
	Tomasz Figa <t.figa@samsung.com>,
	Russell King <linux@arm.linux.org.uk>,
	Kumar Gala <galak@codeaurora.org>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Mark Rutland <mark.rutland@arm.com>,
	Pawel Moll <pawel.moll@arm.com>, Rob Herring <robh+dt@kernel.org>,
	Shaik Ameer Basha <shaik.ameer@samsung.com>
Subject: Re: [PATCH 2/3] ARM: dts: Update the parent for Audss clocks in Exynos5420
Date: Wed, 09 Jul 2014 17:41:03 +0530	[thread overview]
Message-ID: <53BD3157.7030804@gmail.com> (raw)
In-Reply-To: <CABxcv=ka5UxZ8E3+F4cR4vcY1m3AfX=g7HiaNYqmyQjHfSVqtw@mail.gmail.com>

On 07/09/2014 03:44 PM, Javier Martinez Canillas wrote:
> Hello Tushar,
> 
> On Tue, Jul 8, 2014 at 5:00 AM, Tushar Behera <trblinux@gmail.com> wrote:
>>>>
>>>> The u-boot version is a little different on my Peach-Pi as compared to
>>>> the market release version. Not sure if that is making any difference.
>>>>
>>>> Peach # version
>>>>
>>>> U-Boot 2013.04 (Feb 13 2014 - 16:35:03) for Peach
>>>> armv7a-cros-linux-gnueabi-gcc.real (4.8.1_cos_gg_feea904_4.8.1-r66)
>>>> 4.8.x-google 20130905 (prerelease)
>>>> GNU ld (binutils-2.22_cos_gg_2) 2.22
>>>>
>>>
> 
> I'm using the same U-Boot version than Kevin (U-Boot 2013.04-gb98ed09)
> and on my setup using chained nv-uboot I also need patch 1/3 along
> with 2/3 to fix the issue.
> 
>>> Note that I've applied this only from this series so I'm not sure how
>>> much the problem can be solved...any updates for 1/3 and 3/3?
>>>
>>> - Kukjin
>>
>> Thanks for applying 2/3. I am working on 1/3 to see if we are following
>> the right approach to fix Kevin's issue (unfortunately, I am not hitting
>> the bug on my board ATM). 3/3 has already been merged through a
>> different patchset.
>>
> 
> I'm sending as an attachment my complete boot log when booting today's
> next (20140709) until it hangs and my u-boot env vars. I hope that
> helps.
> 

Would you please check the behaviour after enabling following config
options?

diff --git a/arch/arm/configs/exynos_defconfig
b/arch/arm/configs/exynos_defconfig
index e07a227..d6056ab 100644
--- a/arch/arm/configs/exynos_defconfig
+++ b/arch/arm/configs/exynos_defconfig
@@ -93,6 +93,11 @@ CONFIG_FRAMEBUFFER_CONSOLE=y
 CONFIG_FONTS=y
 CONFIG_FONT_7x14=y
 CONFIG_LOGO=y
+CONFIG_SOUND=y
+CONFIG_SND=y
+CONFIG_SND_SOC=y
+CONFIG_SND_SOC_SAMSUNG=y
+CONFIG_SND_SOC_SNOW=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
 CONFIG_USB_EHCI_EXYNOS=y
@@ -109,6 +114,8 @@ CONFIG_MMC_DW_IDMAC=y
 CONFIG_MMC_DW_EXYNOS=y
 CONFIG_RTC_CLASS=y
 CONFIG_RTC_DRV_S3C=y
+CONFIG_DMADEVICES=y
+CONFIG_PL330_DMA=y
 CONFIG_COMMON_CLK_MAX77686=y
 CONFIG_EXT2_FS=y
 CONFIG_EXT3_FS=y


>> --
>> Tushar Behera
>> --
> 
> Best regards,
> Javier
> 


-- 
Tushar Behera

WARNING: multiple messages have this Message-ID (diff)
From: trblinux@gmail.com (Tushar Behera)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/3] ARM: dts: Update the parent for Audss clocks in Exynos5420
Date: Wed, 09 Jul 2014 17:41:03 +0530	[thread overview]
Message-ID: <53BD3157.7030804@gmail.com> (raw)
In-Reply-To: <CABxcv=ka5UxZ8E3+F4cR4vcY1m3AfX=g7HiaNYqmyQjHfSVqtw@mail.gmail.com>

On 07/09/2014 03:44 PM, Javier Martinez Canillas wrote:
> Hello Tushar,
> 
> On Tue, Jul 8, 2014 at 5:00 AM, Tushar Behera <trblinux@gmail.com> wrote:
>>>>
>>>> The u-boot version is a little different on my Peach-Pi as compared to
>>>> the market release version. Not sure if that is making any difference.
>>>>
>>>> Peach # version
>>>>
>>>> U-Boot 2013.04 (Feb 13 2014 - 16:35:03) for Peach
>>>> armv7a-cros-linux-gnueabi-gcc.real (4.8.1_cos_gg_feea904_4.8.1-r66)
>>>> 4.8.x-google 20130905 (prerelease)
>>>> GNU ld (binutils-2.22_cos_gg_2) 2.22
>>>>
>>>
> 
> I'm using the same U-Boot version than Kevin (U-Boot 2013.04-gb98ed09)
> and on my setup using chained nv-uboot I also need patch 1/3 along
> with 2/3 to fix the issue.
> 
>>> Note that I've applied this only from this series so I'm not sure how
>>> much the problem can be solved...any updates for 1/3 and 3/3?
>>>
>>> - Kukjin
>>
>> Thanks for applying 2/3. I am working on 1/3 to see if we are following
>> the right approach to fix Kevin's issue (unfortunately, I am not hitting
>> the bug on my board ATM). 3/3 has already been merged through a
>> different patchset.
>>
> 
> I'm sending as an attachment my complete boot log when booting today's
> next (20140709) until it hangs and my u-boot env vars. I hope that
> helps.
> 

Would you please check the behaviour after enabling following config
options?

diff --git a/arch/arm/configs/exynos_defconfig
b/arch/arm/configs/exynos_defconfig
index e07a227..d6056ab 100644
--- a/arch/arm/configs/exynos_defconfig
+++ b/arch/arm/configs/exynos_defconfig
@@ -93,6 +93,11 @@ CONFIG_FRAMEBUFFER_CONSOLE=y
 CONFIG_FONTS=y
 CONFIG_FONT_7x14=y
 CONFIG_LOGO=y
+CONFIG_SOUND=y
+CONFIG_SND=y
+CONFIG_SND_SOC=y
+CONFIG_SND_SOC_SAMSUNG=y
+CONFIG_SND_SOC_SNOW=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
 CONFIG_USB_EHCI_EXYNOS=y
@@ -109,6 +114,8 @@ CONFIG_MMC_DW_IDMAC=y
 CONFIG_MMC_DW_EXYNOS=y
 CONFIG_RTC_CLASS=y
 CONFIG_RTC_DRV_S3C=y
+CONFIG_DMADEVICES=y
+CONFIG_PL330_DMA=y
 CONFIG_COMMON_CLK_MAX77686=y
 CONFIG_EXT2_FS=y
 CONFIG_EXT3_FS=y


>> --
>> Tushar Behera
>> --
> 
> Best regards,
> Javier
> 


-- 
Tushar Behera

  reply	other threads:[~2014-07-09 12:11 UTC|newest]

Thread overview: 108+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-11  5:32 [PATCH 0/3] Fix boot-hang on Peach-pit and Enable audio Tushar Behera
2014-06-11  5:32 ` Tushar Behera
2014-06-11  5:32 ` [PATCH 1/3] clk: exynos-audss: Keep the parent of mout_audss always enabled Tushar Behera
2014-06-11  5:32   ` Tushar Behera
2014-06-11 15:58   ` Javier Martinez Canillas
2014-06-11 15:58     ` Javier Martinez Canillas
     [not found]   ` <1402464739-19044-2-git-send-email-tushar.b-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-06-11 16:50     ` Mike Turquette
2014-06-11 16:50       ` Mike Turquette
2014-06-11 16:50       ` Mike Turquette
2014-06-12  7:29       ` Tushar Behera
2014-06-12  7:29         ` Tushar Behera
2014-06-12 21:09         ` Mike Turquette
2014-06-12 21:09           ` Mike Turquette
2014-07-11  6:18           ` Tushar Behera
2014-07-11  6:18             ` Tushar Behera
2014-07-29  6:58             ` Mike Turquette
2014-07-29  6:58               ` Mike Turquette
2014-06-11 16:50   ` Kevin Hilman
2014-06-11 16:50     ` Kevin Hilman
2014-06-12  7:40     ` Tushar Behera
2014-06-12  7:40       ` Tushar Behera
2014-06-24 22:59       ` Doug Anderson
2014-06-24 22:59         ` Doug Anderson
2014-06-25  3:09         ` Tushar Behera
2014-06-25  3:09           ` Tushar Behera
2014-06-25  4:02           ` Doug Anderson
2014-06-25  4:02             ` Doug Anderson
2014-06-11 17:28   ` Tomasz Figa
2014-06-11 17:28     ` Tomasz Figa
2014-06-12  7:30     ` Tushar Behera
2014-06-12  7:30       ` Tushar Behera
2014-06-11  5:32 ` [PATCH 2/3] ARM: dts: Update the parent for Audss clocks in Exynos5420 Tushar Behera
2014-06-11  5:32   ` Tushar Behera
2014-06-11 15:58   ` Javier Martinez Canillas
2014-06-11 15:58     ` Javier Martinez Canillas
2014-06-16 11:26     ` Tushar Behera
2014-06-16 11:26       ` Tushar Behera
2014-06-22 15:53       ` Tushar Behera
2014-06-22 15:53         ` Tushar Behera
2014-06-24 23:00   ` Doug Anderson
2014-06-24 23:00     ` Doug Anderson
2014-06-25 23:21     ` Kevin Hilman
2014-06-25 23:21       ` Kevin Hilman
2014-06-25 23:21       ` Kevin Hilman
2014-06-26  3:20       ` Tushar Behera
2014-06-26  3:20         ` Tushar Behera
2014-06-26 16:08         ` Kevin Hilman
2014-06-26 16:08           ` Kevin Hilman
2014-06-26 16:08           ` Kevin Hilman
2014-06-27  3:38           ` Tushar Behera
2014-06-27  3:38             ` Tushar Behera
2014-06-27 14:18             ` Kevin Hilman
2014-06-27 14:18               ` Kevin Hilman
2014-06-27 14:48               ` Kevin Hilman
2014-06-27 14:48                 ` Kevin Hilman
2014-07-01 11:59                 ` Tushar Behera
2014-07-01 11:59                   ` Tushar Behera
2014-07-07 23:34                   ` Kukjin Kim
2014-07-07 23:34                     ` Kukjin Kim
2014-07-08  3:00                     ` Tushar Behera
2014-07-08  3:00                       ` Tushar Behera
2014-07-09 10:14                       ` Javier Martinez Canillas
2014-07-09 10:14                         ` Javier Martinez Canillas
2014-07-09 12:11                         ` Tushar Behera [this message]
2014-07-09 12:11                           ` Tushar Behera
     [not found]                           ` <53BD3157.7030804-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-07-09 13:03                             ` Javier Martinez Canillas
2014-07-09 13:03                               ` Javier Martinez Canillas
2014-07-09 13:03                               ` Javier Martinez Canillas
2014-07-09 16:01                               ` Doug Anderson
2014-07-09 16:01                                 ` Doug Anderson
2014-07-09 17:46                                 ` Javier Martinez Canillas
2014-07-09 17:46                                   ` Javier Martinez Canillas
     [not found]                                   ` <CABxcv==v9whax3oraJQnTiDwfAUznjQP6WHK-auPv3q-LOmdnA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-07-09 17:52                                     ` Doug Anderson
2014-07-09 17:52                                       ` Doug Anderson
2014-07-09 17:52                                       ` Doug Anderson
     [not found] ` <1402464739-19044-1-git-send-email-tushar.b-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-06-11  5:32   ` [PATCH 3/3] ARM: dts: Enable audio support for Peach-pi board Tushar Behera
2014-06-11  5:32     ` Tushar Behera
2014-06-11  5:32     ` Tushar Behera
2014-06-13 17:03     ` Doug Anderson
2014-06-13 17:03       ` Doug Anderson
2014-06-13 17:05       ` Mark Brown
2014-06-13 17:05         ` Mark Brown
2014-06-13 17:13         ` Doug Anderson
2014-06-13 17:13           ` Doug Anderson
     [not found]           ` <CAD=FV=VvkvH1TPiKttm9VXbBRnBo7kmTVK8bZZvexK=bAvaO4Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-06-13 21:58             ` Doug Anderson
2014-06-13 21:58               ` Doug Anderson
2014-06-13 21:58               ` Doug Anderson
2014-06-13 22:04               ` Mark Brown
2014-06-13 22:04                 ` Mark Brown
2014-06-13 22:04                 ` Mark Brown
     [not found]                 ` <20140613220421.GD5099-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2014-06-13 22:50                   ` Doug Anderson
2014-06-13 22:50                     ` Doug Anderson
2014-06-13 22:50                     ` Doug Anderson
2014-06-16 11:19       ` Tushar Behera
2014-06-16 11:19         ` Tushar Behera
     [not found]         ` <539ED2C0.8030405-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-06-16 16:49           ` Doug Anderson
2014-06-16 16:49             ` Doug Anderson
2014-06-16 16:49             ` Doug Anderson
2014-06-16 16:51             ` Mark Brown
2014-06-16 16:51               ` Mark Brown
2014-06-16 17:02               ` Doug Anderson
2014-06-16 17:02                 ` Doug Anderson
2014-06-17  3:39                 ` Tushar Behera
2014-06-17  3:39                   ` Tushar Behera
2014-06-17  3:36             ` Tushar Behera
2014-06-17  3:36               ` Tushar Behera
2014-06-17  4:07               ` Doug Anderson
2014-06-17  4:07                 ` Doug Anderson

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=53BD3157.7030804@gmail.com \
    --to=trblinux@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dianders@google.com \
    --cc=galak@codeaurora.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=javier@dowhile0.org \
    --cc=kgene.kim@samsung.com \
    --cc=khilman@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=mark.rutland@arm.com \
    --cc=mturquette@linaro.org \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=shaik.ameer@samsung.com \
    --cc=t.figa@samsung.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.