diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2018-07-18 10:13:59 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-08-03 19:53:01 -0400 |
commit | ad6054f1fe128f797b6eb2964afca6674b584785 (patch) | |
tree | 2d1d14fe232ebd13e6ddae1bb85c451699f790d4 /include | |
parent | a30691a538b0894dfc0076150b8a3a7326b9e45a (diff) | |
download | u-boot-ad6054f1fe128f797b6eb2964afca6674b584785.tar.gz u-boot-ad6054f1fe128f797b6eb2964afca6674b584785.tar.bz2 u-boot-ad6054f1fe128f797b6eb2964afca6674b584785.zip |
Add Beaglebone Enhanced support
The "Beaglebone Enhanced" by Sancloud is based on the Beaglebone Black,
but with the following differences:
* Gigabit capable PHY
* Extra USB hub, optional i2c control
* lps3331ap barometer connected over i2c
* MPU6050 6 axis MEMS accelerometer/gyro connected over i2c
* 1GiB DDR3 RAM
* RTL8723 Wifi/Bluetooth connected over USB
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
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 ff87adcd49..f1aa653a9a 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -153,6 +153,8 @@ "setenv fdtfile am335x-bonegreen-wireless.dtb; fi; " \ "if test $board_name = BBBL; then " \ "setenv fdtfile am335x-boneblue.dtb; fi; " \ + "if test $board_name = BBEN; then " \ + "setenv fdtfile am335x-sancloud-bbe.dtb; fi; " \ "if test $board_name = A33515BB; then " \ "setenv fdtfile am335x-evm.dtb; fi; " \ "if test $board_name = A335X_SK; then " \ |