From: Arnd Bergmann <arnd@arndb.de>
To: linux-arm-kernel@lists.infradead.org
Cc: Chanwoo Choi <cw00.choi@samsung.com>,
mark.rutland@arm.com, devicetree@vger.kernel.org,
linux-samsung-soc@vger.kernel.org, marc.zyngier@arm.com,
catalin.marinas@arm.com, olof@lixom.net, will.deacon@arm.com,
linux-kernel@vger.kernel.org, jh80.chung@samsung.com,
sw0312.kim@samsung.com, kgene@kernel.org, a.kesavan@samsung.com,
chanho61.park@samsung.com, inki.dae@samsung.com,
ideal.song@samsung.com
Subject: Re: [PATCH v4 2/8] arm64: dts: exynos: Add dts files for 64-bit Exynos5433 SoC
Date: Thu, 26 Feb 2015 16:42:09 +0100 [thread overview]
Message-ID: <2707354.mhmQEHxoKV@wuerfel> (raw)
In-Reply-To: <54EED6E1.4060908@samsung.com>
On Thursday 26 February 2015 17:18:41 Chanwoo Choi wrote:
> I add following aliases and serial_1/serial_3 dt node in board dtsi:
> I tested that change the alias of serial_x node.
>
> aliases {
> serial0 = &serial_1;
> serial1 = &serial_3;
> };
>
> /* Add 'linux,stdout-path' property to print kernel log by using ealycon */
> chosen {
> linux,stdout-path = &serial_1;
> };
>
> [snip]
>
> /* serial_1 is used for printing kernel log throught JIG cable */
> &serial_1 {
> status = "okay";
> };
>
> &serial_3 {
> status = "okay";
> };
>
> In result, serial driver create the /dev/ttySAC0 for serial_1 and /dev/ttySAC1 for serial_3.
> But, I cannot complete the kernel booting and stop it with following kernel log
>
> [ 0.000000] Booting Linux on physical CPU 0x100
> [ 0.000000] Initializing cgroup subsys cpuset
> [ 0.000000] Initializing cgroup subsys cpu
> [ 0.000000] Initializing cgroup subsys cpuacct
> [ 0.000000] Linux version 4.0.0-rc1-00066-g49bfcec-dirty (cwchoi00@chan) (gcc version 4.9.2 20140904 (prerelease) (crosstool-NG l5
> [snip]
> [ 0.000000] Kernel command line: console=ttySAC1,115200 earlycon=exynos4210,0x14C20000
What is the "earlycon=exynos4210,0x14C20000" doing here? Should that not just be
"earlycon=exynos" or something like that when you set the correct stdout-path?
> [snip]
> [ 0.651647] dma-pl330 15610000.pdma: Loaded driver for PL330 DMAC-341330
> [ 0.651851] dma-pl330 15610000.pdma: DBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32
> [ 0.658566] dma-pl330 15600000.pdma: Loaded driver for PL330 DMAC-341330
> [ 0.662872] dma-pl330 15600000.pdma: DBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32
> [ 0.672487] dma-pl330 11420000.adma: Loaded driver for PL330 DMAC-341330
> [ 8466.414900] dma-pl330 11420000.adma: DBUFF-8x8bytes Num_Chans-8 Num_Peri-16 Num_Events-8
> [ 8466.481648] 14c20000.serial: ttySAC0 at MMIO 0x14c20000 (irq = 21, base_baud = 0) is a S3C6400/10
> (dont' print any kernel log)
>
> So, I change the kernel command line about ('console' bootparam) as following:
> because tty framework must use the 'console' bootparam to print kernel log.
> - original : Kernel command line: console=ttySAC1,115200 ... (cannot the kernel log from serial driver probed)
> - modification : Kernel command line: console=ttySAC0,115200 ... (got the successful kernel booting)
>
> After modification, I got the successful kernel booting.
>
> If should use the serial_0 device and then modify the 'aliases' as following:
> I have to modify the commandline of bootloader if the commandline of bootloader is used
> instad of default kernel command line.
>
> aliases {
> serial0 = &serial_0;
> serial1 = &serial_1;
> serial2 = &serial_3;
> };
If you need the numbers to match, maybe there is still a bug in the serial port
driver and it uses some arbitrary number (e.g. probe order, or ascending
MMIO address) for the console instead of the alias?
Arnd
next prev parent reply other threads:[~2015-02-26 15:42 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-24 5:16 [PATCH v4 0/8] arm64: Add the support for new Exynos5433 SoC Chanwoo Choi
2015-02-24 5:16 ` [PATCH v4 1/8] arm64: exynos5433: Enable ARMv8 based Exynos5433 (SoC) support Chanwoo Choi
2015-02-24 8:31 ` Arnd Bergmann
2015-02-26 8:28 ` Chanwoo Choi
[not found] ` <54EED910.4010603-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2015-02-28 0:51 ` Chanwoo Choi
2015-02-24 5:16 ` [PATCH v4 2/8] arm64: dts: exynos: Add dts files for 64-bit Exynos5433 SoC Chanwoo Choi
2015-02-24 8:33 ` Arnd Bergmann
2015-02-24 9:01 ` Chanwoo Choi
2015-02-24 9:50 ` Arnd Bergmann
2015-02-24 12:15 ` Chanwoo Choi
2015-02-24 8:35 ` Arnd Bergmann
2015-02-24 8:52 ` Chanwoo Choi
2015-02-24 9:48 ` Arnd Bergmann
2015-02-24 11:04 ` Chanwoo Choi
2015-02-24 11:59 ` Arnd Bergmann
2015-02-26 8:18 ` Chanwoo Choi
2015-02-26 8:42 ` Chanwoo Choi
2015-02-26 15:42 ` Arnd Bergmann [this message]
2015-02-28 0:47 ` Chanwoo Choi
2015-03-01 21:22 ` Arnd Bergmann
2015-03-04 6:59 ` Chanwoo Choi
2015-03-04 9:38 ` Arnd Bergmann
2015-03-04 10:11 ` Chanwoo Choi
2015-02-24 5:16 ` [PATCH v4 3/8] arm64: dts: exynos: Add MSHC dt node for Exynos5433 Chanwoo Choi
2015-02-24 5:16 ` [PATCH v4 4/8] arm64: dts: exynos: Add SPI/PDMA " Chanwoo Choi
2015-02-24 5:16 ` [PATCH v4 5/8] arm64: dts: exynos: Add PMU " Chanwoo Choi
2015-02-24 5:16 ` [PATCH v4 6/8] arm64: dts: exynos: Add RTC and ADC dt node for Exynos5433 SoC Chanwoo Choi
2015-02-24 5:16 ` [PATCH v4 7/8] arm64: dts: exynos: Add ADMA " Chanwoo Choi
2015-02-24 5:16 ` [PATCH v4 8/8] arm64: dts: exynos: Add I2S " Chanwoo Choi
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=2707354.mhmQEHxoKV@wuerfel \
--to=arnd@arndb.de \
--cc=a.kesavan@samsung.com \
--cc=catalin.marinas@arm.com \
--cc=chanho61.park@samsung.com \
--cc=cw00.choi@samsung.com \
--cc=devicetree@vger.kernel.org \
--cc=ideal.song@samsung.com \
--cc=inki.dae@samsung.com \
--cc=jh80.chung@samsung.com \
--cc=kgene@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=marc.zyngier@arm.com \
--cc=mark.rutland@arm.com \
--cc=olof@lixom.net \
--cc=sw0312.kim@samsung.com \
--cc=will.deacon@arm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).