mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
IPQ40xx: Add SMEM support
There is already existing driver for SMEM so lets enable it for IPQ40xx as well. Signed-off-by: Robert Marko <robert.marko@sartura.hr> Cc: Luka Perkov <luka.perkov@sartura.hr>
This commit is contained in:
parent
5ae15415c1
commit
6ef099b29e
3 changed files with 8 additions and 1 deletions
|
@ -767,8 +767,10 @@ config ARCH_IPQ40XX
|
||||||
select DM
|
select DM
|
||||||
select DM_GPIO
|
select DM_GPIO
|
||||||
select DM_SERIAL
|
select DM_SERIAL
|
||||||
|
select MSM_SMEM
|
||||||
select PINCTRL
|
select PINCTRL
|
||||||
select CLK
|
select CLK
|
||||||
|
select SMEM
|
||||||
select OF_CONTROL
|
select OF_CONTROL
|
||||||
imply CMD_DM
|
imply CMD_DM
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,11 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
smem {
|
||||||
|
compatible = "qcom,smem";
|
||||||
|
memory-region = <&smem_mem>;
|
||||||
|
};
|
||||||
|
|
||||||
soc: soc {
|
soc: soc {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
|
|
@ -15,7 +15,7 @@ config SANDBOX_SMEM
|
||||||
config MSM_SMEM
|
config MSM_SMEM
|
||||||
bool "Qualcomm Shared Memory Manager (SMEM)"
|
bool "Qualcomm Shared Memory Manager (SMEM)"
|
||||||
depends on DM
|
depends on DM
|
||||||
depends on ARCH_SNAPDRAGON
|
depends on ARCH_SNAPDRAGON || ARCH_IPQ40XX
|
||||||
help
|
help
|
||||||
Enable support for the Qualcomm Shared Memory Manager.
|
Enable support for the Qualcomm Shared Memory Manager.
|
||||||
The driver provides an interface to items in a heap shared among all
|
The driver provides an interface to items in a heap shared among all
|
||||||
|
|
Loading…
Reference in a new issue