linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel
@ 2021-07-21  3:01 Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 1/9] MIPS: generic: Allow generating FIT image for Marduk board Jiaxun Yang
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

I'm lucky enough to get a Creator CI40 board from dusts.
This patchset move it to gerneic kernel to reduce maintenance burden.
It have been tested with SD Card boot.

--
v2: Minor fixes
v3: Typo fixes and 0day testbot warning fix (Thanks to Sergei!)

Jiaxun Yang (9):
  MIPS: generic: Allow generating FIT image for Marduk board
  MIPS: DTS: Pistachio add missing cpc and cdmm
  clk: pistachio: Make it selectable for generic MIPS kernel
  clocksource/drivers/pistachio: Make it selectable for MIPS
  phy: pistachio-usb: Depend on MIPS || COMPILE_TEST
  pinctrl: pistachio: Make it as an option
  MIPS: config: generic: Add config for Marduk board
  MIPS: Retire MACH_PISTACHIO
  MIPS: Make a alias for pistachio_defconfig

 arch/mips/Kbuild.platforms                    |   1 -
 arch/mips/Kconfig                             |  29 --
 arch/mips/Makefile                            |   3 +
 arch/mips/boot/dts/Makefile                   |   2 +-
 arch/mips/boot/dts/img/Makefile               |   3 +-
 arch/mips/boot/dts/img/pistachio.dtsi         |  10 +
 arch/mips/configs/generic/board-marduk.config |  53 +++
 arch/mips/configs/pistachio_defconfig         | 316 ------------------
 arch/mips/generic/Kconfig                     |   6 +
 arch/mips/generic/Platform                    |   1 +
 arch/mips/generic/board-marduk.its.S          |  22 ++
 arch/mips/pistachio/Kconfig                   |  14 -
 arch/mips/pistachio/Makefile                  |   2 -
 arch/mips/pistachio/Platform                  |   6 -
 arch/mips/pistachio/init.c                    | 125 -------
 arch/mips/pistachio/irq.c                     |  24 --
 arch/mips/pistachio/time.c                    |  55 ---
 drivers/clk/Kconfig                           |   1 +
 drivers/clk/Makefile                          |   2 +-
 drivers/clk/pistachio/Kconfig                 |   8 +
 drivers/clocksource/Kconfig                   |   3 +-
 drivers/phy/Kconfig                           |   2 +-
 drivers/pinctrl/Kconfig                       |   5 +-
 23 files changed, 114 insertions(+), 579 deletions(-)
 create mode 100644 arch/mips/configs/generic/board-marduk.config
 delete mode 100644 arch/mips/configs/pistachio_defconfig
 create mode 100644 arch/mips/generic/board-marduk.its.S
 delete mode 100644 arch/mips/pistachio/Kconfig
 delete mode 100644 arch/mips/pistachio/Makefile
 delete mode 100644 arch/mips/pistachio/Platform
 delete mode 100644 arch/mips/pistachio/init.c
 delete mode 100644 arch/mips/pistachio/irq.c
 delete mode 100644 arch/mips/pistachio/time.c
 create mode 100644 drivers/clk/pistachio/Kconfig

-- 
2.32.0


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

* [PATCH v3 1/9] MIPS: generic: Allow generating FIT image for Marduk board
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 2/9] MIPS: DTS: Pistachio add missing cpc and cdmm Jiaxun Yang
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

Marduk is based on IMG pistachio SoC. The platform is using
MIPS UHI booting protocol and does have a proper devicetree
implement, thus it could be a part of generic kernel.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
 arch/mips/boot/dts/Makefile          |  1 +
 arch/mips/boot/dts/img/Makefile      |  2 ++
 arch/mips/generic/Kconfig            |  6 ++++++
 arch/mips/generic/Platform           |  1 +
 arch/mips/generic/board-marduk.its.S | 22 ++++++++++++++++++++++
 5 files changed, 32 insertions(+)
 create mode 100644 arch/mips/generic/board-marduk.its.S

diff --git a/arch/mips/boot/dts/Makefile b/arch/mips/boot/dts/Makefile
index 60bd7d2a9ad8..188301164d9e 100644
--- a/arch/mips/boot/dts/Makefile
+++ b/arch/mips/boot/dts/Makefile
@@ -2,6 +2,7 @@
 subdir-$(CONFIG_BMIPS_GENERIC)		+= brcm
 subdir-$(CONFIG_CAVIUM_OCTEON_SOC)	+= cavium-octeon
 subdir-$(CONFIG_MACH_PISTACHIO)		+= img
+subdir-$(CONFIG_FIT_IMAGE_FDT_MARDUK)   += img
 subdir-$(CONFIG_FIT_IMAGE_FDT_BOSTON)	+= img
 subdir-$(CONFIG_MACH_INGENIC)		+= ingenic
 subdir-$(CONFIG_LANTIQ)			+= lantiq
diff --git a/arch/mips/boot/dts/img/Makefile b/arch/mips/boot/dts/img/Makefile
index 441a3c16efb0..24f6bbeadd48 100644
--- a/arch/mips/boot/dts/img/Makefile
+++ b/arch/mips/boot/dts/img/Makefile
@@ -1,5 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0
 dtb-$(CONFIG_FIT_IMAGE_FDT_BOSTON)	+= boston.dtb
 
+dtb-$(CONFIG_FIT_IMAGE_FDT_MARDUK)	+= pistachio_marduk.dtb
+
 dtb-$(CONFIG_MACH_PISTACHIO)	+= pistachio_marduk.dtb
 obj-$(CONFIG_MACH_PISTACHIO)	+= pistachio_marduk.dtb.o
diff --git a/arch/mips/generic/Kconfig b/arch/mips/generic/Kconfig
index 657dd93c5e76..7dc5b3821cc6 100644
--- a/arch/mips/generic/Kconfig
+++ b/arch/mips/generic/Kconfig
@@ -58,6 +58,12 @@ config FIT_IMAGE_FDT_BOSTON
 	  enable this if you wish to boot on a MIPS Boston board, as it is
 	  expected by the bootloader.
 
+config FIT_IMAGE_FDT_MARDUK
+	bool "Include FDT for IMG Pistachio Marduk (CI40) boards"
+	help
+	  Enable this to include the FDT for the IMG Pistachio Marduk (CI40)
+	  from Imagination Technologies in the FIT kernel image.
+
 config FIT_IMAGE_FDT_NI169445
 	bool "Include FDT for NI 169445"
 	help
diff --git a/arch/mips/generic/Platform b/arch/mips/generic/Platform
index b871af16b5b6..e1abc113b409 100644
--- a/arch/mips/generic/Platform
+++ b/arch/mips/generic/Platform
@@ -24,3 +24,4 @@ its-$(CONFIG_FIT_IMAGE_FDT_LUTON)	+= board-luton.its.S
 its-$(CONFIG_FIT_IMAGE_FDT_JAGUAR2)	+= board-jaguar2.its.S
 its-$(CONFIG_FIT_IMAGE_FDT_SERVAL)	+= board-serval.its.S
 its-$(CONFIG_FIT_IMAGE_FDT_XILFPGA)	+= board-xilfpga.its.S
+its-$(CONFIG_FIT_IMAGE_FDT_MARDUK)	+= board-marduk.its.S
diff --git a/arch/mips/generic/board-marduk.its.S b/arch/mips/generic/board-marduk.its.S
new file mode 100644
index 000000000000..4f633794db90
--- /dev/null
+++ b/arch/mips/generic/board-marduk.its.S
@@ -0,0 +1,22 @@
+/ {
+	images {
+		fdt-marduk {
+			description = "img,pistachio-marduk Device Tree";
+			data = /incbin/("boot/dts/img/pistachio_marduk.dtb");
+			type = "flat_dt";
+			arch = "mips";
+			compression = "none";
+			hash {
+				algo = "sha1";
+			};
+		};
+	};
+
+	configurations {
+		conf-marduk {
+			description = "Marduk Linux kernel";
+			kernel = "kernel";
+			fdt = "fdt-marduk";
+		};
+	};
+};
-- 
2.32.0


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

* [PATCH v3 2/9] MIPS: DTS: Pistachio add missing cpc and cdmm
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 1/9] MIPS: generic: Allow generating FIT image for Marduk board Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 3/9] clk: pistachio: Make it selectable for generic MIPS kernel Jiaxun Yang
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

CPC and CDMM addresses are adjustable and we should tell kernel
how to place them in devicetree.

Note that MACH_PISTACHIO code hardcoded CDMM base to 0x1bdd0000,
however it will collide with GIC address range. As we don't have
any CDMM device on this platform it won't be a problem.
I found another spare range, 0x1bdf0000~0x1be00000 to place CDMM
instead.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
 arch/mips/boot/dts/img/pistachio.dtsi | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/arch/mips/boot/dts/img/pistachio.dtsi b/arch/mips/boot/dts/img/pistachio.dtsi
index dc3b7909de73..b1db8b8f446f 100644
--- a/arch/mips/boot/dts/img/pistachio.dtsi
+++ b/arch/mips/boot/dts/img/pistachio.dtsi
@@ -900,6 +900,16 @@ timer {
 		};
 	};
 
+	cpc: cpc@1bde0000 {
+		compatible = "mti,mips-cpc";
+		reg = <0x1bde0000 0x10000>;
+	};
+
+	cdmm: cdmm@1bdf0000 {
+		compatible = "mti,mips-cdmm";
+		reg = <0x1bdf0000 0x10000>;
+	};
+
 	usb_phy: usb-phy {
 		compatible = "img,pistachio-usb-phy";
 		clocks = <&clk_core CLK_USB_PHY>;
-- 
2.32.0


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

* [PATCH v3 3/9] clk: pistachio: Make it selectable for generic MIPS kernel
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 1/9] MIPS: generic: Allow generating FIT image for Marduk board Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 2/9] MIPS: DTS: Pistachio add missing cpc and cdmm Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 4/9] clocksource/drivers/pistachio: Make it selectable for MIPS Jiaxun Yang
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

We're moving pistachio to generic MIPS kernel. The clk driver
should be avilable to the generic MIPS kernel.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
v2: Depend on MIPS || COMPILE_TEST
---
 drivers/clk/Kconfig           | 1 +
 drivers/clk/Makefile          | 2 +-
 drivers/clk/pistachio/Kconfig | 8 ++++++++
 3 files changed, 10 insertions(+), 1 deletion(-)
 create mode 100644 drivers/clk/pistachio/Kconfig

diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig
index e80918be8e9c..18d31b654d02 100644
--- a/drivers/clk/Kconfig
+++ b/drivers/clk/Kconfig
@@ -389,6 +389,7 @@ source "drivers/clk/mediatek/Kconfig"
 source "drivers/clk/meson/Kconfig"
 source "drivers/clk/mstar/Kconfig"
 source "drivers/clk/mvebu/Kconfig"
+source "drivers/clk/pistachio/Kconfig"
 source "drivers/clk/qcom/Kconfig"
 source "drivers/clk/ralink/Kconfig"
 source "drivers/clk/renesas/Kconfig"
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
index 5f06879d7fe9..7339a9eabeb4 100644
--- a/drivers/clk/Makefile
+++ b/drivers/clk/Makefile
@@ -97,7 +97,7 @@ obj-y					+= mstar/
 obj-y					+= mvebu/
 obj-$(CONFIG_ARCH_MXS)			+= mxs/
 obj-$(CONFIG_COMMON_CLK_NXP)		+= nxp/
-obj-$(CONFIG_MACH_PISTACHIO)		+= pistachio/
+obj-$(CONFIG_COMMON_CLK_PISTACHIO)	+= pistachio/
 obj-$(CONFIG_COMMON_CLK_PXA)		+= pxa/
 obj-$(CONFIG_COMMON_CLK_QCOM)		+= qcom/
 obj-y					+= ralink/
diff --git a/drivers/clk/pistachio/Kconfig b/drivers/clk/pistachio/Kconfig
new file mode 100644
index 000000000000..d00f7b4a25fc
--- /dev/null
+++ b/drivers/clk/pistachio/Kconfig
@@ -0,0 +1,8 @@
+# SPDX-License-Identifier: GPL-2.0
+
+config COMMON_CLK_PISTACHIO
+	bool "Support for IMG Pistachio SoC clock controllers"
+	depends on MIPS || COMPILE_TEST
+	help
+	  Support for the IMG Pistachio SoC clock controller.
+	  Say Y if you want to include clock support.
-- 
2.32.0


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

* [PATCH v3 4/9] clocksource/drivers/pistachio: Make it selectable for MIPS
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
                   ` (2 preceding siblings ...)
  2021-07-21  3:01 ` [PATCH v3 3/9] clk: pistachio: Make it selectable for generic MIPS kernel Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 5/9] phy: pistachio-usb: Depend on MIPS || COMPILE_TEST Jiaxun Yang
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

So it will be avilable for generic MIPS kernel.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
 drivers/clocksource/Kconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
index 39aa21d01e05..58ad7af8c673 100644
--- a/drivers/clocksource/Kconfig
+++ b/drivers/clocksource/Kconfig
@@ -234,8 +234,9 @@ config CLKSRC_LPC32XX
 	  Support for the LPC32XX clocksource.
 
 config CLKSRC_PISTACHIO
-	bool "Clocksource for Pistachio SoC" if COMPILE_TEST
+	bool "Clocksource for Pistachio SoC"
 	depends on HAS_IOMEM
+	depends on MIPS || COMPILE_TEST
 	select TIMER_OF
 	help
 	  Enables the clocksource for the Pistachio SoC.
-- 
2.32.0


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

* [PATCH v3 5/9] phy: pistachio-usb: Depend on MIPS || COMPILE_TEST
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
                   ` (3 preceding siblings ...)
  2021-07-21  3:01 ` [PATCH v3 4/9] clocksource/drivers/pistachio: Make it selectable for MIPS Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 6/9] pinctrl: pistachio: Make it as an option Jiaxun Yang
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

So it will be avilable for generic MIPS kernel.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
 drivers/phy/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index 54c1f2f0985f..f3b08722261d 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -37,7 +37,7 @@ config PHY_LPC18XX_USB_OTG
 
 config PHY_PISTACHIO_USB
 	tristate "IMG Pistachio USB2.0 PHY driver"
-	depends on MACH_PISTACHIO
+	depends on MIPS || COMPILE_TEST
 	select GENERIC_PHY
 	help
 	  Enable this to support the USB2.0 PHY on the IMG Pistachio SoC.
-- 
2.32.0


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

* [PATCH v3 6/9] pinctrl: pistachio: Make it as an option
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
                   ` (4 preceding siblings ...)
  2021-07-21  3:01 ` [PATCH v3 5/9] phy: pistachio-usb: Depend on MIPS || COMPILE_TEST Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  2021-07-30 12:38   ` Linus Walleij
  2021-07-21  3:01 ` [PATCH v3 7/9] MIPS: config: generic: Add config for Marduk board Jiaxun Yang
                   ` (2 subsequent siblings)
  8 siblings, 1 reply; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

So it will be avilable for generic MIPS kernel.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
--
v3: Depend on OF as well
---
 drivers/pinctrl/Kconfig | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig
index c2c7e7963ed0..295f5eec58a9 100644
--- a/drivers/pinctrl/Kconfig
+++ b/drivers/pinctrl/Kconfig
@@ -248,12 +248,15 @@ config PINCTRL_SX150X
 	  - 16 bits: sx1509q, sx1506q
 
 config PINCTRL_PISTACHIO
-	def_bool y if MACH_PISTACHIO
+	bool "IMG Pistachio SoC pinctrl driver"
+	depends on OF && (MIPS || COMPILE_TEST)
 	depends on GPIOLIB
 	select PINMUX
 	select GENERIC_PINCONF
 	select GPIOLIB_IRQCHIP
 	select OF_GPIO
+    help
+	  This support pinctrl and gpio driver for IMG Pistachio SoC.
 
 config PINCTRL_ST
 	bool
-- 
2.32.0


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

* [PATCH v3 7/9] MIPS: config: generic: Add config for Marduk board
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
                   ` (5 preceding siblings ...)
  2021-07-21  3:01 ` [PATCH v3 6/9] pinctrl: pistachio: Make it as an option Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO Jiaxun Yang
  2021-07-21  3:01 ` [PATCH v3 9/9] MIPS: Make a alias for pistachio_defconfig Jiaxun Yang
  8 siblings, 0 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

The config is minimal config to allow it boot from SD Card.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
 arch/mips/configs/generic/board-marduk.config | 53 +++++++++++++++++++
 1 file changed, 53 insertions(+)
 create mode 100644 arch/mips/configs/generic/board-marduk.config

diff --git a/arch/mips/configs/generic/board-marduk.config b/arch/mips/configs/generic/board-marduk.config
new file mode 100644
index 000000000000..05ca34cd5a73
--- /dev/null
+++ b/arch/mips/configs/generic/board-marduk.config
@@ -0,0 +1,53 @@
+CONFIG_FIT_IMAGE_FDT_MARDUK=y
+
+CONFIG_SCSI=y
+CONFIG_BLK_DEV_SD=y
+
+CONFIG_CLKSRC_PISTACHIO=y
+
+CONFIG_COMMON_CLK_PISTACHIO=y
+
+CONFIG_DMADEVICES=y
+CONFIG_IMG_MDC_DMA=y
+
+CONFIG_GPIOLIB=y
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_PCH=y
+
+CONFIG_I2C=y
+CONFIG_I2C_IMG=y
+
+CONFIG_MMC=y
+CONFIG_MMC_SDHCI=y
+CONFIG_MMC_DW=y
+CONFIG_MMC_DW_PLTFM=y
+
+CONFIG_NETDEVICES=y
+CONFIG_STMMAC_ETH=y
+CONFIG_STMMAC_PLATFORM=y
+
+CONFIG_PHY_PISTACHIO_USB=y
+
+CONFIG_PINCTRL=y
+CONFIG_PINCTRL_PISTACHIO=y
+
+CONFIG_RESET_PISTACHIO=y
+
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_OF_PLATFORM=y
+CONFIG_SERIAL_8250_DW=y
+
+CONFIG_SPI=y
+CONFIG_SRAM=y
+
+CONFIG_USB=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_DWC2=y
+
+CONFIG_CRYPTO_DEV_IMGTEC_HASH=y
+CONFIG_IMGPDC_WDT=y
+CONFIG_IR_IMG=y
+CONFIG_CC10001_ADC=y
+CONFIG_SND_SOC_IMG=y
-- 
2.32.0


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

* [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
                   ` (6 preceding siblings ...)
  2021-07-21  3:01 ` [PATCH v3 7/9] MIPS: config: generic: Add config for Marduk board Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  2021-07-21  7:08   ` kernel test robot
  2021-07-21  7:15   ` kernel test robot
  2021-07-21  3:01 ` [PATCH v3 9/9] MIPS: Make a alias for pistachio_defconfig Jiaxun Yang
  8 siblings, 2 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

Now it can be replaced by generic kernel.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
 arch/mips/Kbuild.platforms            |   1 -
 arch/mips/Kconfig                     |  29 ---
 arch/mips/boot/dts/Makefile           |   1 -
 arch/mips/boot/dts/img/Makefile       |   3 -
 arch/mips/configs/pistachio_defconfig | 316 --------------------------
 arch/mips/pistachio/Kconfig           |  14 --
 arch/mips/pistachio/Makefile          |   2 -
 arch/mips/pistachio/Platform          |   6 -
 arch/mips/pistachio/init.c            | 125 ----------
 arch/mips/pistachio/irq.c             |  24 --
 arch/mips/pistachio/time.c            |  55 -----
 11 files changed, 576 deletions(-)
 delete mode 100644 arch/mips/configs/pistachio_defconfig
 delete mode 100644 arch/mips/pistachio/Kconfig
 delete mode 100644 arch/mips/pistachio/Makefile
 delete mode 100644 arch/mips/pistachio/Platform
 delete mode 100644 arch/mips/pistachio/init.c
 delete mode 100644 arch/mips/pistachio/irq.c
 delete mode 100644 arch/mips/pistachio/time.c

diff --git a/arch/mips/Kbuild.platforms b/arch/mips/Kbuild.platforms
index e4f6e49417a9..584081df89c2 100644
--- a/arch/mips/Kbuild.platforms
+++ b/arch/mips/Kbuild.platforms
@@ -21,7 +21,6 @@ platform-$(CONFIG_MIPS_MALTA)		+= mti-malta/
 platform-$(CONFIG_MACH_NINTENDO64)	+= n64/
 platform-$(CONFIG_NLM_COMMON)		+= netlogic/
 platform-$(CONFIG_PIC32MZDA)		+= pic32/
-platform-$(CONFIG_MACH_PISTACHIO)	+= pistachio/
 platform-$(CONFIG_RALINK)		+= ralink/
 platform-$(CONFIG_MIKROTIK_RB532)	+= rb532/
 platform-$(CONFIG_SGI_IP22)		+= sgi-ip22/
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index ed51970c08e7..c543fad7fe94 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -512,35 +512,6 @@ config MACH_LOONGSON64
 	  and Loongson-2F which will be removed), developed by the Institute
 	  of Computing Technology (ICT), Chinese Academy of Sciences (CAS).
 
-config MACH_PISTACHIO
-	bool "IMG Pistachio SoC based boards"
-	select BOOT_ELF32
-	select BOOT_RAW
-	select CEVT_R4K
-	select CLKSRC_MIPS_GIC
-	select COMMON_CLK
-	select CSRC_R4K
-	select DMA_NONCOHERENT
-	select GPIOLIB
-	select IRQ_MIPS_CPU
-	select MFD_SYSCON
-	select MIPS_CPU_SCACHE
-	select MIPS_GIC
-	select PINCTRL
-	select REGULATOR
-	select SYS_HAS_CPU_MIPS32_R2
-	select SYS_SUPPORTS_32BIT_KERNEL
-	select SYS_SUPPORTS_LITTLE_ENDIAN
-	select SYS_SUPPORTS_MIPS_CPS
-	select SYS_SUPPORTS_MULTITHREADING
-	select SYS_SUPPORTS_RELOCATABLE
-	select SYS_SUPPORTS_ZBOOT
-	select SYS_HAS_EARLY_PRINTK
-	select USE_GENERIC_EARLY_PRINTK_8250
-	select USE_OF
-	help
-	  This enables support for the IMG Pistachio SoC platform.
-
 config MIPS_MALTA
 	bool "MIPS Malta board"
 	select ARCH_MAY_HAVE_PC_FDC
diff --git a/arch/mips/boot/dts/Makefile b/arch/mips/boot/dts/Makefile
index 188301164d9e..be96d35eb582 100644
--- a/arch/mips/boot/dts/Makefile
+++ b/arch/mips/boot/dts/Makefile
@@ -1,7 +1,6 @@
 # SPDX-License-Identifier: GPL-2.0
 subdir-$(CONFIG_BMIPS_GENERIC)		+= brcm
 subdir-$(CONFIG_CAVIUM_OCTEON_SOC)	+= cavium-octeon
-subdir-$(CONFIG_MACH_PISTACHIO)		+= img
 subdir-$(CONFIG_FIT_IMAGE_FDT_MARDUK)   += img
 subdir-$(CONFIG_FIT_IMAGE_FDT_BOSTON)	+= img
 subdir-$(CONFIG_MACH_INGENIC)		+= ingenic
diff --git a/arch/mips/boot/dts/img/Makefile b/arch/mips/boot/dts/img/Makefile
index 24f6bbeadd48..ebb47490b04b 100644
--- a/arch/mips/boot/dts/img/Makefile
+++ b/arch/mips/boot/dts/img/Makefile
@@ -2,6 +2,3 @@
 dtb-$(CONFIG_FIT_IMAGE_FDT_BOSTON)	+= boston.dtb
 
 dtb-$(CONFIG_FIT_IMAGE_FDT_MARDUK)	+= pistachio_marduk.dtb
-
-dtb-$(CONFIG_MACH_PISTACHIO)	+= pistachio_marduk.dtb
-obj-$(CONFIG_MACH_PISTACHIO)	+= pistachio_marduk.dtb.o
diff --git a/arch/mips/configs/pistachio_defconfig b/arch/mips/configs/pistachio_defconfig
deleted file mode 100644
index b9adf15ebbec..000000000000
--- a/arch/mips/configs/pistachio_defconfig
+++ /dev/null
@@ -1,316 +0,0 @@
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_DEFAULT_HOSTNAME="localhost"
-CONFIG_SYSVIPC=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-CONFIG_PREEMPT_VOLUNTARY=y
-CONFIG_IKCONFIG=m
-CONFIG_IKCONFIG_PROC=y
-CONFIG_LOG_BUF_SHIFT=18
-CONFIG_CGROUPS=y
-CONFIG_CGROUP_SCHED=y
-CONFIG_CFS_BANDWIDTH=y
-CONFIG_CGROUP_FREEZER=y
-CONFIG_NAMESPACES=y
-CONFIG_USER_NS=y
-CONFIG_BLK_DEV_INITRD=y
-# CONFIG_RD_BZIP2 is not set
-# CONFIG_RD_LZMA is not set
-# CONFIG_RD_LZO is not set
-# CONFIG_RD_LZ4 is not set
-CONFIG_CC_OPTIMIZE_FOR_SIZE=y
-CONFIG_EMBEDDED=y
-# CONFIG_COMPAT_BRK is not set
-CONFIG_PROFILING=y
-CONFIG_MACH_PISTACHIO=y
-CONFIG_MIPS_CPS=y
-CONFIG_NR_CPUS=4
-CONFIG_PM_DEBUG=y
-CONFIG_PM_ADVANCED_DEBUG=y
-CONFIG_CPU_IDLE=y
-# CONFIG_MIPS_CPS_CPUIDLE is not set
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_MODULE_FORCE_UNLOAD=y
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_COMPACTION is not set
-CONFIG_DEFAULT_MMAP_MIN_ADDR=32768
-CONFIG_ZSMALLOC=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_NET_KEY=m
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_DHCP=y
-CONFIG_IP_MROUTE=y
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-CONFIG_SYN_COOKIES=y
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-# CONFIG_INET_DIAG is not set
-CONFIG_TCP_CONG_ADVANCED=y
-# CONFIG_TCP_CONG_BIC is not set
-# CONFIG_TCP_CONG_WESTWOOD is not set
-# CONFIG_TCP_CONG_HTCP is not set
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_MD5SIG=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_IPV6_SIT=m
-CONFIG_NETWORK_SECMARK=y
-CONFIG_NETFILTER=y
-# CONFIG_BRIDGE_NETFILTER is not set
-CONFIG_NF_CONNTRACK=y
-CONFIG_NF_CT_NETLINK=y
-CONFIG_NETFILTER_XT_MARK=m
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=y
-CONFIG_NETFILTER_XT_TARGET_DSCP=y
-CONFIG_NETFILTER_XT_TARGET_NFLOG=y
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=y
-CONFIG_NETFILTER_XT_TARGET_SECMARK=y
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
-CONFIG_NETFILTER_XT_MATCH_DSCP=y
-CONFIG_NETFILTER_XT_MATCH_POLICY=y
-CONFIG_NETFILTER_XT_MATCH_STATE=y
-CONFIG_NF_NAT_IPV4=m
-CONFIG_IP_NF_IPTABLES=y
-CONFIG_IP_NF_FILTER=y
-CONFIG_IP_NF_TARGET_REJECT=y
-CONFIG_IP_NF_MANGLE=y
-CONFIG_NF_NAT_IPV6=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_BRIDGE=m
-CONFIG_VLAN_8021Q=m
-CONFIG_NET_SCHED=y
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_CODEL=m
-CONFIG_NET_SCH_FQ_CODEL=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_MARK=y
-CONFIG_BT=m
-CONFIG_BT_RFCOMM=m
-CONFIG_BT_HCIBTUSB=m
-CONFIG_BT_HCIBFUSB=m
-CONFIG_BT_HCIVHCI=m
-CONFIG_CFG80211=m
-CONFIG_NL80211_TESTMODE=y
-CONFIG_CFG80211_DEBUGFS=y
-CONFIG_CFG80211_WEXT=y
-CONFIG_MAC80211=m
-CONFIG_MAC80211_LEDS=y
-CONFIG_MAC80211_DEBUGFS=y
-CONFIG_MAC80211_DEBUG_MENU=y
-CONFIG_MAC80211_VERBOSE_DEBUG=y
-CONFIG_RFKILL=y
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_DEBUG_DEVRES=y
-CONFIG_CONNECTOR=y
-CONFIG_MTD=y
-CONFIG_MTD_BLOCK=y
-CONFIG_MTD_SPI_NOR=y
-CONFIG_MTD_UBI=y
-CONFIG_MTD_UBI_BLOCK=y
-CONFIG_ZRAM=m
-CONFIG_BLK_DEV_LOOP=y
-CONFIG_SCSI=y
-CONFIG_BLK_DEV_SD=y
-CONFIG_BLK_DEV_SR=m
-CONFIG_SCSI_SPI_ATTRS=y
-CONFIG_MD=y
-CONFIG_BLK_DEV_DM=y
-CONFIG_DM_CRYPT=y
-CONFIG_DM_VERITY=y
-CONFIG_NETDEVICES=y
-CONFIG_TUN=m
-CONFIG_VETH=m
-# CONFIG_NET_VENDOR_MARVELL is not set
-# CONFIG_NET_VENDOR_MICREL is not set
-# CONFIG_NET_VENDOR_MICROCHIP is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SMSC is not set
-CONFIG_STMMAC_ETH=y
-# CONFIG_NET_VENDOR_VIA is not set
-CONFIG_PPP=m
-CONFIG_PPP_ASYNC=m
-CONFIG_USB_PEGASUS=m
-CONFIG_USB_RTL8150=m
-CONFIG_USB_RTL8152=m
-CONFIG_USB_NET_DM9601=m
-CONFIG_USB_NET_SMSC75XX=m
-CONFIG_USB_NET_SMSC95XX=m
-CONFIG_USB_NET_MCS7830=m
-# CONFIG_USB_NET_CDC_SUBSET is not set
-# CONFIG_USB_NET_ZAURUS is not set
-CONFIG_HOSTAP=m
-CONFIG_HOSTAP_FIRMWARE=y
-CONFIG_HOSTAP_FIRMWARE_NVRAM=y
-CONFIG_LIBERTAS_THINFIRM=m
-CONFIG_RT2X00=m
-CONFIG_RT2800USB=m
-CONFIG_MAC80211_HWSIM=m
-CONFIG_USB_NET_RNDIS_WLAN=m
-CONFIG_INPUT_EVDEV=y
-# CONFIG_KEYBOARD_ATKBD is not set
-CONFIG_KEYBOARD_GPIO=y
-# CONFIG_INPUT_MOUSE is not set
-# CONFIG_SERIO is not set
-# CONFIG_VT is not set
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_SERIAL_8250=y
-# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_SERIAL_8250_DW=y
-CONFIG_SERIAL_OF_PLATFORM=y
-CONFIG_HW_RANDOM=y
-CONFIG_TCG_TPM=y
-CONFIG_I2C=y
-CONFIG_I2C_CHARDEV=m
-CONFIG_I2C_IMG=y
-CONFIG_I2C_STUB=m
-CONFIG_SPI=y
-CONFIG_SPI_BITBANG=m
-CONFIG_SPI_IMG_SPFI=y
-CONFIG_SPI_SPIDEV=y
-CONFIG_DEBUG_GPIO=y
-CONFIG_GPIO_SYSFS=y
-CONFIG_POWER_SUPPLY=y
-CONFIG_THERMAL=y
-CONFIG_WATCHDOG=y
-CONFIG_IMGPDC_WDT=y
-CONFIG_REGULATOR_FIXED_VOLTAGE=y
-CONFIG_REGULATOR_GPIO=y
-CONFIG_RC_CORE=y
-CONFIG_RC_DEVICES=y
-CONFIG_IR_IMG=y
-CONFIG_IR_IMG_NEC=y
-CONFIG_IR_IMG_JVC=y
-CONFIG_IR_IMG_SONY=y
-CONFIG_IR_IMG_SHARP=y
-CONFIG_IR_IMG_SANYO=y
-CONFIG_IR_IMG_RC5=y
-CONFIG_IR_IMG_RC6=y
-CONFIG_MEDIA_SUPPORT=y
-CONFIG_FB=y
-CONFIG_FB_MODE_HELPERS=y
-# CONFIG_LCD_CLASS_DEVICE is not set
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-CONFIG_SOUND=y
-CONFIG_SND=y
-CONFIG_SND_HRTIMER=m
-CONFIG_SND_DYNAMIC_MINORS=y
-CONFIG_SND_SEQUENCER=m
-CONFIG_SND_SEQ_DUMMY=m
-# CONFIG_SND_SPI is not set
-CONFIG_SND_USB_AUDIO=m
-CONFIG_USB=y
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-# CONFIG_USB_DEFAULT_PERSIST is not set
-CONFIG_USB_MON=y
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_ROOT_HUB_TT=y
-CONFIG_USB_ACM=y
-CONFIG_USB_STORAGE=y
-CONFIG_USB_DWC2=y
-CONFIG_USB_SERIAL=y
-CONFIG_USB_SERIAL_GENERIC=y
-CONFIG_USB_SERIAL_CP210X=m
-CONFIG_USB_SERIAL_FTDI_SIO=m
-CONFIG_USB_SERIAL_KEYSPAN=m
-CONFIG_USB_SERIAL_PL2303=m
-CONFIG_USB_SERIAL_OTI6858=m
-CONFIG_USB_SERIAL_QUALCOMM=m
-CONFIG_USB_SERIAL_SIERRAWIRELESS=m
-CONFIG_USB_SERIAL_OPTION=m
-CONFIG_MMC=y
-CONFIG_MMC_BLOCK_MINORS=16
-CONFIG_MMC_TEST=m
-CONFIG_MMC_DW=y
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-CONFIG_RTC_CLASS=y
-CONFIG_DMADEVICES=y
-CONFIG_IMG_MDC_DMA=y
-CONFIG_STAGING=y
-CONFIG_ASHMEM=y
-# CONFIG_IOMMU_SUPPORT is not set
-CONFIG_MEMORY=y
-CONFIG_IIO=y
-CONFIG_CC10001_ADC=y
-CONFIG_PWM=y
-CONFIG_PWM_IMG=y
-CONFIG_PHY_PISTACHIO_USB=y
-CONFIG_ANDROID=y
-CONFIG_EXT4_FS=y
-CONFIG_EXT4_FS_POSIX_ACL=y
-CONFIG_EXT4_FS_SECURITY=y
-# CONFIG_DNOTIFY is not set
-CONFIG_FUSE_FS=m
-CONFIG_ISO9660_FS=m
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_ECRYPT_FS=y
-CONFIG_HFSPLUS_FS=m
-CONFIG_UBIFS_FS=y
-CONFIG_SQUASHFS=y
-CONFIG_SQUASHFS_FILE_DIRECT=y
-CONFIG_SQUASHFS_LZO=y
-CONFIG_PSTORE=y
-CONFIG_PSTORE_CONSOLE=y
-CONFIG_PSTORE_RAM=y
-CONFIG_NFS_FS=y
-CONFIG_ROOT_NFS=y
-CONFIG_NLS_DEFAULT="utf8"
-CONFIG_NLS_CODEPAGE_437=m
-CONFIG_NLS_ASCII=m
-CONFIG_NLS_ISO8859_1=m
-CONFIG_SECURITY=y
-CONFIG_SECURITY_NETWORK=y
-CONFIG_SECURITY_YAMA=y
-CONFIG_CRYPTO_AUTHENC=y
-CONFIG_CRYPTO_HMAC=y
-CONFIG_CRYPTO_SHA1=y
-CONFIG_CRYPTO_SHA256=y
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_ARC4=y
-CONFIG_CRYPTO_DES=y
-CONFIG_CRC_CCITT=y
-CONFIG_CRC_T10DIF=m
-CONFIG_CRC7=m
-# CONFIG_XZ_DEC_X86 is not set
-CONFIG_PRINTK_TIME=y
-CONFIG_DEBUG_INFO=y
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0
-# CONFIG_SCHED_DEBUG is not set
-CONFIG_SCHEDSTATS=y
-CONFIG_DEBUG_SPINLOCK=y
-CONFIG_DEBUG_CREDENTIALS=y
-CONFIG_FUNCTION_TRACER=y
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_LKDTM=y
-CONFIG_TEST_UDELAY=m
diff --git a/arch/mips/pistachio/Kconfig b/arch/mips/pistachio/Kconfig
deleted file mode 100644
index 9a0e06c95184..000000000000
--- a/arch/mips/pistachio/Kconfig
+++ /dev/null
@@ -1,14 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0
-config PISTACHIO_GPTIMER_CLKSRC
-	bool "Enable General Purpose Timer based clocksource"
-	depends on MACH_PISTACHIO
-	select CLKSRC_PISTACHIO
-	select MIPS_EXTERNAL_TIMER
-	help
-	  This option enables a clocksource driver based on a Pistachio
-	  SoC General Purpose external timer.
-
-	  If you want to enable the CPUFreq, you need to enable
-	  this option.
-
-	  If you don't want to enable CPUFreq, you can leave this disabled.
diff --git a/arch/mips/pistachio/Makefile b/arch/mips/pistachio/Makefile
deleted file mode 100644
index 66f4af17fb66..000000000000
--- a/arch/mips/pistachio/Makefile
+++ /dev/null
@@ -1,2 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0-only
-obj-y	+= init.o irq.o time.o
diff --git a/arch/mips/pistachio/Platform b/arch/mips/pistachio/Platform
deleted file mode 100644
index c59de86dbddf..000000000000
--- a/arch/mips/pistachio/Platform
+++ /dev/null
@@ -1,6 +0,0 @@
-#
-# IMG Pistachio SoC
-#
-load-$(CONFIG_MACH_PISTACHIO)		+= 0xffffffff80400000
-zload-$(CONFIG_MACH_PISTACHIO)		+= 0xffffffff81000000
-all-$(CONFIG_MACH_PISTACHIO)		:= uImage.gz
diff --git a/arch/mips/pistachio/init.c b/arch/mips/pistachio/init.c
deleted file mode 100644
index e0bacfc3c6b4..000000000000
--- a/arch/mips/pistachio/init.c
+++ /dev/null
@@ -1,125 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-only
-/*
- * Pistachio platform setup
- *
- * Copyright (C) 2014 Google, Inc.
- * Copyright (C) 2016 Imagination Technologies
- */
-
-#include <linux/init.h>
-#include <linux/io.h>
-#include <linux/kernel.h>
-#include <linux/of_address.h>
-#include <linux/of_fdt.h>
-
-#include <asm/cacheflush.h>
-#include <asm/fw/fw.h>
-#include <asm/mips-boards/generic.h>
-#include <asm/mips-cps.h>
-#include <asm/prom.h>
-#include <asm/smp-ops.h>
-#include <asm/traps.h>
-
-/*
- * Core revision register decoding
- * Bits 23 to 20: Major rev
- * Bits 15 to 8: Minor rev
- * Bits 7 to 0: Maintenance rev
- */
-#define PISTACHIO_CORE_REV_REG	0xB81483D0
-#define PISTACHIO_CORE_REV_A1	0x00100006
-#define PISTACHIO_CORE_REV_B0	0x00100106
-
-const char *get_system_type(void)
-{
-	u32 core_rev;
-	const char *sys_type;
-
-	core_rev = __raw_readl((const void *)PISTACHIO_CORE_REV_REG);
-
-	switch (core_rev) {
-	case PISTACHIO_CORE_REV_B0:
-		sys_type = "IMG Pistachio SoC (B0)";
-		break;
-
-	case PISTACHIO_CORE_REV_A1:
-		sys_type = "IMG Pistachio SoC (A1)";
-		break;
-
-	default:
-		sys_type = "IMG Pistachio SoC";
-		break;
-	}
-
-	return sys_type;
-}
-
-void __init *plat_get_fdt(void)
-{
-	if (fw_arg0 != -2)
-		panic("Device-tree not present");
-	return (void *)fw_arg1;
-}
-
-void __init plat_mem_setup(void)
-{
-	__dt_setup_arch(plat_get_fdt());
-}
-
-#define DEFAULT_CPC_BASE_ADDR	0x1bde0000
-#define DEFAULT_CDMM_BASE_ADDR	0x1bdd0000
-
-phys_addr_t mips_cpc_default_phys_base(void)
-{
-	return DEFAULT_CPC_BASE_ADDR;
-}
-
-phys_addr_t mips_cdmm_phys_base(void)
-{
-	return DEFAULT_CDMM_BASE_ADDR;
-}
-
-static void __init mips_nmi_setup(void)
-{
-	void *base;
-
-	base = cpu_has_veic ?
-		(void *)(CAC_BASE + 0xa80) :
-		(void *)(CAC_BASE + 0x380);
-	memcpy(base, except_vec_nmi, 0x80);
-	flush_icache_range((unsigned long)base,
-			   (unsigned long)base + 0x80);
-}
-
-static void __init mips_ejtag_setup(void)
-{
-	void *base;
-	extern char except_vec_ejtag_debug[];
-
-	base = cpu_has_veic ?
-		(void *)(CAC_BASE + 0xa00) :
-		(void *)(CAC_BASE + 0x300);
-	memcpy(base, except_vec_ejtag_debug, 0x80);
-	flush_icache_range((unsigned long)base,
-			   (unsigned long)base + 0x80);
-}
-
-void __init prom_init(void)
-{
-	board_nmi_handler_setup = mips_nmi_setup;
-	board_ejtag_handler_setup = mips_ejtag_setup;
-
-	mips_cm_probe();
-	mips_cpc_probe();
-	register_cps_smp_ops();
-
-	pr_info("SoC Type: %s\n", get_system_type());
-}
-
-void __init device_tree_init(void)
-{
-	if (!initial_boot_params)
-		return;
-
-	unflatten_and_copy_device_tree();
-}
diff --git a/arch/mips/pistachio/irq.c b/arch/mips/pistachio/irq.c
deleted file mode 100644
index 437c3101ac45..000000000000
--- a/arch/mips/pistachio/irq.c
+++ /dev/null
@@ -1,24 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-only
-/*
- * Pistachio IRQ setup
- *
- * Copyright (C) 2014 Google, Inc.
- */
-
-#include <linux/init.h>
-#include <linux/irqchip.h>
-#include <linux/kernel.h>
-
-#include <asm/cpu-features.h>
-#include <asm/irq_cpu.h>
-
-void __init arch_init_irq(void)
-{
-	pr_info("EIC is %s\n", cpu_has_veic ? "on" : "off");
-	pr_info("VINT is %s\n", cpu_has_vint ? "on" : "off");
-
-	if (!cpu_has_veic)
-		mips_cpu_irq_init();
-
-	irqchip_init();
-}
diff --git a/arch/mips/pistachio/time.c b/arch/mips/pistachio/time.c
deleted file mode 100644
index de64751dec40..000000000000
--- a/arch/mips/pistachio/time.c
+++ /dev/null
@@ -1,55 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-only
-/*
- * Pistachio clocksource/timer setup
- *
- * Copyright (C) 2014 Google, Inc.
- */
-
-#include <linux/clk.h>
-#include <linux/clocksource.h>
-#include <linux/init.h>
-#include <linux/of.h>
-#include <linux/of_clk.h>
-
-#include <asm/mips-cps.h>
-#include <asm/time.h>
-
-unsigned int get_c0_compare_int(void)
-{
-	return gic_get_c0_compare_int();
-}
-
-int get_c0_perfcount_int(void)
-{
-	return gic_get_c0_perfcount_int();
-}
-EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
-
-int get_c0_fdc_int(void)
-{
-	return gic_get_c0_fdc_int();
-}
-
-void __init plat_time_init(void)
-{
-	struct device_node *np;
-	struct clk *clk;
-
-	of_clk_init(NULL);
-	timer_probe();
-
-	np = of_get_cpu_node(0, NULL);
-	if (!np) {
-		pr_err("Failed to get CPU node\n");
-		return;
-	}
-
-	clk = of_clk_get(np, 0);
-	if (IS_ERR(clk)) {
-		pr_err("Failed to get CPU clock: %ld\n", PTR_ERR(clk));
-		return;
-	}
-
-	mips_hpt_frequency = clk_get_rate(clk) / 2;
-	clk_put(clk);
-}
-- 
2.32.0


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

* [PATCH v3 9/9] MIPS: Make a alias for pistachio_defconfig
  2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
                   ` (7 preceding siblings ...)
  2021-07-21  3:01 ` [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO Jiaxun Yang
@ 2021-07-21  3:01 ` Jiaxun Yang
  8 siblings, 0 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  3:01 UTC (permalink / raw)
  To: linux-mips
  Cc: tsbogend, mturquette, daniel.lezcano, linus.walleij, vkoul,
	linux-kernel, linux-clk, linux-gpio, linux-phy, devicetree,
	Jiaxun Yang

For those who miss the old defconfig, make a alias to generic
kernel.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
v2: Fix typo 'xilfpga
---
 arch/mips/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index 258234c35a09..c299c6ae91af 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -563,6 +563,9 @@ sead3micro_defconfig-y		:= micro32r2el_defconfig BOARDS=sead-3
 legacy_defconfigs		+= xilfpga_defconfig
 xilfpga_defconfig-y		:= 32r2el_defconfig BOARDS=xilfpga
 
+legacy_defconfigs		+= pistachio_defconfig
+pistachio_defconfig-y		:= 32r2el_defconfig BOARDS=marduk
+
 .PHONY: $(legacy_defconfigs)
 $(legacy_defconfigs):
 	$(Q)$(MAKE) -f $(srctree)/Makefile $($@-y)
-- 
2.32.0


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

* Re: [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO
  2021-07-21  3:01 ` [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO Jiaxun Yang
@ 2021-07-21  7:08   ` kernel test robot
  2021-07-21  7:15   ` kernel test robot
  1 sibling, 0 replies; 14+ messages in thread
From: kernel test robot @ 2021-07-21  7:08 UTC (permalink / raw)
  To: Jiaxun Yang, linux-mips
  Cc: kbuild-all, tsbogend, mturquette, daniel.lezcano, linus.walleij,
	vkoul, linux-kernel, linux-clk, linux-gpio, linux-phy

[-- Attachment #1: Type: text/plain, Size: 5099 bytes --]

Hi Jiaxun,

I love your patch! Yet something to improve:

[auto build test ERROR on robh/for-next]
[also build test ERROR on clk/clk-next linus/master v5.14-rc2 next-20210720]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Jiaxun-Yang/MIPS-Migrate-pistachio-to-generic-kernel/20210721-110732
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: mips-buildonly-randconfig-r003-20210721 (attached as .config)
compiler: mips-linux-gcc (GCC) 10.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/7815f6aeaf55e4b6b9de98455f68c185a5ac5916
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Jiaxun-Yang/MIPS-Migrate-pistachio-to-generic-kernel/20210721-110732
        git checkout 7815f6aeaf55e4b6b9de98455f68c185a5ac5916
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross ARCH=mips 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
--
>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
   make[3]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1
   make[2]: *** [Makefile:626: syncconfig] Error 2
   make[1]: *** [Makefile:735: include/config/auto.conf.cmd] Error 2
   make[1]: Failed to remake makefile 'include/config/auto.conf.cmd'.
   make[1]: Failed to remake makefile 'include/config/auto.conf'.
   make[1]: Target 'modules_prepare' not remade because of errors.
   make: *** [Makefile:220: __sub-make] Error 2
   make: Target 'modules_prepare' not remade because of errors.
--
>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
   make[2]: *** [scripts/kconfig/Makefile:77: olddefconfig] Error 1
   make[1]: *** [Makefile:626: olddefconfig] Error 2
   make: *** [Makefile:220: __sub-make] Error 2
   make: Target 'olddefconfig' not remade because of errors.
--
>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
   make[3]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1
   make[2]: *** [Makefile:626: syncconfig] Error 2
   make[1]: *** [Makefile:735: include/config/auto.conf.cmd] Error 2
   make[1]: Failed to remake makefile 'include/config/auto.conf.cmd'.
   make[1]: Failed to remake makefile 'include/config/auto.conf'.
   make[1]: Target 'prepare' not remade because of errors.
   make: *** [Makefile:220: __sub-make] Error 2
   make: Target 'prepare' not remade because of errors.


vim +1062 arch/mips/Kconfig

^1da177e4c3f41 Linus Torvalds   2005-04-16  1050  
e8c7c482347574 Ralf Baechle     2008-09-16  1051  source "arch/mips/alchemy/Kconfig"
3b12308f3337c0 Sergey Ryazanov  2014-10-29  1052  source "arch/mips/ath25/Kconfig"
d4a67d9dc8a5a8 Gabor Juhos      2011-01-04  1053  source "arch/mips/ath79/Kconfig"
a656ffcbc7a98a Hauke Mehrtens   2011-07-23  1054  source "arch/mips/bcm47xx/Kconfig"
e7300d04bd0809 Maxime Bizon     2009-08-18  1055  source "arch/mips/bcm63xx/Kconfig"
8945e37e103b16 Kevin Cernekee   2014-12-25  1056  source "arch/mips/bmips/Kconfig"
eed0eabd12ef06 Paul Burton      2016-10-05  1057  source "arch/mips/generic/Kconfig"
a103e9b951f909 Paul Cercueil    2020-09-06  1058  source "arch/mips/ingenic/Kconfig"
5e83d4305467c4 Ralf Baechle     2005-10-29  1059  source "arch/mips/jazz/Kconfig"
8ec6d93508f705 John Crispin     2011-03-30  1060  source "arch/mips/lantiq/Kconfig"
2572f00db8a68b Joshua Henderson 2016-01-13  1061  source "arch/mips/pic32/Kconfig"
af0cfb2c44ee5c Ezequiel Garcia  2015-08-06 @1062  source "arch/mips/pistachio/Kconfig"
ae2b5bb6570481 John Crispin     2013-01-20  1063  source "arch/mips/ralink/Kconfig"
29c4869946f918 Ralf Baechle     2005-02-07  1064  source "arch/mips/sgi-ip27/Kconfig"
38b18f72587422 Ralf Baechle     2005-02-03  1065  source "arch/mips/sibyte/Kconfig"
22b1d707ffc99f Atsushi Nemoto   2008-07-11  1066  source "arch/mips/txx9/Kconfig"
5e83d4305467c4 Ralf Baechle     2005-10-29  1067  source "arch/mips/vr41xx/Kconfig"
a86c7f72454c4e David Daney      2008-12-11  1068  source "arch/mips/cavium-octeon/Kconfig"
71e2f4dd5a65bd Jiaxun Yang      2019-10-20  1069  source "arch/mips/loongson2ef/Kconfig"
30ad29bb48881e Huacai Chen      2015-04-21  1070  source "arch/mips/loongson32/Kconfig"
30ad29bb48881e Huacai Chen      2015-04-21  1071  source "arch/mips/loongson64/Kconfig"
7f058e852b229e Jayachandran C   2011-05-07  1072  source "arch/mips/netlogic/Kconfig"
38b18f72587422 Ralf Baechle     2005-02-03  1073  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 30422 bytes --]

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

* Re: [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO
  2021-07-21  3:01 ` [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO Jiaxun Yang
  2021-07-21  7:08   ` kernel test robot
@ 2021-07-21  7:15   ` kernel test robot
  2021-07-21  8:07     ` Jiaxun Yang
  1 sibling, 1 reply; 14+ messages in thread
From: kernel test robot @ 2021-07-21  7:15 UTC (permalink / raw)
  To: Jiaxun Yang, linux-mips
  Cc: kbuild-all, tsbogend, mturquette, daniel.lezcano, linus.walleij,
	vkoul, linux-kernel, linux-clk, linux-gpio, linux-phy

[-- Attachment #1: Type: text/plain, Size: 5115 bytes --]

Hi Jiaxun,

I love your patch! Yet something to improve:

[auto build test ERROR on robh/for-next]
[also build test ERROR on clk/clk-next linus/master v5.14-rc2 next-20210720]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Jiaxun-Yang/MIPS-Migrate-pistachio-to-generic-kernel/20210721-110732
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: mips-randconfig-r026-20210720 (attached as .config)
compiler: mips64-linux-gcc (GCC) 10.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/7815f6aeaf55e4b6b9de98455f68c185a5ac5916
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Jiaxun-Yang/MIPS-Migrate-pistachio-to-generic-kernel/20210721-110732
        git checkout 7815f6aeaf55e4b6b9de98455f68c185a5ac5916
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross ARCH=mips 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
--
>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
   make[3]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1
   make[2]: *** [Makefile:626: syncconfig] Error 2
   make[1]: *** [Makefile:735: include/config/auto.conf.cmd] Error 2
   make[1]: Failed to remake makefile 'include/config/auto.conf.cmd'.
   make[1]: Failed to remake makefile 'include/config/auto.conf'.
   make[1]: Target 'modules_prepare' not remade because of errors.
   make: *** [Makefile:220: __sub-make] Error 2
   make: Target 'modules_prepare' not remade because of errors.
--
>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
   make[2]: *** [scripts/kconfig/Makefile:77: olddefconfig] Error 1
   make[1]: *** [Makefile:626: olddefconfig] Error 2
   make: *** [Makefile:220: __sub-make] Error 2
   make: Target 'olddefconfig' not remade because of errors.
--
>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
   make[3]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1
   make[2]: *** [Makefile:626: syncconfig] Error 2
   make[1]: *** [Makefile:735: include/config/auto.conf.cmd] Error 2
   make[1]: Failed to remake makefile 'include/config/auto.conf.cmd'.
   make[1]: Failed to remake makefile 'include/config/auto.conf'.
   make[1]: Target 'prepare' not remade because of errors.
   make: *** [Makefile:220: __sub-make] Error 2
   make: Target 'prepare' not remade because of errors.


vim +1062 arch/mips/Kconfig

^1da177e4c3f415 Linus Torvalds   2005-04-16  1050  
e8c7c482347574e Ralf Baechle     2008-09-16  1051  source "arch/mips/alchemy/Kconfig"
3b12308f3337c09 Sergey Ryazanov  2014-10-29  1052  source "arch/mips/ath25/Kconfig"
d4a67d9dc8a5a80 Gabor Juhos      2011-01-04  1053  source "arch/mips/ath79/Kconfig"
a656ffcbc7a98a8 Hauke Mehrtens   2011-07-23  1054  source "arch/mips/bcm47xx/Kconfig"
e7300d04bd0809e Maxime Bizon     2009-08-18  1055  source "arch/mips/bcm63xx/Kconfig"
8945e37e103b165 Kevin Cernekee   2014-12-25  1056  source "arch/mips/bmips/Kconfig"
eed0eabd12ef061 Paul Burton      2016-10-05  1057  source "arch/mips/generic/Kconfig"
a103e9b951f9094 Paul Cercueil    2020-09-06  1058  source "arch/mips/ingenic/Kconfig"
5e83d4305467c43 Ralf Baechle     2005-10-29  1059  source "arch/mips/jazz/Kconfig"
8ec6d93508f705d John Crispin     2011-03-30  1060  source "arch/mips/lantiq/Kconfig"
2572f00db8a68bb Joshua Henderson 2016-01-13  1061  source "arch/mips/pic32/Kconfig"
af0cfb2c44ee5cd Ezequiel Garcia  2015-08-06 @1062  source "arch/mips/pistachio/Kconfig"
ae2b5bb6570481b John Crispin     2013-01-20  1063  source "arch/mips/ralink/Kconfig"
29c4869946f9182 Ralf Baechle     2005-02-07  1064  source "arch/mips/sgi-ip27/Kconfig"
38b18f725874224 Ralf Baechle     2005-02-03  1065  source "arch/mips/sibyte/Kconfig"
22b1d707ffc99fa Atsushi Nemoto   2008-07-11  1066  source "arch/mips/txx9/Kconfig"
5e83d4305467c43 Ralf Baechle     2005-10-29  1067  source "arch/mips/vr41xx/Kconfig"
a86c7f72454c4e8 David Daney      2008-12-11  1068  source "arch/mips/cavium-octeon/Kconfig"
71e2f4dd5a65bd8 Jiaxun Yang      2019-10-20  1069  source "arch/mips/loongson2ef/Kconfig"
30ad29bb48881ee Huacai Chen      2015-04-21  1070  source "arch/mips/loongson32/Kconfig"
30ad29bb48881ee Huacai Chen      2015-04-21  1071  source "arch/mips/loongson64/Kconfig"
7f058e852b229ec Jayachandran C   2011-05-07  1072  source "arch/mips/netlogic/Kconfig"
38b18f725874224 Ralf Baechle     2005-02-03  1073  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 35903 bytes --]

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

* Re: [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO
  2021-07-21  7:15   ` kernel test robot
@ 2021-07-21  8:07     ` Jiaxun Yang
  0 siblings, 0 replies; 14+ messages in thread
From: Jiaxun Yang @ 2021-07-21  8:07 UTC (permalink / raw)
  To: linux-mips
  Cc: kbuild-all, tsbogend, mturquette, daniel.lezcano, linus.walleij,
	vkoul, linux-kernel, linux-clk, linux-gpio, linux-phy

Oops, will fix in v4.

Thanks,

在 2021/7/21 下午3:15, kernel test robot 写道:
> Hi Jiaxun,
>
> I love your patch! Yet something to improve:
>
> [auto build test ERROR on robh/for-next]
> [also build test ERROR on clk/clk-next linus/master v5.14-rc2 next-20210720]
> [If your patch is applied to the wrong git tree, kindly drop us a note.
> And when submitting patch, we suggest to use '--base' as documented in
> https://git-scm.com/docs/git-format-patch]
>
> url:    https://github.com/0day-ci/linux/commits/Jiaxun-Yang/MIPS-Migrate-pistachio-to-generic-kernel/20210721-110732
> base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
> config: mips-randconfig-r026-20210720 (attached as .config)
> compiler: mips64-linux-gcc (GCC) 10.3.0
> reproduce (this is a W=1 build):
>          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>          chmod +x ~/bin/make.cross
>          # https://github.com/0day-ci/linux/commit/7815f6aeaf55e4b6b9de98455f68c185a5ac5916
>          git remote add linux-review https://github.com/0day-ci/linux
>          git fetch --no-tags linux-review Jiaxun-Yang/MIPS-Migrate-pistachio-to-generic-kernel/20210721-110732
>          git checkout 7815f6aeaf55e4b6b9de98455f68c185a5ac5916
>          # save the attached .config to linux build tree
>          COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross ARCH=mips
>
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@intel.com>
>
> All errors (new ones prefixed by >>):
>
>>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
> --
>>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
>     make[3]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1
>     make[2]: *** [Makefile:626: syncconfig] Error 2
>     make[1]: *** [Makefile:735: include/config/auto.conf.cmd] Error 2
>     make[1]: Failed to remake makefile 'include/config/auto.conf.cmd'.
>     make[1]: Failed to remake makefile 'include/config/auto.conf'.
>     make[1]: Target 'modules_prepare' not remade because of errors.
>     make: *** [Makefile:220: __sub-make] Error 2
>     make: Target 'modules_prepare' not remade because of errors.
> --
>>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
>     make[2]: *** [scripts/kconfig/Makefile:77: olddefconfig] Error 1
>     make[1]: *** [Makefile:626: olddefconfig] Error 2
>     make: *** [Makefile:220: __sub-make] Error 2
>     make: Target 'olddefconfig' not remade because of errors.
> --
>>> arch/mips/Kconfig:1062: can't open file "arch/mips/pistachio/Kconfig"
>     make[3]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1
>     make[2]: *** [Makefile:626: syncconfig] Error 2
>     make[1]: *** [Makefile:735: include/config/auto.conf.cmd] Error 2
>     make[1]: Failed to remake makefile 'include/config/auto.conf.cmd'.
>     make[1]: Failed to remake makefile 'include/config/auto.conf'.
>     make[1]: Target 'prepare' not remade because of errors.
>     make: *** [Makefile:220: __sub-make] Error 2
>     make: Target 'prepare' not remade because of errors.
>
>
> vim +1062 arch/mips/Kconfig
>
> ^1da177e4c3f415 Linus Torvalds   2005-04-16  1050
> e8c7c482347574e Ralf Baechle     2008-09-16  1051  source "arch/mips/alchemy/Kconfig"
> 3b12308f3337c09 Sergey Ryazanov  2014-10-29  1052  source "arch/mips/ath25/Kconfig"
> d4a67d9dc8a5a80 Gabor Juhos      2011-01-04  1053  source "arch/mips/ath79/Kconfig"
> a656ffcbc7a98a8 Hauke Mehrtens   2011-07-23  1054  source "arch/mips/bcm47xx/Kconfig"
> e7300d04bd0809e Maxime Bizon     2009-08-18  1055  source "arch/mips/bcm63xx/Kconfig"
> 8945e37e103b165 Kevin Cernekee   2014-12-25  1056  source "arch/mips/bmips/Kconfig"
> eed0eabd12ef061 Paul Burton      2016-10-05  1057  source "arch/mips/generic/Kconfig"
> a103e9b951f9094 Paul Cercueil    2020-09-06  1058  source "arch/mips/ingenic/Kconfig"
> 5e83d4305467c43 Ralf Baechle     2005-10-29  1059  source "arch/mips/jazz/Kconfig"
> 8ec6d93508f705d John Crispin     2011-03-30  1060  source "arch/mips/lantiq/Kconfig"
> 2572f00db8a68bb Joshua Henderson 2016-01-13  1061  source "arch/mips/pic32/Kconfig"
> af0cfb2c44ee5cd Ezequiel Garcia  2015-08-06 @1062  source "arch/mips/pistachio/Kconfig"
> ae2b5bb6570481b John Crispin     2013-01-20  1063  source "arch/mips/ralink/Kconfig"
> 29c4869946f9182 Ralf Baechle     2005-02-07  1064  source "arch/mips/sgi-ip27/Kconfig"
> 38b18f725874224 Ralf Baechle     2005-02-03  1065  source "arch/mips/sibyte/Kconfig"
> 22b1d707ffc99fa Atsushi Nemoto   2008-07-11  1066  source "arch/mips/txx9/Kconfig"
> 5e83d4305467c43 Ralf Baechle     2005-10-29  1067  source "arch/mips/vr41xx/Kconfig"
> a86c7f72454c4e8 David Daney      2008-12-11  1068  source "arch/mips/cavium-octeon/Kconfig"
> 71e2f4dd5a65bd8 Jiaxun Yang      2019-10-20  1069  source "arch/mips/loongson2ef/Kconfig"
> 30ad29bb48881ee Huacai Chen      2015-04-21  1070  source "arch/mips/loongson32/Kconfig"
> 30ad29bb48881ee Huacai Chen      2015-04-21  1071  source "arch/mips/loongson64/Kconfig"
> 7f058e852b229ec Jayachandran C   2011-05-07  1072  source "arch/mips/netlogic/Kconfig"
> 38b18f725874224 Ralf Baechle     2005-02-03  1073
>
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

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

* Re: [PATCH v3 6/9] pinctrl: pistachio: Make it as an option
  2021-07-21  3:01 ` [PATCH v3 6/9] pinctrl: pistachio: Make it as an option Jiaxun Yang
@ 2021-07-30 12:38   ` Linus Walleij
  0 siblings, 0 replies; 14+ messages in thread
From: Linus Walleij @ 2021-07-30 12:38 UTC (permalink / raw)
  To: Jiaxun Yang
  Cc: linux-mips, Thomas Bogendoerfer, Michael Turquette,
	Daniel Lezcano, Vinod Koul, linux-kernel, linux-clk,
	open list:GPIO SUBSYSTEM, linux-phy,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS

On Wed, Jul 21, 2021 at 5:02 AM Jiaxun Yang <jiaxun.yang@flygoat.com> wrote:

> So it will be avilable for generic MIPS kernel.
>
> Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>

I just applied this one patch to the pinctrl tree, let's see if
it works!

Yours,
Linus Walleij

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

end of thread, other threads:[~2021-07-30 12:38 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-21  3:01 [PATCH v3 0/9] MIPS: Migrate pistachio to generic kernel Jiaxun Yang
2021-07-21  3:01 ` [PATCH v3 1/9] MIPS: generic: Allow generating FIT image for Marduk board Jiaxun Yang
2021-07-21  3:01 ` [PATCH v3 2/9] MIPS: DTS: Pistachio add missing cpc and cdmm Jiaxun Yang
2021-07-21  3:01 ` [PATCH v3 3/9] clk: pistachio: Make it selectable for generic MIPS kernel Jiaxun Yang
2021-07-21  3:01 ` [PATCH v3 4/9] clocksource/drivers/pistachio: Make it selectable for MIPS Jiaxun Yang
2021-07-21  3:01 ` [PATCH v3 5/9] phy: pistachio-usb: Depend on MIPS || COMPILE_TEST Jiaxun Yang
2021-07-21  3:01 ` [PATCH v3 6/9] pinctrl: pistachio: Make it as an option Jiaxun Yang
2021-07-30 12:38   ` Linus Walleij
2021-07-21  3:01 ` [PATCH v3 7/9] MIPS: config: generic: Add config for Marduk board Jiaxun Yang
2021-07-21  3:01 ` [PATCH v3 8/9] MIPS: Retire MACH_PISTACHIO Jiaxun Yang
2021-07-21  7:08   ` kernel test robot
2021-07-21  7:15   ` kernel test robot
2021-07-21  8:07     ` Jiaxun Yang
2021-07-21  3:01 ` [PATCH v3 9/9] MIPS: Make a alias for pistachio_defconfig Jiaxun Yang

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).