Merge tag 'omap-for-fixes-whenever-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into arm/fixes

Few minor fixes for omaps

Looks like we have wrong default memory size for beaglebone black,
it has at least 512 MB of RAM and not 256 MB. This causes an issue
when booted with GRUB2 that does not seem to pass memory info to
the kernel.

And for am43x-epos-evm the SPI pin directions need to be configured
for SPI to work.

* tag 'omap-for-fixes-whenever-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap:
ARM: dts: am43x-epos-evm: set data pin directions for spi0 and spi1
ARM: dts: am335x-boneblack-common: fix memory size

Link: https://lore.kernel.org/r/pull-1579895109-287828@atomide.com
Signed-off-by: Olof Johansson <olof@lixom.net>

Changed files
+7
arch
+5
arch/arm/boot/dts/am335x-boneblack-common.dtsi
··· 131 131 }; 132 132 133 133 / { 134 + memory@80000000 { 135 + device_type = "memory"; 136 + reg = <0x80000000 0x20000000>; /* 512 MB */ 137 + }; 138 + 134 139 clk_mcasp0_fixed: clk_mcasp0_fixed { 135 140 #clock-cells = <0>; 136 141 compatible = "fixed-clock";
+2
arch/arm/boot/dts/am43x-epos-evm.dts
··· 848 848 pinctrl-names = "default", "sleep"; 849 849 pinctrl-0 = <&spi0_pins_default>; 850 850 pinctrl-1 = <&spi0_pins_sleep>; 851 + ti,pindir-d0-out-d1-in = <1>; 851 852 }; 852 853 853 854 &spi1 { ··· 856 855 pinctrl-names = "default", "sleep"; 857 856 pinctrl-0 = <&spi1_pins_default>; 858 857 pinctrl-1 = <&spi1_pins_sleep>; 858 + ti,pindir-d0-out-d1-in = <1>; 859 859 }; 860 860 861 861 &usb2_phy1 {