summaryrefslogtreecommitdiffstats
path: root/Documentation/boards/mvebu
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2016-10-04 21:13:06 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-10-07 10:18:19 +0200
commitd66e242213320a4fed9960eee0ecc870a9e4c616 (patch)
tree572b8fbaec7659d08f3b4475da23f05e3e13bc81 /Documentation/boards/mvebu
parent81cabf127479e1bc8ce0cc294a19ce78d416c3ec (diff)
downloadbarebox-d66e242213320a4fed9960eee0ecc870a9e4c616.tar.gz
barebox-d66e242213320a4fed9960eee0ecc870a9e4c616.tar.xz
ARM: mvebu: document some general mvebu stuff and the rn2120 board
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'Documentation/boards/mvebu')
-rw-r--r--Documentation/boards/mvebu/Netgear-ReadyNAS-2120.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/Documentation/boards/mvebu/Netgear-ReadyNAS-2120.rst b/Documentation/boards/mvebu/Netgear-ReadyNAS-2120.rst
new file mode 100644
index 0000000000..5bee03af9d
--- /dev/null
+++ b/Documentation/boards/mvebu/Netgear-ReadyNAS-2120.rst
@@ -0,0 +1,19 @@
+Netgear ReadyNAS 2120
+=====================
+
+This is a rack mountable 4 bay NAS using an Armada XP dual-core processor.
+
+UART booting
+------------
+
+The first UART hides behind a sticker on 4 pins.
+
+The machine seems to do two resets at power on which makes UART booting hard. A
+trick to work around this is::
+
+ scripts/kwboot -d /dev/ttyUSB0; kwboot -b images/barebox-netgear-rn2120.img -t /dev/ttyUSB0
+
+This way the first window in which the CPU accepts the magic string is taken by
+the first invokation which blocks until the second reset happens. The second
+window is then hit with the image to boot. This is not 100% reliable but works
+most of the time.