All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters
@ 2017-10-06  7:12 Stefan Roese
  2017-10-06  7:12 ` [U-Boot] [PATCH 2/3] x86: theadorable-x86-common: Move "-generic" into kernel-ver variable Stefan Roese
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Stefan Roese @ 2017-10-06  7:12 UTC (permalink / raw)
  To: u-boot

This is needed for the PCIe hotplug to work correctly on some boards.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Bin Meng <bmeng.cn@gmail.com>
---
 include/configs/theadorable-x86-common.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/include/configs/theadorable-x86-common.h b/include/configs/theadorable-x86-common.h
index 238056a65f..7621385fa2 100644
--- a/include/configs/theadorable-x86-common.h
+++ b/include/configs/theadorable-x86-common.h
@@ -58,7 +58,8 @@
 	"addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"	\
 	"addmisc=setenv bootargs ${bootargs} "			\
 		"intel-spi.writeable=1 vmalloc=300M "		\
-		"pci=realloc=on,hpmemsize=0x12000000\0"		\
+		"pci=realloc=on,hpmemsize=0x12000000,"		\
+		"hpmemprefsize=0,hpiosize=0\0"	    		\
 	"bootcmd=if env exists recovery_status;"		\
 		"then run swupdate;"				\
 		"else run yocto_boot;run swupdate;"		\
-- 
2.14.2

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 2/3] x86: theadorable-x86-common: Move "-generic" into kernel-ver variable
  2017-10-06  7:12 [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters Stefan Roese
@ 2017-10-06  7:12 ` Stefan Roese
  2017-10-07  3:59   ` Bin Meng
  2017-10-06  7:12 ` [U-Boot] [PATCH 3/3] x86: theadorable-x86-xxx_defconfig: Enable setexpr command Stefan Roese
  2017-10-07  3:59 ` [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters Bin Meng
  2 siblings, 1 reply; 9+ messages in thread
From: Stefan Roese @ 2017-10-06  7:12 UTC (permalink / raw)
  To: u-boot

This enables the easier usage of "-custom" kernel versions as well.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Bin Meng <bmeng.cn@gmail.com>
---
 include/configs/theadorable-x86-common.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/configs/theadorable-x86-common.h b/include/configs/theadorable-x86-common.h
index 7621385fa2..c20803c535 100644
--- a/include/configs/theadorable-x86-common.h
+++ b/include/configs/theadorable-x86-common.h
@@ -46,7 +46,7 @@
 	"yocto_tty=" __stringify(DEF_ENV_YOCTO_TTY) "\0"	\
 	"start_eth=if test -n \"${eth_init}\";"			\
 		"then run eth_init;else sleep 0;fi\0"		\
-	"kernel-ver=4.8.0-54\0"					\
+	"kernel-ver=4.8.0-54-generic\0"				\
 	"boot=zboot 03000000 0 04000000 ${filesize}\0"		\
 	"mtdparts=mtdparts=intel-spi:4k(descriptor),7084k(me)," \
 		"8k(env1),8k(env2),64k(mrc),640k(u-boot),"	\
@@ -69,9 +69,9 @@
 	"ubuntu_args_quiet=setenv bootargs "			\
 		"root=/dev/sda${ubuntu_part} ro quiet\0"	\
 	"ubuntu_load=load scsi 0:${ubuntu_part} 03000000 "	\
-		"/boot/vmlinuz-${kernel-ver}-generic;"		\
+		"/boot/vmlinuz-${kernel-ver};"			\
 		"load scsi 0:${ubuntu_part} 04000000 "		\
-		"/boot/initrd.img-${kernel-ver}-generic\0"	\
+		"/boot/initrd.img-${kernel-ver}\0"		\
 	"ubuntu_boot=run ubuntu_args_quiet addmtd addmisc "	\
 		"ubuntu_load boot\0"				\
 	"ubuntu_boot_console=run ubuntu_args addtty_ubuntu "	\
@@ -80,7 +80,7 @@
 	"net_boot=run start_eth net_args addtty_yocto addmtd addmisc;" \
 		"tftp 03000000 ${tftpdir}/bzImage;"		\
 		"load scsi 0:${ubuntu_part} 04000000 "		\
-		"/boot/initrd.img-${kernel-ver}-generic;"	\
+		"/boot/initrd.img-${kernel-ver};"		\
 		"run boot\0"					\
 	"yocto_args=setenv bootargs root=/dev/sda${yocto_part} " \
 		"panic=1\0"				\
-- 
2.14.2

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 3/3] x86: theadorable-x86-xxx_defconfig: Enable setexpr command
  2017-10-06  7:12 [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters Stefan Roese
  2017-10-06  7:12 ` [U-Boot] [PATCH 2/3] x86: theadorable-x86-common: Move "-generic" into kernel-ver variable Stefan Roese
@ 2017-10-06  7:12 ` Stefan Roese
  2017-10-07  3:59   ` Bin Meng
  2017-10-07  3:59 ` [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters Bin Meng
  2 siblings, 1 reply; 9+ messages in thread
From: Stefan Roese @ 2017-10-06  7:12 UTC (permalink / raw)
  To: u-boot

The setexpr command is useful for scripting, lets enable it for all
x86 based theadorable platforms.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Bin Meng <bmeng.cn@gmail.com>
---
 configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig | 1 -
 configs/theadorable-x86-conga-qa3-e3845_defconfig         | 1 -
 configs/theadorable-x86-dfi-bt700_defconfig               | 1 -
 3 files changed, 3 deletions(-)

diff --git a/configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig b/configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig
index 1888f08928..344a8f25c2 100644
--- a/configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig
+++ b/configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig
@@ -27,7 +27,6 @@ CONFIG_CMD_MMC=y
 CONFIG_CMD_SF=y
 CONFIG_CMD_SPI=y
 CONFIG_CMD_USB=y
-# CONFIG_CMD_SETEXPR is not set
 CONFIG_CMD_DHCP=y
 # CONFIG_CMD_NFS is not set
 CONFIG_CMD_PING=y
diff --git a/configs/theadorable-x86-conga-qa3-e3845_defconfig b/configs/theadorable-x86-conga-qa3-e3845_defconfig
index 4c9492cf1f..84a92c54da 100644
--- a/configs/theadorable-x86-conga-qa3-e3845_defconfig
+++ b/configs/theadorable-x86-conga-qa3-e3845_defconfig
@@ -26,7 +26,6 @@ CONFIG_CMD_MMC=y
 CONFIG_CMD_SF=y
 CONFIG_CMD_SPI=y
 CONFIG_CMD_USB=y
-# CONFIG_CMD_SETEXPR is not set
 CONFIG_CMD_DHCP=y
 # CONFIG_CMD_NFS is not set
 CONFIG_CMD_PING=y
diff --git a/configs/theadorable-x86-dfi-bt700_defconfig b/configs/theadorable-x86-dfi-bt700_defconfig
index 348d917b3b..d42798e8e9 100644
--- a/configs/theadorable-x86-dfi-bt700_defconfig
+++ b/configs/theadorable-x86-dfi-bt700_defconfig
@@ -25,7 +25,6 @@ CONFIG_CMD_PART=y
 CONFIG_CMD_SF=y
 CONFIG_CMD_SPI=y
 CONFIG_CMD_USB=y
-# CONFIG_CMD_SETEXPR is not set
 CONFIG_CMD_DHCP=y
 # CONFIG_CMD_NFS is not set
 CONFIG_CMD_PING=y
-- 
2.14.2

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters
  2017-10-06  7:12 [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters Stefan Roese
  2017-10-06  7:12 ` [U-Boot] [PATCH 2/3] x86: theadorable-x86-common: Move "-generic" into kernel-ver variable Stefan Roese
  2017-10-06  7:12 ` [U-Boot] [PATCH 3/3] x86: theadorable-x86-xxx_defconfig: Enable setexpr command Stefan Roese
@ 2017-10-07  3:59 ` Bin Meng
  2017-10-07  4:04   ` Bin Meng
  2 siblings, 1 reply; 9+ messages in thread
From: Bin Meng @ 2017-10-07  3:59 UTC (permalink / raw)
  To: u-boot

On Fri, Oct 6, 2017 at 3:12 PM, Stefan Roese <sr@denx.de> wrote:
> This is needed for the PCIe hotplug to work correctly on some boards.
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Bin Meng <bmeng.cn@gmail.com>
> ---
>  include/configs/theadorable-x86-common.h | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 2/3] x86: theadorable-x86-common: Move "-generic" into kernel-ver variable
  2017-10-06  7:12 ` [U-Boot] [PATCH 2/3] x86: theadorable-x86-common: Move "-generic" into kernel-ver variable Stefan Roese
@ 2017-10-07  3:59   ` Bin Meng
  2017-10-07  4:04     ` Bin Meng
  0 siblings, 1 reply; 9+ messages in thread
From: Bin Meng @ 2017-10-07  3:59 UTC (permalink / raw)
  To: u-boot

On Fri, Oct 6, 2017 at 3:12 PM, Stefan Roese <sr@denx.de> wrote:
> This enables the easier usage of "-custom" kernel versions as well.
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Bin Meng <bmeng.cn@gmail.com>
> ---
>  include/configs/theadorable-x86-common.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 3/3] x86: theadorable-x86-xxx_defconfig: Enable setexpr command
  2017-10-06  7:12 ` [U-Boot] [PATCH 3/3] x86: theadorable-x86-xxx_defconfig: Enable setexpr command Stefan Roese
@ 2017-10-07  3:59   ` Bin Meng
  2017-10-07  4:04     ` Bin Meng
  0 siblings, 1 reply; 9+ messages in thread
From: Bin Meng @ 2017-10-07  3:59 UTC (permalink / raw)
  To: u-boot

On Fri, Oct 6, 2017 at 3:12 PM, Stefan Roese <sr@denx.de> wrote:
> The setexpr command is useful for scripting, lets enable it for all
> x86 based theadorable platforms.
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Bin Meng <bmeng.cn@gmail.com>
> ---
>  configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig | 1 -
>  configs/theadorable-x86-conga-qa3-e3845_defconfig         | 1 -
>  configs/theadorable-x86-dfi-bt700_defconfig               | 1 -
>  3 files changed, 3 deletions(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters
  2017-10-07  3:59 ` [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters Bin Meng
@ 2017-10-07  4:04   ` Bin Meng
  0 siblings, 0 replies; 9+ messages in thread
From: Bin Meng @ 2017-10-07  4:04 UTC (permalink / raw)
  To: u-boot

On Sat, Oct 7, 2017 at 11:59 AM, Bin Meng <bmeng.cn@gmail.com> wrote:
> On Fri, Oct 6, 2017 at 3:12 PM, Stefan Roese <sr@denx.de> wrote:
>> This is needed for the PCIe hotplug to work correctly on some boards.
>>
>> Signed-off-by: Stefan Roese <sr@denx.de>
>> Cc: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>  include/configs/theadorable-x86-common.h | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

applied to u-boot-x86, thanks!

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 2/3] x86: theadorable-x86-common: Move "-generic" into kernel-ver variable
  2017-10-07  3:59   ` Bin Meng
@ 2017-10-07  4:04     ` Bin Meng
  0 siblings, 0 replies; 9+ messages in thread
From: Bin Meng @ 2017-10-07  4:04 UTC (permalink / raw)
  To: u-boot

On Sat, Oct 7, 2017 at 11:59 AM, Bin Meng <bmeng.cn@gmail.com> wrote:
> On Fri, Oct 6, 2017 at 3:12 PM, Stefan Roese <sr@denx.de> wrote:
>> This enables the easier usage of "-custom" kernel versions as well.
>>
>> Signed-off-by: Stefan Roese <sr@denx.de>
>> Cc: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>  include/configs/theadorable-x86-common.h | 8 ++++----
>>  1 file changed, 4 insertions(+), 4 deletions(-)
>>
>
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

applied to u-boot-x86, thanks!

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 3/3] x86: theadorable-x86-xxx_defconfig: Enable setexpr command
  2017-10-07  3:59   ` Bin Meng
@ 2017-10-07  4:04     ` Bin Meng
  0 siblings, 0 replies; 9+ messages in thread
From: Bin Meng @ 2017-10-07  4:04 UTC (permalink / raw)
  To: u-boot

On Sat, Oct 7, 2017 at 11:59 AM, Bin Meng <bmeng.cn@gmail.com> wrote:
> On Fri, Oct 6, 2017 at 3:12 PM, Stefan Roese <sr@denx.de> wrote:
>> The setexpr command is useful for scripting, lets enable it for all
>> x86 based theadorable platforms.
>>
>> Signed-off-by: Stefan Roese <sr@denx.de>
>> Cc: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>  configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig | 1 -
>>  configs/theadorable-x86-conga-qa3-e3845_defconfig         | 1 -
>>  configs/theadorable-x86-dfi-bt700_defconfig               | 1 -
>>  3 files changed, 3 deletions(-)
>>
>
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

applied to u-boot-x86, thanks!

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-10-07  4:04 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-06  7:12 [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters Stefan Roese
2017-10-06  7:12 ` [U-Boot] [PATCH 2/3] x86: theadorable-x86-common: Move "-generic" into kernel-ver variable Stefan Roese
2017-10-07  3:59   ` Bin Meng
2017-10-07  4:04     ` Bin Meng
2017-10-06  7:12 ` [U-Boot] [PATCH 3/3] x86: theadorable-x86-xxx_defconfig: Enable setexpr command Stefan Roese
2017-10-07  3:59   ` Bin Meng
2017-10-07  4:04     ` Bin Meng
2017-10-07  3:59 ` [U-Boot] [PATCH 1/3] x86: theadorable-x86-common: Add further pci hotplug cmdline parameters Bin Meng
2017-10-07  4:04   ` Bin Meng

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.