Skip to content

Commit f041ead

Browse files
committed
Merge tag 'armsoc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
Pull ARM SoC fixes from Olof Johansson: "A couple of fixes have come in that would be good to include in this release: - A fix for amount of memory on Beaglebone Black. Surfaced now since GRUB2 doesn't update memory size in the booted kernel. - A fix to make SPI interfaces work on am43x-epos-evm. - Small Kconfig fix for OPTEE (adds a depend on MMU) to avoid build failures" * tag 'armsoc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: ARM: dts: am43x-epos-evm: set data pin directions for spi0 and spi1 tee: optee: Fix compilation issue with nommu ARM: dts: am335x-boneblack-common: fix memory size
2 parents a075f23 + 6716cb1 commit f041ead

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

arch/arm/boot/dts/am335x-boneblack-common.dtsi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,11 @@
131131
};
132132

133133
/ {
134+
memory@80000000 {
135+
device_type = "memory";
136+
reg = <0x80000000 0x20000000>; /* 512 MB */
137+
};
138+
134139
clk_mcasp0_fixed: clk_mcasp0_fixed {
135140
#clock-cells = <0>;
136141
compatible = "fixed-clock";

arch/arm/boot/dts/am43x-epos-evm.dts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -848,13 +848,15 @@
848848
pinctrl-names = "default", "sleep";
849849
pinctrl-0 = <&spi0_pins_default>;
850850
pinctrl-1 = <&spi0_pins_sleep>;
851+
ti,pindir-d0-out-d1-in = <1>;
851852
};
852853

853854
&spi1 {
854855
status = "okay";
855856
pinctrl-names = "default", "sleep";
856857
pinctrl-0 = <&spi1_pins_default>;
857858
pinctrl-1 = <&spi1_pins_sleep>;
859+
ti,pindir-d0-out-d1-in = <1>;
858860
};
859861

860862
&usb2_phy1 {

drivers/tee/optee/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
config OPTEE
44
tristate "OP-TEE"
55
depends on HAVE_ARM_SMCCC
6+
depends on MMU
67
help
78
This implements the OP-TEE Trusted Execution Environment (TEE)
89
driver.

0 commit comments

Comments
 (0)