linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig
@ 2019-01-10 14:39 Linus Walleij
  2019-01-10 14:39 ` [PATCH 2/2] ARM: config: spear3xx: Activate PL111 DRM driver Linus Walleij
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Linus Walleij @ 2019-01-10 14:39 UTC (permalink / raw)
  To: linux-kernel, Viresh Kumar, Shiraz Hashim; +Cc: linux-gpio, Linus Walleij

This config is updates to the latest structure of the
Kconfig menus so we can apply DRM driver changes on top.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 arch/arm/configs/spear3xx_defconfig | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/arch/arm/configs/spear3xx_defconfig b/arch/arm/configs/spear3xx_defconfig
index 2c5e8df33191..6753b373bee8 100644
--- a/arch/arm/configs/spear3xx_defconfig
+++ b/arch/arm/configs/spear3xx_defconfig
@@ -1,21 +1,21 @@
 CONFIG_SYSVIPC=y
+CONFIG_PREEMPT=y
 CONFIG_BSD_PROCESS_ACCT=y
 CONFIG_BLK_DEV_INITRD=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_MODVERSIONS=y
-CONFIG_PARTITION_ADVANCED=y
 # CONFIG_ARCH_MULTI_V7 is not set
 CONFIG_PLAT_SPEAR=y
 CONFIG_ARCH_SPEAR3XX=y
 CONFIG_MACH_SPEAR300=y
 CONFIG_MACH_SPEAR310=y
 CONFIG_MACH_SPEAR320=y
+CONFIG_MODULES=y
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODVERSIONS=y
+CONFIG_PARTITION_ADVANCED=y
 CONFIG_BINFMT_MISC=y
 CONFIG_NET=y
 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
 CONFIG_MTD=y
-CONFIG_MTD_OF_PARTS=y
 CONFIG_MTD_BLOCK=y
 CONFIG_MTD_NAND=y
 CONFIG_MTD_NAND_FSMC=y
@@ -32,8 +32,6 @@ CONFIG_NETDEVICES=y
 # CONFIG_NET_VENDOR_SMSC is not set
 CONFIG_STMMAC_ETH=y
 # CONFIG_WLAN is not set
-CONFIG_INPUT_FF_MEMLESS=y
-# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
 # CONFIG_KEYBOARD_ATKBD is not set
 CONFIG_KEYBOARD_SPEAR=y
 # CONFIG_INPUT_MOUSE is not set
@@ -78,8 +76,8 @@ CONFIG_JFFS2_FS=y
 CONFIG_NLS_DEFAULT="utf8"
 CONFIG_NLS_CODEPAGE_437=y
 CONFIG_NLS_ASCII=m
-CONFIG_MAGIC_SYSRQ=y
+CONFIG_DEBUG_INFO=y
 CONFIG_DEBUG_FS=y
+CONFIG_MAGIC_SYSRQ=y
 CONFIG_DEBUG_KERNEL=y
 CONFIG_DEBUG_SPINLOCK=y
-CONFIG_DEBUG_INFO=y
-- 
2.19.2


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

* [PATCH 2/2] ARM: config: spear3xx: Activate PL111 DRM driver
  2019-01-10 14:39 [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig Linus Walleij
@ 2019-01-10 14:39 ` Linus Walleij
  2019-01-19 23:02 ` [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig Linus Walleij
  2019-01-21  3:22 ` Viresh Kumar
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2019-01-10 14:39 UTC (permalink / raw)
  To: linux-kernel, Viresh Kumar, Shiraz Hashim; +Cc: linux-gpio, Linus Walleij

This disables the old FBDEV driver and enables the PL111
DRM driver on the SPEAr3xx.

There are some device trees in the kernel that switches
the DT node for the PL110 to "okay" but none of these
have any display defined, so we can safely switch to this
driver before we get any users starting to define
displays. Let them do it on top of the new driver
infrastructure instead.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 arch/arm/configs/spear3xx_defconfig | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/arch/arm/configs/spear3xx_defconfig b/arch/arm/configs/spear3xx_defconfig
index 6753b373bee8..c42e3204e2fa 100644
--- a/arch/arm/configs/spear3xx_defconfig
+++ b/arch/arm/configs/spear3xx_defconfig
@@ -50,8 +50,10 @@ CONFIG_GPIO_PL061=y
 # CONFIG_HWMON is not set
 CONFIG_WATCHDOG=y
 CONFIG_ARM_SP805_WATCHDOG=y
-CONFIG_FB=y
-CONFIG_FB_ARMCLCD=y
+CONFIG_DRM=y
+CONFIG_DRM_PL111=y
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
 CONFIG_USB_OHCI_HCD=y
-- 
2.19.2


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

* Re: [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig
  2019-01-10 14:39 [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig Linus Walleij
  2019-01-10 14:39 ` [PATCH 2/2] ARM: config: spear3xx: Activate PL111 DRM driver Linus Walleij
@ 2019-01-19 23:02 ` Linus Walleij
  2019-01-21  3:22 ` Viresh Kumar
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2019-01-19 23:02 UTC (permalink / raw)
  To: linux-kernel, Viresh Kumar, Shiraz Hashim; +Cc: open list:GPIO SUBSYSTEM

On Thu, Jan 10, 2019 at 3:39 PM Linus Walleij <linus.walleij@linaro.org> wrote:

> This config is updates to the latest structure of the
> Kconfig menus so we can apply DRM driver changes on top.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

BTW I haven't seen many SPEAr pull requests the recent times,
if you want I can send these to ARM SoC myself, but I need an
ACK from one of the SPEAr maintainers to do so.

Yours.
Linus Walleij

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

* Re: [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig
  2019-01-10 14:39 [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig Linus Walleij
  2019-01-10 14:39 ` [PATCH 2/2] ARM: config: spear3xx: Activate PL111 DRM driver Linus Walleij
  2019-01-19 23:02 ` [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig Linus Walleij
@ 2019-01-21  3:22 ` Viresh Kumar
  2 siblings, 0 replies; 4+ messages in thread
From: Viresh Kumar @ 2019-01-21  3:22 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Linux Kernel Mailing List, Shiraz Hashim, linux-gpio

On Thu, Jan 10, 2019 at 8:09 PM Linus Walleij <linus.walleij@linaro.org> wrote:
>
> This config is updates to the latest structure of the
> Kconfig menus so we can apply DRM driver changes on top.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  arch/arm/configs/spear3xx_defconfig | 16 +++++++---------
>  1 file changed, 7 insertions(+), 9 deletions(-)

I missed this email somehow :(

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

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

end of thread, other threads:[~2019-01-21  7:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-10 14:39 [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig Linus Walleij
2019-01-10 14:39 ` [PATCH 2/2] ARM: config: spear3xx: Activate PL111 DRM driver Linus Walleij
2019-01-19 23:02 ` [PATCH 1/2] ARM: config: Update SPEAr 3xx defconfig Linus Walleij
2019-01-21  3:22 ` Viresh Kumar

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