Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 916f743d authored by Kumar Gala's avatar Kumar Gala
Browse files

firmware: qcom: scm: Move the scm driver to drivers/firmware



Architectural changes in the ARM Linux kernel tree mandate the eventual
removal of the mach-* directories. Move the scm driver to
drivers/firmware and the scm header to include/linux to support that
removal.

Signed-off-by: default avatarKumar Gala <galak@codeaurora.org>
parent 4de43476
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1317,6 +1317,7 @@ L: linux-soc@vger.kernel.org
S:	Maintained
F:	arch/arm/mach-qcom/
F:	drivers/soc/qcom/
F:	drivers/firmware/qcom_scm.c
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git

ARM/RADISYS ENP2611 MACHINE SUPPORT
+2 −0
Original line number Diff line number Diff line
@@ -2160,6 +2160,8 @@ source "net/Kconfig"

source "drivers/Kconfig"

source "drivers/firmware/Kconfig"

source "fs/Kconfig"

source "arch/arm/Kconfig.debug"
+0 −3
Original line number Diff line number Diff line
@@ -22,7 +22,4 @@ config ARCH_MSM8974
	bool "Enable support for MSM8974"
	select HAVE_ARM_ARCH_TIMER

config QCOM_SCM
	bool

endif
+0 −3
Original line number Diff line number Diff line
obj-y			:= board.o
obj-$(CONFIG_SMP)	+= platsmp.o
obj-$(CONFIG_QCOM_SCM)	+= scm.o

CFLAGS_scm.o :=$(call as-instr,.arch_extension sec,-DREQUIRES_SEC=1)
+1 −1
Original line number Diff line number Diff line
@@ -17,10 +17,10 @@
#include <linux/of_address.h>
#include <linux/smp.h>
#include <linux/io.h>
#include <linux/qcom_scm.h>

#include <asm/smp_plat.h>

#include "scm.h"

#define VDD_SC1_ARRAY_CLAMP_GFS_CTL	0x35a0
#define SCSS_CPU1CORE_RESET		0x2d80
Loading