diff options
author | Jason Kridner <jkridner@gmail.com> | 2018-03-07 05:40:41 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-04-06 17:04:33 -0400 |
commit | eff0c977b3b9466657362869e04da231a892e31e (patch) | |
tree | 64c3641c8c39bde1f9cb898dc1229ea4ab3f05a5 /include | |
parent | 3bf5f13c0cda80cf1075c53862cb3ba998245cf8 (diff) | |
download | u-boot-eff0c977b3b9466657362869e04da231a892e31e.tar.gz |
Add support for BeagleBoard.org PocketBeagle
Texas Instruments AM3358 based low-cost board using Octavo Systems OSD3358 SIP
with built-in TPS65217 PMIC and 512MB DDR3. Board features small 35mm x
55mm size, high-speed USB OTG, microSD and 72 0.1" expansion header
pins with 2xSPI, 2xI2C, 2xUART, USB, 8xADC, up-to-44 GPIO, PRU pins and much more.
https://beagleboard.org/pocket
This was tested using the am335x_evm_usbspl_defconfig.
Note that MII pins are enabled despite not having Ethernet on this
board. This avoids an issue where otherwise many timeout errors would be
generated. See https://e2e.ti.com/support/arm/sitara_arm/f/791/t/298976
for some related discussion.
Signed-off-by: Jason Kridner <jdk@ti.com>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/am335x_evm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 158b7d4e8e..8d45b6fade 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -133,6 +133,8 @@ "setenv fdtfile am335x-bone.dtb; fi; " \ "if test $board_name = A335BNLT; then " \ "setenv fdtfile am335x-boneblack.dtb; fi; " \ + "if test $board_name = A335PBGL; then " \ + "setenv fdtfile am335x-pocketbeagle.dtb; fi; " \ "if test $board_name = BBBW; then " \ "setenv fdtfile am335x-boneblack-wireless.dtb; fi; " \ "if test $board_name = BBG1; then " \ |