All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/5] Add support for Adaptrum ACRS2 mainboard
@ 2017-02-03 23:42 Alexandru Gagniuc
  2017-02-03 23:42 ` [U-Boot] [PATCH 1/5] configs: am335x_evm: Enable FASTBOOT based on kconfig Alexandru Gagniuc
                   ` (11 more replies)
  0 siblings, 12 replies; 48+ messages in thread
From: Alexandru Gagniuc @ 2017-02-03 23:42 UTC (permalink / raw)
  To: u-boot

This is a series of patches to add support for our ACRS2 board. This
board is already out in the wild, but we decided to change to a proper
bootloader for recovery and sturdiness reasons.

Because this board has been shipping, it already has a defined format
for the EEPROM contents, which unfortunately, is incompatible with
the format other boards use to detect the system. Because of this, the
path that should do board detection in SPL is missing from this series.
We don't have a set of stable bits that we can use to confidently
identify the board in the context of board_detect.c.

The way we currently have the detection implemented is by hacking the
if statements in board.c and mux.c. While that specific change is not
included, this patchset will be able to boot the board.

As far as running linux on this board, it does not appear it will ever
ship with a linux.

Enjoy!
Alex

Alexandru Gagniuc (5):
  configs: am335x_evm: Enable FASTBOOT based on kconfig
  Revert "configs: am335x: usb: do not define CONFIG_DM_USB for spl"
  ARM: DTS: Add devicetree for Adaptrum ACRS2 mainboard
  configs: am335x: Enable PHY_VITESSE
  configs: Add defconfig for Adaptrum ACRS2

 arch/arm/dts/Makefile                     |   1 +
 arch/arm/dts/am335x-adaptrum-acrs2-mb.dts | 100 ++++++++++++++++++++++++++++++
 configs/am335x_adaptrum_acrs2_defconfig   |  36 +++++++++++
 configs/am335x_boneblack_defconfig        |   5 ++
 configs/am335x_boneblack_vboot_defconfig  |   3 +
 configs/am335x_evm_defconfig              |   3 +
 configs/am335x_evm_nor_defconfig          |   5 ++
 configs/am335x_evm_norboot_defconfig      |   5 ++
 configs/am335x_evm_spiboot_defconfig      |   5 ++
 configs/am335x_evm_usbspl_defconfig       |   5 ++
 configs/am335x_hs_evm_defconfig           |   5 ++
 include/configs/am335x_evm.h              |   6 +-
 12 files changed, 174 insertions(+), 5 deletions(-)
 create mode 100644 arch/arm/dts/am335x-adaptrum-acrs2-mb.dts
 create mode 100644 configs/am335x_adaptrum_acrs2_defconfig

-- 
2.9.3

^ permalink raw reply	[flat|nested] 48+ messages in thread

end of thread, other threads:[~2017-07-12 12:14 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-03 23:42 [U-Boot] [PATCH 0/5] Add support for Adaptrum ACRS2 mainboard Alexandru Gagniuc
2017-02-03 23:42 ` [U-Boot] [PATCH 1/5] configs: am335x_evm: Enable FASTBOOT based on kconfig Alexandru Gagniuc
2017-02-06 15:15   ` Andrew F. Davis
2017-02-06 18:32     ` Alex
2017-02-03 23:42 ` [U-Boot] [PATCH 2/5] Revert "configs: am335x: usb: do not define CONFIG_DM_USB for spl" Alexandru Gagniuc
2017-02-06 15:52   ` Andrew F. Davis
2017-02-06 18:47     ` Alex
2017-02-06 19:43       ` Andrew F. Davis
2017-02-06 21:30         ` Grygorii Strashko
2017-02-06 22:02           ` Alexandru Gagniuc
2017-02-06 22:30           ` [U-Boot] [PATCH] am33xx: board: Refactor USB initialization into separate function Alexandru Gagniuc
2017-02-12 13:55             ` Andreas Färber
2017-02-13 17:18               ` Alex
2017-02-03 23:42 ` [U-Boot] [PATCH 3/5] ARM: DTS: Add devicetree for Adaptrum ACRS2 mainboard Alexandru Gagniuc
2017-02-03 23:42 ` [U-Boot] [PATCH 4/5] configs: am335x: Enable PHY_VITESSE Alexandru Gagniuc
2017-02-06 15:56   ` Andrew F. Davis
2017-02-06 19:02     ` Alex G.
2017-02-06 19:47       ` Andrew F. Davis
2017-02-06 20:30         ` Alex G.
2017-02-06 20:38           ` Andrew F. Davis
2017-02-06 20:54             ` Alex G.
2017-02-06 21:03               ` Andrew F. Davis
2017-02-06 21:05                 ` [U-Boot] [PATCH] drivers: net: Provide Kconfig menu for PHYLIB Alexandru Gagniuc
2017-02-06 21:45                   ` [U-Boot] [PATCH] drivers: net: Move PHYLIB to Kconfig Andrew F. Davis
2017-02-07 16:28                     ` Joe Hershberger
2017-02-03 23:42 ` [U-Boot] [PATCH 5/5] configs: Add defconfig for Adaptrum ACRS2 Alexandru Gagniuc
2017-02-07  3:17 ` [U-Boot] [PATCH v2 0/6] Add support for Adaptrum ACRS2 board Alexandru Gagniuc
2017-02-07  3:17 ` [U-Boot] [PATCH v2 1/6] configs: am335x_evm: Enable FASTBOOT based on kconfig Alexandru Gagniuc
2017-02-07 18:23   ` Tom Rini
2017-07-12 12:14   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-02-07  3:17 ` [U-Boot] [PATCH v2 2/6] am33xx: board: Refactor USB initialization into separate function Alexandru Gagniuc
2017-02-07 18:23   ` Tom Rini
2017-07-12 12:14   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-02-07  3:17 ` [U-Boot] [PATCH v2 3/6] drivers: net: Provide Kconfig menu for PHYLIB Alexandru Gagniuc
2017-02-07 16:28   ` Joe Hershberger
2017-02-07 18:23   ` Tom Rini
2017-02-09 16:28   ` [U-Boot] " Joe Hershberger
2017-02-09 18:18     ` Alexandru Gagniuc
2017-02-09 22:19       ` Joe Hershberger
2017-02-09 22:45       ` Tom Rini
2017-02-07  3:17 ` [U-Boot] [PATCH v2 4/6] drivers: net: Move PHYLIB to Kconfig Alexandru Gagniuc
2017-02-07 16:55   ` Andrew F. Davis
2017-02-07 17:15     ` Joe Hershberger
2017-02-07 17:49       ` Tom Rini
2017-02-07 17:52   ` Tom Rini
2017-02-08 22:45     ` Joe Hershberger
2017-02-07  3:17 ` [U-Boot] [PATCH v2 5/6] ARM: DTS: Add devicetree for Adaptrum ACRS2 mainboard Alexandru Gagniuc
2017-02-07  3:17 ` [U-Boot] [PATCH v2 6/6] configs: Add defconfig for Adaptrum ACRS2 Alexandru Gagniuc

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.