commit | 607eebb2a2c9be13c315f021d2e5997541464beb | [log] [tgz] |
---|---|---|
author | Vadim Bendebury <vbendeb@chromium.org> | Wed Dec 05 14:46:42 2012 +0000 |
committer | Tom Rini <trini@ti.com> | Tue Dec 11 13:17:35 2012 -0700 |
tree | 954f156fda431d84103affb66678ced13fd12222 | |
parent | db4a88d7d7bec7a488d60a3dd6d1b278cf7804e3 [diff] |
Add console command to access io space registers Provide u-boot console functions to access IO space registers. A no thrills implementation, accessing one register at a time. For example: boot > iod 80 0080: 00000094 boot > iod.w 80 0080: 0094 boot > iod.b 80 0080: 94 boot > iow.b 0x80 12 boot > iod 0x80 0080: 00000012 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>