* [PATCH 1/3] microblaze: Align defconfig with latest Kconfig layout
2023-10-24 13:46 [PATCH 0/3] microblaze: Defconfig updates Michal Simek
@ 2023-10-24 13:46 ` Michal Simek
2023-10-24 13:46 ` [PATCH 2/3] microblaze: Enable options to mount a rootfs via NFS Michal Simek
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Michal Simek @ 2023-10-24 13:46 UTC (permalink / raw)
To: linux-kernel, monstr, michal.simek, git
Cc: Geert Uytterhoeven, Greg Ungerer, Hyeonggon Yoo,
Radhey Shyam Pandey, Raju Kumar Pothuraju, Randy Dunlap,
Thippeswamy Havalige, Vlastimil Babka
Sync up patch.
Signed-off-by: Michal Simek <michal.simek@amd.com>
---
arch/microblaze/configs/mmu_defconfig | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/arch/microblaze/configs/mmu_defconfig b/arch/microblaze/configs/mmu_defconfig
index 7b2d7f6f23c0..88fce95f6401 100644
--- a/arch/microblaze/configs/mmu_defconfig
+++ b/arch/microblaze/configs/mmu_defconfig
@@ -3,11 +3,9 @@ CONFIG_POSIX_MQUEUE=y
CONFIG_AUDIT=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
-CONFIG_SYSFS_DEPRECATED=y
-CONFIG_SYSFS_DEPRECATED_V2=y
+CONFIG_EXPERT=y
# CONFIG_BASE_FULL is not set
CONFIG_KALLSYMS_ALL=y
-CONFIG_EXPERT=y
CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR=1
CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR=1
CONFIG_XILINX_MICROBLAZE0_USE_BARREL=1
@@ -20,7 +18,6 @@ CONFIG_CMDLINE_FORCE=y
CONFIG_HIGHMEM=y
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
-# CONFIG_BLK_DEV_BSG is not set
CONFIG_PARTITION_ADVANCED=y
# CONFIG_EFI_PARTITION is not set
CONFIG_CMA=y
@@ -78,13 +75,11 @@ CONFIG_CRAMFS=y
CONFIG_ROMFS_FS=y
CONFIG_NFS_FS=y
CONFIG_CIFS=y
-CONFIG_CIFS_STATS2=y
CONFIG_ENCRYPTED_KEYS=y
CONFIG_DMA_CMA=y
CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y
CONFIG_KGDB=y
CONFIG_KGDB_TESTS=y
CONFIG_KGDB_KDB=y
-CONFIG_DEBUG_SLAB=y
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEBUG_SPINLOCK=y
--
2.36.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/3] microblaze: Enable options to mount a rootfs via NFS
2023-10-24 13:46 [PATCH 0/3] microblaze: Defconfig updates Michal Simek
2023-10-24 13:46 ` [PATCH 1/3] microblaze: Align defconfig with latest Kconfig layout Michal Simek
@ 2023-10-24 13:46 ` Michal Simek
2023-10-24 13:46 ` [PATCH 3/3] microblaze: defconfig: Enable the Marvell phy driver Michal Simek
2023-11-15 12:53 ` [PATCH 0/3] microblaze: Defconfig updates Michal Simek
3 siblings, 0 replies; 5+ messages in thread
From: Michal Simek @ 2023-10-24 13:46 UTC (permalink / raw)
To: linux-kernel, monstr, michal.simek, git
Cc: Raju Kumar Pothuraju, Radhey Shyam Pandey, Arnd Bergmann,
Geert Uytterhoeven, Radhey Shyam Pandey, Randy Dunlap,
Thippeswamy Havalige, Vlastimil Babka
From: Raju Kumar Pothuraju <rajukumar.pothuraju@amd.com>
Enable the options to mount a rootfs over NFS for microblaze
platforms and also support for automatic configuration of IP addresses
during boot as needed by NFS.
Signed-off-by: Raju Kumar Pothuraju <rajukumar.pothuraju@amd.com>
Reviewed-by: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
---
arch/microblaze/configs/mmu_defconfig | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/microblaze/configs/mmu_defconfig b/arch/microblaze/configs/mmu_defconfig
index 88fce95f6401..85afdb377f73 100644
--- a/arch/microblaze/configs/mmu_defconfig
+++ b/arch/microblaze/configs/mmu_defconfig
@@ -25,6 +25,10 @@ CONFIG_NET=y
CONFIG_PACKET=y
CONFIG_UNIX=y
CONFIG_INET=y
+CONFIG_IP_PNP=y
+CONFIG_IP_PNP_DHCP=y
+CONFIG_IP_PNP_BOOTP=y
+CONFIG_IP_PNP_RARP=y
# CONFIG_IPV6 is not set
CONFIG_BRIDGE=m
CONFIG_PCI=y
@@ -74,6 +78,7 @@ CONFIG_TMPFS=y
CONFIG_CRAMFS=y
CONFIG_ROMFS_FS=y
CONFIG_NFS_FS=y
+CONFIG_ROOT_NFS=y
CONFIG_CIFS=y
CONFIG_ENCRYPTED_KEYS=y
CONFIG_DMA_CMA=y
--
2.36.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] microblaze: defconfig: Enable the Marvell phy driver
2023-10-24 13:46 [PATCH 0/3] microblaze: Defconfig updates Michal Simek
2023-10-24 13:46 ` [PATCH 1/3] microblaze: Align defconfig with latest Kconfig layout Michal Simek
2023-10-24 13:46 ` [PATCH 2/3] microblaze: Enable options to mount a rootfs via NFS Michal Simek
@ 2023-10-24 13:46 ` Michal Simek
2023-11-15 12:53 ` [PATCH 0/3] microblaze: Defconfig updates Michal Simek
3 siblings, 0 replies; 5+ messages in thread
From: Michal Simek @ 2023-10-24 13:46 UTC (permalink / raw)
To: linux-kernel, monstr, michal.simek, git
Cc: Radhey Shyam Pandey, Andrew Morton, Geert Uytterhoeven,
Greg Ungerer, Raju Kumar Pothuraju, Randy Dunlap,
Thippeswamy Havalige, Vlastimil Babka
From: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
Enable the marvell phy driver by default as it is commonly
used PHY on multiple microblaze based evaluation boards.
Signed-off-by: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
---
arch/microblaze/configs/mmu_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/microblaze/configs/mmu_defconfig b/arch/microblaze/configs/mmu_defconfig
index 85afdb377f73..4da7bc4ac4a3 100644
--- a/arch/microblaze/configs/mmu_defconfig
+++ b/arch/microblaze/configs/mmu_defconfig
@@ -44,6 +44,7 @@ CONFIG_NETDEVICES=y
CONFIG_XILINX_EMACLITE=y
CONFIG_XILINX_AXI_EMAC=y
CONFIG_XILINX_LL_TEMAC=y
+CONFIG_MARVELL_PHY=y
# CONFIG_INPUT is not set
# CONFIG_SERIO is not set
# CONFIG_VT is not set
--
2.36.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 0/3] microblaze: Defconfig updates
2023-10-24 13:46 [PATCH 0/3] microblaze: Defconfig updates Michal Simek
` (2 preceding siblings ...)
2023-10-24 13:46 ` [PATCH 3/3] microblaze: defconfig: Enable the Marvell phy driver Michal Simek
@ 2023-11-15 12:53 ` Michal Simek
3 siblings, 0 replies; 5+ messages in thread
From: Michal Simek @ 2023-11-15 12:53 UTC (permalink / raw)
To: linux-kernel, monstr, michal.simek, git
Cc: Andrew Morton, Arnd Bergmann, Geert Uytterhoeven, Greg Ungerer,
Hyeonggon Yoo, Radhey Shyam Pandey, Raju Kumar Pothuraju,
Randy Dunlap, Thippeswamy Havalige, Vlastimil Babka
On 10/24/23 15:46, Michal Simek wrote:
> Hi,
>
> I have put together small series based on patches I found in Xilinx/AMD
> Linux tree which will be good to send out.
> The first patch is just synchronization to match the latest Kconfig layout.
>
> Thanks,
> Michal
>
>
> Michal Simek (1):
> microblaze: Align defconfig with latest Kconfig layout
>
> Radhey Shyam Pandey (1):
> microblaze: defconfig: Enable the Marvell phy driver
>
> Raju Kumar Pothuraju (1):
> microblaze: Enable options to mount a rootfs via NFS
>
> arch/microblaze/configs/mmu_defconfig | 13 +++++++------
> 1 file changed, 7 insertions(+), 6 deletions(-)
>
Applied.
M
^ permalink raw reply [flat|nested] 5+ messages in thread