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

Commit 17719555 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: Add soc information for SDMSHRIKE"

parents 0e020b1a a90c2e44
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -44,6 +44,9 @@ SoCs:
- SDM855
  compatible = "qcom,sdm855"

- SDMSHRIKE
  compatible = "qcom,sdmshrike"

Generic board variants:

- CDP device:
@@ -123,3 +126,6 @@ compatible = "qcom,sdm855-rumi"
compatible = "qcom,sdm855-mtp"
compatible = "qcom,sdm855-cdp"
compatible = "qcom,sdm855-qrd"
compatible = "qcom,sdmshrike-rumi"
compatible = "qcom,sdmshrike-mtp"
compatible = "qcom,sdmshrike-cdp"
+10 −0
Original line number Diff line number Diff line
@@ -149,6 +149,16 @@ config ARCH_SDM855
	  This enables support for the SDM855 chipset. If you do not
	  wish to build a kernel that runs on this chipset, say 'N' here.

config ARCH_SDMSHRIKE
	bool "Enable Support for Qualcomm Technologies, Inc. SDMSHRIKE"
	depends on ARCH_QCOM
	select COMMON_CLK_QCOM
	help
	  This configuration option enables support to build kernel for
	  SDMSHRIKE SoC.
	  If you do not wish to build a kernel that runs on this chipset,
	  say 'N' here.

config ARCH_REALTEK
	bool "Realtek Platforms"
	help
+4 −0
Original line number Diff line number Diff line
@@ -25,6 +25,10 @@ dtb-$(CONFIG_ARCH_SDM855) += sdm855-rumi.dtb \
	sdm855-qrd.dtb
endif

dtb-$(CONFIG_ARCH_SDMSHRIKE)	+= sdmshrike-rumi.dtb \
	sdmshrike-mtp.dtb \
	sdmshrike-cdp.dtb

always		:= $(dtb-y)
subdir-y	:= $(dts-dirs)
clean-files	:= *.dtb *.dtbo
+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;

#include "sdmshrike.dtsi"
#include "sdmshrike-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDMSHRIKE CDP";
	compatible = "qcom,sdmshrike-cdp", "qcom,sdmshrike", "qcom,cdp";
	qcom,board-id = <1 0>;
};
+11 −0
Original line number Diff line number Diff line
/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
Loading