From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Mon, 30 Apr 2018 17:12:42 -0600 Subject: [U-Boot] [PATCH v3] dm: core: add functions to get memory-mapped I/O addresses In-Reply-To: <20180429195654.709-1-daniel.schwierzeck@gmail.com> References: <20180429195654.709-1-daniel.schwierzeck@gmail.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de On 29 April 2018 at 13:56, Daniel Schwierzeck wrote: > From: Álvaro Fernández Rojas > > Signed-off-by: Álvaro Fernández Rojas > Reviewed-by: Daniel Schwierzeck > Signed-off-by: Daniel Schwierzeck > > --- > This replaces/updates patch 01/17 from patch series > https://patchwork.ozlabs.org/cover/889542/. The update fixes > some issues with Sandbox and adds unit-tests. The remaining patches > from the patch series can be applied as-is when this patch has been > committed. > > Changes in v3: > - replace ioremap() with map_physmem() > - add unit tests > - fix checkpatch.pl warnings > > Changes in v2: > - new patch > > drivers/core/fdtaddr.c | 15 +++++++++++++++ > drivers/core/read.c | 15 +++++++++++++++ > include/dm/fdtaddr.h | 22 ++++++++++++++++++++++ > include/dm/read.h | 32 ++++++++++++++++++++++++++++++++ > test/dm/test-fdt.c | 42 ++++++++++++++++++++++++++++++++++++++++++ > 5 files changed, 126 insertions(+) Reviewed-by: Simon Glass